@charset "UTF-8";
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*
| ------------------------------------
| Custom Fonts
| ------------------------------------
*/
@font-face {
  font-family: 'cursive_bold';
  src: url("fonts/cursive_standard_bold-webfont.eot");
  src: url("fonts/cursive_standard_bold-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/cursive_standard_bold-webfont.woff") format("woff"), url("fonts/cursive_standard_bold-webfont.ttf") format("truetype"), url("fonts/cursive_standard_bold-webfont.svg#cursive_standardregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'cursive_regular';
  src: url("fonts/cursive_standard-webfont.eot");
  src: url("fonts/cursive_standard-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/cursive_standard-webfont.woff") format("woff"), url("fonts/cursive_standard-webfont.ttf") format("truetype"), url("fonts/cursive_standard-webfont.svg#cursive_standardregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
th {
  font-weight: 700;
  color: #222;
  background: #e2e2e2;
  border-bottom: 1px solid #222;
}

/*
| ------------------------------------
| Base styling
| ------------------------------------
*/
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  font-size: 14px;
}

body {
  background: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
}

hr {
  border: solid #ecf0f1;
  border-width: 1px 0 0;
  clear: both;
  margin: 25px 0;
  height: 0;
}

/*
| ------------------------------------
| Headings
| ------------------------------------
*/
h1, h2, h3, h4, h5, h6 {
  color: #65ac66;
  font-family: "Lato", sans-serif;
  margin-bottom: 16px;
  line-height: 1.2;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit;
}

h1 {
  font-size: 28px;
  font-weight: 500;
}

h2 {
  font-size: 24px;
  font-weight: 500;
}

h3 {
  font-size: 20px;
  font-weight: 500;
}

h4 {
  font-size: 18px;
  font-weight: 500;
}

h5 {
  font-size: 16px;
  font-weight: 500;
}

h6 {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.subheader {
  color: #777;
}

/*
| ------------------------------------
| Paragraphs
| ------------------------------------
*/
p {
  font-family: "Lato", sans-serif;
  margin: 0 0 16px 0;
  font-size: 14px;
}

p img {
  margin: 0;
}

p.lead {
  font-size: 17px;
  line-height: 1.5;
  color: #bb6528;
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

small {
  font-size: 80%;
  line-height: inherit;
}

sup {
  font-size: 55%;
  vertical-align: top;
  padding-left: 1px;
  line-height: inherit;
}

/*
| ------------------------------------
| Links
| ------------------------------------
*/
a, a:visited {
  color: #5A8900;
  text-decoration: none;
  outline: 0;
  -moz-transition: color 0.1s;
  -o-transition: color 0.1s;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
}

a:hover,
a:focus {
  color: #385600;
}

p a,
p a:visited {
  line-height: inherit;
}

/*
| ------------------------------------
| Lists
| ------------------------------------
*/
dl, ul, ol {
  margin-bottom: 16px;
}

ul {
  list-style: disc outside;
}

ol {
  list-style: decimal;
}

ul, ol, ul.square, ul.circle, ul.disc {
  margin-left: 30px;
}

ul.square {
  list-style: square outside;
}

ul.circle {
  list-style: circle outside;
}

ul.disc {
  list-style: disc outside;
}

ul ul, ul ol,
ol ol, ol ul {
  margin: 4px 0 5px 30px;
}

ul ul li, ul ol li,
ol ol li, ol ul li {
  margin-bottom: 6px;
}

li {
  line-height: 1.5;
  margin-bottom: 4px;
}

ul.large li {
  line-height: 1.5;
}

li p {
  line-height: 1.5;
}

dl dt {
  margin-bottom: 6px;
  font-weight: bold;
}

dl dd {
  margin-bottom: 10px;
}

/*
| ------------------------------------
| Code
| ------------------------------------
*/
pre {
  background: #262f36;
  color: #ecf0f1;
  padding: 20px;
  margin: 0 0 16px 0;
  /* Probably the same as paragraphs */
}

code {
  font: 13px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  margin: 0;
  padding: 0;
}

/*
| ------------------------------------
| Blockquotes
| ------------------------------------
*/
blockquote, blockquote p {
  font-size: 15px;
  line-height: 1.5;
  color: #7f8c8d;
  font-style: italic;
}

blockquote {
  margin: 0 0 20px 20px;
  padding: 9px 20px 0 19px;
  border-left: 1px solid #ddd;
}

blockquote cite {
  display: block;
  font-size: 14px;
  color: #4e5758;
  font-weight: 700;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
}

blockquote cite:before {
  content: "\2014 \0020";
}

blockquote cite a,
blockquote cite a:visited,
blockquote cite a:visited {
  color: #4e5758;
}

/*
| ------------------------------------
| Images
| ------------------------------------
*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/*
| ------------------------------------
| Tables
| ------------------------------------
*/
table {
  background: #fafafa;
  margin-bottom: 20px;
  border: solid 1px #bdc3c7;
  width: 100%;
}
table thead,
table tfoot {
  background: #eee;
  font-weight: bold;
}
table thead tr th,
table thead tr td,
table tfoot tr th,
table tfoot tr td {
  padding: 8px 10px 10px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #465563;
  text-align: left;
}
table tr th,
table tr td {
  padding: 9px 10px;
  font-size: 14px;
  color: #465563;
}
table tr.even, table tr.alt, table tr:nth-of-type(even) {
  background: #ededed;
}
table thead tr th,
table tfoot tr th,
table tbody tr td,
table tr td,
table tfoot tr td {
  display: table-cell;
  line-height: 18px;
}

/*
| ------------------------------------
| Forms
| ------------------------------------
*/
input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea,
select,
textarea {
  font-size: 12px;
  font-family: "Lato", sans-serif;
  border: 1px solid #ccc;
  padding: 10px;
  -moz-transition: 0.25s;
  -o-transition: 0.25s;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  width: 100%;
  margin-bottom: 16px;
}

input:focus,
textarea:focus {
  outline: none;
}

button,
input[type=submit],
.btn-clone {
  background: #5A8900;
  border: 1px solid #ccc;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  color: #ecf0f1 !important;
  -moz-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  margin-bottom: 16px;
  text-transform: uppercase;
  -webkit-appearance: none;
}
button i,
input[type=submit] i,
.btn-clone i {
  margin-right: 5px;
}

.btn-small {
  padding: 7px 20px;
}

button:hover,
input[type=submit]:hover,
.btn-clone:hover {
  background: #497000;
  cursor: pointer;
}

label {
  font-family: "Lato", sans-serif;
}

/*
| ------------------------------------
| Print only styles
| ------------------------------------
*/
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 1.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
/*
| ------------------------------------
| Font Awesome 3.2.1
| ------------------------------------
*/
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("fonts/fontawesome-webfont.eot?v=3.2.1");
  src: url("fonts/fontawesome-webfont.eot?#iefix&v=3.2.1") format("embedded-opentype"), url("fonts/fontawesome-webfont.woff?v=3.2.1") format("woff"), url("fonts/fontawesome-webfont.ttf?v=3.2.1") format("truetype"), url("fonts/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* FONT AWESOME CORE
 * -------------------------- */
[class^="icon-"],
[class*=" icon-"] {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  text-decoration: inherit;
  display: inline-block;
  speak: none;
}

/* makes the font 33% larger relative to the icon container */
.icon-large:before {
  vertical-align: -10%;
  font-size: 1.33333em;
}

/* makes sure icons active on rollover in links */
a [class^="icon-"],
a [class*=" icon-"] {
  display: inline;
}

/* increased font size for icon-large */
[class^="icon-"].icon-fixed-width,
[class*=" icon-"].icon-fixed-width {
  display: inline-block;
  width: 1.14286em;
  text-align: right;
  padding-right: 0.28571em;
}
[class^="icon-"].icon-fixed-width.icon-large,
[class*=" icon-"].icon-fixed-width.icon-large {
  width: 1.42857em;
}

.icons-ul {
  margin-left: 2.14286em;
  list-style-type: none;
}
.icons-ul > li {
  position: relative;
}
.icons-ul .icon-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  text-align: center;
  line-height: inherit;
}

[class^="icon-"].hide,
[class*=" icon-"].hide {
  display: none;
}

.icon-muted {
  color: #eeeeee;
}

.icon-light {
  color: white;
}

.icon-dark {
  color: #333333;
}

.icon-border {
  border: solid 1px #eeeeee;
  padding: .2em .25em .15em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.icon-2x {
  font-size: 2em;
}
.icon-2x.icon-border {
  border-width: 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.icon-3x {
  font-size: 3em;
}
.icon-3x.icon-border {
  border-width: 3px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.icon-4x {
  font-size: 4em;
}
.icon-4x.icon-border {
  border-width: 4px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.icon-5x {
  font-size: 5em;
}
.icon-5x.icon-border {
  border-width: 5px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

[class^="icon-"].pull-left,
[class*=" icon-"].pull-left {
  margin-right: .3em;
}
[class^="icon-"].pull-right,
[class*=" icon-"].pull-right {
  margin-left: .3em;
}

/* EXTRAS
 * -------------------------- */
/* Stacked and layered icon */
.icon-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: -35%;
}
.icon-stack [class^="icon-"],
.icon-stack [class*=" icon-"] {
  display: block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 1em;
  line-height: inherit;
  *line-height: 2em;
}
.icon-stack .icon-stack-base {
  font-size: 2em;
  *line-height: 1em;
}

/* Animated rotating icon */
.icon-spin {
  display: inline-block;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}

/* Prevent stack and spinners from being taken inline when inside a link */
a .icon-stack,
a .icon-spin {
  display: inline-block;
  text-decoration: none;
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Icon rotations and mirroring */
.icon-rotate-90:before {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}

.icon-rotate-180:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}

.icon-rotate-270:before {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.icon-flip-horizontal:before {
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.icon-flip-vertical:before {
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}

/* ensure rotation occurs inside anchor tags */
a .icon-rotate-90:before, a .icon-rotate-180:before, a .icon-rotate-270:before, a .icon-flip-horizontal:before, a .icon-flip-vertical:before {
  display: inline-block;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
 * readers do not read off random characters that represent icons */
.icon-glass:before {
  content: "";
}

.icon-music:before {
  content: "";
}

.icon-search:before {
  content: "";
}

.icon-envelope-alt:before {
  content: "";
}

.icon-heart:before {
  content: "";
}

.icon-star:before {
  content: "";
}

.icon-star-empty:before {
  content: "";
}

.icon-user:before {
  content: "";
}

.icon-film:before {
  content: "";
}

.icon-th-large:before {
  content: "";
}

.icon-th:before {
  content: "";
}

.icon-th-list:before {
  content: "";
}

.icon-ok:before {
  content: "";
}

.icon-remove:before {
  content: "";
}

.icon-zoom-in:before {
  content: "";
}

.icon-zoom-out:before {
  content: "";
}

.icon-power-off:before,
.icon-off:before {
  content: "";
}

.icon-signal:before {
  content: "";
}

.icon-gear:before,
.icon-cog:before {
  content: "";
}

.icon-trash:before {
  content: "";
}

.icon-home:before {
  content: "";
}

.icon-file-alt:before {
  content: "";
}

.icon-time:before {
  content: "";
}

.icon-road:before {
  content: "";
}

.icon-download-alt:before {
  content: "";
}

.icon-download:before {
  content: "";
}

.icon-upload:before {
  content: "";
}

.icon-inbox:before {
  content: "";
}

.icon-play-circle:before {
  content: "";
}

.icon-rotate-right:before,
.icon-repeat:before {
  content: "";
}

.icon-refresh:before {
  content: "";
}

.icon-list-alt:before {
  content: "";
}

.icon-lock:before {
  content: "";
}

.icon-flag:before {
  content: "";
}

.icon-headphones:before {
  content: "";
}

.icon-volume-off:before {
  content: "";
}

.icon-volume-down:before {
  content: "";
}

.icon-volume-up:before {
  content: "";
}

.icon-qrcode:before {
  content: "";
}

.icon-barcode:before {
  content: "";
}

.icon-tag:before {
  content: "";
}

.icon-tags:before {
  content: "";
}

.icon-book:before {
  content: "";
}

.icon-bookmark:before {
  content: "";
}

.icon-print:before {
  content: "";
}

.icon-camera:before {
  content: "";
}

.icon-font:before {
  content: "";
}

.icon-bold:before {
  content: "";
}

.icon-italic:before {
  content: "";
}

.icon-text-height:before {
  content: "";
}

.icon-text-width:before {
  content: "";
}

.icon-align-left:before {
  content: "";
}

.icon-align-center:before {
  content: "";
}

.icon-align-right:before {
  content: "";
}

.icon-align-justify:before {
  content: "";
}

.icon-list:before {
  content: "";
}

.icon-indent-left:before {
  content: "";
}

.icon-indent-right:before {
  content: "";
}

.icon-facetime-video:before {
  content: "";
}

.icon-picture:before {
  content: "";
}

.icon-pencil:before {
  content: "";
}

.icon-map-marker:before {
  content: "";
}

.icon-adjust:before {
  content: "";
}

.icon-tint:before {
  content: "";
}

.icon-edit:before {
  content: "";
}

.icon-share:before {
  content: "";
}

.icon-check:before {
  content: "";
}

.icon-move:before {
  content: "";
}

.icon-step-backward:before {
  content: "";
}

.icon-fast-backward:before {
  content: "";
}

.icon-backward:before {
  content: "";
}

.icon-play:before {
  content: "";
}

.icon-pause:before {
  content: "";
}

.icon-stop:before {
  content: "";
}

.icon-forward:before {
  content: "";
}

.icon-fast-forward:before {
  content: "";
}

.icon-step-forward:before {
  content: "";
}

.icon-eject:before {
  content: "";
}

.icon-chevron-left:before {
  content: "";
}

.icon-chevron-right:before {
  content: "";
}

.icon-plus-sign:before {
  content: "";
}

.icon-minus-sign:before {
  content: "";
}

.icon-remove-sign:before {
  content: "";
}

.icon-ok-sign:before {
  content: "";
}

.icon-question-sign:before {
  content: "";
}

.icon-info-sign:before {
  content: "";
}

.icon-screenshot:before {
  content: "";
}

.icon-remove-circle:before {
  content: "";
}

.icon-ok-circle:before {
  content: "";
}

.icon-ban-circle:before {
  content: "";
}

.icon-arrow-left:before {
  content: "";
}

.icon-arrow-right:before {
  content: "";
}

.icon-arrow-up:before {
  content: "";
}

.icon-arrow-down:before {
  content: "";
}

.icon-mail-forward:before,
.icon-share-alt:before {
  content: "";
}

.icon-resize-full:before {
  content: "";
}

.icon-resize-small:before {
  content: "";
}

.icon-plus:before {
  content: "";
}

.icon-minus:before {
  content: "";
}

.icon-asterisk:before {
  content: "";
}

.icon-exclamation-sign:before {
  content: "";
}

.icon-gift:before {
  content: "";
}

.icon-leaf:before {
  content: "";
}

.icon-fire:before {
  content: "";
}

.icon-eye-open:before {
  content: "";
}

.icon-eye-close:before {
  content: "";
}

.icon-warning-sign:before {
  content: "";
}

.icon-plane:before {
  content: "";
}

.icon-calendar:before {
  content: "";
}

.icon-random:before {
  content: "";
}

.icon-comment:before {
  content: "";
}

.icon-magnet:before {
  content: "";
}

.icon-chevron-up:before {
  content: "";
}

.icon-chevron-down:before {
  content: "";
}

.icon-retweet:before {
  content: "";
}

.icon-shopping-cart:before {
  content: "";
}

.icon-folder-close:before {
  content: "";
}

.icon-folder-open:before {
  content: "";
}

.icon-resize-vertical:before {
  content: "";
}

.icon-resize-horizontal:before {
  content: "";
}

.icon-bar-chart:before {
  content: "";
}

.icon-twitter-sign:before {
  content: "";
}

.icon-facebook-sign:before {
  content: "";
}

.icon-camera-retro:before {
  content: "";
}

.icon-key:before {
  content: "";
}

.icon-gears:before,
.icon-cogs:before {
  content: "";
}

.icon-comments:before {
  content: "";
}

.icon-thumbs-up-alt:before {
  content: "";
}

.icon-thumbs-down-alt:before {
  content: "";
}

.icon-star-half:before {
  content: "";
}

.icon-heart-empty:before {
  content: "";
}

.icon-signout:before {
  content: "";
}

.icon-linkedin-sign:before {
  content: "";
}

.icon-pushpin:before {
  content: "";
}

.icon-external-link:before {
  content: "";
}

.icon-signin:before {
  content: "";
}

.icon-trophy:before {
  content: "";
}

.icon-github-sign:before {
  content: "";
}

.icon-upload-alt:before {
  content: "";
}

.icon-lemon:before {
  content: "";
}

.icon-phone:before {
  content: "";
}

.icon-unchecked:before,
.icon-check-empty:before {
  content: "";
}

.icon-bookmark-empty:before {
  content: "";
}

.icon-phone-sign:before {
  content: "";
}

.icon-twitter:before {
  content: "";
}

.icon-facebook:before {
  content: "";
}

.icon-github:before {
  content: "";
}

.icon-unlock:before {
  content: "";
}

.icon-credit-card:before {
  content: "";
}

.icon-rss:before {
  content: "";
}

.icon-hdd:before {
  content: "";
}

.icon-bullhorn:before {
  content: "";
}

.icon-bell:before {
  content: "";
}

.icon-certificate:before {
  content: "";
}

.icon-hand-right:before {
  content: "";
}

.icon-hand-left:before {
  content: "";
}

.icon-hand-up:before {
  content: "";
}

.icon-hand-down:before {
  content: "";
}

.icon-circle-arrow-left:before {
  content: "";
}

.icon-circle-arrow-right:before {
  content: "";
}

.icon-circle-arrow-up:before {
  content: "";
}

.icon-circle-arrow-down:before {
  content: "";
}

.icon-globe:before {
  content: "";
}

.icon-wrench:before {
  content: "";
}

.icon-tasks:before {
  content: "";
}

.icon-filter:before {
  content: "";
}

.icon-briefcase:before {
  content: "";
}

.icon-fullscreen:before {
  content: "";
}

.icon-group:before {
  content: "";
}

.icon-link:before {
  content: "";
}

.icon-cloud:before {
  content: "";
}

.icon-beaker:before {
  content: "";
}

.icon-cut:before {
  content: "";
}

.icon-copy:before {
  content: "";
}

.icon-paperclip:before,
.icon-paper-clip:before {
  content: "";
}

.icon-save:before {
  content: "";
}

.icon-sign-blank:before {
  content: "";
}

.icon-reorder:before {
  content: "";
}

.icon-list-ul:before {
  content: "";
}

.icon-list-ol:before {
  content: "";
}

.icon-strikethrough:before {
  content: "";
}

.icon-underline:before {
  content: "";
}

.icon-table:before {
  content: "";
}

.icon-magic:before {
  content: "";
}

.icon-truck:before {
  content: "";
}

.icon-pinterest:before {
  content: "";
}

.icon-pinterest-sign:before {
  content: "";
}

.icon-google-plus-sign:before {
  content: "";
}

.icon-google-plus:before {
  content: "";
}

.icon-money:before {
  content: "";
}

.icon-caret-down:before {
  content: "";
}

.icon-caret-up:before {
  content: "";
}

.icon-caret-left:before {
  content: "";
}

.icon-caret-right:before {
  content: "";
}

.icon-columns:before {
  content: "";
}

.icon-sort:before {
  content: "";
}

.icon-sort-down:before {
  content: "";
}

.icon-sort-up:before {
  content: "";
}

.icon-envelope:before {
  content: "";
}

.icon-linkedin:before {
  content: "";
}

.icon-rotate-left:before,
.icon-undo:before {
  content: "";
}

.icon-legal:before {
  content: "";
}

.icon-dashboard:before {
  content: "";
}

.icon-comment-alt:before {
  content: "";
}

.icon-comments-alt:before {
  content: "";
}

.icon-bolt:before {
  content: "";
}

.icon-sitemap:before {
  content: "";
}

.icon-umbrella:before {
  content: "";
}

.icon-paste:before {
  content: "";
}

.icon-lightbulb:before {
  content: "";
}

.icon-exchange:before {
  content: "";
}

.icon-cloud-download:before {
  content: "";
}

.icon-cloud-upload:before {
  content: "";
}

.icon-user-md:before {
  content: "";
}

.icon-stethoscope:before {
  content: "";
}

.icon-suitcase:before {
  content: "";
}

.icon-bell-alt:before {
  content: "";
}

.icon-coffee:before {
  content: "";
}

.icon-food:before {
  content: "";
}

.icon-file-text-alt:before {
  content: "";
}

.icon-building:before {
  content: "";
}

.icon-hospital:before {
  content: "";
}

.icon-ambulance:before {
  content: "";
}

.icon-medkit:before {
  content: "";
}

.icon-fighter-jet:before {
  content: "";
}

.icon-beer:before {
  content: "";
}

.icon-h-sign:before {
  content: "";
}

.icon-plus-sign-alt:before {
  content: "";
}

.icon-double-angle-left:before {
  content: "";
}

.icon-double-angle-right:before {
  content: "";
}

.icon-double-angle-up:before {
  content: "";
}

.icon-double-angle-down:before {
  content: "";
}

.icon-angle-left:before {
  content: "";
}

.icon-angle-right:before {
  content: "";
}

.icon-angle-up:before {
  content: "";
}

.icon-angle-down:before {
  content: "";
}

.icon-desktop:before {
  content: "";
}

.icon-laptop:before {
  content: "";
}

.icon-tablet:before {
  content: "";
}

.icon-mobile-phone:before {
  content: "";
}

.icon-circle-blank:before {
  content: "";
}

.icon-quote-left:before {
  content: "";
}

.icon-quote-right:before {
  content: "";
}

.icon-spinner:before {
  content: "";
}

.icon-circle:before {
  content: "";
}

.icon-mail-reply:before,
.icon-reply:before {
  content: "";
}

.icon-github-alt:before {
  content: "";
}

.icon-folder-close-alt:before {
  content: "";
}

.icon-folder-open-alt:before {
  content: "";
}

.icon-expand-alt:before {
  content: "";
}

.icon-collapse-alt:before {
  content: "";
}

.icon-smile:before {
  content: "";
}

.icon-frown:before {
  content: "";
}

.icon-meh:before {
  content: "";
}

.icon-gamepad:before {
  content: "";
}

.icon-keyboard:before {
  content: "";
}

.icon-flag-alt:before {
  content: "";
}

.icon-flag-checkered:before {
  content: "";
}

.icon-terminal:before {
  content: "";
}

.icon-code:before {
  content: "";
}

.icon-reply-all:before {
  content: "";
}

.icon-mail-reply-all:before {
  content: "";
}

.icon-star-half-full:before,
.icon-star-half-empty:before {
  content: "";
}

.icon-location-arrow:before {
  content: "";
}

.icon-crop:before {
  content: "";
}

.icon-code-fork:before {
  content: "";
}

.icon-unlink:before {
  content: "";
}

.icon-question:before {
  content: "";
}

.icon-info:before {
  content: "";
}

.icon-exclamation:before {
  content: "";
}

.icon-superscript:before {
  content: "";
}

.icon-subscript:before {
  content: "";
}

.icon-eraser:before {
  content: "";
}

.icon-puzzle-piece:before {
  content: "";
}

.icon-microphone:before {
  content: "";
}

.icon-microphone-off:before {
  content: "";
}

.icon-shield:before {
  content: "";
}

.icon-calendar-empty:before {
  content: "";
}

.icon-fire-extinguisher:before {
  content: "";
}

.icon-rocket:before {
  content: "";
}

.icon-maxcdn:before {
  content: "";
}

.icon-chevron-sign-left:before {
  content: "";
}

.icon-chevron-sign-right:before {
  content: "";
}

.icon-chevron-sign-up:before {
  content: "";
}

.icon-chevron-sign-down:before {
  content: "";
}

.icon-html5:before {
  content: "";
}

.icon-css3:before {
  content: "";
}

.icon-anchor:before {
  content: "";
}

.icon-unlock-alt:before {
  content: "";
}

.icon-bullseye:before {
  content: "";
}

.icon-ellipsis-horizontal:before {
  content: "";
}

.icon-ellipsis-vertical:before {
  content: "";
}

.icon-rss-sign:before {
  content: "";
}

.icon-play-sign:before {
  content: "";
}

.icon-ticket:before {
  content: "";
}

.icon-minus-sign-alt:before {
  content: "";
}

.icon-check-minus:before {
  content: "";
}

.icon-level-up:before {
  content: "";
}

.icon-level-down:before {
  content: "";
}

.icon-check-sign:before {
  content: "";
}

.icon-edit-sign:before {
  content: "";
}

.icon-external-link-sign:before {
  content: "";
}

.icon-share-sign:before {
  content: "";
}

.icon-compass:before {
  content: "";
}

.icon-collapse:before {
  content: "";
}

.icon-collapse-top:before {
  content: "";
}

.icon-expand:before {
  content: "";
}

.icon-euro:before,
.icon-eur:before {
  content: "";
}

.icon-gbp:before {
  content: "";
}

.icon-dollar:before,
.icon-usd:before {
  content: "";
}

.icon-rupee:before,
.icon-inr:before {
  content: "";
}

.icon-yen:before,
.icon-jpy:before {
  content: "";
}

.icon-renminbi:before,
.icon-cny:before {
  content: "";
}

.icon-won:before,
.icon-krw:before {
  content: "";
}

.icon-bitcoin:before,
.icon-btc:before {
  content: "";
}

.icon-file:before {
  content: "";
}

.icon-file-text:before {
  content: "";
}

.icon-sort-by-alphabet:before {
  content: "";
}

.icon-sort-by-alphabet-alt:before {
  content: "";
}

.icon-sort-by-attributes:before {
  content: "";
}

.icon-sort-by-attributes-alt:before {
  content: "";
}

.icon-sort-by-order:before {
  content: "";
}

.icon-sort-by-order-alt:before {
  content: "";
}

.icon-thumbs-up:before {
  content: "";
}

.icon-thumbs-down:before {
  content: "";
}

.icon-youtube-sign:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

.icon-xing:before {
  content: "";
}

.icon-xing-sign:before {
  content: "";
}

.icon-youtube-play:before {
  content: "";
}

.icon-dropbox:before {
  content: "";
}

.icon-stackexchange:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-flickr:before {
  content: "";
}

.icon-adn:before {
  content: "";
}

.icon-bitbucket:before {
  content: "";
}

.icon-bitbucket-sign:before {
  content: "";
}

.icon-tumblr:before {
  content: "";
}

.icon-tumblr-sign:before {
  content: "";
}

.icon-long-arrow-down:before {
  content: "";
}

.icon-long-arrow-up:before {
  content: "";
}

.icon-long-arrow-left:before {
  content: "";
}

.icon-long-arrow-right:before {
  content: "";
}

.icon-apple:before {
  content: "";
}

.icon-windows:before {
  content: "";
}

.icon-android:before {
  content: "";
}

.icon-linux:before {
  content: "";
}

.icon-dribbble:before {
  content: "";
}

.icon-skype:before {
  content: "";
}

.icon-foursquare:before {
  content: "";
}

.icon-trello:before {
  content: "";
}

.icon-female:before {
  content: "";
}

.icon-male:before {
  content: "";
}

.icon-gittip:before {
  content: "";
}

.icon-sun:before {
  content: "";
}

.icon-moon:before {
  content: "";
}

.icon-archive:before {
  content: "";
}

.icon-bug:before {
  content: "";
}

.icon-vk:before {
  content: "";
}

.icon-weibo:before {
  content: "";
}

.icon-renren:before {
  content: "";
}

/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 * CSS rewritten into SCSS: Tyce Clee (@iamtyce) 6/11/12
 */
/* Browser Resets */
.flex-container a:active, .flexslider a:active, .flex-container a:focus, .flexslider a:focus {
  outline: none;
}

.slides, .flex-control-nav, .flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}
.flexslider .slides img {
  width: 100%;
  display: block;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .slides {
  display: block;
}

* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block;
}

/* FlexSlider Default Theme
*********************************/
.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  zoom: 1;
}

.flex-viewport {
  max-height: 2000px;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
}

.carousel li {
  margin-right: 5px;
}

/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  width: 30px;
  height: 30px;
  margin: -20px 0 0;
  display: block;
  background: url("/img/bg_direction_nav.png") no-repeat 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  text-indent: -9999px;
  opacity: 0;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.flex-direction-nav a.flex-next {
  background-position: 100% 0;
  right: -36px;
}
.flex-direction-nav a.flex-prev {
  left: -36px;
}

.flexslider:hover .flex-next {
  opacity: 0.8;
  right: 5px;
}
.flexslider:hover .flex-prev {
  opacity: 0.8;
  left: 5px;
}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: 0.3 !important;
  filter: alpha(opacity=30);
  cursor: default;
}

/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}
.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 0;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 0;
  }
}
/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sf-menu li {
  position: relative;
}

.sf-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.sf-menu > li {
  float: left;
}

.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
  display: block;
}

.sf-menu a {
  display: block;
  position: relative;
}

.sf-menu ul ul {
  top: 0;
  left: 100%;
}

/*** DEMO SKIN ***/
.sf-menu {
  float: right;
  margin-bottom: 0;
  margin-top: 20px;
}

.sf-menu ul {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  min-width: 12em;
  /* allow long menu items to determine submenu width */
  *width: 12em;
  /* no auto sub width for IE7, see white-space comment below */
}

.sf-menu a {
  padding: 10px 15px;
  text-decoration: none;
  zoom: 1;
  /* IE7 */
  font-family: "Lato", sans-serif;
}

.sf-menu a {
  color: #465563;
  font-weight: bold;
}

.sf-menu > li.menu-last-item a {
  padding-right: 0;
}

.sf-menu li {
  white-space: nowrap;
  /* no need for Supersubs plugin */
  *white-space: normal;
  /* ...unless you support IE7 (let it wrap) */
  -webkit-transition: background .2s;
  transition: background .2s;
}
.sf-menu li.current-menu-item a {
  color: #5A8900;
}
.sf-menu li .sub-menu li a {
  color: #7f8c8d;
  font-weight: normal;
}
.sf-menu li .sub-menu li a:hover {
  color: #5A8900;
}

.sf-menu ul li {
  background: white;
  border-bottom: 1px dashed #ecf0f1;
}
.sf-menu ul li:first-child {
  border-top: 3px solid #5A8900;
}
.sf-menu ul li:last-child {
  border-bottom: none;
}

.sf-menu ul ul li {
  background: #fafafa;
}
.sf-menu ul ul li:first-child {
  border-top: none;
}
.sf-menu ul ul li:last-child {
  border-bottom: none;
}

.sf-menu li:hover,
.sf-menu li.sfHover {
  /* only transition out, not in */
  -webkit-transition: none;
  transition: none;
}
.sf-menu li:hover a,
.sf-menu li.sfHover a {
  color: #5A8900;
}

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
  padding-right: 2.5em;
  *padding-right: 1em;
  /* no CSS arrows for IE7 (lack pseudo-elements) */
}

/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1.2em;
  margin-top: -1px;
  height: 0;
  width: 0;
  /* order of following 3 rules important for fallbacks to work */
  border: 5px solid transparent;
  border-top-color: #bdc3c7;
  /* edit this to suit design (no rgba in IE8) */
}

.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
  border-top-color: #5A8900;
  /* IE8 fallback colour */
}

/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
  margin-top: -5px;
  margin-right: -3px;
  border-color: transparent;
  border-left-color: #bdc3c7;
  /* edit this to suit design (no rgba in IE8) */
}

.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
  border-left-color: #5A8900;
}

/*
| ------------------------------------
| Global Styles
| ------------------------------------
*/
body {
  background: url(../images/main-bg.jpg) fixed;
}

.telephone-number {
  font-weight: bold;
}

.wrapper {
  *zoom: 1;
  max-width: 1098px;
  max-width: 78.42857rem;
  _width: 1098px;
  padding-left: 0px;
  padding-left: 0rem;
  padding-right: 0px;
  padding-right: 0rem;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  -webkit-box-shadow: 0px -1px 22px 9px rgba(50, 50, 50, 0.56);
  -moz-box-shadow: 0px -1px 22px 9px rgba(50, 50, 50, 0.56);
  box-shadow: 0px -1px 22px 9px rgba(50, 50, 50, 0.56);
}
.wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.message {
  margin: 0 auto 20px auto;
  padding: 20px;
}
.message li {
  list-style: none;
  margin: 0 10px;
}
.message.errors {
  background: #e74c3c;
  color: white;
}
.message.success {
  background: #5A8900;
  color: white;
}
.message a {
  color: white;
}

.magic-accordion {
  clear: both;
}
.magic-accordion .head {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background: #5A8900;
  color: white;
  font-weight: bold;
  margin: 0;
  border-bottom: 1px dotted white;
}
.magic-accordion .head i {
  margin-right: 10px;
}
.magic-accordion .head.active {
  background: #65ac66;
}
.magic-accordion .body {
  padding: 20px;
  border-left: 1px dotted #65ac66;
  border-right: 1px dotted #65ac66;
  border-bottom: 1px dotted #65ac66;
}

@media (min-width: 500px) {
  .half-width {
    width: 48.64572%;
    float: left;
    margin-right: 2.70856%;
  }

  .last-col {
    float: right;
    margin-right: 0;
  }
}
.btn {
  background: #65ac66;
  padding: 8px 10px;
  color: white !important;
}
.btn:hover {
  background: #5A8900;
}

/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   speak for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.modal_over {
  display: none;
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #5A8900 url("/images/loader.gif") 50% 50% no-repeat;
  opacity: 0.8;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading {
  overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .modal_over {
  display: block;
}

.field-row {
  *zoom: 1;
  max-width: 1098px;
  max-width: 78.42857rem;
  _width: 1098px;
  padding-left: 0px;
  padding-left: 0rem;
  padding-right: 0px;
  padding-right: 0rem;
  margin-left: auto;
  margin-right: auto;
}
.field-row:after {
  content: "";
  display: table;
  clear: both;
}
.field-row .span-2 {
  width: 14.40953%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
.field-row .span-3 {
  width: 22.96858%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
.field-row .span-4 {
  width: 31.52763%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
.field-row .span-5 {
  width: 40.08667%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
.field-row .span-6 {
  width: 48.64572%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
.field-row .field:last-child {
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
}

/*======================================================================
  Selectric
======================================================================*/
.selectricWrapper {
  position: relative;
  margin: 0 0 10px;
  width: 100%;
  cursor: pointer;
}

.selectricResponsive {
  width: 100%;
}

.selectric {
  border: 1px solid #ccc;
  position: relative;
  border-radius: 2px;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 30px 0 0;
  padding: 10px;
  font-size: 12px;
  line-height: 15px;
  color: black;
  min-height: 18px;
}

.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 35px;
  color: #BBB;
  text-align: center;
  font: 0/0 a;
  /* IE Fix */
  *font: 20px/30px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #BBB;
  border-bottom: none;
}

.selectricHover .selectric {
  border-color: #CCC;
}

.selectricHover .selectric .button {
  color: #888;
}

.selectricHover .selectric .button:after {
  border-top-color: #888;
}

.selectricOpen {
  z-index: 9999;
}

.selectricOpen .selectric {
  border-color: #CCC;
  background: #F0F0F0;
}

.selectricOpen .selectricItems {
  display: block;
}

.selectricDisabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectricHideSelect {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectricHideSelect select {
  position: absolute;
  left: -100%;
  display: none;
}

.selectricInput {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectricTempShow {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectricItems {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F9F9F9;
  border: 1px solid #CCC;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
}

.selectricItems .selectricScroll {
  height: 100%;
  overflow: auto;
}

.selectricAbove .selectricItems {
  top: auto;
  bottom: 100%;
}

.selectricItems ul, .selectricItems li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px;
}

.selectricItems li {
  display: block;
  padding: 5px;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #EEE;
  color: #666;
  cursor: pointer;
}

.selectricItems li.selected {
  background: #EFEFEF;
  color: #444;
  border-top-color: #E0E0E0;
}

.selectricItems li:hover {
  background: #F0F0F0;
  color: #444;
}

.selectricItems li.disabled {
  background: #F5F5F5;
  color: #BBB;
  border-top-color: #FAFAFA;
  cursor: default;
}

.jump-link {
  font-size: 14px;
  text-transform: uppercase;
}

/*
| ------------------------------------
| Header
| ------------------------------------
*/
.site-header {
  *zoom: 1;
  max-width: 1098px;
  max-width: 78.42857rem;
  _width: 1098px;
  padding-left: 0px;
  padding-left: 0rem;
  padding-right: 0px;
  padding-right: 0rem;
  margin-left: auto;
  margin-right: auto;
  border-top: 10px solid #5A8900;
  background: #fff;
  padding: 20px 50px;
}
.site-header:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 0px) and (max-width: 780px) {
  .site-header {
    padding: 20px 25px;
  }
}
.site-header .main-nav {
  width: 82.88191%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
@media (min-width: 0px) and (max-width: 1098px) {
  .site-header .main-nav {
    width: 48.64572%;
    float: left;
    margin-right: 2.70856%;
  }
}
.site-header .main-nav .topbar-menu-toggle {
  display: none;
}
@media (min-width: 0px) and (max-width: 1098px) {
  .site-header .main-nav .topbar-menu-toggle {
    display: block;
    width: 100%;
  }
}
.site-header .main-nav ul {
  margin: 0px;
}
@media (min-width: 0px) and (max-width: 1098px) {
  .site-header .main-nav ul {
    display: none;
  }
}
.site-header .main-nav ul .social {
  margin-right: 2px;
}
.site-header .main-nav ul li {
  display: inline-block;
  color: #7f8c8d;
  margin-right: 15px;
  list-style: none;
}
@media (min-width: 0px) and (max-width: 1098px) {
  .site-header .main-nav ul li {
    display: block;
  }
}
.site-header .main-nav ul li:last-child {
  margin-right: 0px;
}
.site-header .main-nav ul li a {
  color: #7f8c8d;
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.site-header .main-nav ul li a:hover {
  color: #5A8900;
}
.site-header .main-nav ul li a i {
  font-size: 18px;
  color: #5A8900;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.site-header .main-nav ul li a i:hover {
  color: #65ac66;
}
.site-header .account-menu {
  width: 14.40953%;
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
}
@media (min-width: 0px) and (max-width: 1098px) {
  .site-header .account-menu {
    width: 48.64572%;
    float: right;
    margin-right: 0;
  }
}
.site-header .account-menu .account-menu-toggle {
  display: none;
}
@media (min-width: 0px) and (max-width: 1098px) {
  .site-header .account-menu .account-menu-toggle {
    display: block;
    width: 100%;
  }
}
.site-header .account-menu ul {
  margin: 0px;
  float: right;
}
@media (min-width: 0px) and (max-width: 1098px) {
  .site-header .account-menu ul {
    float: none;
  }
}
@media (min-width: 0px) and (max-width: 1098px) {
  .site-header .account-menu ul {
    display: none;
  }
}
.site-header .account-menu ul li {
  display: inline-block;
  margin-right: 15px;
  list-style: none;
}
@media (min-width: 0px) and (max-width: 1098px) {
  .site-header .account-menu ul li {
    display: block;
    text-align: left;
  }
}
.site-header .account-menu ul li:last-child {
  margin-right: 0px;
}
.site-header .account-menu ul li a {
  color: #65ac66;
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.site-header .account-menu ul li a:hover {
  color: #7f8c8d;
}

.main-header {
  background: #fff;
  padding: 0px 50px 0px 50px;
  overflow: hidden;
}
@media (min-width: 0px) and (max-width: 780px) {
  .main-header {
    padding: 0px 25px 0px 25px;
  }
}
.main-header .main-menu-toggle {
  display: none;
}
@media (min-width: 0px) and (max-width: 500px) {
  .main-header .main-menu-toggle {
    display: block;
    width: 100%;
  }
}
.main-header .main-logo-mobile {
  display: none;
}
.main-header .main-logo-mobile img {
  max-width: 250px;
  margin: 0 auto;
  display: block;
}
@media (min-width: 0px) and (max-width: 1098px) {
  .main-header .main-logo-mobile {
    display: block;
    margin-bottom: 20px;
  }
}
.main-header .border {
  border-bottom: 1px solid #65ac66;
  overflow: hidden;
  padding-bottom: 10px;
  margin-bottom: 30px;
  width: 100%;
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
}
@media (min-width: 0px) and (max-width: 978px) {
  .main-header .border {
    margin-bottom: 20px;
  }
}
.main-header .category-nav-left {
  vertical-align: top;
  width: 31.52763%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
  margin-top: 30px;
  margin-right: 0;
}
@media (min-width: 0px) and (max-width: 1098px) {
  .main-header .category-nav-left {
    width: 50%;
    margin-top: 0;
  }
}
.main-header .category-nav-left ul {
  margin: 0px;
}
@media (min-width: 0px) and (max-width: 500px) {
  .main-header .category-nav-left ul {
    display: none;
    float: none;
  }
}
.main-header .category-nav-left ul li {
  vertical-align: top;
  list-style: none;
  display: inline-block;
  width: 32%;
  text-align: center;
}
.main-header .category-nav-left ul li:last-child {
  margin-right: 0px;
}
.main-header .category-nav-left ul li span {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
.main-header .category-nav-left ul li a {
  color: #000;
  display: block;
  font-weight: bold;
  font-size: 14px;
}
.main-header .category-nav-left ul li a:hover {
  color: #65ac66;
}
@media (min-width: 0px) and (max-width: 500px) {
  .main-header .category-nav-left ul li {
    display: block;
    width: 100%;
  }
  .main-header .category-nav-left ul li span {
    width: 10%;
    margin-right: 10px;
    display: inline-block;
  }
}
.main-header .main-logo {
  width: 31.52763%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
  text-align: center;
  padding: 30px 0;
}
@media (min-width: 0px) and (max-width: 1098px) {
  .main-header .main-logo {
    display: none;
  }
}
.main-header .main-logo img {
  width: 200px;
}
.main-header .category-nav-right {
  width: 31.52763%;
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
  margin-top: 30px;
}
@media (min-width: 0px) and (max-width: 1098px) {
  .main-header .category-nav-right {
    width: 50%;
    margin-top: 0;
  }
}
.main-header .category-nav-right ul {
  margin: 0px;
}
@media (min-width: 0px) and (max-width: 1098px) {
  .main-header .category-nav-right ul {
    float: none;
  }
}
@media (min-width: 0px) and (max-width: 500px) {
  .main-header .category-nav-right ul {
    display: none;
    float: none;
  }
}
.main-header .category-nav-right ul li {
  vertical-align: top;
  list-style: none;
  display: inline-block;
  width: 32%;
  text-align: center;
}
.main-header .category-nav-right ul li:last-child {
  margin-right: 0px;
}
.main-header .category-nav-right ul li span {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
.main-header .category-nav-right ul li a {
  color: #333333;
  display: block;
  font-weight: bold;
  font-size: 14px;
}
.main-header .category-nav-right ul li a:hover {
  color: #65ac66;
}
@media (min-width: 0px) and (max-width: 500px) {
  .main-header .category-nav-right ul li {
    display: block;
    width: 100%;
  }
  .main-header .category-nav-right ul li span {
    width: 10%;
    margin-right: 10px;
    display: inline-block;
  }
}

.contact-header {
  background: #fff;
  padding: 20px 50px 40px 50px;
  overflow: hidden;
}
@media (min-width: 0px) and (max-width: 978px) {
  .contact-header {
    padding-top: 0px;
    padding-bottom: 20px;
  }
}
@media (min-width: 0px) and (max-width: 780px) {
  .contact-header {
    padding: 0px 25px 20px 25px;
  }
}
.contact-header .details {
  width: 40.08667%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
  padding: 10px 0;
}
@media (min-width: 0px) and (max-width: 978px) {
  .contact-header .details {
    display: none;
  }
}
.contact-header .details ul {
  margin: 0px;
}
.contact-header .details ul li {
  list-style: none;
  display: inline;
  margin-right: 15px;
}
.contact-header .details ul li:last-child {
  margin-right: 0px;
}
.contact-header .details ul li a {
  color: #333333;
}
.contact-header .details ul li i {
  color: #5A8900;
  margin-right: 5px;
}
.contact-header .searchbar {
  width: 31.52763%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
@media (min-width: 500px) and (max-width: 978px) {
  .contact-header .searchbar {
    width: 48.64572%;
    float: left;
    margin-right: 2.70856%;
  }
}
@media (min-width: 0px) and (max-width: 500px) {
  .contact-header .searchbar {
    width: 100%;
    float: left;
    margin-right: 2.70856%;
    margin-bottom: 20px;
  }
}
.contact-header .searchbar form {
  border-left: 1px solid #65ac66;
  border-top: 1px solid #65ac66;
  border-bottom: 1px solid #65ac66;
  border-radius: 5px 5px 5px 5px;
  padding: 0px 0px 0px 10px;
}
.contact-header .searchbar form input {
  display: inline;
}
.contact-header .searchbar form input[type="text"] {
  width: 77%;
  border: none;
  margin: 0px;
  padding: 0px;
}
.contact-header .searchbar form input[type="submit"] {
  text-transform: uppercase;
  border-radius: 5px;
  background: #65ac66;
  margin: 0px;
  color: #fff;
  border: none;
  padding: 11px;
  margin-right: -5px;
  width: 23%;
}
.contact-header .searchbar form input[type="submit"]:hover {
  cursor: pointer;
}
.contact-header .cart-btns {
  width: 22.96858%;
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
}
@media (min-width: 500px) and (max-width: 978px) {
  .contact-header .cart-btns {
    width: 48.64572%;
    float: right;
    margin-right: 0;
  }
}
@media (min-width: 0px) and (max-width: 500px) {
  .contact-header .cart-btns {
    width: 100%;
    float: right;
    margin-right: 0;
  }
}
.contact-header .cart-btns ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.contact-header .cart-btns ul li {
  display: block;
  float: left;
  width: 50%;
}
.contact-header .cart-btns ul li:last-child {
  float: right;
  width: 40%;
  padding-top: 0;
}
.contact-header .cart-btns .cart-items {
  padding: 8px 10px;
  border: 1px solid #65ac66;
  border-radius: 5px;
  width: 100%;
  display: inline-block;
  margin-right: 10px;
  color: #333333;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.contact-header .cart-btns .cart-items:hover {
  background: #65ac66;
  color: #fff;
}
.contact-header .cart-btns .cart-items:hover span {
  color: #fff;
}
.contact-header .cart-btns .cart-items span {
  color: #65ac66;
  margin-right: 5px;
}
.contact-header .cart-btns .sale-items {
  max-width: 83px;
  background: #e74c3c;
  color: #fff;
  text-transform: uppercase;
  display: block;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
  overflow: hidden;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.contact-header .cart-btns .sale-items:hover {
  background: #c83d2f;
}
.contact-header .cart-btns .sale-items span {
  float: left;
  font-size: 21px;
  width: 15%;
  margin-right: 13px;
}

.info-banner {
  width: 92%;
  margin: 0 auto;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 50px;
}

/*
| ------------------------------------
| Home
| ------------------------------------
*/
.home-top {
  padding: 0 50px 30px 50px;
  overflow: hidden;
}
@media (min-width: 0px) and (max-width: 780px) {
  .home-top {
    padding: 0 25px 30px 25px;
  }
}
.home-top #main-banner {
  width: 74.32286%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
@media (min-width: 0px) and (max-width: 1100px) {
  .home-top #main-banner {
    width: 100%;
    float: right;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.home-top .logos {
  width: 22.96858%;
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
}
@media (min-width: 0px) and (max-width: 1100px) {
  .home-top .logos {
    width: 100%;
    float: right;
    margin-right: 0;
  }
  .home-top .logos ul {
    margin: 0px;
    float: none !important;
  }
}
.home-top .logos ul {
  margin: 0px;
  float: right;
}
.home-top .logos ul li {
  list-style: none;
  margin-bottom: 24px;
}
@media (min-width: 501px) and (max-width: 1100px) {
  .home-top .logos ul li {
    width: 22.96858%;
    float: left;
    margin-right: 2.70856%;
  }
  .home-top .logos ul li:nth-child(4n) {
    float: right;
    margin-right: 0;
  }
}
@media (min-width: 0px) and (max-width: 500px) {
  .home-top .logos ul li {
    width: 48.64572%;
    float: left;
    margin-right: 2.70856%;
  }
  .home-top .logos ul li:nth-child(2n) {
    float: right;
    margin-right: 0;
  }
}
.home-top .logos ul li:last-child {
  margin-bottom: 0px;
}

.home-middle {
  padding: 0 50px 0px 50px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (min-width: 0px) and (max-width: 780px) {
  .home-middle {
    padding: 0 25px 0px 25px;
  }
}
.home-middle .shop-by-brand {
  width: 31.52763%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
@media (min-width: 0px) and (max-width: 780px) {
  .home-middle .shop-by-brand {
    width: 100%;
    float: right;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.home-middle .shop-by-brand h3 {
  font-size: 24px;
}
.home-middle .brands {
  width: 65.76381%;
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
}
@media (min-width: 0px) and (max-width: 780px) {
  .home-middle .brands {
    width: 100%;
    float: right;
    margin-right: 0;
  }
}
.home-middle .brands .item {
  border: 1px solid #65ac66;
}
.home-middle .brands .item a {
  min-height: 130px;
  display: block;
}
.home-middle .brands .item a img {
  max-height: 130px;
  max-width: 80%;
  margin: 0 auto;
}
.home-middle .border {
  border-bottom: 1px solid #65ac66;
  border-top: 1px solid #65ac66;
  overflow: hidden;
  padding: 30px 0;
}

.home-filters {
  padding: 0 50px 30px 50px;
  overflow: hidden;
}
@media (min-width: 0px) and (max-width: 780px) {
  .home-filters {
    padding: 0 25px 30px 25px;
  }
}
.home-filters .by-range {
  width: 48.64572%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
  background: url(../images/shop-by-range.jpg) no-repeat;
  height: 160px;
  padding: 35px 85px;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 475px) {
  .home-filters .by-range {
    width: 100%;
    float: right;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 475px) and (max-width: 650px) {
  .home-filters .by-range {
    padding: 20px 60px;
  }
}
.home-filters .by-range h4 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 0px 8px black;
}
.home-filters .in-bulk {
  width: 48.64572%;
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
  background: url(../images/shop-in-bulk.jpg) no-repeat;
  height: 160px;
  padding: 35px 85px;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 475px) {
  .home-filters .in-bulk {
    width: 100%;
    float: right;
    margin-right: 0;
  }
}
@media (min-width: 475px) and (max-width: 650px) {
  .home-filters .in-bulk {
    padding: 20px 60px;
  }
}
.home-filters .in-bulk h4 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 0px 8px black;
}

.home-latest {
  padding: 0 50px 30px 50px;
  overflow: hidden;
}
@media (min-width: 0px) and (max-width: 780px) {
  .home-latest {
    padding: 0 25px 30px 25px;
  }
}
.home-latest h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.home-latest .posts {
  width: 65.76381%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
@media (min-width: 0px) and (max-width: 780px) {
  .home-latest .posts {
    width: 100%;
    float: right;
    margin-right: 0;
  }
}
.home-latest .posts .post-excerpt {
  width: 47.94069%;
  float: left;
  margin-right: 4.11862%;
  display: inline;
}
@media (min-width: 501px) and (max-width: 780px) {
  .home-latest .posts .post-excerpt {
    width: 48.64572%;
    float: left;
    margin-right: 2.70856%;
  }
}
@media (min-width: 0px) and (max-width: 500px) {
  .home-latest .posts .post-excerpt {
    width: 100%;
    float: right;
    margin-right: 0;
  }
}
.home-latest .posts .post-excerpt:nth-child(2n) {
  float: right;
  margin-right: 0;
  *margin-left: -25px;
}
.home-latest .posts .post-excerpt h4 {
  font-size: 20px;
  margin-bottom: 3px;
}
.home-latest .posts .post-excerpt a {
  color: #65ac66;
  text-decoration: underline;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.home-latest .posts .post-excerpt a:hover {
  color: #333;
}
.home-latest .signup {
  width: 31.52763%;
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
}
@media (min-width: 0px) and (max-width: 780px) {
  .home-latest .signup {
    width: 100%;
    float: right;
    margin-right: 0;
  }
}
.home-latest .signup input[type="text"], .home-latest .signup input[type="email"] {
  margin: 0px;
  border-radius: 5px;
  border: 1px solid #9e7241;
  margin-bottom: 10px;
}
.home-latest .signup input[type="submit"] {
  background: #2ecc71;
  border: none;
  text-transform: uppercase;
  font-size: 16px;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.home-latest .signup input[type="submit"]:hover {
  background: #28ac60;
}
.home-latest .signup .no-spam {
  font-size: 12px;
  font-style: italic;
  color: #5A8900;
}
.home-latest .signup .no-spam a {
  color: #5A8900;
  text-decoration: underline;
}

.tagline {
  padding: 20px 150px;
  overflow: hidden;
  background: #5e4427;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 781px) and (max-width: 1055px) {
  .tagline {
    padding: 20px 70px;
  }
  .tagline h5 {
    padding: 0 35px;
  }
}
@media (min-width: 0px) and (max-width: 780px) {
  .tagline {
    padding: 20px 70px;
  }
  .tagline h5 {
    font-size: 18px !important;
    padding: 0 35px;
  }
  .tagline span {
    font-size: 65px !important r;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .tagline {
    padding: 20px 20px;
  }
  .tagline span {
    font-size: 50px !important;
  }
  .tagline h5 {
    font-size: 14px !important;
  }
}
.tagline h5 {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
  margin-bottom: 0px;
  color: #fff;
  font-size: 24px;
  position: relative;
}
.tagline h5 span {
  color: #5A8900;
  font-size: 84px;
}
.tagline h5 .first {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 60px;
}
.tagline h5 .last {
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 0px;
}

.home-categories {
  padding: 10px 50px 30px 50px;
  overflow: hidden;
}
@media (min-width: 0px) and (max-width: 780px) {
  .home-categories {
    padding: 10px 25px 30px 25px;
  }
}
@media (min-width: 0px) and (max-width: 780px) {
  .home-categories {
    text-align: center;
  }
}
.home-categories h2 {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 0px;
  background: url(../images/leaf-icon.png) no-repeat;
  background-position: 0 50%;
  padding-left: 17px;
}
.home-categories h2 a {
  color: #333333;
  text-decoration: underline;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.home-categories h2 a:hover {
  color: #5A8900;
}
.home-categories p {
  font-size: 12px;
}
.home-categories .category-excerpt {
  width: 31.52763%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
  margin-bottom: 25px;
}
@media (min-width: 501px) and (max-width: 780px) {
  .home-categories .category-excerpt {
    width: 48.64572%;
    float: left;
    margin-right: 2.70856%;
  }
  .home-categories .category-excerpt:nth-child(2n) {
    float: right;
    margin-right: 0;
  }
}
@media (min-width: 0px) and (max-width: 500px) {
  .home-categories .category-excerpt {
    width: 100%;
    float: right;
    margin-right: 0;
  }
}
.home-categories .category-excerpt:nth-child(3n) {
  float: right;
  margin-right: 0;
  *margin-left: -25px;
}

/*
| ------------------------------------
| Product Styles
| ------------------------------------
*/
.product-header form, .product-details form {
  width: 200px !important;
}
.product-header form .add-basket input[name='qty'], .product-details form .add-basket input[name='qty'] {
  width: 50px !important;
  height: 29px !important;
}
.product-header form .add-basket input[name='submit'], .product-details form .add-basket input[name='submit'] {
  width: 150px !important;
  height: 29px !important;
}

.product-header .header-details {
  float: left;
  width: 30%;
  margin-left: 20px;
}
.product-header .header-details .add-basket {
  clear: both;
  overflow: hidden;
}
.product-header .header-details .add-basket input[type="text"] {
  box-sizing: border-box;
  border-color: #5A8900;
  width: 15%;
  padding: 5px 10px;
  margin: 0;
  float: left;
  border-radius: 3px 0 0 3px;
}
.product-header .header-details .add-basket button, .product-header .header-details .add-basket input[type="submit"] {
  box-sizing: border-box;
  width: 85%;
  margin: 0;
  padding: 6px 20px;
  border-radius: 0 3px 3px 0;
  border: none;
  float: right;
}
.product-header .header-details .add-basket.case input[type="submit"], .product-header .header-details .add-basket.case button {
  background: #65ac66;
}
.product-header .header-details .add-basket.case input[type="text"] {
  border-color: #65ac66;
}
.product-header .header-details .item-price, .product-header .header-details .case-discount {
  font-weight: bold;
  margin-bottom: 3px;
}
.product-header .header-details .item-price strike, .product-header .header-details .case-discount strike {
  opacity: 0.3;
}
.product-header .header-details .item-price span.saving, .product-header .header-details .case-discount span.saving {
  color: red !important;
}
.product-header .prod-image-con {
  width: 33%;
  float: left;
  border: 1px solid #d9dcde;
}
.product-header .prod-image-con img {
  display: block;
  margin: 40px auto;
}
.product-header .delivery-link {
  float: right;
}
.product-header .cvp {
  float: left;
  width: 30%;
}

.product-details {
  clear: both;
  padding-top: 20px;
}
.product-details .tags {
  font-size: 10px;
  font-weight: bold;
  color: #65ac66;
  min-height: 30px;
  text-transform: uppercase;
}
.product-details .tags span {
  margin-right: 5px;
}
.product-details .case-discount span {
  font-size: 11px;
}
.product-details .case-discount span.saving {
  color: red !important;
}
.product-details .add-basket {
  clear: both;
  overflow: hidden;
}
.product-details .add-basket input[type="text"] {
  box-sizing: border-box;
  border-color: #5A8900;
  width: 15%;
  padding: 5px 10px;
  margin: 0;
  float: left;
  border-radius: 3px 0 0 3px;
}
.product-details .add-basket button, .product-details .add-basket input[type="submit"] {
  box-sizing: border-box;
  width: 85%;
  margin: 0;
  padding: 6px 20px;
  border-radius: 0 3px 3px 0;
  border: none;
  float: right;
}
.product-details .add-basket.case input[type="submit"], .product-details .add-basket.case button {
  background: #65ac66;
}
.product-details .add-basket.case input[type="text"] {
  border-color: #65ac66;
}
.product-details .item-price, .product-details .case-discount {
  font-weight: bold;
  margin-bottom: 3px;
}
.product-details .item-price strike, .product-details .case-discount strike {
  opacity: 0.3;
}
.product-details .item-price span, .product-details .case-discount span {
  font-size: 11px;
}
.product-details .item-price span.saving, .product-details .case-discount span.saving {
  color: red !important;
}

@media only screen and (max-width: 480px) {
  .product-header .header-details {
    float: none !important;
    width: 98% !important;
    margin-left: 0px !important;
    margin-top: 20px !important;
  }
  .product-header .prod-image-con {
    width: 98% !important;
    float: none !important;
  }
  .product-header .delivery-link {
    margin-bottom: 20px;
  }
  .product-header .cvp {
    width: 98% !important;
  }
}
/*
| ------------------------------------
| Category
| ------------------------------------
*/
@media (min-width: 780px) {
  .filters {
    width: 14.40953%;
    float: left;
    margin-right: 2.70856%;
  }
}
.filters .filter-toggle {
  display: none;
}
@media (min-width: 0px) and (max-width: 780px) {
  .filters .filter-toggle {
    display: block;
    width: 100%;
  }
}
@media (min-width: 0px) and (max-width: 780px) {
  .filters .filter-items {
    display: none;
  }
}
.filters ul {
  list-style: none;
  margin: 0;
}
.filters ul li {
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}
.filters ul li label:hover {
  cursor: pointer;
}
.filters ul li:hover {
  cursor: pointer;
  -o-text-overflow: inherit;
  text-overflow: inherit;
  overflow: visible;
}
.filters nav {
  margin-bottom: 20px;
}

.list-controls {
  margin-bottom: 40px;
}
.list-controls form {
  width: 48.64572%;
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
}

@media (min-width: 780px) {
  .products-container {
    width: 82.88191%;
    float: right;
    margin-right: 0;
  }
}

.all-cats-list {
  list-style: none;
  margin: 0;
  *zoom: 1;
  max-width: 1098px;
  max-width: 78.42857rem;
  _width: 1098px;
  padding-left: 0px;
  padding-left: 0rem;
  padding-right: 0px;
  padding-right: 0rem;
  margin-left: auto;
  margin-right: auto;
}
.all-cats-list:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 978px) {
  .all-cats-list > li {
    width: 22.96858%;
    float: left;
    margin-right: 2.70856%;
  }
  .all-cats-list > li:nth-child(4n) {
    float: right;
    margin-right: 0;
  }
  .all-cats-list > li:nth-child(4n+1) {
    clear: left;
  }
}
@media (min-width: 0px) and (max-width: 978px) {
  .all-cats-list > li {
    width: 48.64572%;
    float: left;
    margin-right: 2.70856%;
  }
  .all-cats-list > li:nth-child(2n) {
    float: right;
    margin-right: 0;
  }
  .all-cats-list > li:nth-child(2n+1) {
    clear: left;
  }
}
.all-cats-list > li ul {
  list-style: none;
  margin: 0;
}
.all-cats-list > li ul li {
  line-height: 1.2;
}
.all-cats-list > li ul a {
  color: black;
}

@media (min-width: 978px) {
  .cat-item-small {
    width: 14.40953%;
    float: left;
    margin-right: 2.70856%;
    margin-bottom: 40px;
  }
  .cat-item-small:nth-child(6n) {
    float: right;
    margin-right: 0;
  }
  .cat-item-small:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 500px) and (max-width: 978px) {
  .cat-item-small {
    width: 31.52763%;
    float: left;
    margin-right: 2.70856%;
    margin-bottom: 40px;
  }
  .cat-item-small:nth-child(3n) {
    float: right;
    margin-right: 0;
  }
  .cat-item-small:nth-child(3n+1) {
    clear: left;
  }
}
@media (min-width: 320px) and (max-width: 500px) {
  .cat-item-small {
    width: 48.64572%;
    float: left;
    margin-right: 2.70856%;
    margin-bottom: 40px;
  }
  .cat-item-small:nth-child(2n) {
    float: right;
    margin-right: 0;
  }
  .cat-item-small:nth-child(2n+1) {
    clear: left;
  }
}
.cat-item-small .img-con {
  min-height: 150px;
  max-height: 150px;
  border: 1px solid #d9dcde;
  margin-bottom: 10px;
  padding-top: 10px;
}
.cat-item-small .img-con img {
  display: block;
  max-height: 130px;
  margin: 0 auto 10px auto;
}
.cat-item-small h3 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}
.cat-item-small h3 a {
  display: block;
}

.cat-item {
  margin-bottom: 40px;
  border-bottom: 1px solid #d9dcde;
}
@media (min-width: 978px) {
  .cat-item {
    width: 22.96858%;
    float: left;
    margin-right: 2.70856%;
    margin-bottom: 40px;
  }
  .cat-item:nth-child(4n) {
    float: right;
    margin-right: 0;
  }
  .cat-item:nth-child(4n+1) {
    clear: left;
  }
}
@media (min-width: 780px) and (max-width: 978px) {
  .cat-item {
    width: 31.52763%;
    float: left;
    margin-right: 2.70856%;
    margin-bottom: 40px;
  }
  .cat-item:nth-child(3n) {
    float: right;
    margin-right: 0;
  }
  .cat-item:nth-child(3n+1) {
    clear: left;
  }
}
@media (min-width: 500px) and (max-width: 780px) {
  .cat-item {
    width: 48.64572%;
    float: left;
    margin-right: 2.70856%;
    margin-bottom: 40px;
  }
  .cat-item:nth-child(2n) {
    float: right;
    margin-right: 0;
  }
  .cat-item:nth-child(2n+1) {
    clear: left;
  }
}
.cat-item .tags {
  font-size: 10px;
  font-weight: bold;
  color: #65ac66;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.cat-item .tags span {
  margin-right: 5px;
}
.cat-item .img-con {
  min-height: 150px;
  max-height: 150px;
  border: 1px solid #d9dcde;
  margin-bottom: 10px;
  padding-top: 10px;
}
.cat-item .img-con img {
  display: block;
  max-height: 130px;
  margin: 0 auto 10px auto;
}
.cat-item .case-discount span {
  font-size: 11px;
}
.cat-item .case-discount span.saving {
  color: red !important;
}
.cat-item .add-basket {
  clear: both;
  overflow: hidden;
}
.cat-item .add-basket input[type="text"] {
  box-sizing: border-box;
  border-color: #5A8900;
  width: 20%;
  padding: 5px 10px;
  margin: 0;
  float: left;
  border-radius: 3px 0 0 3px;
}
.cat-item .add-basket input[type="submit"], .cat-item .add-basket button {
  box-sizing: border-box;
  width: 80%;
  margin: 0;
  padding: 6px 20px;
  border-radius: 0 3px 3px 0;
  border: none;
  float: right;
}
.cat-item .add-basket.case input[type="submit"], .cat-item .add-basket.case button {
  background: #65ac66;
}
.cat-item .add-basket.case input[type="text"] {
  border-color: #65ac66;
}
.cat-item h3 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}
.cat-item h3 a {
  display: block;
}
.cat-item .item-price, .cat-item .case-discount {
  font-weight: bold;
  margin-bottom: 3px;
}
.cat-item .item-price strike, .cat-item .case-discount strike {
  opacity: 0.3;
}
.cat-item .item-price span.saving, .cat-item .case-discount span.saving {
  font-size: 11px;
  color: red !important;
}

.pagination {
  clear: both;
  margin-bottom: 20px;
}
.pagination ul {
  list-style: none;
  margin: 0;
}
.pagination ul li {
  display: inline;
  margin-right: 5px;
}
.pagination ul li a, .pagination ul li span {
  display: inline-block;
  padding: 0 5px;
  border: 1px solid #9def00;
  color: #5A8900;
  border-radius: 2px;
}
.pagination ul li.active span {
  background: #5A8900;
  color: white;
}
.pagination ul li.disabled {
  opacity: 0.3;
}

/*
| ------------------------------------
| Footer
| ------------------------------------
*/
.site-footer {
  padding: 20px 50px;
  overflow: hidden;
  background: #5e4427;
  color: #fff;
}
@media (min-width: 0px) and (max-width: 780px) {
  .site-footer {
    padding: 20px 25px 20px 25px;
  }
}
.site-footer p {
  font-size: 12px;
}
.site-footer h5 {
  color: #fff;
  font-size: 20px;
  background: url(../images/leaf-icon.png) no-repeat;
  background-position: 0 50%;
  padding-left: 20px;
  margin-bottom: 20px;
}
.site-footer .green {
  font-size: 15px;
  font-style: italic;
  color: #5A8900;
}
.site-footer .about-img {
  width: 14.40953%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
@media (min-width: 0px) and (max-width: 401px) {
  .site-footer .about-img {
    display: none;
  }
}
.site-footer .about-text {
  width: 48.64572%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
@media (min-width: 401px) and (max-width: 700px) {
  .site-footer .about-text {
    width: 82.88191%;
    float: right;
    margin-right: 0;
  }
}
@media (min-width: 0px) and (max-width: 400px) {
  .site-footer .about-text {
    width: 100%;
    float: right;
    margin-right: 0;
  }
}
.site-footer .contact {
  width: 31.52763%;
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
}
@media (min-width: 320px) and (max-width: 700px) {
  .site-footer .contact {
    width: 100%;
    float: right;
    margin-right: 0;
    text-align: center;
  }
}

.footer-copy {
  padding: 20px 50px;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 780px) {
  .footer-copy {
    padding: 20px 25px 20px 25px;
  }
}
.footer-copy a {
  color: #333333;
}
.footer-copy a:hover {
  text-decoration: underline;
}
.footer-copy .footer-logo {
  width: 200px;
}

.page-container {
  *zoom: 1;
  max-width: 1098px;
  max-width: 78.42857rem;
  _width: 1098px;
  padding-left: 0px;
  padding-left: 0rem;
  padding-right: 0px;
  padding-right: 0rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 50px 30px 50px;
}
.page-container:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 0px) and (max-width: 780px) {
  .page-container {
    padding: 0 25px 30px 25px;
  }
}
.page-container .address-details {
  width: 48.64572%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
@media (min-width: 0px) and (max-width: 1100px) {
  .page-container .address-details {
    width: 100%;
    float: right;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.page-container .contact-form {
  width: 48.64572%;
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
}
@media (min-width: 0px) and (max-width: 1100px) {
  .page-container .contact-form {
    width: 100%;
    float: right;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.cart form {
  margin-bottom: 20px;
}

.cart-row {
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid #c9a57c;
  display: table;
  width: 100%;
}
@media only screen and (max-width: 680px) {
  .cart-row {
    display: block;
    overflow: hidden;
  }
}
.cart-row .image {
  width: 8%;
  padding: 10px;
  display: table-cell;
}
@media only screen and (max-width: 680px) {
  .cart-row .image {
    display: block;
    float: left;
    width: 20%;
  }
}
@media only screen and (max-width: 480px) {
  .cart-row .image {
    float: none;
    width: 100%;
  }
  .cart-row .image img {
    display: block;
    margin: 0 auto;
    max-width: 50%;
  }
}
.cart-row .product {
  display: table-cell;
  padding: 10px 20px;
  vertical-align: top;
}
@media only screen and (max-width: 680px) {
  .cart-row .product {
    display: block;
    float: right;
    width: 80%;
  }
}
@media only screen and (max-width: 480px) {
  .cart-row .product {
    float: none;
    width: 100%;
  }
}
.cart-row .product h5 {
  margin-bottom: 0;
}
.cart-row .product h5 a {
  text-decoration: none;
}
.cart-row .product h5 a.delete {
  float: right;
  font-size: 18px;
  color: #563e23;
  text-decoration: none;
}
.cart-row .product h5 a.delete:hover {
  color: #5A8900;
}
.cart-row .product p {
  margin-bottom: 0;
}
.cart-row .product p.product-price {
  font-weight: bold;
  margin-bottom: 5px;
}
.cart-row .product h6 {
  margin-bottom: 5px;
}
.cart-row .product .custom-option {
  margin-bottom: 5px !important;
  font-size: 12px;
}
.cart-row .product .meta {
  margin-bottom: 5px !important;
  font-size: 12px;
}
.cart-row .product .meta .reduced {
  margin-left: 10px;
  color: #b4ff23;
}
.cart-row .product .quantity {
  font-size: 12px;
  margin: 0;
}
.cart-row .product .quantity input[type="text"] {
  width: 60px;
  padding: 0px 10px;
  margin-left: 10px;
}
.cart-row .product .quantity select {
  width: 100px;
}
.cart-row .product .quantity .selectricWrapper {
  margin: 0;
}
.cart-row .product .quantity .selectric .label {
  padding: 5px 10px;
}
.cart-row .product .quantity .selectric .button {
  height: 30px;
}
.cart-row .price {
  width: 15%;
  display: table-cell;
  vertical-align: top;
  background: #c9a57c;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 680px) {
  .cart-row .price {
    display: block;
    width: 100%;
    clear: both;
  }
}
.cart-row .price p {
  margin: 0;
  padding: 10px 0;
}

.voucher_box {
  width: 60%;
  float: left;
  margin-top: 30px;
  font-size: 13px;
}
@media only screen and (max-width: 780px) {
  .voucher_box {
    display: block;
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
}
.voucher_box h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.voucher_box p {
  margin-bottom: 5px;
}
.voucher_box input[type="text"] {
  width: 70%;
  margin-right: 10px;
}
.voucher_box input[type="submit"] {
  text-transform: uppercase;
  background: #65ac66;
  border: 0px;
}

.total_box {
  margin-top: 30px;
  width: 30%;
  float: right;
}
.total_box p.total-row {
  margin-bottom: 5px;
  font-size: 16px;
}
.total_box p.total-row span {
  float: right;
  text-align: center;
}
.total_box p.total-row.total-price {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.total_box p.checkout-btn {
  margin-bottom: 10px;
}
.total_box p.checkout-btn a {
  display: block;
  border-radius: 3px;
  text-transform: uppercase;
}
.total_box p.checkout-btn a i {
  margin-right: 10px;
}
.total_box .payment-methods {
  text-align: center;
  font-size: 12px;
}
@media only screen and (max-width: 780px) {
  .total_box {
    display: block;
    width: 100%;
    float: none;
  }
}

.continue-shopping {
  text-decoration: none;
  font-size: 14px;
  font-width: 500;
}

.cart-message {
  background: green;
  position: fixed;
  top: 0;
  left: 50%;
  color: white;
  padding: 10px 20px 15px 20px;
  display: none;
  width: 350px;
  margin-left: -150px;
  text-align: center;
}
.cart-message p:last-child {
  margin-bottom: 0;
}
.cart-message a {
  color: green;
  background: white;
  font-weight: bold;
  font-size: 14px;
  border: 1px solid white;
  padding: 5px 15px;
  display: inline-block;
  border-radius: 3px;
}

.email-address, .your-details, .billing-address, .delivery-address, .password, .buttons {
  clear: both;
}
.email-address .left, .your-details .left, .billing-address .left, .delivery-address .left, .password .left, .buttons .left {
  width: 48.64572%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
@media (min-width: 0px) and (max-width: 500px) {
  .email-address .left, .your-details .left, .billing-address .left, .delivery-address .left, .password .left, .buttons .left {
    width: 100%;
    float: left;
    margin-right: 2.70856%;
  }
}
.email-address .right, .your-details .right, .billing-address .right, .delivery-address .right, .password .right, .buttons .right {
  width: 48.64572%;
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
}
@media (min-width: 0px) and (max-width: 500px) {
  .email-address .right, .your-details .right, .billing-address .right, .delivery-address .right, .password .right, .buttons .right {
    width: 100%;
    float: left;
    margin-right: 2.70856%;
  }
}

.buttons {
  overflow: hidden;
  margin-bottom: 25px;
}
.buttons .left, .buttons .right {
  text-align: center;
}
.buttons label {
  font-weight: bold;
  font-size: 16px;
}
.buttons button {
  background: linear-gradient(to bottom, #ffffff 0%, #ebebeb 100%);
  padding: 20px 25px;
  color: black !important;
}
.buttons button img {
  margin-bottom: 10px;
}

.order-instructions {
  *zoom: 1;
  max-width: 1098px;
  max-width: 78.42857rem;
  _width: 1098px;
  padding-left: 0px;
  padding-left: 0rem;
  padding-right: 0px;
  padding-right: 0rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}
.order-instructions:after {
  content: "";
  display: table;
  clear: both;
}
.order-instructions h3 {
  color: #65ac66;
}
.order-instructions .left {
  width: 48.64572%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
.order-instructions .left ul {
  margin: 0;
  list-style: none;
}
.order-instructions .left ul strong {
  width: 48.64572%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
.order-instructions .left ul span {
  width: 48.64572%;
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
}
.order-instructions .right {
  width: 48.64572%;
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
}
.order-instructions .right .total-payable {
  font-size: 26px;
  font-weight: bold;
}
.order-instructions .right .total-label {
  font-weight: bold;
}

.order-summary {
  *zoom: 1;
  max-width: 1098px;
  max-width: 78.42857rem;
  _width: 1098px;
  padding-left: 0px;
  padding-left: 0rem;
  padding-right: 0px;
  padding-right: 0rem;
  margin-left: auto;
  margin-right: auto;
  background: #b4ff23;
  border: 2px solid #7cbc00;
  padding: 25px;
  color: #65ac66;
  margin-bottom: 25px;
}
.order-summary:after {
  content: "";
  display: table;
  clear: both;
}
.order-summary h3 {
  color: #65ac66;
}
.order-summary .left {
  overflow: hidden;
}
@media (min-width: 500px) {
  .order-summary .left {
    width: 48.64572%;
    float: left;
    margin-right: 2.70856%;
  }
}
.order-summary .left ul {
  margin: 0;
  list-style: none;
}
.order-summary .left ul strong {
  width: 48.64572%;
  float: left;
  margin-right: 2.70856%;
  display: inline;
}
.order-summary .left ul span {
  width: 48.64572%;
  float: right;
  margin-right: 0;
  *margin-left: -25px;
  display: inline;
}
@media (min-width: 500px) {
  .order-summary .right {
    width: 48.64572%;
    float: right;
    margin-right: 0;
  }
}
.order-summary .right p {
  margin-bottom: 0px;
}
.order-summary .right .total-payable {
  font-size: 26px;
  font-weight: bold;
}
.order-summary .right .total-label {
  font-weight: bold;
}
@media (max-width: 500px) {
  .order-summary .right .total-label {
    margin-top: 20px;
  }
}

.seperator {
  clear: both;
  padding: 25px 0 0 0;
  margin-bottom: 25px;
  border-bottom: 1px dotted #bdc3c7;
}

.checkout-page label {
  display: block;
  margin-bottom: 10px;
}

h3 label {
  display: inline-block !important;
  color: black;
  font-size: 12px;
}

.hidden {
  display: none;
}

.single-line {
  clear: both;
}
.single-line label {
  display: inline-block;
  margin-left: 10px;
}

.register-trade {
  padding-bottom: 10px;
}

.error {
  color: red;
}
.error input {
  border: 1px solid red;
}

.checkout label {
  display: none;
}
.checkout label.show-label {
  display: inline-block;
}

.checkout .btn {
  display: block;
  font-weight: bold;
  text-transform: uppercase;
}
.checkout .btn i {
  margin-right: 5px;
}

#terms {
  text-align: center;
}
#terms a {
  color: #333333;
  font-weight: bold;
}

.card-list {
  list-style: none;
}

.larger-text {
  font-size: 18px;
}
.larger-text label {
  font-size: 14px;
}

@media (max-width: 997px) {
  .postcode-row .span-4 {
    width: 48.64572%;
    float: left;
    margin-right: 2.70856%;
  }
  .postcode-row .span-2 {
    width: 48.64572%;
    float: right;
    margin-right: 0;
  }
  .postcode-row .span-6 {
    width: 100%;
    float: right;
    margin-right: 0;
  }
}

.voucher-removed {
  margin-bottom: 20px;
  background-color: rgba(255, 0, 0, 0.5);
  padding: 10px;
  border: 2px solid #e74c3c;
  border-radius: 2px;
  text-align: center;
}
