/* The main calendar widget.  DIV containing a table. */

.calendar {
  position: relative;
  display: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-left: 2px solid #fff;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #d4d0c8;
  font-family: tahoma,verdana,sans-serif;
}

.calendar table {
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #d4d0c8;
  font-family: tahoma,verdana,sans-serif;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
  padding: 1px;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
}

.calendar .nav {
  background: transparent url(https://www.consolepro.nl/js/calendar/menuarrow.gif) no-repeat 100% 100%;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;
  padding: 1px;
  border: 1px solid #000;
  background: #848078;
  color: #fff;
  text-align: center;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
}

.calendar thead .daynames { /* Row <TR> containing the day names */
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #000;
  padding: 2px;
  text-align: center;
  background: #f4f0e8;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #f00;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  border-top: 2px solid #fff;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-left: 2px solid #fff;
  padding: 0px;
  background-color: #e4e0d8;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  padding: 2px 0px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
  background-color: #c4c0b8;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  text-align: right;
  padding: 2px 4px 2px 2px;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #aaa;
}
.calendar tbody .day.othermonth.oweekend {
  color: #faa;
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  border-right: 1px solid #000;
  background: #f4f0e8;
}

.calendar tbody .rowhilite td {
  background: #e4e0d8;
}

.calendar tbody .rowhilite td.wn {
  background: #d4d0c8;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  padding: 1px 3px 1px 1px;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  padding: 2px 2px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

.calendar tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
  padding: 2px 2px 0px 2px;
  background: #e4e0d8;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #f00;
}

.calendar tbody td.today { /* Cell showing today date */
  font-weight: bold;
  color: #00f;
}

.calendar tbody .disabled { color: #999; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #f4f0e8;
  padding: 1px;
  border: 1px solid #000;
  background: #848078;
  color: #fff;
  text-align: center;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
  padding: 1px;
  background: #e4e0d8;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  padding: 2px 0px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
  position: absolute;
  display: none;
  width: 4em;
  top: 0px;
  left: 0px;
  cursor: default;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
  background: #e4e0d8;
  font-size: 90%;
  padding: 1px;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .active {
  background: #c4c0b8;
  padding: 0px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

.calendar .combo .hilite {
  background: #048;
  color: #fea;
}

.calendar td.time {
  border-top: 1px solid #000;
  padding: 1px 0px;
  text-align: center;
  background-color: #f4f0e8;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 3px 0px 4px;
  border: 1px solid #889;
  font-weight: bold;
  background-color: #fff;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}

.calendar td.time span.hilite {
  border-color: #000;
  background-color: #766;
  color: #fff;
}

.calendar td.time span.active {
  border-color: #f00;
  background-color: #000;
  color: #0f0;
}

@charset "UTF-8";
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
a:hover,
a:active {
  outline: 0;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}
button,
input,
select,
textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: middle;
}
button,
input {
  *overflow: visible;
  line-height: normal;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
.toolbar select {
  margin-bottom: 0;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}
.clear {
  clear: both;
}
.hide-text {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 28px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Arial", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  background-color: #fff;
}
a {
  color: #202020;
  text-decoration: none;
}
a:hover {
  color: #000000;
  text-decoration: underline;
}
.row {
  margin-left: -10px;
  *zoom: 1;
}
.row:before,
.row:after {
  display: table;
  content: "";
}
.row:after {
  clear: both;
}
[class*="span"] {
  float: left;
  margin-left: 10px;
}
.container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
  width: 998px;
}
.span24 {
  width: 998px;
}
.span23 {
  width: 956px;
}
.span22 {
  width: 914px;
}
.span21 {
  width: 872px;
}
.span20 {
  width: 830px;
}
.span19 {
  width: 788px;
}
.span18 {
  width: 746px;
}
.span17 {
  width: 704px;
}
.span16 {
  width: 662px;
}
.span15 {
  width: 620px;
}
.span14 {
  width: 578px;
}
.span13 {
  width: 536px;
}
.span12 {
  width: 494px;
}
.span11 {
  width: 452px;
}
.span10 {
  width: 410px;
}
.span9 {
  width: 368px;
}
.span8 {
  width: 326px;
}
.span7 {
  width: 284px;
}
.span6 {
  width: 242px;
}
.span5 {
  width: 200px;
}
.span4 {
  width: 158px;
}
.span3 {
  width: 116px;
}
.span2 {
  width: 74px;
}
.span1 {
  width: 32px;
}
.offset24 {
  margin-left: 1018px;
}
.offset23 {
  margin-left: 976px;
}
.offset22 {
  margin-left: 934px;
}
.offset21 {
  margin-left: 892px;
}
.offset20 {
  margin-left: 850px;
}
.offset19 {
  margin-left: 808px;
}
.offset18 {
  margin-left: 766px;
}
.offset17 {
  margin-left: 724px;
}
.offset16 {
  margin-left: 682px;
}
.offset15 {
  margin-left: 640px;
}
.offset14 {
  margin-left: 598px;
}
.offset13 {
  margin-left: 556px;
}
.offset12 {
  margin-left: 514px;
}
.offset11 {
  margin-left: 472px;
}
.offset10 {
  margin-left: 430px;
}
.offset9 {
  margin-left: 388px;
}
.offset8 {
  margin-left: 346px;
}
.offset7 {
  margin-left: 304px;
}
.offset6 {
  margin-left: 262px;
}
.offset5 {
  margin-left: 220px;
}
.offset4 {
  margin-left: 178px;
}
.offset3 {
  margin-left: 136px;
}
.offset2 {
  margin-left: 94px;
}
.offset1 {
  margin-left: 52px;
}
.row-fluid {
  width: 100%;
  *zoom: 1;
}
.row-fluid:before,
.row-fluid:after {
  display: table;
  content: "";
}
.row-fluid:after {
  clear: both;
}
.row-fluid > [class*="span"] {
  float: left;
  margin-left: 2.127659574%;
}
.row-fluid > [class*="span"]:first-child {
  margin-left: 0;
}
.row-fluid > .span24 {
  width: 202.127659554%;
}
.row-fluid > .span23 {
  width: 193.617021257%;
}
.row-fluid > .span22 {
  width: 185.10638296%;
}
.row-fluid > .span21 {
  width: 176.595744663%;
}
.row-fluid > .span20 {
  width: 168.085106366%;
}
.row-fluid > .span19 {
  width: 159.574468069%;
}
.row-fluid > .span18 {
  width: 151.063829772%;
}
.row-fluid > .span17 {
  width: 142.553191475%;
}
.row-fluid > .span16 {
  width: 134.042553178%;
}
.row-fluid > .span15 {
  width: 125.531914881%;
}
.row-fluid > .span14 {
  width: 117.021276584%;
}
.row-fluid > .span13 {
  width: 108.510638287%;
}
.row-fluid > .span12 {
  width: 99.99999999%;
}
.row-fluid > .span11 {
  width: 91.489361693%;
}
.row-fluid > .span10 {
  width: 82.978723396%;
}
.row-fluid > .span9 {
  width: 74.468085099%;
}
.row-fluid > .span8 {
  width: 65.957446802%;
}
.row-fluid > .span7 {
  width: 57.446808505%;
}
.row-fluid > .span6 {
  width: 48.936170208%;
}
.row-fluid > .span5 {
  width: 40.425531911%;
}
.row-fluid > .span4 {
  width: 31.914893614%;
}
.row-fluid > .span3 {
  width: 23.404255317%;
}
.row-fluid > .span2 {
  width: 14.89361702%;
}
.row-fluid > .span1 {
  width: 6.382978723%;
}
.container {
  margin-left: auto;
  margin-right: auto;
  *zoom: 1;
}
.container:before,
.container:after {
  display: table;
  content: "";
}
.container:after {
  clear: both;
}
.container-fluid {
  padding-left: 10px;
  padding-right: 10px;
  *zoom: 1;
}
.container-fluid:before,
.container-fluid:after {
  display: table;
  content: "";
}
.container-fluid:after {
  clear: both;
}
.page {
  margin: 0 auto;
  float: none;
}
p {
  margin: 0 0 9px;
  font-family: "Arial", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 18px;
}
p small {
  font-size: 10px;
  color: #999;
}
.lead {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 200;
  line-height: 27px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: inherit;
  font-weight: bold;
  color: inherit;
  text-rendering: optimizelegibility;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-weight: normal;
  color: #999;
}
h1 {
  font-size: 30px;
  line-height: 36px;
}
h1 small {
  font-size: 18px;
}
h2 {
  font-size: 24px;
  line-height: 36px;
}
h2 small {
  font-size: 18px;
}
h3 {
  line-height: 27px;
  font-size: 18px;
}
h3 small {
  font-size: 14px;
}
h4,
h5,
h6 {
  line-height: 18px;
}
h4 {
  font-size: 14px;
}
h4 small {
  font-size: 12px;
}
h5 {
  font-size: 12px;
}
h6 {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
}
.page-header {
  padding-bottom: 17px;
  margin: 18px 0;
  border-bottom: 1px solid #eee;
}
.page-header h1 {
  line-height: 1;
}
ul,
ol {
  padding: 0;
  margin: 0 0 9px 25px;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li {
  line-height: 18px;
}
ul.unstyled,
ol.unstyled {
  margin-left: 0;
  list-style: none;
}
dl {
  margin-bottom: 18px;
}
dt,
dd {
  line-height: 18px;
}
dt {
  font-weight: bold;
  line-height: 17px;
}
dd {
  margin-left: 9px;
}
.dl-horizontal dt {
  float: left;
  clear: left;
  width: 120px;
  text-align: right;
}
.dl-horizontal dd {
  margin-left: 130px;
}
hr {
  margin: 18px 0;
  border: 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #fff;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
.muted {
  color: #999;
}
abbr[title] {
  border-bottom: 1px dotted #ddd;
  cursor: help;
}
abbr.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 0 0 0 15px;
  margin: 0 0 18px;
  border-left: 5px solid #eee;
}
blockquote p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 22.5px;
}
blockquote small {
  display: block;
  line-height: 18px;
  color: #999;
}
blockquote small:before {
  content: '\2014 \00A0';
}
blockquote.pull-right {
  float: right;
  padding-left: 0;
  padding-right: 15px;
  border-left: 0;
  border-right: 5px solid #eee;
}
blockquote.pull-right p,
blockquote.pull-right small {
  text-align: right;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
}
address {
  display: block;
  margin-bottom: 18px;
  line-height: 18px;
  font-style: normal;
}
small {
  font-size: 100%;
}
cite {
  font-style: normal;
}
code,
pre {
  padding: 0 3px 2px;
  font-family: Menlo, Monaco, "Courier New", monospace;
  font-size: 11px;
  color: #333;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
code {
  padding: 2px 4px;
  color: #d14;
  background-color: #f7f7f9;
  border: 1px solid #e1e1e8;
}
pre {
  display: block;
  padding: 8.5px;
  margin: 0 0 9px;
  font-size: 11.1px;
  line-height: 18px;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border: 1px solid rgba(0,0,0,0.15);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  white-space: pre;
  white-space: pre-wrap;
  word-break: break-all;
  word-wrap: break-word;
}
pre.prettyprint {
  margin-bottom: 18px;
}
pre code {
  padding: 0;
  color: inherit;
  background-color: transparent;
  border: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
form {
  margin: 0 0 18px;
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 27px;
  font-size: 18px;
  line-height: 36px;
  color: #333;
  border: 0;
  border-bottom: 1px solid #eee;
}
legend small {
  font-size: 13.5px;
  color: #999;
}
label,
input,
button,
select,
textarea {
  font-size: 12px;
  font-weight: normal;
  line-height: 18px;
}
input,
button,
select,
textarea {
  font-family: "Arial", Helvetica, Arial, sans-serif;
}
label {
  display: block;
  margin-bottom: 5px;
  color: #333;
}
label.inline {
  display: inline;
  color: #333;
}
input,
textarea,
select,
.uneditable-input {
  display: inline-block;
  width: 210px;
  height: 18px;
  padding: 4px;
  margin-bottom: 9px;
  font-size: 12px;
  line-height: 18px;
  color: #555;
  border: 1px solid #eee;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.uneditable-textarea {
  width: auto;
  height: auto;
}
label input,
label textarea,
label select {
  display: block;
}
input[type="image"],
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 0;
  *margin-top: 0;
  line-height: normal;
  cursor: pointer;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 0 \9;
}
input[type="image"] {
  border: 0;
}
input[type="file"] {
  width: auto;
  padding: initial;
  line-height: initial;
  border: initial;
  background-color: #fff;
  background-color: initial;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  width: auto;
  height: auto;
}
select,
input[type="file"] {
  height: 28px;
  *margin-top: 4px;
  line-height: 28px;
}
input[type="file"] {
  line-height: 18px \9;
}
select {
  width: 220px;
  background-color: #fff;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="image"] {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
textarea {
  height: auto;
}
input[type="hidden"] {
  display: none;
}
.radio,
.checkbox {
  padding-left: 18px;
}
.radio input[type="radio"],
.checkbox input[type="checkbox"] {
  float: left;
  margin-left: -18px;
}
.controls > .radio:first-child,
.controls > .checkbox:first-child {
  padding-top: 5px;
}
.radio.inline,
.checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}
.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
  margin-left: 10px;
}
input,
textarea {
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -webkit-transition: border linear .2s, box-shadow linear .2s;
  -moz-transition: border linear .2s, box-shadow linear .2s;
  -ms-transition: border linear .2s, box-shadow linear .2s;
  -o-transition: border linear .2s, box-shadow linear .2s;
  transition: border linear .2s, box-shadow linear .2s;
}
input:focus,
textarea:focus {
  border-color: rgba(82,168,236,0.8);
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(82,168,236,0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(82,168,236,0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(82,168,236,0.6);
  outline: 0;
  outline: thin dotted \9;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
select:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.input-mini {
  width: 60px;
}
.input-small {
  width: 90px;
}
.input-medium {
  width: 150px;
}
.input-large {
  width: 210px;
}
.input-xlarge {
  width: 270px;
}
.input-xxlarge {
  width: 530px;
}
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input {
  float: none;
  margin-left: 0;
}
input,
textarea,
.uneditable-input {
  margin-left: 0;
}
input.span24, textarea.span24, .uneditable-input.span24 {
  width: 988px;
}
input.span23, textarea.span23, .uneditable-input.span23 {
  width: 946px;
}
input.span22, textarea.span22, .uneditable-input.span22 {
  width: 904px;
}
input.span21, textarea.span21, .uneditable-input.span21 {
  width: 862px;
}
input.span20, textarea.span20, .uneditable-input.span20 {
  width: 820px;
}
input.span19, textarea.span19, .uneditable-input.span19 {
  width: 778px;
}
input.span18, textarea.span18, .uneditable-input.span18 {
  width: 736px;
}
input.span17, textarea.span17, .uneditable-input.span17 {
  width: 694px;
}
input.span16, textarea.span16, .uneditable-input.span16 {
  width: 652px;
}
input.span15, textarea.span15, .uneditable-input.span15 {
  width: 610px;
}
input.span14, textarea.span14, .uneditable-input.span14 {
  width: 568px;
}
input.span13, textarea.span13, .uneditable-input.span13 {
  width: 526px;
}
input.span12, textarea.span12, .uneditable-input.span12 {
  width: 484px;
}
input.span11, textarea.span11, .uneditable-input.span11 {
  width: 442px;
}
input.span10, textarea.span10, .uneditable-input.span10 {
  width: 400px;
}
input.span9, textarea.span9, .uneditable-input.span9 {
  width: 358px;
}
input.span8, textarea.span8, .uneditable-input.span8 {
  width: 316px;
}
input.span7, textarea.span7, .uneditable-input.span7 {
  width: 274px;
}
input.span6, textarea.span6, .uneditable-input.span6 {
  width: 232px;
}
input.span5, textarea.span5, .uneditable-input.span5 {
  width: 190px;
}
input.span4, textarea.span4, .uneditable-input.span4 {
  width: 148px;
}
input.span3, textarea.span3, .uneditable-input.span3 {
  width: 106px;
}
input.span2, textarea.span2, .uneditable-input.span2 {
  width: 64px;
}
input.span1, textarea.span1, .uneditable-input.span1 {
  width: 22px;
}
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  background-color: #eee;
  border-color: #ddd;
  cursor: not-allowed;
}
.control-group.warning > label,
.control-group.warning .help-block,
.control-group.warning .help-inline {
  color: #c09853;
}
.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
  color: #c09853;
  border-color: #c09853;
}
.control-group.warning input:focus,
.control-group.warning select:focus,
.control-group.warning textarea:focus {
  border-color: #a47e3c;
  -webkit-box-shadow: 0 0 6px #dbc59e;
  -moz-box-shadow: 0 0 6px #dbc59e;
  box-shadow: 0 0 6px #dbc59e;
}
.control-group.warning .input-prepend .add-on,
.control-group.warning .input-append .add-on {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #c09853;
}
.control-group.error > label,
.control-group.error .help-block,
.control-group.error .help-inline {
  color: #b94a48;
}
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
  color: #b94a48;
  border-color: #b94a48;
}
.control-group.error input:focus,
.control-group.error select:focus,
.control-group.error textarea:focus {
  border-color: #953b39;
  -webkit-box-shadow: 0 0 6px #d59392;
  -moz-box-shadow: 0 0 6px #d59392;
  box-shadow: 0 0 6px #d59392;
}
.control-group.error .input-prepend .add-on,
.control-group.error .input-append .add-on {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #b94a48;
}
.control-group.success > label,
.control-group.success .help-block,
.control-group.success .help-inline {
  color: #468847;
}
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
  color: #468847;
  border-color: #468847;
}
.control-group.success input:focus,
.control-group.success select:focus,
.control-group.success textarea:focus {
  border-color: #356635;
  -webkit-box-shadow: 0 0 6px #7aba7b;
  -moz-box-shadow: 0 0 6px #7aba7b;
  box-shadow: 0 0 6px #7aba7b;
}
.control-group.success .input-prepend .add-on,
.control-group.success .input-append .add-on {
  color: #468847;
  background-color: #dff0d8;
  border-color: #468847;
}
input:focus:required:invalid,
textarea:focus:required:invalid,
select:focus:required:invalid {
  color: #b94a48;
  border-color: #ee5f5b;
}
input:focus:required:invalid:focus,
textarea:focus:required:invalid:focus,
select:focus:required:invalid:focus {
  border-color: #e9322d;
  -webkit-box-shadow: 0 0 6px #f8b9b7;
  -moz-box-shadow: 0 0 6px #f8b9b7;
  box-shadow: 0 0 6px #f8b9b7;
}
.form-actions {
  padding: 17px 20px 18px;
  margin-top: 18px;
  margin-bottom: 18px;
  background-color: #eee;
  border-top: 1px solid #ddd;
  *zoom: 1;
}
.form-actions:before,
.form-actions:after {
  display: table;
  content: "";
}
.form-actions:after {
  clear: both;
}
.uneditable-input {
  display: block;
  background-color: #fff;
  border-color: #eee;
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.025);
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.025);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.025);
  cursor: not-allowed;
}
:-moz-placeholder {
  color: #999;
}
::-webkit-input-placeholder {
  color: #999;
}
.help-block,
.help-inline {
  color: #555;
}
.help-block {
  display: block;
  margin-bottom: 9px;
}
.help-inline {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  padding-left: 5px;
}
.input-prepend,
.input-append {
  margin-bottom: 5px;
}
.input-prepend input,
.input-prepend select,
.input-prepend .uneditable-input,
.input-append input,
.input-append select,
.input-append .uneditable-input {
  *margin-left: 0;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.input-prepend input:focus,
.input-prepend select:focus,
.input-prepend .uneditable-input:focus,
.input-append input:focus,
.input-append select:focus,
.input-append .uneditable-input:focus {
  position: relative;
  z-index: 2;
}
.input-prepend .uneditable-input,
.input-append .uneditable-input {
  border-left-color: #ccc;
}
.input-prepend .add-on,
.input-append .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 18px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eee;
  border: 1px solid #ccc;
}
.input-prepend .add-on,
.input-prepend .btn,
.input-append .add-on,
.input-append .btn {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.input-prepend .active,
.input-append .active {
  background-color: #a9dba9;
  border-color: #46a546;
}
.input-prepend .add-on,
.input-prepend .btn {
  margin-right: -1px;
}
.input-append input,
.input-append select
  .uneditable-input {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.input-append .uneditable-input {
  border-left-color: #eee;
  border-right-color: #ccc;
}
.input-append .add-on,
.input-append .btn {
  margin-left: -1px;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.input-prepend.input-append input,
.input-prepend.input-append select,
.input-prepend.input-append .uneditable-input {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.input-prepend.input-append .add-on:first-child,
.input-prepend.input-append .btn:first-child {
  margin-right: -1px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.input-prepend.input-append .add-on:last-child,
.input-prepend.input-append .btn:last-child {
  margin-left: -1px;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.search-query {
  padding-left: 14px;
  padding-right: 14px;
  margin-bottom: 0;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}
.form-search input,
.form-search textarea,
.form-search select,
.form-search .help-inline,
.form-search .uneditable-input,
.form-search .input-prepend,
.form-search .input-append,
.form-inline input,
.form-inline textarea,
.form-inline select,
.form-inline .help-inline,
.form-inline .uneditable-input,
.form-inline .input-prepend,
.form-inline .input-append,
.form-horizontal input,
.form-horizontal textarea,
.form-horizontal select,
.form-horizontal .help-inline,
.form-horizontal .uneditable-input,
.form-horizontal .input-prepend,
.form-horizontal .input-append {
  display: inline-block;
  margin-bottom: 0;
}
.form-search .hide,
.form-inline .hide,
.form-horizontal .hide {
  display: none;
}
.form-search label,
.form-inline label {
  display: inline-block;
}
.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
  margin-bottom: 0;
}
.form-search .radio,
.form-search .checkbox,
.form-inline .radio,
.form-inline .checkbox {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle;
}
.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
  float: left;
  margin-left: 0;
  margin-right: 3px;
}
.control-group {
  margin-bottom: 9px;
}
legend + .control-group {
  margin-top: 18px;
  -webkit-margin-top-collapse: separate;
}
.form-horizontal .control-group {
  margin-bottom: 18px;
  *zoom: 1;
}
.form-horizontal .control-group:before,
.form-horizontal .control-group:after {
  display: table;
  content: "";
}
.form-horizontal .control-group:after {
  clear: both;
}
.form-horizontal .control-label {
  float: left;
  width: 140px;
  padding-top: 5px;
  text-align: right;
}
.form-horizontal .controls {
  margin-left: 160px;
  *display: inline-block;
  *margin-left: 0;
  *padding-left: 20px;
}
.form-horizontal .help-block {
  margin-top: 9px;
  margin-bottom: 0;
}
.form-horizontal .form-actions {
  padding-left: 160px;
}
table {
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: transparent;
}
.table {
  width: 100%;
  margin-bottom: 18px;
}
.table th,
.table td {
  padding: 8px;
  line-height: 18px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table th {
  font-weight: bold;
}
.table thead th {
  vertical-align: bottom;
}
.table colgroup + thead tr:first-child th,
.table colgroup + thead tr:first-child td,
.table thead:first-child tr:first-child th,
.table thead:first-child tr:first-child td {
  border-top: 0;
}
.table tbody + tbody {
  border-top: 2px solid #ddd;
}
.table-condensed th,
.table-condensed td {
  padding: 4px 5px;
}
.table-bordered {
  border: 1px solid #ddd;
  border-left: 0;
  border-collapse: separate;
  *border-collapse: collapsed;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.table-bordered th,
.table-bordered td {
  border-left: 1px solid #ddd;
}
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}
.table-bordered thead:first-child tr:first-child th:first-child,
.table-bordered tbody:first-child tr:first-child td:first-child {
  -webkit-border-radius: 4px 0 0 0;
  -moz-border-radius: 4px 0 0 0;
  border-radius: 4px 0 0 0;
  -webkit-border-radius: 4px 0 0 0;
  -moz-border-radius: 4px 0 0 0;
  border-radius: 4px 0 0 0;
}
.table-bordered thead:first-child tr:first-child th:last-child,
.table-bordered tbody:first-child tr:first-child td:last-child {
  -webkit-border-radius: 0 4px 0 0;
  -moz-border-radius: 0 4px 0 0;
  border-radius: 0 4px 0 0;
  -webkit-border-radius: 0 4px 0 0;
  -moz-border-radius: 0 4px 0 0;
  border-radius: 0 4px 0 0;
}
.table-bordered thead:last-child tr:last-child th:first-child,
.table-bordered tbody:last-child tr:last-child td:first-child {
  -webkit-border-radius: 0 0 0 4px;
  -moz-border-radius: 0 0 0 4px;
  border-radius: 0 0 0 4px;
  -webkit-border-radius: 0 0 0 4px;
  -moz-border-radius: 0 0 0 4px;
  border-radius: 0 0 0 4px;
}
.table-bordered thead:last-child tr:last-child th:last-child,
.table-bordered tbody:last-child tr:last-child td:last-child {
  -webkit-border-radius: 0 0 4px 0;
  -moz-border-radius: 0 0 4px 0;
  border-radius: 0 0 4px 0;
  -webkit-border-radius: 0 0 4px 0;
  -moz-border-radius: 0 0 4px 0;
  border-radius: 0 0 4px 0;
}
.table-striped tbody tr:nth-child(odd) td,
.table-striped tbody tr:nth-child(odd) th {
  background-color: #f9f9f9;
}
.table tbody tr:hover td,
.table tbody tr:hover th {
  background-color: #f5f5f5;
}
table .span1 {
  float: none;
  width: 16px;
  margin-left: 0;
}
table .span2 {
  float: none;
  width: 58px;
  margin-left: 0;
}
table .span3 {
  float: none;
  width: 100px;
  margin-left: 0;
}
table .span4 {
  float: none;
  width: 142px;
  margin-left: 0;
}
table .span5 {
  float: none;
  width: 184px;
  margin-left: 0;
}
table .span6 {
  float: none;
  width: 226px;
  margin-left: 0;
}
table .span7 {
  float: none;
  width: 268px;
  margin-left: 0;
}
table .span8 {
  float: none;
  width: 310px;
  margin-left: 0;
}
table .span9 {
  float: none;
  width: 352px;
  margin-left: 0;
}
table .span10 {
  float: none;
  width: 394px;
  margin-left: 0;
}
table .span11 {
  float: none;
  width: 436px;
  margin-left: 0;
}
table .span12 {
  float: none;
  width: 478px;
  margin-left: 0;
}
table .span13 {
  float: none;
  width: 520px;
  margin-left: 0;
}
table .span14 {
  float: none;
  width: 562px;
  margin-left: 0;
}
table .span15 {
  float: none;
  width: 604px;
  margin-left: 0;
}
table .span16 {
  float: none;
  width: 646px;
  margin-left: 0;
}
table .span17 {
  float: none;
  width: 688px;
  margin-left: 0;
}
table .span18 {
  float: none;
  width: 730px;
  margin-left: 0;
}
table .span19 {
  float: none;
  width: 772px;
  margin-left: 0;
}
table .span20 {
  float: none;
  width: 814px;
  margin-left: 0;
}
table .span21 {
  float: none;
  width: 856px;
  margin-left: 0;
}
table .span22 {
  float: none;
  width: 898px;
  margin-left: 0;
}
table .span23 {
  float: none;
  width: 940px;
  margin-left: 0;
}
table .span24 {
  float: none;
  width: 982px;
  margin-left: 0;
}
[class^="icon-"],
[class*=" icon-"],
[class^="icomoon-"],
[class*=" icomoon-"] {
  display: inline-block;
  width: auto;
  height: auto;
  background-image: none;
  background-position: 0;
  background-repeat: no-repeat;
  line-height: normal;
}
.icon-white {
  background-image: none;
}
@font-face {
  font-family: 'FontAwesome';
  src: url('https://www.consolepro.nl/skin/frontend/default/default/css/fontawesome/font/fontawesome-webfont.eot?v=3.1.0');
  src: url('https://www.consolepro.nl/skin/frontend/default/default/css/fontawesome/font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'), url('https://www.consolepro.nl/skin/frontend/default/default/css/fontawesome/font/fontawesome-webfont.woff?v=3.1.0') format('woff'), url('https://www.consolepro.nl/skin/frontend/default/default/css/fontawesome/font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'), url('https://www.consolepro.nl/skin/frontend/default/default/css/fontawesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');
  font-weight: normal;
  font-style: normal;
}
[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;
}
.icon-large:before {
  vertical-align: -10%;
  font-size: 1.3333333333333em;
}
a [class^="icon-"],
a [class^="icon-"]:before,
a [class*=" icon-"],
a [class*=" icon-"]:before {
  display: inline;
}
[class^="icon-"].icon-fixed-width,
[class*=" icon-"].icon-fixed-width {
  display: inline-block;
  width: 1.2857142857143em;
  text-align: center;
}
[class^="icon-"].icon-fixed-width.icon-large,
[class*=" icon-"].icon-fixed-width.icon-large {
  width: 1.5714285714286em;
}
ul.icons-ul {
  list-style-type: none;
  text-indent: -0.71428571428571em;
  margin-left: 2.1428571428571em;
}
ul.icons-ul > li .icon-li {
  width: 0.71428571428571em;
  display: inline-block;
  text-align: center;
}
[class^="icon-"].hide,
[class*=" icon-"].hide {
  display: none;
}
.icon-muted {
  color: #eee;
}
.icon-light {
  color: #fff;
}
.icon-dark {
  color: #333;
}
.icon-border {
  border: solid 1px #eee;
  padding: .2em .25em .15em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -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;
  -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;
  -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;
  -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;
  -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;
}
[class^="icon-"],
[class*=" icon-"] {
  display: inline;
  width: auto;
  height: auto;
  line-height: normal;
  vertical-align: baseline;
  background-image: none;
  background-position: 0% 0%;
  background-repeat: repeat;
  margin-top: 0;
}
.icon-white,
.nav-pills > .active > a > [class^="icon-"],
.nav-pills > .active > a > [class*=" icon-"],
.nav-list > .active > a > [class^="icon-"],
.nav-list > .active > a > [class*=" icon-"],
.navbar-inverse .nav > .active > a > [class^="icon-"],
.navbar-inverse .nav > .active > a > [class*=" icon-"],
.dropdown-menu > li > a:hover > [class^="icon-"],
.dropdown-menu > li > a:hover > [class*=" icon-"],
.dropdown-menu > .active > a > [class^="icon-"],
.dropdown-menu > .active > a > [class*=" icon-"],
.dropdown-submenu:hover > a > [class^="icon-"],
.dropdown-submenu:hover > a > [class*=" icon-"] {
  background-image: none;
}
.btn [class^="icon-"].icon-large,
.btn [class*=" icon-"].icon-large,
.nav [class^="icon-"].icon-large,
.nav [class*=" icon-"].icon-large {
  line-height: .9em;
}
.btn [class^="icon-"].icon-spin,
.btn [class*=" icon-"].icon-spin,
.nav [class^="icon-"].icon-spin,
.nav [class*=" icon-"].icon-spin {
  display: inline-block;
}
.nav-tabs [class^="icon-"],
.nav-tabs [class^="icon-"].icon-large,
.nav-tabs [class*=" icon-"],
.nav-tabs [class*=" icon-"].icon-large,
.nav-pills [class^="icon-"],
.nav-pills [class^="icon-"].icon-large,
.nav-pills [class*=" icon-"],
.nav-pills [class*=" icon-"].icon-large {
  line-height: .9em;
}
.btn [class^="icon-"].pull-left.icon-2x,
.btn [class^="icon-"].pull-right.icon-2x,
.btn [class*=" icon-"].pull-left.icon-2x,
.btn [class*=" icon-"].pull-right.icon-2x {
  margin-top: .18em;
}
.btn [class^="icon-"].icon-spin.icon-large,
.btn [class*=" icon-"].icon-spin.icon-large {
  line-height: .8em;
}
.btn.btn-small [class^="icon-"].pull-left.icon-2x,
.btn.btn-small [class^="icon-"].pull-right.icon-2x,
.btn.btn-small [class*=" icon-"].pull-left.icon-2x,
.btn.btn-small [class*=" icon-"].pull-right.icon-2x {
  margin-top: .25em;
}
.btn.btn-large [class^="icon-"],
.btn.btn-large [class*=" icon-"] {
  margin-top: 0;
}
.btn.btn-large [class^="icon-"].pull-left.icon-2x,
.btn.btn-large [class^="icon-"].pull-right.icon-2x,
.btn.btn-large [class*=" icon-"].pull-left.icon-2x,
.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
  margin-top: .05em;
}
.btn.btn-large [class^="icon-"].pull-left.icon-2x,
.btn.btn-large [class*=" icon-"].pull-left.icon-2x {
  margin-right: .2em;
}
.btn.btn-large [class^="icon-"].pull-right.icon-2x,
.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
  margin-left: .2em;
}
.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;
}
.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;
}
@-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-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);
}
.icon-glass:before {
  content: "\f000";
}
.icon-music:before {
  content: "\f001";
}
.icon-search:before {
  content: "\f002";
}
.icon-envelope:before {
  content: "\f003";
}
.icon-heart:before {
  content: "\f004";
}
.icon-star:before {
  content: "\f005";
}
.icon-star-empty:before {
  content: "\f006";
}
.icon-user:before {
  content: "\f007";
}
.icon-film:before {
  content: "\f008";
}
.icon-th-large:before {
  content: "\f009";
}
.icon-th:before {
  content: "\f00a";
}
.icon-th-list:before {
  content: "\f00b";
}
.icon-ok:before {
  content: "\f00c";
}
.icon-remove:before {
  content: "\f00d";
}
.icon-zoom-in:before {
  content: "\f00e";
}
.icon-zoom-out:before {
  content: "\f010";
}
.icon-off:before {
  content: "\f011";
}
.icon-signal:before {
  content: "\f012";
}
.icon-cog:before {
  content: "\f013";
}
.icon-trash:before {
  content: "\f014";
}
.icon-home:before {
  content: "\f015";
}
.icon-file:before {
  content: "\f016";
}
.icon-time:before {
  content: "\f017";
}
.icon-road:before {
  content: "\f018";
}
.icon-download-alt:before {
  content: "\f019";
}
.icon-download:before {
  content: "\f01a";
}
.icon-upload:before {
  content: "\f01b";
}
.icon-inbox:before {
  content: "\f01c";
}
.icon-play-circle:before {
  content: "\f01d";
}
.icon-repeat:before,
.icon-rotate-right:before {
  content: "\f01e";
}
.icon-refresh:before {
  content: "\f021";
}
.icon-list-alt:before {
  content: "\f022";
}
.icon-lock:before {
  content: "\f023";
}
.icon-flag:before {
  content: "\f024";
}
.icon-headphones:before {
  content: "\f025";
}
.icon-volume-off:before {
  content: "\f026";
}
.icon-volume-down:before {
  content: "\f027";
}
.icon-volume-up:before {
  content: "\f028";
}
.icon-qrcode:before {
  content: "\f029";
}
.icon-barcode:before {
  content: "\f02a";
}
.icon-tag:before {
  content: "\f02b";
}
.icon-tags:before {
  content: "\f02c";
}
.icon-book:before {
  content: "\f02d";
}
.icon-bookmark:before {
  content: "\f02e";
}
.icon-print:before {
  content: "\f02f";
}
.icon-camera:before {
  content: "\f030";
}
.icon-font:before {
  content: "\f031";
}
.icon-bold:before {
  content: "\f032";
}
.icon-italic:before {
  content: "\f033";
}
.icon-text-height:before {
  content: "\f034";
}
.icon-text-width:before {
  content: "\f035";
}
.icon-align-left:before {
  content: "\f036";
}
.icon-align-center:before {
  content: "\f037";
}
.icon-align-right:before {
  content: "\f038";
}
.icon-align-justify:before {
  content: "\f039";
}
.icon-list:before {
  content: "\f03a";
}
.icon-indent-left:before {
  content: "\f03b";
}
.icon-indent-right:before {
  content: "\f03c";
}
.icon-facetime-video:before {
  content: "\f03d";
}
.icon-picture:before {
  content: "\f03e";
}
.icon-pencil:before {
  content: "\f040";
}
.icon-map-marker:before {
  content: "\f041";
}
.icon-adjust:before {
  content: "\f042";
}
.icon-tint:before {
  content: "\f043";
}
.icon-edit:before {
  content: "\f044";
}
.icon-share:before {
  content: "\f045";
}
.icon-check:before {
  content: "\f046";
}
.icon-move:before {
  content: "\f047";
}
.icon-step-backward:before {
  content: "\f048";
}
.icon-fast-backward:before {
  content: "\f049";
}
.icon-backward:before {
  content: "\f04a";
}
.icon-play:before {
  content: "\f04b";
}
.icon-pause:before {
  content: "\f04c";
}
.icon-stop:before {
  content: "\f04d";
}
.icon-forward:before {
  content: "\f04e";
}
.icon-fast-forward:before {
  content: "\f050";
}
.icon-step-forward:before {
  content: "\f051";
}
.icon-eject:before {
  content: "\f052";
}
.icon-chevron-left:before {
  content: "\f053";
}
.icon-chevron-right:before {
  content: "\f054";
}
.icon-plus-sign:before {
  content: "\f055";
}
.icon-minus-sign:before {
  content: "\f056";
}
.icon-remove-sign:before {
  content: "\f057";
}
.icon-ok-sign:before {
  content: "\f058";
}
.icon-question-sign:before {
  content: "\f059";
}
.icon-info-sign:before {
  content: "\f05a";
}
.icon-screenshot:before {
  content: "\f05b";
}
.icon-remove-circle:before {
  content: "\f05c";
}
.icon-ok-circle:before {
  content: "\f05d";
}
.icon-ban-circle:before {
  content: "\f05e";
}
.icon-arrow-left:before {
  content: "\f060";
}
.icon-arrow-right:before {
  content: "\f061";
}
.icon-arrow-up:before {
  content: "\f062";
}
.icon-arrow-down:before {
  content: "\f063";
}
.icon-share-alt:before,
.icon-mail-forward:before {
  content: "\f064";
}
.icon-resize-full:before {
  content: "\f065";
}
.icon-resize-small:before {
  content: "\f066";
}
.icon-plus:before {
  content: "\f067";
}
.icon-minus:before {
  content: "\f068";
}
.icon-asterisk:before {
  content: "\f069";
}
.icon-exclamation-sign:before {
  content: "\f06a";
}
.icon-gift:before {
  content: "\f06b";
}
.icon-leaf:before {
  content: "\f06c";
}
.icon-fire:before {
  content: "\f06d";
}
.icon-eye-open:before {
  content: "\f06e";
}
.icon-eye-close:before {
  content: "\f070";
}
.icon-warning-sign:before {
  content: "\f071";
}
.icon-plane:before {
  content: "\f072";
}
.icon-calendar:before {
  content: "\f073";
}
.icon-random:before {
  content: "\f074";
}
.icon-comment:before {
  content: "\f075";
}
.icon-magnet:before {
  content: "\f076";
}
.icon-chevron-up:before {
  content: "\f077";
}
.icon-chevron-down:before {
  content: "\f078";
}
.icon-retweet:before {
  content: "\f079";
}
.icon-shopping-cart:before {
  content: "\f07a";
}
.icon-folder-close:before {
  content: "\f07b";
}
.icon-folder-open:before {
  content: "\f07c";
}
.icon-resize-vertical:before {
  content: "\f07d";
}
.icon-resize-horizontal:before {
  content: "\f07e";
}
.icon-bar-chart:before {
  content: "\f080";
}
.icon-twitter-sign:before {
  content: "\f081";
}
.icon-facebook-sign:before {
  content: "\f082";
}
.icon-camera-retro:before {
  content: "\f083";
}
.icon-key:before {
  content: "\f084";
}
.icon-cogs:before {
  content: "\f085";
}
.icon-comments:before {
  content: "\f086";
}
.icon-thumbs-up:before {
  content: "\f087";
}
.icon-thumbs-down:before {
  content: "\f088";
}
.icon-star-half:before {
  content: "\f089";
}
.icon-heart-empty:before {
  content: "\f08a";
}
.icon-signout:before {
  content: "\f08b";
}
.icon-linkedin-sign:before {
  content: "\f08c";
}
.icon-pushpin:before {
  content: "\f08d";
}
.icon-external-link:before {
  content: "\f08e";
}
.icon-signin:before {
  content: "\f090";
}
.icon-trophy:before {
  content: "\f091";
}
.icon-github-sign:before {
  content: "\f092";
}
.icon-upload-alt:before {
  content: "\f093";
}
.icon-lemon:before {
  content: "\f094";
}
.icon-phone:before {
  content: "\f095";
}
.icon-check-empty:before {
  content: "\f096";
}
.icon-bookmark-empty:before {
  content: "\f097";
}
.icon-phone-sign:before {
  content: "\f098";
}
.icon-twitter:before {
  content: "\f099";
}
.icon-facebook:before {
  content: "\f09a";
}
.icon-github:before {
  content: "\f09b";
}
.icon-unlock:before {
  content: "\f09c";
}
.icon-credit-card:before {
  content: "\f09d";
}
.icon-rss:before {
  content: "\f09e";
}
.icon-hdd:before {
  content: "\f0a0";
}
.icon-bullhorn:before {
  content: "\f0a1";
}
.icon-bell:before {
  content: "\f0a2";
}
.icon-certificate:before {
  content: "\f0a3";
}
.icon-hand-right:before {
  content: "\f0a4";
}
.icon-hand-left:before {
  content: "\f0a5";
}
.icon-hand-up:before {
  content: "\f0a6";
}
.icon-hand-down:before {
  content: "\f0a7";
}
.icon-circle-arrow-left:before {
  content: "\f0a8";
}
.icon-circle-arrow-right:before {
  content: "\f0a9";
}
.icon-circle-arrow-up:before {
  content: "\f0aa";
}
.icon-circle-arrow-down:before {
  content: "\f0ab";
}
.icon-globe:before {
  content: "\f0ac";
}
.icon-wrench:before {
  content: "\f0ad";
}
.icon-tasks:before {
  content: "\f0ae";
}
.icon-filter:before {
  content: "\f0b0";
}
.icon-briefcase:before {
  content: "\f0b1";
}
.icon-fullscreen:before {
  content: "\f0b2";
}
.icon-group:before {
  content: "\f0c0";
}
.icon-link:before {
  content: "\f0c1";
}
.icon-cloud:before {
  content: "\f0c2";
}
.icon-beaker:before {
  content: "\f0c3";
}
.icon-cut:before {
  content: "\f0c4";
}
.icon-copy:before {
  content: "\f0c5";
}
.icon-paper-clip:before {
  content: "\f0c6";
}
.icon-save:before {
  content: "\f0c7";
}
.icon-sign-blank:before {
  content: "\f0c8";
}
.icon-reorder:before {
  content: "\f0c9";
}
.icon-list-ul:before {
  content: "\f0ca";
}
.icon-list-ol:before {
  content: "\f0cb";
}
.icon-strikethrough:before {
  content: "\f0cc";
}
.icon-underline:before {
  content: "\f0cd";
}
.icon-table:before {
  content: "\f0ce";
}
.icon-magic:before {
  content: "\f0d0";
}
.icon-truck:before {
  content: "\f0d1";
}
.icon-pinterest:before {
  content: "\f0d2";
}
.icon-pinterest-sign:before {
  content: "\f0d3";
}
.icon-google-plus-sign:before {
  content: "\f0d4";
}
.icon-google-plus:before {
  content: "\f0d5";
}
.icon-money:before {
  content: "\f0d6";
}
.icon-caret-down:before {
  content: "\f0d7";
}
.icon-caret-up:before {
  content: "\f0d8";
}
.icon-caret-left:before {
  content: "\f0d9";
}
.icon-caret-right:before {
  content: "\f0da";
}
.icon-columns:before {
  content: "\f0db";
}
.icon-sort:before {
  content: "\f0dc";
}
.icon-sort-down:before {
  content: "\f0dd";
}
.icon-sort-up:before {
  content: "\f0de";
}
.icon-envelope-alt:before {
  content: "\f0e0";
}
.icon-linkedin:before {
  content: "\f0e1";
}
.icon-undo:before,
.icon-rotate-left:before {
  content: "\f0e2";
}
.icon-legal:before {
  content: "\f0e3";
}
.icon-dashboard:before {
  content: "\f0e4";
}
.icon-comment-alt:before {
  content: "\f0e5";
}
.icon-comments-alt:before {
  content: "\f0e6";
}
.icon-bolt:before {
  content: "\f0e7";
}
.icon-sitemap:before {
  content: "\f0e8";
}
.icon-umbrella:before {
  content: "\f0e9";
}
.icon-paste:before {
  content: "\f0ea";
}
.icon-lightbulb:before {
  content: "\f0eb";
}
.icon-exchange:before {
  content: "\f0ec";
}
.icon-cloud-download:before {
  content: "\f0ed";
}
.icon-cloud-upload:before {
  content: "\f0ee";
}
.icon-user-md:before {
  content: "\f0f0";
}
.icon-stethoscope:before {
  content: "\f0f1";
}
.icon-suitcase:before {
  content: "\f0f2";
}
.icon-bell-alt:before {
  content: "\f0f3";
}
.icon-coffee:before {
  content: "\f0f4";
}
.icon-food:before {
  content: "\f0f5";
}
.icon-file-alt:before {
  content: "\f0f6";
}
.icon-building:before {
  content: "\f0f7";
}
.icon-hospital:before {
  content: "\f0f8";
}
.icon-ambulance:before {
  content: "\f0f9";
}
.icon-medkit:before {
  content: "\f0fa";
}
.icon-fighter-jet:before {
  content: "\f0fb";
}
.icon-beer:before {
  content: "\f0fc";
}
.icon-h-sign:before {
  content: "\f0fd";
}
.icon-plus-sign-alt:before {
  content: "\f0fe";
}
.icon-double-angle-left:before {
  content: "\f100";
}
.icon-double-angle-right:before {
  content: "\f101";
}
.icon-double-angle-up:before {
  content: "\f102";
}
.icon-double-angle-down:before {
  content: "\f103";
}
.icon-angle-left:before {
  content: "\f104";
}
.icon-angle-right:before {
  content: "\f105";
}
.icon-angle-up:before {
  content: "\f106";
}
.icon-angle-down:before {
  content: "\f107";
}
.icon-desktop:before {
  content: "\f108";
}
.icon-laptop:before {
  content: "\f109";
}
.icon-tablet:before {
  content: "\f10a";
}
.icon-mobile-phone:before {
  content: "\f10b";
}
.icon-circle-blank:before {
  content: "\f10c";
}
.icon-quote-left:before {
  content: "\f10d";
}
.icon-quote-right:before {
  content: "\f10e";
}
.icon-spinner:before {
  content: "\f110";
}
.icon-circle:before {
  content: "\f111";
}
.icon-reply:before,
.icon-mail-reply:before {
  content: "\f112";
}
.icon-folder-close-alt:before {
  content: "\f114";
}
.icon-folder-open-alt:before {
  content: "\f115";
}
.icon-expand-alt:before {
  content: "\f116";
}
.icon-collapse-alt:before {
  content: "\f117";
}
.icon-smile:before {
  content: "\f118";
}
.icon-frown:before {
  content: "\f119";
}
.icon-meh:before {
  content: "\f11a";
}
.icon-gamepad:before {
  content: "\f11b";
}
.icon-keyboard:before {
  content: "\f11c";
}
.icon-flag-alt:before {
  content: "\f11d";
}
.icon-flag-checkered:before {
  content: "\f11e";
}
.icon-terminal:before {
  content: "\f120";
}
.icon-code:before {
  content: "\f121";
}
.icon-reply-all:before {
  content: "\f122";
}
.icon-mail-reply-all:before {
  content: "\f122";
}
.icon-star-half-full:before,
.icon-star-half-empty:before {
  content: "\f123";
}
.icon-location-arrow:before {
  content: "\f124";
}
.icon-crop:before {
  content: "\f125";
}
.icon-code-fork:before {
  content: "\f126";
}
.icon-unlink:before {
  content: "\f127";
}
.icon-question:before {
  content: "\f128";
}
.icon-info:before {
  content: "\f129";
}
.icon-exclamation:before {
  content: "\f12a";
}
.icon-superscript:before {
  content: "\f12b";
}
.icon-subscript:before {
  content: "\f12c";
}
.icon-eraser:before {
  content: "\f12d";
}
.icon-puzzle-piece:before {
  content: "\f12e";
}
.icon-microphone:before {
  content: "\f130";
}
.icon-microphone-off:before {
  content: "\f131";
}
.icon-shield:before {
  content: "\f132";
}
.icon-calendar-empty:before {
  content: "\f133";
}
.icon-fire-extinguisher:before {
  content: "\f134";
}
.icon-rocket:before {
  content: "\f135";
}
.icon-maxcdn:before {
  content: "\f136";
}
.icon-chevron-sign-left:before {
  content: "\f137";
}
.icon-chevron-sign-right:before {
  content: "\f138";
}
.icon-chevron-sign-up:before {
  content: "\f139";
}
.icon-chevron-sign-down:before {
  content: "\f13a";
}
.icon-html5:before {
  content: "\f13b";
}
.icon-css3:before {
  content: "\f13c";
}
.icon-anchor:before {
  content: "\f13d";
}
.icon-unlock-alt:before {
  content: "\f13e";
}
.icon-bullseye:before {
  content: "\f140";
}
.icon-ellipsis-horizontal:before {
  content: "\f141";
}
.icon-ellipsis-vertical:before {
  content: "\f142";
}
.icon-rss-sign:before {
  content: "\f143";
}
.icon-play-sign:before {
  content: "\f144";
}
.icon-ticket:before {
  content: "\f145";
}
.icon-minus-sign-alt:before {
  content: "\f146";
}
.icon-check-minus:before {
  content: "\f147";
}
.icon-level-up:before {
  content: "\f148";
}
.icon-level-down:before {
  content: "\f149";
}
.icon-check-sign:before {
  content: "\f14a";
}
.icon-edit-sign:before {
  content: "\f14b";
}
.icon-external-link-sign:before {
  content: "\f14c";
}
.icon-share-sign:before {
  content: "\f14d";
}
.dropdown {
  position: relative;
}
.dropdown-toggle {
  *margin-bottom: -3px;
}
.dropdown-toggle:active,
.open .dropdown-toggle {
  outline: 0;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #000;
  opacity: 0.3;
  filter: alpha(opacity=30);
  content: "";
}
.dropdown .caret {
  margin-top: 8px;
  margin-left: 2px;
}
.dropdown:hover .caret,
.open.dropdown .caret {
  opacity: 1;
  filter: alpha(opacity=100);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  display: none;
  min-width: 160px;
  padding: 4px 0;
  margin: 0;
  list-style: none;
  background-color: #fff;
  border-color: #ccc;
  border-color: rgba(0,0,0,0.2);
  border-style: solid;
  border-width: 1px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 8px 1px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #fff;
  *width: 100%;
  *margin: -5px 0 5px;
}
.dropdown-menu a {
  display: block;
  padding: 3px 15px;
  clear: both;
  font-weight: normal;
  line-height: 18px;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu li > a:hover,
.dropdown-menu .active > a,
.dropdown-menu .active > a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #202020;
}
.dropdown.open {
  *z-index: 1000;
}
.dropdown.open .dropdown-toggle {
  color: #fff;
  background: #ccc;
  background: rgba(0,0,0,0.3);
}
.dropdown.open .dropdown-menu {
  display: block;
}
.pull-right .dropdown-menu {
  left: auto;
  right: 0;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid #000;
  content: "\2191";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
.typeahead {
  margin-top: 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #eee;
  border: 1px solid rgba(0,0,0,0.05);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0,0,0,0.15);
}
.well-large {
  padding: 24px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.well-small {
  padding: 9px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.fade {
  -webkit-transition: opacity .15s linear;
  -moz-transition: opacity .15s linear;
  -ms-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear;
  opacity: 0;
}
.fade.in {
  opacity: 1;
}
.collapse {
  -webkit-transition: height .35s ease;
  -moz-transition: height .35s ease;
  -ms-transition: height .35s ease;
  -o-transition: height .35s ease;
  transition: height .35s ease;
  position: relative;
  overflow: hidden;
  height: 0;
}
.collapse.in {
  height: auto;
}
.close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 18px;
  color: #000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.4;
  filter: alpha(opacity=40);
  cursor: pointer;
}
.btn {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  text-align: center;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #ddd;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  cursor: pointer;
  *margin-left: .3em;
}
.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
  background-color: #fff;
}
.btn:active,
.btn.active {
  background-color: #e6e6e6 \9;
}
.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
  background: #e6e6e6;
}
.btn:active,
.btn.active {
  background: #e6e6e6;
}
.btn:first-child {
  *margin-left: 0;
}
.btn:hover {
  color: #333;
  text-decoration: none;
  background-color: #f5f5f5;
  -webkit-transition: all .1s linear;
  -moz-transition: all .1s linear;
  -ms-transition: all .1s linear;
  -o-transition: all .1s linear;
  transition: all .1s linear;
}
.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn.active,
.btn:active {
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
  -moz-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
  box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
  background-color: #f5f5f5;
  background-color: #f5f5f5 \9;
  outline: 0;
}
.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-image: none;
  background-color: #f5f5f5;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn-large {
  padding: 9px 14px;
  font-size: 14px;
  line-height: normal;
}
.btn-large [class^="icon-"] {
  margin-top: 1px;
}
.btn-small {
  padding: 5px 9px;
  font-size: 10px;
  line-height: 16px;
}
.btn-small [class^="icon-"] {
  margin-top: -1px;
}
.btn-mini {
  padding: 2px 6px;
  font-size: 10px;
  line-height: 14px;
}
.btn-primary,
.btn-primary:hover,
.btn-warning,
.btn-warning:hover,
.btn-danger,
.btn-danger:hover,
.btn-success,
.btn-success:hover,
.btn-info,
.btn-info:hover,
.btn-inverse,
.btn-inverse:hover {
  color: #fff;
}
.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-inverse.active {
  color: rgba(255,255,255,0.75);
}
.btn-primary {
  background-color: #202020;
  background-image: -moz-linear-gradient(top,#202020,#202020);
  background-image: -ms-linear-gradient(top,#202020,#202020);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#202020),to(#202020));
  background-image: -webkit-linear-gradient(top,#202020,#202020);
  background-image: -o-linear-gradient(top,#202020,#202020);
  background-image: linear-gradient(top,#202020,#202020);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#202020', endColorstr='#202020', GradientType=0);
  border-color: #202020 #202020 #000000;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #202020;
  background-image: -moz-linear-gradient(top,#202020,#202020);
  background-image: -ms-linear-gradient(top,#202020,#202020);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#202020),to(#202020));
  background-image: -webkit-linear-gradient(top,#202020,#202020);
  background-image: -o-linear-gradient(top,#202020,#202020);
  background-image: linear-gradient(top,#202020,#202020);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#202020', endColorstr='#202020', GradientType=0);
  border-color: #202020 #202020 #000000;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  background-color: #202020;
}
.btn-primary:active,
.btn-primary.active {
  background-color: #070707 \9;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  background: #070707;
}
.btn-primary:active,
.btn-primary.active {
  background: #070707;
}
.btn-warning {
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  background-color: #f89406;
}
.btn-warning:active,
.btn-warning.active {
  background-color: #c67605 \9;
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  background: #c67605;
}
.btn-warning:active,
.btn-warning.active {
  background: #c67605;
}
.btn-danger {
  background-color: #bd362f;
  background-image: -moz-linear-gradient(top,#bd362f,#bd362f);
  background-image: -ms-linear-gradient(top,#bd362f,#bd362f);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#bd362f),to(#bd362f));
  background-image: -webkit-linear-gradient(top,#bd362f,#bd362f);
  background-image: -o-linear-gradient(top,#bd362f,#bd362f);
  background-image: linear-gradient(top,#bd362f,#bd362f);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bd362f', endColorstr='#bd362f', GradientType=0);
  border-color: #bd362f #bd362f #802420;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #bd362f;
  background-image: -moz-linear-gradient(top,#bd362f,#bd362f);
  background-image: -ms-linear-gradient(top,#bd362f,#bd362f);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#bd362f),to(#bd362f));
  background-image: -webkit-linear-gradient(top,#bd362f,#bd362f);
  background-image: -o-linear-gradient(top,#bd362f,#bd362f);
  background-image: linear-gradient(top,#bd362f,#bd362f);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bd362f', endColorstr='#bd362f', GradientType=0);
  border-color: #bd362f #bd362f #802420;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  background-color: #bd362f;
}
.btn-danger:active,
.btn-danger.active {
  background-color: #942a25 \9;
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  background: #942a25;
}
.btn-danger:active,
.btn-danger.active {
  background: #942a25;
}
.btn-success {
  background-color: #51a351;
  background-image: -moz-linear-gradient(top,#51a351,#51a351);
  background-image: -ms-linear-gradient(top,#51a351,#51a351);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#51a351),to(#51a351));
  background-image: -webkit-linear-gradient(top,#51a351,#51a351);
  background-image: -o-linear-gradient(top,#51a351,#51a351);
  background-image: linear-gradient(top,#51a351,#51a351);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a351', endColorstr='#51a351', GradientType=0);
  border-color: #51a351 #51a351 #387038;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #51a351;
  background-image: -moz-linear-gradient(top,#51a351,#51a351);
  background-image: -ms-linear-gradient(top,#51a351,#51a351);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#51a351),to(#51a351));
  background-image: -webkit-linear-gradient(top,#51a351,#51a351);
  background-image: -o-linear-gradient(top,#51a351,#51a351);
  background-image: linear-gradient(top,#51a351,#51a351);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a351', endColorstr='#51a351', GradientType=0);
  border-color: #51a351 #51a351 #387038;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  background-color: #51a351;
}
.btn-success:active,
.btn-success.active {
  background-color: #408140 \9;
}
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  background: #408140;
}
.btn-success:active,
.btn-success.active {
  background: #408140;
}
.btn-info {
  background-color: #2f96b4;
  background-image: -moz-linear-gradient(top,#2f96b4,#2f96b4);
  background-image: -ms-linear-gradient(top,#2f96b4,#2f96b4);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#2f96b4),to(#2f96b4));
  background-image: -webkit-linear-gradient(top,#2f96b4,#2f96b4);
  background-image: -o-linear-gradient(top,#2f96b4,#2f96b4);
  background-image: linear-gradient(top,#2f96b4,#2f96b4);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2f96b4', endColorstr='#2f96b4', GradientType=0);
  border-color: #2f96b4 #2f96b4 #1f6377;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #2f96b4;
  background-image: -moz-linear-gradient(top,#2f96b4,#2f96b4);
  background-image: -ms-linear-gradient(top,#2f96b4,#2f96b4);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#2f96b4),to(#2f96b4));
  background-image: -webkit-linear-gradient(top,#2f96b4,#2f96b4);
  background-image: -o-linear-gradient(top,#2f96b4,#2f96b4);
  background-image: linear-gradient(top,#2f96b4,#2f96b4);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2f96b4', endColorstr='#2f96b4', GradientType=0);
  border-color: #2f96b4 #2f96b4 #1f6377;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background-color: #2f96b4;
}
.btn-info:active,
.btn-info.active {
  background-color: #24748c \9;
}
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background: #24748c;
}
.btn-info:active,
.btn-info.active {
  background: #24748c;
}
.btn-inverse {
  background-color: #222222;
  background-image: -moz-linear-gradient(top,#222,#222);
  background-image: -ms-linear-gradient(top,#222,#222);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#222),to(#222));
  background-image: -webkit-linear-gradient(top,#222,#222);
  background-image: -o-linear-gradient(top,#222,#222);
  background-image: linear-gradient(top,#222,#222);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#222222', endColorstr='#222222', GradientType=0);
  border-color: #222 #222 #000000;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #222222;
  background-image: -moz-linear-gradient(top,#222,#222);
  background-image: -ms-linear-gradient(top,#222,#222);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#222),to(#222));
  background-image: -webkit-linear-gradient(top,#222,#222);
  background-image: -o-linear-gradient(top,#222,#222);
  background-image: linear-gradient(top,#222,#222);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#222222', endColorstr='#222222', GradientType=0);
  border-color: #222 #222 #000000;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  background-color: #222;
}
.btn-inverse:active,
.btn-inverse.active {
  background-color: #090909 \9;
}
.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  background: #090909;
}
.btn-inverse:active,
.btn-inverse.active {
  background: #090909;
}
button.btn,
input[type="submit"].btn {
  *padding-top: 2px;
  *padding-bottom: 2px;
}
button.btn::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button.btn.btn-large,
input[type="submit"].btn.btn-large {
  *padding-top: 7px;
  *padding-bottom: 7px;
}
button.btn.btn-small,
input[type="submit"].btn.btn-small {
  *padding-top: 3px;
  *padding-bottom: 3px;
}
button.btn.btn-mini,
input[type="submit"].btn.btn-mini {
  *padding-top: 1px;
  *padding-bottom: 1px;
}
.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn-link {
  border-color: transparent;
  cursor: pointer;
  color: #202020;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.btn-link:hover {
  color: #000000;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover {
  color: #333;
  text-decoration: none;
}
.btn-group {
  position: relative;
  *zoom: 1;
  *margin-left: .3em;
}
.btn-group:before,
.btn-group:after {
  display: table;
  content: "";
}
.btn-group:after {
  clear: both;
}
.btn-group:first-child {
  *margin-left: 0;
}
.btn-group + .btn-group {
  margin-left: 5px;
}
.btn-toolbar {
  margin-top: 9px;
  margin-bottom: 9px;
}
.btn-toolbar .btn-group {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.btn-group .btn {
  position: relative;
  float: left;
  margin-left: -1px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.btn-group .btn:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group .btn:last-child,
.btn-group .dropdown-toggle {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
.btn-group .btn.large:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group .btn.large:last-child,
.btn-group .large.dropdown-toggle {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
.btn-group .btn:hover,
.btn-group .btn:focus,
.btn-group .btn:active,
.btn-group .btn.active {
  z-index: 2;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
  -webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,0.125), inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 1px 0 0 rgba(255,255,255,0.125), inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: inset 1px 0 0 rgba(255,255,255,0.125), inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  *padding-top: 3px;
  *padding-bottom: 3px;
}
.btn-group .btn-mini.dropdown-toggle {
  padding-left: 5px;
  padding-right: 5px;
  *padding-top: 1px;
  *padding-bottom: 1px;
}
.btn-group .btn-small.dropdown-toggle {
  *padding-top: 4px;
  *padding-bottom: 4px;
}
.btn-group .btn-large.dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open {
  *z-index: 1000;
}
.btn-group.open .dropdown-menu {
  display: block;
  margin-top: 1px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.btn-group.open .dropdown-toggle {
  background-image: none;
  -webkit-box-shadow: inset 0 1px 6px rgba(0,0,0,0.15), 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 1px 6px rgba(0,0,0,0.15), 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 6px rgba(0,0,0,0.15), 0 1px 2px rgba(0,0,0,0.05);
}
.btn .caret {
  margin-top: 7px;
  margin-left: 0;
}
.btn:hover .caret,
.open.btn-group .caret {
  opacity: 1;
  filter: alpha(opacity=100);
}
.btn-mini .caret {
  margin-top: 5px;
}
.btn-small .caret {
  margin-top: 6px;
}
.btn-large .caret {
  margin-top: 6px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
}
.btn-primary .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret,
.btn-success .caret,
.btn-inverse .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 18px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #c09853;
}
.alert-heading {
  color: inherit;
}
.alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 18px;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
}
.alert-danger,
.alert-error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #3a87ad;
}
.alert-block {
  padding-top: 14px;
  padding-bottom: 14px;
}
.alert-block > p,
.alert-block > ul {
  margin-bottom: 0;
}
.alert-block p + p {
  margin-top: 5px;
}
.nav {
  margin-left: 0;
  margin-bottom: 18px;
  list-style: none;
}
.nav > li > a {
  display: block;
}
.nav > li > a:hover {
  text-decoration: none;
  background-color: #eee;
}
.nav .nav-header {
  display: block;
  padding: 3px 15px;
  font-size: 11px;
  font-weight: bold;
  line-height: 18px;
  color: #999;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.nav li + .nav-header {
  margin-top: 9px;
}
.nav-list {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0;
}
.nav-list > li > a,
.nav-list .nav-header {
  margin-left: -15px;
  margin-right: -15px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.nav-list > li > a {
  padding: 3px 15px;
}
.nav-list > .active > a,
.nav-list > .active > a:hover {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
  background-color: #202020;
}
.nav-list [class^="icon-"] {
  margin-right: 2px;
}
.nav-list .divider {
  height: 1px;
  margin: 8px 1px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #fff;
  *width: 100%;
  *margin: -5px 0 5px;
}
.nav-tabs,
.nav-pills {
  *zoom: 1;
}
.nav-tabs:before,
.nav-tabs:after,
.nav-pills:before,
.nav-pills:after {
  display: table;
  content: "";
}
.nav-tabs:after,
.nav-pills:after {
  clear: both;
}
.nav-tabs > li,
.nav-pills > li {
  float: left;
}
.nav-tabs > li > a,
.nav-pills > li > a {
  padding-right: 12px;
  padding-left: 12px;
  margin-right: 2px;
  line-height: 14px;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 18px;
  border: 1px solid transparent;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}
.nav-tabs > .active > a,
.nav-tabs > .active > a:hover {
  color: #555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-pills > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 2px;
  margin-bottom: 2px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.nav-pills > .active > a,
.nav-pills > .active > a:hover {
  color: #fff;
  background-color: #202020;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li > a {
  margin-right: 0;
}
.nav-tabs.nav-stacked {
  border-bottom: 0;
}
.nav-tabs.nav-stacked > li > a {
  border: 1px solid #ddd;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.nav-tabs.nav-stacked > li:first-child > a {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.nav-tabs.nav-stacked > li:last-child > a {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.nav-tabs.nav-stacked > li > a:hover {
  border-color: #ddd;
  z-index: 2;
}
.nav-pills.nav-stacked > li > a {
  margin-bottom: 3px;
}
.nav-pills.nav-stacked > li:last-child > a {
  margin-bottom: 1px;
}
.nav-tabs .dropdown-menu,
.nav-pills .dropdown-menu {
  margin-top: 1px;
  border-width: 1px;
}
.nav-pills .dropdown-menu {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.nav-tabs .dropdown-toggle .caret,
.nav-pills .dropdown-toggle .caret {
  border-top-color: #202020;
  border-bottom-color: #202020;
  margin-top: 6px;
}
.nav-tabs .dropdown-toggle:hover .caret,
.nav-pills .dropdown-toggle:hover .caret {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.nav-tabs .active .dropdown-toggle .caret,
.nav-pills .active .dropdown-toggle .caret {
  border-top-color: #333;
  border-bottom-color: #333;
}
.nav > .dropdown.active > a:hover {
  color: #000;
  cursor: pointer;
}
.nav-tabs .open .dropdown-toggle,
.nav-pills .open .dropdown-toggle,
.nav > .open.active > a:hover {
  color: #fff;
  background-color: #999;
  border-color: #999;
}
.nav .open .caret,
.nav .open.active .caret,
.nav .open a:hover .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
}
.tabs-stacked .open > a:hover {
  border-color: #999;
}
.tabbable {
  *zoom: 1;
}
.tabbable:before,
.tabbable:after {
  display: table;
  content: "";
}
.tabbable:after {
  clear: both;
}
.tab-content {
  display: table;
  width: 100%;
}
.tabs-below .nav-tabs,
.tabs-right .nav-tabs,
.tabs-left .nav-tabs {
  border-bottom: 0;
}
.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none;
}
.tab-content > .active,
.pill-content > .active {
  display: block;
}
.tabs-below .nav-tabs {
  border-top: 1px solid #ddd;
}
.tabs-below .nav-tabs > li {
  margin-top: -1px;
  margin-bottom: 0;
}
.tabs-below .nav-tabs > li > a {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.tabs-below .nav-tabs > li > a:hover {
  border-bottom-color: transparent;
  border-top-color: #ddd;
}
.tabs-below .nav-tabs .active > a,
.tabs-below .nav-tabs .active > a:hover {
  border-color: transparent #ddd #ddd #ddd;
}
.tabs-left .nav-tabs > li,
.tabs-right .nav-tabs > li {
  float: none;
}
.tabs-left .nav-tabs > li > a,
.tabs-right .nav-tabs > li > a {
  min-width: 74px;
  margin-right: 0;
  margin-bottom: 3px;
}
.tabs-left .nav-tabs {
  float: left;
  margin-right: 19px;
  border-right: 1px solid #ddd;
}
.tabs-left .nav-tabs > li > a {
  margin-right: -1px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
.tabs-left .nav-tabs > li > a:hover {
  border-color: #eee #ddd #eee #eee;
}
.tabs-left .nav-tabs .active > a,
.tabs-left .nav-tabs .active > a:hover {
  border-color: #ddd transparent #ddd #ddd;
  *border-right-color: #fff;
}
.tabs-right .nav-tabs {
  float: right;
  margin-left: 19px;
  border-left: 1px solid #ddd;
}
.tabs-right .nav-tabs > li > a {
  margin-left: -1px;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.tabs-right .nav-tabs > li > a:hover {
  border-color: #eee #eee #eee #ddd;
}
.tabs-right .nav-tabs .active > a,
.tabs-right .nav-tabs .active > a:hover {
  border-color: #ddd #ddd #ddd transparent;
  *border-left-color: #fff;
}
.navbar {
  *position: relative;
  *z-index: 2;
  overflow: visible;
}
.navbar-inner {
  background-color: #725e49;
  background-image: -moz-linear-gradient(top,#363636,#cc9966);
  background-image: -ms-linear-gradient(top,#363636,#cc9966);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#363636),to(#cc9966));
  background-image: -webkit-linear-gradient(top,#363636,#cc9966);
  background-image: -o-linear-gradient(top,#363636,#cc9966);
  background-image: linear-gradient(top,#363636,#cc9966);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#363636', endColorstr='#cc9966', GradientType=0);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.25), inset 0 -1px 0 rgba(0,0,0,0.1);
  -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.25), inset 0 -1px 0 rgba(0,0,0,0.1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.25), inset 0 -1px 0 rgba(0,0,0,0.1);
}
.navbar .container {
  width: auto;
}
.btn-navbar {
  display: none;
  float: right;
  padding: 7px 10px;
  margin-left: 5px;
  margin-right: 5px;
  background-color: #725e49;
  background-image: -moz-linear-gradient(top,#363636,#cc9966);
  background-image: -ms-linear-gradient(top,#363636,#cc9966);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#363636),to(#cc9966));
  background-image: -webkit-linear-gradient(top,#363636,#cc9966);
  background-image: -o-linear-gradient(top,#363636,#cc9966);
  background-image: linear-gradient(top,#363636,#cc9966);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#363636', endColorstr='#cc9966', GradientType=0);
  border-color: #cc9966 #cc9966 #ac7339;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #725e49;
  background-image: -moz-linear-gradient(top,#363636,#cc9966);
  background-image: -ms-linear-gradient(top,#363636,#cc9966);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#363636),to(#cc9966));
  background-image: -webkit-linear-gradient(top,#363636,#cc9966);
  background-image: -o-linear-gradient(top,#363636,#cc9966);
  background-image: linear-gradient(top,#363636,#cc9966);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#363636', endColorstr='#cc9966', GradientType=0);
  border-color: #cc9966 #cc9966 #ac7339;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 1px 0 rgba(255,255,255,0.075);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 1px 0 rgba(255,255,255,0.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 1px 0 rgba(255,255,255,0.075);
}
.btn-navbar:hover,
.btn-navbar:active,
.btn-navbar.active,
.btn-navbar.disabled,
.btn-navbar[disabled] {
  background-color: #cc9966;
}
.btn-navbar:active,
.btn-navbar.active {
  background-color: #bf8040 \9;
}
.btn-navbar:hover,
.btn-navbar:active,
.btn-navbar.active,
.btn-navbar.disabled,
.btn-navbar[disabled] {
  background: #bf8040;
}
.btn-navbar:active,
.btn-navbar.active {
  background: #bf8040;
}
.btn-navbar .icon-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #f5f5f5;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.25);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,0.25);
  box-shadow: 0 1px 0 rgba(0,0,0,0.25);
}
.btn-navbar .icon-bar + .icon-bar {
  margin-top: 3px;
}
.nav-collapse.collapse {
  height: auto;
}
.navbar {
  color: #fff;
}
.navbar .brand:hover {
  text-decoration: none;
}
.navbar .brand {
  float: left;
  display: block;
  padding: 8px 20px 12px;
  margin-left: -20px;
  font-size: 20px;
  font-weight: 200;
  line-height: 1;
  color: #fff;
}
.navbar .navbar-text {
  margin-bottom: 0;
  line-height: 40px;
}
.navbar .btn,
.navbar .btn-group {
  margin-top: 5px;
}
.navbar .btn-group .btn {
  margin-top: 0;
}
.navbar-form {
  margin-bottom: 0;
  *zoom: 1;
}
.navbar-form:before,
.navbar-form:after {
  display: table;
  content: "";
}
.navbar-form:after {
  clear: both;
}
.navbar-form input,
.navbar-form select,
.navbar-form .radio,
.navbar-form .checkbox {
  margin-top: 5px;
}
.navbar-form input,
.navbar-form select {
  display: inline-block;
  margin-bottom: 0;
}
.navbar-form input[type="image"],
.navbar-form input[type="checkbox"],
.navbar-form input[type="radio"] {
  margin-top: 3px;
}
.navbar-form .input-append,
.navbar-form .input-prepend {
  margin-top: 6px;
  white-space: nowrap;
}
.navbar-form .input-append input,
.navbar-form .input-prepend input {
  margin-top: 0;
}
.navbar-search {
  position: relative;
  float: left;
  margin-top: 6px;
  margin-bottom: 0;
}
.navbar-search .search-query {
  padding: 4px 9px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  color: #fff;
  background-color: #F8F8F8;
  border: 1px solid #eee;
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1), 0 1px 0px rgba(255,255,255,0.15);
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1), 0 1px 0px rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1), 0 1px 0px rgba(255,255,255,0.15);
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.navbar-search .search-query:-moz-placeholder {
  color: #333;
}
.navbar-search .search-query::-webkit-input-placeholder {
  color: #333;
}
.navbar-search .search-query:focus,
.navbar-search .search-query.focused {
  padding: 5px 10px;
  color: #333;
  text-shadow: 0 1px 0 #fff;
  background-color: #fff;
  border: 0;
  -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.15);
  -moz-box-shadow: 0 0 3px rgba(0,0,0,0.15);
  box-shadow: 0 0 3px rgba(0,0,0,0.15);
  outline: 0;
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  margin-bottom: 0;
}
.navbar-fixed-top .navbar-inner,
.navbar-fixed-bottom .navbar-inner {
  padding-left: 0;
  padding-right: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
  width: 998px;
}
.navbar-fixed-top {
  top: 0;
}
.navbar-fixed-bottom {
  bottom: 0;
}
.navbar .nav {
  position: relative;
  left: 0;
  display: block;
  float: left;
  margin: 0 10px 0 0;
}
.navbar .nav.pull-right {
  float: right;
}
.navbar .nav > li {
  display: block;
  float: left;
}
.navbar .nav > li > a {
  float: none;
  padding: 10px 10px 11px;
  line-height: 19px;
  color: black;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
}
.navbar .nav > li > a:hover {
  background-color: #bf8040;
  color: white;
  text-decoration: none;
}
.navbar .nav .active > a,
.navbar .nav .active > a:hover {
  color: white;
  text-decoration: none;
  background-color: #bf8040;
}
.navbar .divider-vertical {
  height: 40px;
  width: 1px;
  margin: 0 9px;
  overflow: hidden;
  background-color: #cc9966;
  border-right: 1px solid #363636;
}
.navbar .nav.pull-right {
  margin-left: 10px;
  margin-right: 0;
}
.navbar .dropdown-menu {
  margin-top: 1px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.navbar .dropdown-menu:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(0,0,0,0.2);
  position: absolute;
  top: -7px;
  left: 9px;
}
.navbar .dropdown-menu:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
  top: -6px;
  left: 10px;
}
.navbar-fixed-bottom .dropdown-menu:before {
  border-top: 7px solid rgba(0,0,0,0.2);
  border-bottom: 0;
  bottom: -7px;
  top: auto;
}
.navbar-fixed-bottom .dropdown-menu:after {
  border-top: 6px solid #fff;
  border-bottom: 0;
  bottom: -6px;
  top: auto;
}
.navbar .nav .dropdown-toggle .caret,
.navbar .nav .open.dropdown .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}
.navbar .nav .active .caret {
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar .nav .open > .dropdown-toggle,
.navbar .nav .active > .dropdown-toggle,
.navbar .nav .open.active > .dropdown-toggle {
  background-color: transparent;
}
.navbar .nav .active > .dropdown-toggle:hover {
  color: #fff;
}
.navbar .nav.pull-right .dropdown-menu,
.navbar .nav .dropdown-menu.pull-right {
  left: auto;
  right: 0;
}
.navbar .nav.pull-right .dropdown-menu:before,
.navbar .nav .dropdown-menu.pull-right:before {
  left: auto;
  right: 12px;
}
.navbar .nav.pull-right .dropdown-menu:after,
.navbar .nav .dropdown-menu.pull-right:after {
  left: auto;
  right: 13px;
}
.pagination {
  height: auto;
  margin: 0px;
}
.pagination ul {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin-left: 0;
  margin-bottom: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.pagination li {
  display: inline;
}
.pagination a {
  float: left;
  padding: 0 14px;
  line-height: 26px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-left-width: 0;
}
.pagination a:hover,
.pagination .active a {
  background-color: #f5f5f5;
}
.pagination .active a {
  color: #999;
  cursor: default;
}
.pagination .disabled span,
.pagination .disabled a,
.pagination .disabled a:hover {
  color: #999;
  background-color: transparent;
  cursor: default;
}
.pagination li:first-child a {
  border-left-width: 1px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.pagination li:last-child a {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.pagination-centered {
  text-align: center;
}
.pagination-right {
  text-align: right;
}
.pager {
  margin-left: 0;
  margin-bottom: 18px;
  list-style: none;
  text-align: center;
  *zoom: 1;
}
.pager:before,
.pager:after {
  display: table;
  content: "";
}
.pager:after {
  clear: both;
}
.pager li {
  display: inline;
}
.pager a {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.pager a:hover {
  text-decoration: none;
  background-color: #f5f5f5;
}
.pager .next a {
  float: right;
}
.pager .previous a {
  float: left;
}
.pager .disabled a,
.pager .disabled a:hover {
  color: #999;
  background-color: #fff;
  cursor: default;
}
.modal-open .dropdown-menu {
  z-index: 2050;
}
.modal-open .dropdown.open {
  *z-index: 2050;
}
.modal-open .popover {
  z-index: 2060;
}
.modal-open .tooltip {
  z-index: 2070;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop,
.modal-backdrop.fade.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1050;
  overflow: auto;
  width: 560px;
  margin: -250px 0 0 -280px;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0,0,0,0.3);
  *border: 1px solid #999;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
  -moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
  box-shadow: 0 3px 7px rgba(0,0,0,0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
}
.modal.fade {
  -webkit-transition: opacity .3s linear, top .3s ease-out;
  -moz-transition: opacity .3s linear, top .3s ease-out;
  -ms-transition: opacity .3s linear, top .3s ease-out;
  -o-transition: opacity .3s linear, top .3s ease-out;
  transition: opacity .3s linear, top .3s ease-out;
  top: -25%;
}
.modal.fade.in {
  top: 50%;
}
.modal-header {
  padding: 9px 15px;
  border-bottom: 1px solid #eee;
}
.modal-header .close {
  margin-top: 2px;
}
.modal-body {
  overflow-y: auto;
  max-height: 400px;
  padding: 15px;
}
.modal-form {
  margin-bottom: 0;
}
.modal-footer {
  padding: 14px 15px 15px;
  margin-bottom: 0;
  text-align: right;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: inset 0 1px 0 #fff;
  -moz-box-shadow: inset 0 1px 0 #fff;
  box-shadow: inset 0 1px 0 #fff;
  *zoom: 1;
}
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: "";
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.tooltip {
  position: absolute;
  z-index: 1020;
  display: block;
  visibility: visible;
  padding: 5px;
  font-size: 11px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.tooltip.top {
  margin-top: -2px;
}
.tooltip.right {
  margin-left: 2px;
}
.tooltip.bottom {
  margin-top: 2px;
}
.tooltip.left {
  margin-left: -2px;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #000;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  padding: 5px;
}
.popover.top {
  margin-top: -5px;
}
.popover.right {
  margin-left: 5px;
}
.popover.bottom {
  margin-top: 5px;
}
.popover.left {
  margin-left: -5px;
}
.popover.top .arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
}
.popover.right .arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #000;
}
.popover.bottom .arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #000;
}
.popover.left .arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #000;
}
.popover .arrow {
  position: absolute;
  width: 0;
  height: 0;
}
.popover-inner {
  padding: 3px;
  width: 280px;
  overflow: hidden;
  background: #000;
  background: rgba(0,0,0,0.8);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
  -moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
  box-shadow: 0 3px 7px rgba(0,0,0,0.3);
}
.popover-title {
  padding: 9px 15px;
  line-height: 1;
  background-color: #f5f5f5;
  border-bottom: 1px solid #eee;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.popover-content {
  padding: 14px;
  background-color: #fff;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
}
.popover-content p,
.popover-content ul,
.popover-content ol {
  margin-bottom: 0;
}
.thumbnails {
  margin-left: -10px;
  list-style: none;
  *zoom: 1;
}
.thumbnails:before,
.thumbnails:after {
  display: table;
  content: "";
}
.thumbnails:after {
  clear: both;
}
.thumbnails > li {
  float: left;
  margin: 0 0 18px 10px;
}
.thumbnail {
  display: block;
  padding: 4px;
  line-height: 1;
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.075);
  -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: 0 1px 1px rgba(0,0,0,0.075);
}
a.thumbnail:hover {
  border-color: #202020;
  -webkit-box-shadow: 0 1px 4px rgba(0,105,214,0.25);
  -moz-box-shadow: 0 1px 4px rgba(0,105,214,0.25);
  box-shadow: 0 1px 4px rgba(0,105,214,0.25);
}
.thumbnail > img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.thumbnail .caption {
  padding: 9px;
}
.media,
.media-body {
  overflow: hidden;
  *overflow: visible;
  zoom: 1;
}
.media,
.media .media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media-object {
  display: block;
}
.media-heading {
  margin: 0 0 5px;
}
.media .pull-left {
  margin-right: 10px;
}
.media .pull-right {
  margin-left: 10px;
}
.media-list {
  margin-left: 0;
  list-style: none;
}
.label {
  padding: 1px 4px 2px;
  font-size: 10.152px;
  font-weight: bold;
  line-height: 13px;
  color: #fff;
  vertical-align: middle;
  white-space: nowrap;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #999;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.label:hover {
  color: #fff;
  text-decoration: none;
}
.label-important {
  background-color: #b94a48;
}
.label-important:hover {
  background-color: #953b39;
}
.label-warning {
  background-color: #f89406;
}
.label-warning:hover {
  background-color: #c67605;
}
.label-success {
  background-color: #468847;
}
.label-success:hover {
  background-color: #356635;
}
.label-info {
  background-color: #3a87ad;
}
.label-info:hover {
  background-color: #2d6987;
}
.label-inverse {
  background-color: #333;
}
.label-inverse:hover {
  background-color: #1a1a1a;
}
.badge {
  padding: 1px 9px 2px;
  font-size: 11.1px;
  font-weight: bold;
  white-space: nowrap;
  color: #fff;
  background-color: #999;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
}
.badge:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.badge-error {
  background-color: #b94a48;
}
.badge-error:hover {
  background-color: #953b39;
}
.badge-warning {
  background-color: #f89406;
}
.badge-warning:hover {
  background-color: #c67605;
}
.badge-success {
  background-color: #468847;
}
.badge-success:hover {
  background-color: #356635;
}
.badge-info {
  background-color: #3a87ad;
}
.badge-info:hover {
  background-color: #2d6987;
}
.badge-inverse {
  background-color: #333;
}
.badge-inverse:hover {
  background-color: #1a1a1a;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
@-moz-keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
@-ms-keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
.progress {
  overflow: hidden;
  height: 18px;
  margin-bottom: 18px;
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top,#f5f5f5,#f9f9f9);
  background-image: -ms-linear-gradient(top,#f5f5f5,#f9f9f9);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),to(#f9f9f9));
  background-image: -webkit-linear-gradient(top,#f5f5f5,#f9f9f9);
  background-image: -o-linear-gradient(top,#f5f5f5,#f9f9f9);
  background-image: linear-gradient(top,#f5f5f5,#f9f9f9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.progress .bar {
  width: 0%;
  height: 18px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #0e90d2;
  background-image: -moz-linear-gradient(top,#149bdf,#0480be);
  background-image: -ms-linear-gradient(top,#149bdf,#0480be);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#149bdf),to(#0480be));
  background-image: -webkit-linear-gradient(top,#149bdf,#0480be);
  background-image: -o-linear-gradient(top,#149bdf,#0480be);
  background-image: linear-gradient(top,#149bdf,#0480be);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
  -moz-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width .6s ease;
  -moz-transition: width .6s ease;
  -ms-transition: width .6s ease;
  -o-transition: width .6s ease;
  transition: width .6s ease;
}
.progress-striped .bar {
  background-color: #149bdf;
  background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,0.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,0.15)),color-stop(.75,rgba(255,255,255,0.15)),color-stop(.75,transparent),to(transparent));
  background-image: -webkit-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: -moz-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: -ms-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: -o-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  -webkit-background-size: 40px 40px;
  -moz-background-size: 40px 40px;
  -o-background-size: 40px 40px;
  background-size: 40px 40px;
}
.progress.active .bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -moz-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-danger .bar {
  background-color: #dd514c;
  background-image: -moz-linear-gradient(top,#ee5f5b,#c43c35);
  background-image: -ms-linear-gradient(top,#ee5f5b,#c43c35);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#c43c35));
  background-image: -webkit-linear-gradient(top,#ee5f5b,#c43c35);
  background-image: -o-linear-gradient(top,#ee5f5b,#c43c35);
  background-image: linear-gradient(top,#ee5f5b,#c43c35);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
}
.progress-danger.progress-striped .bar {
  background-color: #ee5f5b;
  background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,0.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,0.15)),color-stop(.75,rgba(255,255,255,0.15)),color-stop(.75,transparent),to(transparent));
  background-image: -webkit-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: -moz-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: -ms-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: -o-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
}
.progress-success .bar {
  background-color: #5eb95e;
  background-image: -moz-linear-gradient(top,#62c462,#57a957);
  background-image: -ms-linear-gradient(top,#62c462,#57a957);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#57a957));
  background-image: -webkit-linear-gradient(top,#62c462,#57a957);
  background-image: -o-linear-gradient(top,#62c462,#57a957);
  background-image: linear-gradient(top,#62c462,#57a957);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
}
.progress-success.progress-striped .bar {
  background-color: #62c462;
  background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,0.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,0.15)),color-stop(.75,rgba(255,255,255,0.15)),color-stop(.75,transparent),to(transparent));
  background-image: -webkit-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: -moz-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: -ms-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: -o-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
}
.progress-info .bar {
  background-color: #4bb1cf;
  background-image: -moz-linear-gradient(top,#5bc0de,#339bb9);
  background-image: -ms-linear-gradient(top,#5bc0de,#339bb9);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#339bb9));
  background-image: -webkit-linear-gradient(top,#5bc0de,#339bb9);
  background-image: -o-linear-gradient(top,#5bc0de,#339bb9);
  background-image: linear-gradient(top,#5bc0de,#339bb9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
}
.progress-info.progress-striped .bar {
  background-color: #5bc0de;
  background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,0.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,0.15)),color-stop(.75,rgba(255,255,255,0.15)),color-stop(.75,transparent),to(transparent));
  background-image: -webkit-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: -moz-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: -ms-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: -o-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
}
.progress-warning .bar {
  background-color: #faa732;
  background-image: -moz-linear-gradient(top,#fbb450,#f89406);
  background-image: -ms-linear-gradient(top,#fbb450,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));
  background-image: -webkit-linear-gradient(top,#fbb450,#f89406);
  background-image: -o-linear-gradient(top,#fbb450,#f89406);
  background-image: linear-gradient(top,#fbb450,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
}
.progress-warning.progress-striped .bar {
  background-color: #fbb450;
  background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,0.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,0.15)),color-stop(.75,rgba(255,255,255,0.15)),color-stop(.75,transparent),to(transparent));
  background-image: -webkit-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: -moz-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: -ms-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: -o-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
  background-image: linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
}
.accordion {
  margin-bottom: 18px;
}
.accordion-group {
  margin-bottom: 2px;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.accordion-heading {
  border-bottom: 0;
}
.accordion-heading .accordion-toggle {
  display: block;
  padding: 8px 15px;
}
.accordion-inner {
  padding: 9px 15px;
  border-top: 1px solid #e5e5e5;
}
.carousel {
  position: relative;
  margin-bottom: 18px;
  line-height: 1;
}
.carousel-inner {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.carousel .item {
  display: none;
  position: relative;
  -webkit-transition: .6s ease-in-out left;
  -moz-transition: .6s ease-in-out left;
  -ms-transition: .6s ease-in-out left;
  -o-transition: .6s ease-in-out left;
  transition: .6s ease-in-out left;
}
.carousel .item > img {
  display: block;
  line-height: 1;
}
.carousel .active,
.carousel .next,
.carousel .prev {
  display: block;
}
.carousel .active {
  left: 0;
}
.carousel .next,
.carousel .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel .next {
  left: 100%;
}
.carousel .prev {
  left: -100%;
}
.carousel .next.left,
.carousel .prev.right {
  left: 0;
}
.carousel .active.left {
  left: -100%;
}
.carousel .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 40%;
  left: 15px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  font-size: 60px;
  font-weight: 100;
  line-height: 30px;
  color: #fff;
  text-align: center;
  background: #222;
  border: 3px solid #fff;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.carousel-control.right {
  left: auto;
  right: 15px;
}
.carousel-control:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 15px 5px;
  background: #333;
  background: rgba(0,0,0,0.75);
}
.carousel-caption h4,
.carousel-caption p {
  color: #fff;
}
.hero-unit {
  padding: 60px;
  margin-bottom: 30px;
  background-color: #eee;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.hero-unit h1 {
  margin-bottom: 0;
  font-size: 60px;
  line-height: 1;
  color: inherit;
  letter-spacing: -1px;
}
.hero-unit p {
  font-size: 18px;
  font-weight: 200;
  line-height: 27px;
  color: inherit;
}
.pull-right {
  float: right;
  text-align: right;
}
.pull-left {
  float: left;
}
.hide {
  display: none;
}
.show {
  display: block;
}
.invisible {
  visibility: hidden;
}
.btn,
.btn-group a {
  text-decoration: none;
}
.btn-group a {
  text-align: left;
}
.title-buttons .btn-group .dropdown-menu,
.a-right .btn-group .dropdown-menu {
  left: auto;
  right: 0;
}
#checkout-review-submit button.btn-checkout {
  text-shadow: none;
}
#checkout-review-submit button.btn-checkout,
.custom-button {
  width: 183px;
  height: 38px;
  font-size: 18px;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  -ms-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  text-align: center;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #ddd;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  cursor: pointer;
  *margin-left: .3em;
  text-decoration: none;
  color: #fff;
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
#checkout-review-submit button.btn-checkout [class^="icon-"].icon-large,
#checkout-review-submit button.btn-checkout [class*=" icon-"].icon-large,
.custom-button [class^="icon-"].icon-large,
.custom-button [class*=" icon-"].icon-large {
  line-height: .9em;
}
#checkout-review-submit button.btn-checkout [class^="icon-"].icon-spin,
#checkout-review-submit button.btn-checkout [class*=" icon-"].icon-spin,
.custom-button [class^="icon-"].icon-spin,
.custom-button [class*=" icon-"].icon-spin {
  display: inline-block;
}
#checkout-review-submit button.btn-checkout [class^="icon-"].pull-left.icon-2x,
#checkout-review-submit button.btn-checkout [class^="icon-"].pull-right.icon-2x,
#checkout-review-submit button.btn-checkout [class*=" icon-"].pull-left.icon-2x,
#checkout-review-submit button.btn-checkout [class*=" icon-"].pull-right.icon-2x,
.custom-button [class^="icon-"].pull-left.icon-2x,
.custom-button [class^="icon-"].pull-right.icon-2x,
.custom-button [class*=" icon-"].pull-left.icon-2x,
.custom-button [class*=" icon-"].pull-right.icon-2x {
  margin-top: .18em;
}
#checkout-review-submit button.btn-checkout [class^="icon-"].icon-spin.icon-large,
#checkout-review-submit button.btn-checkout [class*=" icon-"].icon-spin.icon-large,
.custom-button [class^="icon-"].icon-spin.icon-large,
.custom-button [class*=" icon-"].icon-spin.icon-large {
  line-height: .8em;
}
#checkout-review-submit button.btn-checkout:hover,
#checkout-review-submit button.btn-checkout:active,
#checkout-review-submit button.btn-checkout.active,
#checkout-review-submit button.btn-checkout.disabled,
#checkout-review-submit button.btn-checkout[disabled],
.custom-button:hover,
.custom-button:active,
.custom-button.active,
.custom-button.disabled,
.custom-button[disabled] {
  background-color: #fff;
}
#checkout-review-submit button.btn-checkout:active,
#checkout-review-submit button.btn-checkout.active,
.custom-button:active,
.custom-button.active {
  background-color: #e6e6e6 \9;
}
#checkout-review-submit button.btn-checkout:hover,
#checkout-review-submit button.btn-checkout:active,
#checkout-review-submit button.btn-checkout.active,
#checkout-review-submit button.btn-checkout.disabled,
#checkout-review-submit button.btn-checkout[disabled],
.custom-button:hover,
.custom-button:active,
.custom-button.active,
.custom-button.disabled,
.custom-button[disabled] {
  background: #e6e6e6;
}
#checkout-review-submit button.btn-checkout:active,
#checkout-review-submit button.btn-checkout.active,
.custom-button:active,
.custom-button.active {
  background: #e6e6e6;
}
#checkout-review-submit button.btn-checkout:first-child,
.custom-button:first-child {
  *margin-left: 0;
}
#checkout-review-submit button.btn-checkout:hover,
#checkout-review-submit button.btn-checkout:active,
#checkout-review-submit button.btn-checkout.active,
#checkout-review-submit button.btn-checkout.disabled,
#checkout-review-submit button.btn-checkout[disabled],
.custom-button:hover,
.custom-button:active,
.custom-button.active,
.custom-button.disabled,
.custom-button[disabled] {
  background-color: #f89406;
}
#checkout-review-submit button.btn-checkout:active,
#checkout-review-submit button.btn-checkout.active,
.custom-button:active,
.custom-button.active {
  background-color: #c67605 \9;
}
#checkout-review-submit button.btn-checkout:hover,
#checkout-review-submit button.btn-checkout:active,
#checkout-review-submit button.btn-checkout.active,
#checkout-review-submit button.btn-checkout.disabled,
#checkout-review-submit button.btn-checkout[disabled],
.custom-button:hover,
.custom-button:active,
.custom-button.active,
.custom-button.disabled,
.custom-button[disabled] {
  background: #c67605;
}
#checkout-review-submit button.btn-checkout:active,
#checkout-review-submit button.btn-checkout.active,
.custom-button:active,
.custom-button.active {
  background: #c67605;
}
#checkout-review-submit button.btn-checkout .caret,
.custom-button .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
#checkout-review-submit button.btn-checkout:hover,
.custom-button:hover {
  color: #fff;
  text-decoration: none;
}
#checkout-review-submit button.btn-checkout.large,
.custom-button.large {
  font-size: 20px;
  line-height: 25px;
}
#checkout-review-submit button.btn-checkout.small,
.custom-button.small {
  font-size: 14px;
  line-height: 27px;
  height: 27px;
}
#checkout-review-submit button.btn-checkout span,
.custom-button span {
  white-space: nowrap;
}
#checkout-review-submit button.btn-checkout {
  font-size: 16px;
  width: 250px;
}
#product_comparison .custom-button {
  height: 30px;
}
.custom-button-wide {
  width: 100%;
  padding: 4px 0;
}
.custom-button-black {
  font-size: 14px;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 9px 0;
  border: none;
  background: #000;
  display: inline-block;
  margin: 14px 0;
  text-transform: uppercase;
}
.custom-button-black:hover {
  background: #202020;
  color: #fff;
  text-decoration: none;
}
.demo-notice {
  background: none repeat scroll 0 0 #D75F07;
  color: #FFFFFF;
  line-height: 1em;
  margin: 0;
  padding: 5px 10px 6px;
  text-align: center;
}
.std ul.messages {
  list-style: none;
}
.messages {
  list-style: none;
  margin-left: 0;
}
.messages > li {
  background-color: #FCF8E3;
  border: 1px solid #FBEED5;
  border-radius: 4px 4px 4px 4px;
  color: #7F6438;
  margin-bottom: 18px;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.messages > li > ul {
  list-style: none;
  margin-left: 0;
}
.messages .success-msg {
  background-color: #DFF0D8;
  border-color: #D6E9C6;
  color: #2E592E;
}
.validation-failed {
  border-color: #9d261d;
}
.lv_window {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  overflow: hidden;
  text-align: left;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.lv_window,
.lv_controls_top,
.lv_controls_top_close,
.lv_thumbnails,
.lv_thumbnails_top_close {
  z-index: 100000;
}
.lv_skin {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
}
.lv_bubble,
.lv_shadow {
  position: absolute;
}
.lv_bubble * {
  display: inline;
  position: relative;
  float: left;
  z-index: none;
}
.lv_skin * {
  margin: 0;
  padding: 0;
}
.lv_overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99999;
}
.lv_spinner_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
}
.lv_inner_previous_next_overlays {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  zoom: 1;
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/blank.gif');
}
.lv_inner_previous_next_overlays .lv_button {
  position: relative;
  height: 100%;
  width: 49%;
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/blank.gif');
  zoom: 1;
  cursor: pointer;
}
.lv_inner_previous_next_overlays * {
  padding: 0;
  margin: 0;
}
.lv_button_inner_previous_overlay {
  float: left;
}
.lv_button_inner_next_overlay {
  float: right;
}
.lv_title_caption {
  position: absolute;
  font: 11px/18px "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Tahoma, Arial, sans-serif;
  color: #eaeaea;
}
.lv_title_caption_slider {
  position: relative;
  float: left;
  overflow-y: hidden;
}
.lv_title_caption_slide {
  position: relative;
  float: left;
  top: 0;
  left: 0;
  padding: 15px 0 7px 0;
}
.lv_title {
  font-weight: bold;
}
.lv_title,
.lv_caption {
  float: left;
  clear: both;
}
.lv_update_queue {
  position: absolute;
  top: -15000px;
  left: -15000px;
  width: 5000px;
  height: 5000px;
  visibility: hidden;
}
.lv_update_queue .lv_window,
.lv_update_queue .lv_content {
  position: relative;
  overflow: visible;
  float: left;
  top: auto;
  left: auto;
  width: 100%;
}
.lv_update_queue .lv_content_wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
.lv_content_wrapper canvas {
  float: left;
  zoom: 1;
}
.lv_content {
  position: absolute;
  padding: 0;
  margin: 0;
  overflow: auto;
  text-align: left;
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/blank.gif');
}
.lv_content .lv_content_wrapper {
  float: left;
  clear: both;
  position: relative;
}
.lv_measure_element {
  position: relative;
  float: left;
  clear: both;
}
.lv_content_canvas,
.lv_content_image,
.lv_content_flash,
.lv_content_object,
.lv_content_iframe,
.lv_content_html {
  float: left;
  border: 0;
  clear: both;
  padding: 0;
  margin: 0;
  background: none;
}
.lv_blank_background,
.lv_content {
  background-image: url('https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/blank.gif');
}
.lv_side_buttons_underneath {
  position: absolute;
  top: 50%;
  left: 50%;
  clear: both;
  width: 100%;
  padding: 0;
  height: 67px;
  margin-top: -34px;
}
.lv_side_buttons_underneath .lv_side_left {
  float: left;
}
.lv_side_buttons_underneath .lv_side_right {
  float: right;
}
.lv_side_buttons_underneath * {
  padding: 0;
  margin: 0;
}
.lv_side,
.lv_side_button {
  height: 37px;
  width: 41px;
  position: absolute;
}
.lv_side {
  position: relative;
  overflow: hidden;
  padding: 15px 0;
  cursor: pointer;
}
.lv_side_left {
  margin-left: -41px;
}
.lv_side_right {
  margin-right: -41px;
}
.lv_side_button {
  height: 31px;
  width: 41px;
  cursor: pointer;
}
.lv_side_button_previous {
  margin-left: 0px;
  background-image: url("https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/light/sprite.png");
  background-repeat: no-repeat;
  background-position: 0px -33px;
}
.lv_side_button_previous:hover,
.lv_side_left .lv_side_button_out {
  background-position: 0px -64px;
}
.lv_side_button_next {
  margin-left: 0px;
  background-image: url("https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/light/sprite.png");
  background-repeat: no-repeat;
  background-position: -41px -33px;
}
.lv_side_button_next:hover,
.lv_side_right .lv_side_button_out {
  background-position: -41px -64px;
}
.lv_side_buttons_underneath .lv_side_button_out {
  margin-left: 0;
}
.lv_side_buttons_underneath .lv_side_left_disabled .lv_side_button,
.lv_side_buttons_underneath .lv_side_left_disabled:hover .lv_side_button {
  background-position: 0px -95px;
}
.lv_button_top_close {
  width: 33px;
  height: 33px;
  position: absolute;
  cursor: pointer;
  background-image: url("https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/light/sprite.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  top: 17px;
}
.lv_button_top_close:hover {
  background-position: -33px 0px;
}
.lv_controls_top {
  position: fixed;
  top: 0;
  left: 50%;
  width: 126px;
  margin-left: -63px;
  height: 63px;
  overflow: hidden;
}
.lv_controls_top .lv_top_middle {
  width: 100%;
  height: 33px;
  margin-top: 15px;
  float: left;
  position: relative;
}
.lv_controls_top .lv_top_button {
  height: 100%;
  float: left;
  position: relative;
}
.lv_controls_top .lv_icon {
  background-image: url("https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/light/sprite.png");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  float: left;
  cursor: pointer;
  font-family: "Lucida Sans", "Lucida Grande", Tahoma, sans-serif;
  color: #d4d4d4;
  text-shadow: 0 0 2px rgba(0,0,0,0.5);
  position: relative;
}
.lv_controls_top .lv_icon_disabled {
  cursor: default;
  color: #2e2e2e;
  text-shadow: none;
}
.lv_controls_top_with_slideshow {
  width: 147px;
  margin-left: -74px;
}
.lv_top_previous {
  width: 63px;
}
.lv_top_previous .lv_icon {
  background-position: 0px -96px;
}
.lv_top_previous:hover .lv_icon {
  background-position: 0px -129px;
}
.lv_top_previous .lv_icon_disabled,
.lv_top_previous:hover .lv_icon_disabled {
  background-position: 0px -162px;
}
.lv_top_slideshow {
  width: 21px;
  display: none;
  position: relative;
}
.lv_controls_top_with_slideshow .lv_top_slideshow {
  display: block;
}
.lv_top_slideshow .lv_icon {
  background-position: -63px -96px;
}
.lv_top_slideshow:hover .lv_icon {
  background-position: -63px -129px;
}
.lv_top_slideshow .lv_icon_disabled,
.lv_top_slideshow:hover .lv_icon_disabled {
  background-position: -63px -162px;
}
.lv_top_slideshow_playing .lv_icon {
  background-position: -148px -96px;
}
.lv_top_slideshow_playing:hover .lv_icon {
  background-position: -148px -129px;
}
.lv_top_next {
  width: 62px;
}
.lv_top_next .lv_icon {
  background-position: -84px -96px;
}
.lv_top_next:hover .lv_icon {
  background-position: -84px -129px;
}
.lv_top_next .lv_icon_disabled,
.lv_top_next:hover .lv_icon_disabled {
  background-position: -84px -162px;
}
.lv_icon span {
  margin-top: 5px;
  width: 30px;
  text-align: center;
  line-height: 23px;
}
.lv_top_previous span {
  float: right;
  margin-right: 7px;
}
.lv_top_next span {
  float: left;
  margin-left: 6px;
}
.lv_controls_top_close {
  height: 33px;
  width: 33px;
  position: fixed;
  top: 0;
  right: 0;
  padding: 13px;
}
.lv_controls_top_close_button {
  height: 33px;
  width: 33px;
  float: left;
  position: relative;
  background-image: url("https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/light/sprite.png");
  background-repeat: no-repeat;
  background-position: -166px -21px;
  cursor: pointer;
}
.lv_controls_top_close_button:hover {
  background-position: -166px -54px;
}
.lv_controls_relative {
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -150px;
  height: 50px;
  overflow: hidden;
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/blank.gif');
}
.lv_slider {
  font-family: "Lucida Sans", "Lucida Grande", Tahoma, sans-serif;
  font-size: 9px;
  height: 21px;
  line-height: 21px;
  padding: 15px 0 14px 0;
  position: relative;
  overflow: hidden;
}
.lv_slider .lv_slider_numbers {
  float: left;
  position: relative;
  height: 21px;
  overflow: hidden;
  margin: 0 2px;
}
.lv_slider .lv_slider_slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
}
.lv_slider_number,
.lv_slider_number_empty {
  float: left;
  position: relative;
  height: 21px;
  width: 28px;
  line-height: 21px;
  overflow: hidden;
  color: #d4d4d4;
  text-shadow: 0 0 2px rgba(0,0,0,0.5);
  background: #4a4a4a;
  text-align: center;
  padding: 0;
  margin: 0;
  zoom: 1;
  text-transform: none;
  text-decoration: none;
  border: none;
  background-repeat: no-repeat;
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/light/sprite.png');
  background-position: -67px 0px;
  cursor: pointer;
}
.lv_slider_number_empty {
  background-position: -151px 0px;
  cursor: default;
}
.lv_slider_number_last {
  margin-right: 0;
}
.lv_slider_number:hover {
  background-position: -95px 0px;
}
.lv_slider_numbers .lv_slider_number_active,
.lv_slider_numbers .lv_slider_number_active:hover {
  background-position: -123px 0px;
  color: #808080;
  cursor: default;
}
.lv_slider .lv_slider_icon,
.lv_slider .lv_icon {
  height: 21px;
  width: 21px;
}
.lv_slider .lv_slider_icon {
  zoom: 1;
  padding: 0 2px;
  display: inline;
  position: relative;
  cursor: pointer;
  float: left;
}
.lv_slider .lv_icon {
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/light/sprite.png');
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 2px;
  display: block;
}
.lv_slider_previous .lv_icon {
  background-position: -82px -21px;
}
.lv_slider_previous .lv_icon:hover {
  background-position: -82px -42px;
}
.lv_slider_previous_disabled .lv_icon,
.lv_slider_previous_disabled .lv_icon:hover {
  background-position: -82px -63px;
  cursor: default;
}
.lv_slider_next .lv_icon {
  background-position: -103px -21px;
}
.lv_slider_next .lv_icon:hover {
  background-position: -103px -42px;
}
.lv_slider_next_disabled .lv_icon,
.lv_slider_next_disabled .lv_icon:hover {
  background-position: -103px -63px;
  cursor: default;
}
.lv_slider_slideshow {
  position: relative;
  top: 0;
  left: 0;
  display: inline;
}
.lv_slider_slideshow .lv_icon {
  background-position: -125px -21px;
}
.lv_slider_slideshow .lv_icon:hover {
  background-position: -125px -42px;
}
.lv_slider_slideshow_playing .lv_icon {
  background-position: -146px -21px;
}
.lv_slider_slideshow_playing .lv_icon:hover {
  background-position: -146px -42px;
}
.lv_slider_slideshow_disabled .lv_icon,
.lv_slider_slideshow_disabled .lv_icon:hover {
  background-position: -125px -63px;
  cursor: default;
}
.lv_thumbnails {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 15px 0 25px 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.lv_thumbnails_slider {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
}
.lv_thumbnails_slide {
  position: absolute;
  top: 0;
  left: 0;
}
.lv_thumbnail {
  width: 92px;
  height: 92px;
  float: left;
  position: relative;
  display: inline;
  overflow: hidden;
}
.lv_thumbnail_image {
  position: relative;
  background: red;
  background: #161616;
  width: 80px;
  height: 80px;
  margin: 6px;
  float: left;
  box-shadow: 0 -1px 4px rgba(0,0,0,0.3);
  cursor: pointer;
  overflow: hidden;
  display: inline;
  z-index: 0;
}
.lv_thumbnail_image img {
  position: absolute;
}
.lv_thumbnail_active .lv_thumbnail_image {
  filter: alpha(opacity=35);
  opacity: .35;
  display: inline;
}
.lv_thumbnail_icon {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -18px;
  margin-top: -18px;
  background-position: 99px 99px;
  background-repeat: no-repeat;
  display: block !important;
  display: none;
}
.lv_thumbnail_image_spinner_overlay {
  width: 100%;
  height: 100%;
  float: left;
  position: relative;
  background: #161616;
}
.lv_thumbnail_icon_video {
  background-position: 0px -196px;
}
.lv_thumbnail:hover .lv_thumbnail_icon_video {
  background-position: -36px -196px;
}
.lv_thumbnail_active:hover .lv_thumbnail_icon_video {
  background-position: 0px -196px;
}
.lv_content {
  text-align: left;
}
.lv_content,
.lv_content h1,
.lv_content h2,
.lv_content h3,
.lv_content h4,
.lv_content h5,
.lv_content h6 {
  color: #333;
}
.lv_content a,
.lv_content a:hover {
  color: #0088cc;
  font-weight: normal;
  background: none;
  border: 0;
  text-decoration: none;
}
.lv_content a:hover {
  text-decoration: underline;
}
.lv_title_caption a,
.lv_title_caption a:hover {
  color: #b4b4b4;
  font-weight: normal;
  background: none;
  border: 0;
  text-decoration: none;
}
.lv_title_caption a:hover {
  text-decoration: underline;
}
.lv_window_light .lv_title_caption {
  text-shadow: 0px 1px 1px rgba(0,0,0,0.25);
}
.lv_window_light .lv_button_top_close {
  top: 17px;
  left: 55px;
}
.lv_window_light .lv_side_button_previous,
.lv_window_light .lv_side_button_next,
.lv_window_light .lv_button_top_close,
.lv_window_light .lv_controls_top_close_button,
.lv_window_light .lv_slider .lv_icon,
.lv_window_light .lv_slider_number,
.lv_window_light .lv_slider_number_empty,
.lv_window_light .lv_controls_top_close_button,
.lv_controls_top_skin_light .lv_icon,
.lv_controls_top_close_skin_light .lv_controls_top_close_button,
.lv_thumbnails_skin_light .lv_thumbnail_icon {
  background-image: url('https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/light/sprite.png') !important;
  background-image: url('https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/light/sprite_ie_lt_7.png');
}
.lv_content_dark,
.lv_content_dark h1,
.lv_content_dark h2,
.lv_content_dark h3,
.lv_content_dark h4,
.lv_content_dark h5,
.lv_content_dark h6 {
  color: #f3f3f3;
}
.lv_content_dark a,
.lv_content_dark a:hover {
  color: #b4b4b4;
}
.lv_window_dark .lv_side_buttons_underneath .lv_side_button_previous,
.lv_window_dark .lv_side_buttons_underneath .lv_side_button_next,
.lv_window_dark .lv_button_top_close,
.lv_window_dark .lv_controls_top_close_button,
.lv_window_dark .lv_slider .lv_icon,
.lv_window_dark .lv_slider .lv_slider_number,
.lv_window_dark .lv_slider .lv_slider_number_empty,
.lv_window_dark .lv_controls_top_close_button,
.lv_controls_top_skin_dark .lv_icon,
.lv_controls_top_close_skin_dark .lv_controls_top_close_button,
.lv_thumbnails_skin_dark .lv_thumbnail_icon {
  background-image: url('https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/dark/sprite.png') !important;
  background-image: url('https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/dark/sprite_ie_lt_7.png');
}
.lv_window_dark .lv_button_top_close {
  top: 18px;
  left: 53px;
}
.lv_window_dark .lv_slider_number {
  color: #acacac;
}
.lv_window_dark .lv_slider_number:hover {
  color: #e3e3e3;
}
.lv_window_dark .lv_slider_number_active,
.lv_window_dark .lv_slider_number_active:hover {
  color: #5d5d5d;
}
.lv_controls_top_skin_dark .lv_icon {
  color: #a6a6a6;
}
.lv_controls_top_skin_dark .lv_icon:hover {
  color: #e0e0e0;
}
.lv_controls_top_skin_dark .lv_icon_disabled,
.lv_controls_top_skin_dark .lv_icon_disabled:hover {
  color: #575757;
}
.lv_window_mac .lv_title_caption {
  text-shadow: 0px 1px 1px rgba(0,0,0,0.25);
}
.lv_window_mac .lv_side_button_previous,
.lv_window_mac .lv_side_button_next,
.lv_window_mac .lv_button_top_close,
.lv_window_mac .lv_controls_top_close_button,
.lv_window_mac .lv_slider .lv_icon,
.lv_window_mac .lv_slider_number,
.lv_window_mac .lv_slider_number_empty,
.lv_window_mac .lv_controls_top_close_button,
.lv_controls_top_skin_mac .lv_icon,
.lv_controls_top_close_skin_mac .lv_controls_top_close_button,
.lv_thumbnails_skin_mac .lv_thumbnail_icon {
  background-image: url('https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/mac/sprite.png') !important;
  background-image: url('https://www.consolepro.nl/skin/frontend/default/default/images/lightview/skins/mac/sprite_ie_lt_7.png');
}
.lv_window_mac .lv_button_top_close {
  top: 39px;
  left: 39px;
}
.lv_window_mac .lv_slider_number {
  color: #acacac;
}
.lv_window_mac .lv_slider_number:hover {
  color: #e1e1e1;
}
.lv_window_mac .lv_slider_number_active,
.lv_window_mac .lv_slider_number_active:hover {
  color: #5d5d5d;
}
.lv_controls_top_skin_mac .lv_icon {
  color: #a6a6a6;
}
.lv_controls_top_skin_mac .lv_icon:hover {
  color: #e0e0e0;
}
.lv_controls_top_skin_mac .lv_icon_disabled,
.lv_controls_top_skin_mac .lv_icon_disabled:hover {
  color: #575757;
}
.visible-tablet-portrait {
  display: none;
}
.visible-desktop {
  display: block;
}
.hidden-tablet-portrait {
  display: block;
}
.hidden-desktop {
  display: none;
}
@media (min-width: 1200px) {
  .row {
    margin-left: -12px;
    *zoom: 1;
  }
  .row:before,
  .row:after {
    display: table;
    content: "";
  }
  .row:after {
    clear: both;
  }
  [class*="span"] {
    float: left;
    margin-left: 12px;
  }
  .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    width: 1140px;
  }
  .span24 {
    width: 1140px;
  }
  .span23 {
    width: 1092px;
  }
  .span22 {
    width: 1044px;
  }
  .span21 {
    width: 996px;
  }
  .span20 {
    width: 948px;
  }
  .span19 {
    width: 900px;
  }
  .span18 {
    width: 852px;
  }
  .span17 {
    width: 804px;
  }
  .span16 {
    width: 756px;
  }
  .span15 {
    width: 708px;
  }
  .span14 {
    width: 660px;
  }
  .span13 {
    width: 612px;
  }
  .span12 {
    width: 564px;
  }
  .span11 {
    width: 516px;
  }
  .span10 {
    width: 468px;
  }
  .span9 {
    width: 420px;
  }
  .span8 {
    width: 372px;
  }
  .span7 {
    width: 324px;
  }
  .span6 {
    width: 276px;
  }
  .span5 {
    width: 228px;
  }
  .span4 {
    width: 180px;
  }
  .span3 {
    width: 132px;
  }
  .span2 {
    width: 84px;
  }
  .span1 {
    width: 36px;
  }
  .offset24 {
    margin-left: 1164px;
  }
  .offset23 {
    margin-left: 1116px;
  }
  .offset22 {
    margin-left: 1068px;
  }
  .offset21 {
    margin-left: 1020px;
  }
  .offset20 {
    margin-left: 972px;
  }
  .offset19 {
    margin-left: 924px;
  }
  .offset18 {
    margin-left: 876px;
  }
  .offset17 {
    margin-left: 828px;
  }
  .offset16 {
    margin-left: 780px;
  }
  .offset15 {
    margin-left: 732px;
  }
  .offset14 {
    margin-left: 684px;
  }
  .offset13 {
    margin-left: 636px;
  }
  .offset12 {
    margin-left: 588px;
  }
  .offset11 {
    margin-left: 540px;
  }
  .offset10 {
    margin-left: 492px;
  }
  .offset9 {
    margin-left: 444px;
  }
  .offset8 {
    margin-left: 396px;
  }
  .offset7 {
    margin-left: 348px;
  }
  .offset6 {
    margin-left: 300px;
  }
  .offset5 {
    margin-left: 252px;
  }
  .offset4 {
    margin-left: 204px;
  }
  .offset3 {
    margin-left: 156px;
  }
  .offset2 {
    margin-left: 108px;
  }
  .offset1 {
    margin-left: 60px;
  }
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }
  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
  }
  .row-fluid:after {
    clear: both;
  }
  .row-fluid > [class*="span"] {
    float: left;
    margin-left: ;
  }
  .row-fluid > [class*="span"]:first-child {
    margin-left: 0;
  }
  .row-fluid > .span24 {
    width:  * 24 * 23;
  }
  .row-fluid > .span23 {
    width: 193.617021257%;
  }
  .row-fluid > .span22 {
    width: 185.10638296%;
  }
  .row-fluid > .span21 {
    width: 176.595744663%;
  }
  .row-fluid > .span20 {
    width: 168.085106366%;
  }
  .row-fluid > .span19 {
    width: 159.574468069%;
  }
  .row-fluid > .span18 {
    width: 151.063829772%;
  }
  .row-fluid > .span17 {
    width: 142.553191475%;
  }
  .row-fluid > .span16 {
    width: 134.042553178%;
  }
  .row-fluid > .span15 {
    width: 125.531914881%;
  }
  .row-fluid > .span14 {
    width: 117.021276584%;
  }
  .row-fluid > .span13 {
    width: 108.510638287%;
  }
  .row-fluid > .span12 {
    width: 99.99999999%;
  }
  .row-fluid > .span11 {
    width: 91.489361693%;
  }
  .row-fluid > .span10 {
    width: 82.978723396%;
  }
  .row-fluid > .span9 {
    width: 74.468085099%;
  }
  .row-fluid > .span8 {
    width: 65.957446802%;
  }
  .row-fluid > .span7 {
    width: 57.446808505%;
  }
  .row-fluid > .span6 {
    width: 48.936170208%;
  }
  .row-fluid > .span5 {
    width: 40.425531911%;
  }
  .row-fluid > .span4 {
    width: 31.914893614%;
  }
  .row-fluid > .span3 {
    width: 23.404255317%;
  }
  .row-fluid > .span2 {
    width: 14.89361702%;
  }
  .row-fluid > .span1 {
    width: 6.382978723%;
  }
  input,
  textarea,
  .uneditable-input {
    margin-left: 0;
  }
  input.span24, textarea.span24, .uneditable-input.span24 {
    width: 1130px;
  }
  input.span23, textarea.span23, .uneditable-input.span23 {
    width: 1082px;
  }
  input.span22, textarea.span22, .uneditable-input.span22 {
    width: 1034px;
  }
  input.span21, textarea.span21, .uneditable-input.span21 {
    width: 986px;
  }
  input.span20, textarea.span20, .uneditable-input.span20 {
    width: 938px;
  }
  input.span19, textarea.span19, .uneditable-input.span19 {
    width: 890px;
  }
  input.span18, textarea.span18, .uneditable-input.span18 {
    width: 842px;
  }
  input.span17, textarea.span17, .uneditable-input.span17 {
    width: 794px;
  }
  input.span16, textarea.span16, .uneditable-input.span16 {
    width: 746px;
  }
  input.span15, textarea.span15, .uneditable-input.span15 {
    width: 698px;
  }
  input.span14, textarea.span14, .uneditable-input.span14 {
    width: 650px;
  }
  input.span13, textarea.span13, .uneditable-input.span13 {
    width: 602px;
  }
  input.span12, textarea.span12, .uneditable-input.span12 {
    width: 554px;
  }
  input.span11, textarea.span11, .uneditable-input.span11 {
    width: 506px;
  }
  input.span10, textarea.span10, .uneditable-input.span10 {
    width: 458px;
  }
  input.span9, textarea.span9, .uneditable-input.span9 {
    width: 410px;
  }
  input.span8, textarea.span8, .uneditable-input.span8 {
    width: 362px;
  }
  input.span7, textarea.span7, .uneditable-input.span7 {
    width: 314px;
  }
  input.span6, textarea.span6, .uneditable-input.span6 {
    width: 266px;
  }
  input.span5, textarea.span5, .uneditable-input.span5 {
    width: 218px;
  }
  input.span4, textarea.span4, .uneditable-input.span4 {
    width: 170px;
  }
  input.span3, textarea.span3, .uneditable-input.span3 {
    width: 122px;
  }
  input.span2, textarea.span2, .uneditable-input.span2 {
    width: 74px;
  }
  input.span1, textarea.span1, .uneditable-input.span1 {
    width: 26px;
  }
}
@media (max-width: 1017px) {
  .row {
    margin-left: -12px;
    *zoom: 1;
  }
  .row:before,
  .row:after {
    display: table;
    content: "";
  }
  .row:after {
    clear: both;
  }
  [class*="span"] {
    float: left;
    margin-left: 12px;
  }
  .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    width: 756px;
  }
  .span24 {
    width: 756px;
  }
  .span23 {
    width: 724px;
  }
  .span22 {
    width: 692px;
  }
  .span21 {
    width: 660px;
  }
  .span20 {
    width: 628px;
  }
  .span19 {
    width: 596px;
  }
  .span18 {
    width: 564px;
  }
  .span17 {
    width: 532px;
  }
  .span16 {
    width: 500px;
  }
  .span15 {
    width: 468px;
  }
  .span14 {
    width: 436px;
  }
  .span13 {
    width: 404px;
  }
  .span12 {
    width: 372px;
  }
  .span11 {
    width: 340px;
  }
  .span10 {
    width: 308px;
  }
  .span9 {
    width: 276px;
  }
  .span8 {
    width: 244px;
  }
  .span7 {
    width: 212px;
  }
  .span6 {
    width: 180px;
  }
  .span5 {
    width: 148px;
  }
  .span4 {
    width: 116px;
  }
  .span3 {
    width: 84px;
  }
  .span2 {
    width: 52px;
  }
  .span1 {
    width: 20px;
  }
  .offset24 {
    margin-left: 780px;
  }
  .offset23 {
    margin-left: 748px;
  }
  .offset22 {
    margin-left: 716px;
  }
  .offset21 {
    margin-left: 684px;
  }
  .offset20 {
    margin-left: 652px;
  }
  .offset19 {
    margin-left: 620px;
  }
  .offset18 {
    margin-left: 588px;
  }
  .offset17 {
    margin-left: 556px;
  }
  .offset16 {
    margin-left: 524px;
  }
  .offset15 {
    margin-left: 492px;
  }
  .offset14 {
    margin-left: 460px;
  }
  .offset13 {
    margin-left: 428px;
  }
  .offset12 {
    margin-left: 396px;
  }
  .offset11 {
    margin-left: 364px;
  }
  .offset10 {
    margin-left: 332px;
  }
  .offset9 {
    margin-left: 300px;
  }
  .offset8 {
    margin-left: 268px;
  }
  .offset7 {
    margin-left: 236px;
  }
  .offset6 {
    margin-left: 204px;
  }
  .offset5 {
    margin-left: 172px;
  }
  .offset4 {
    margin-left: 140px;
  }
  .offset3 {
    margin-left: 108px;
  }
  .offset2 {
    margin-left: 76px;
  }
  .offset1 {
    margin-left: 44px;
  }
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }
  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
  }
  .row-fluid:after {
    clear: both;
  }
  .row-fluid > [class*="span"] {
    float: left;
    margin-left: ;
  }
  .row-fluid > [class*="span"]:first-child {
    margin-left: 0;
  }
  .row-fluid > .span24 {
    width:  * 24 * 23;
  }
  .row-fluid > .span23 {
    width:  * 23 * 22;
  }
  .row-fluid > .span22 {
    width:  * 22 * 21;
  }
  .row-fluid > .span21 {
    width:  * 21 * 20;
  }
  .row-fluid > .span20 {
    width:  * 20 * 19;
  }
  .row-fluid > .span19 {
    width:  * 19 * 18;
  }
  .row-fluid > .span18 {
    width:  * 18 * 17;
  }
  .row-fluid > .span17 {
    width:  * 17 * 16;
  }
  .row-fluid > .span16 {
    width:  * 16 * 15;
  }
  .row-fluid > .span15 {
    width:  * 15 * 14;
  }
  .row-fluid > .span14 {
    width:  * 14 * 13;
  }
  .row-fluid > .span13 {
    width:  * 13 * 12;
  }
  .row-fluid > .span12 {
    width:  * 12 * 11;
  }
  .row-fluid > .span11 {
    width:  * 11 * 10;
  }
  .row-fluid > .span10 {
    width:  * 10 * 9;
  }
  .row-fluid > .span9 {
    width:  * 9 * 8;
  }
  .row-fluid > .span8 {
    width:  * 8 * 7;
  }
  .row-fluid > .span7 {
    width:  * 7 * 6;
  }
  .row-fluid > .span6 {
    width:  * 6 * 5;
  }
  .row-fluid > .span5 {
    width:  * 5 * 4;
  }
  .row-fluid > .span4 {
    width:  * 4 * 3;
  }
  .row-fluid > .span3 {
    width:  * 3 * 2;
  }
  .row-fluid > .span2 {
    width:  * 2 * 1;
  }
  .row-fluid > .span1 {
    width:  * 1 * 0;
  }
  input,
  textarea,
  .uneditable-input {
    margin-left: 0;
  }
  input.span24, textarea.span24, .uneditable-input.span24 {
    width: 746px;
  }
  input.span23, textarea.span23, .uneditable-input.span23 {
    width: 714px;
  }
  input.span22, textarea.span22, .uneditable-input.span22 {
    width: 682px;
  }
  input.span21, textarea.span21, .uneditable-input.span21 {
    width: 650px;
  }
  input.span20, textarea.span20, .uneditable-input.span20 {
    width: 618px;
  }
  input.span19, textarea.span19, .uneditable-input.span19 {
    width: 586px;
  }
  input.span18, textarea.span18, .uneditable-input.span18 {
    width: 554px;
  }
  input.span17, textarea.span17, .uneditable-input.span17 {
    width: 522px;
  }
  input.span16, textarea.span16, .uneditable-input.span16 {
    width: 490px;
  }
  input.span15, textarea.span15, .uneditable-input.span15 {
    width: 458px;
  }
  input.span14, textarea.span14, .uneditable-input.span14 {
    width: 426px;
  }
  input.span13, textarea.span13, .uneditable-input.span13 {
    width: 394px;
  }
  input.span12, textarea.span12, .uneditable-input.span12 {
    width: 362px;
  }
  input.span11, textarea.span11, .uneditable-input.span11 {
    width: 330px;
  }
  input.span10, textarea.span10, .uneditable-input.span10 {
    width: 298px;
  }
  input.span9, textarea.span9, .uneditable-input.span9 {
    width: 266px;
  }
  input.span8, textarea.span8, .uneditable-input.span8 {
    width: 234px;
  }
  input.span7, textarea.span7, .uneditable-input.span7 {
    width: 202px;
  }
  input.span6, textarea.span6, .uneditable-input.span6 {
    width: 170px;
  }
  input.span5, textarea.span5, .uneditable-input.span5 {
    width: 138px;
  }
  input.span4, textarea.span4, .uneditable-input.span4 {
    width: 106px;
  }
  input.span3, textarea.span3, .uneditable-input.span3 {
    width: 74px;
  }
  input.span2, textarea.span2, .uneditable-input.span2 {
    width: 42px;
  }
  input.span1, textarea.span1, .uneditable-input.span1 {
    width: 10px;
  }
  .visible-tablet-portrait {
    display: block;
  }
  .hidden-tablet-portrait {
    display: none;
  }
}
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: (max-width: 1017px)) {
  .table-responsive {
    width: 100%;
    margin-bottom: 13.5px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #eee;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
body {
  float: none !important;
}
* {
  outline: none;
}
.first {
  margin-left: 0;
}
.cms-home #header-item {
  margin-top: 0;
}
.cms-home .horizontal-usp-container {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}
.cms-home .horizontal-usp-container ul {
  *zoom: 1;
  list-style: none outside none;
  margin: 0;
}
.cms-home .horizontal-usp-container ul:before,
.cms-home .horizontal-usp-container ul:after {
  display: table;
  content: "";
}
.cms-home .horizontal-usp-container ul:after {
  clear: both;
}
.cms-home .horizontal-usp-container ul li {
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/vink-1.png') no-repeat 0 14px;
  float: left;
  font-size: 16px;
  padding: 18px 18px 18px 36px;
}
.cms-home .horizontal-usp-container ul li:last-child {
  padding-right: 0;
}
.std ol {
  list-style: decimal;
  margin-bottom: 18px;
}
.std ul {
  list-style: disc outside;
  margin-bottom: 18px;
}
.main-container {
  margin-bottom: 18px;
}
.pager {
  padding: 9px;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}
.pager .amount {
  margin-bottom: 0;
  line-height: 28px;
}
ol li.item {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}
ol li.item.last {
  padding-bottom: 0;
  border-bottom: none;
}
input[placeholder] {
  color: #999999;
}
h1 {
  font-size: 24px;
  margin-bottom: 18px;
}
h2 {
  font-size: 18px;
  margin-bottom: 18px;
}
h3 {
  font-size: 14.4px;
  margin-bottom: 18px;
}
h4 {
  margin-bottom: 9px;
}
a {
  color: #202020;
  text-decoration: underline;
}
p.required {
  color: #9d261d;
  font-size: 12px;
  text-align: right;
}
.back-link {
  float: left;
  float: left;
}
.modal .modal-header h1,
.modal .modal-header h2,
.modal .modal-header h3,
.modal .modal-header h4,
.modal .modal-header h5,
.modal .modal-header h6 {
  margin-bottom: 0;
}
.color-green {
  color: #468847;
}
.color-red {
  color: #b94a48;
}
button.button {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  text-align: center;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #ddd;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  cursor: pointer;
  *margin-left: .3em;
  text-decoration: none;
}
button.button [class^="icon-"].icon-large,
button.button [class*=" icon-"].icon-large {
  line-height: .9em;
}
button.button [class^="icon-"].icon-spin,
button.button [class*=" icon-"].icon-spin {
  display: inline-block;
}
button.button [class^="icon-"].pull-left.icon-2x,
button.button [class^="icon-"].pull-right.icon-2x,
button.button [class*=" icon-"].pull-left.icon-2x,
button.button [class*=" icon-"].pull-right.icon-2x {
  margin-top: .18em;
}
button.button [class^="icon-"].icon-spin.icon-large,
button.button [class*=" icon-"].icon-spin.icon-large {
  line-height: .8em;
}
button.button:hover,
button.button:active,
button.button.active,
button.button.disabled,
button.button[disabled] {
  background-color: #fff;
}
button.button:active,
button.button.active {
  background-color: #e6e6e6 \9;
}
button.button:hover,
button.button:active,
button.button.active,
button.button.disabled,
button.button[disabled] {
  background: #e6e6e6;
}
button.button:active,
button.button.active {
  background: #e6e6e6;
}
button.button:first-child {
  *margin-left: 0;
}
.btn-remove {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 18px;
  color: #000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.btn-remove:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.4;
  filter: alpha(opacity=40);
  cursor: pointer;
}
.data-table {
  width: 100%;
  margin-bottom: 18px;
}
.data-table th,
.data-table td {
  padding: 8px;
  line-height: 18px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.data-table th {
  font-weight: bold;
}
.data-table thead th {
  vertical-align: bottom;
}
.data-table colgroup + thead tr:first-child th,
.data-table colgroup + thead tr:first-child td,
.data-table thead:first-child tr:first-child th,
.data-table thead:first-child tr:first-child td {
  border-top: 0;
}
.data-table tbody + tbody {
  border-top: 2px solid #ddd;
}
.data-table tbody tr:hover td,
.data-table tbody tr:hover th {
  background-color: #f5f5f5;
}
.data-table tbody tr:nth-child(odd) td,
.data-table tbody tr:nth-child(odd) th {
  background-color: #f9f9f9;
}
.data-table th.label {
  font-size: 12px;
  color: #333;
  text-shadow: none;
  background-color: transparent;
}
.col2-set {
  margin-left: -10px;
  *zoom: 1;
}
.col2-set:before,
.col2-set:after {
  display: table;
  content: "";
}
.col2-set:after {
  clear: both;
}
.col2-set .col-1,
.col2-set .col-2 {
  float: left;
  margin-left: 10px;
  width: 494px;
}
.f-left {
  float: left;
}
.f-right {
  float: right;
}
.a-right,
.data-table th.a-right,
.data-table td.a-right {
  text-align: right;
}
.a-left,
.data-table th.a-left,
.data-table td.a-left {
  text-align: left;
}
.a-canter,
.data-table th.a-center,
.data-table td.a-center {
  text-align: center;
}
.a-justify,
.data-table th.a-justify,
.data-table td.a-justify {
  text-align: justify;
}
.input-box.warning > label,
.input-box.warning .help-block,
.input-box.warning .help-inline {
  color: #c09853;
}
.input-box.warning input,
.input-box.warning select,
.input-box.warning textarea {
  color: #c09853;
  border-color: #c09853;
}
.input-box.warning input:focus,
.input-box.warning select:focus,
.input-box.warning textarea:focus {
  border-color: #a47e3c;
  -webkit-box-shadow: 0 0 6px #dbc59e;
  -moz-box-shadow: 0 0 6px #dbc59e;
  box-shadow: 0 0 6px #dbc59e;
}
.input-box.warning .input-prepend .add-on,
.input-box.warning .input-append .add-on {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #c09853;
}
.input-box.error > label,
.input-box.error .help-block,
.input-box.error .help-inline {
  color: #b94a48;
}
.input-box.error input,
.input-box.error select,
.input-box.error textarea {
  color: #b94a48;
  border-color: #b94a48;
}
.input-box.error input:focus,
.input-box.error select:focus,
.input-box.error textarea:focus {
  border-color: #953b39;
  -webkit-box-shadow: 0 0 6px #d59392;
  -moz-box-shadow: 0 0 6px #d59392;
  box-shadow: 0 0 6px #d59392;
}
.input-box.error .input-prepend .add-on,
.input-box.error .input-append .add-on {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #b94a48;
}
.input-box.success > label,
.input-box.success .help-block,
.input-box.success .help-inline {
  color: #468847;
}
.input-box.success input,
.input-box.success select,
.input-box.success textarea {
  color: #468847;
  border-color: #468847;
}
.input-box.success input:focus,
.input-box.success select:focus,
.input-box.success textarea:focus {
  border-color: #356635;
  -webkit-box-shadow: 0 0 6px #7aba7b;
  -moz-box-shadow: 0 0 6px #7aba7b;
  box-shadow: 0 0 6px #7aba7b;
}
.input-box.success .input-prepend .add-on,
.input-box.success .input-append .add-on {
  color: #468847;
  background-color: #dff0d8;
  border-color: #468847;
}
.innerbox {
  padding: 18px;
}
.items {
  list-style: none;
  margin-left: 0;
}
.items .item {
  margin-bottom: 18px;
}
.navbar .gan-plain a {
  font-size: 12px;
  text-transform: none;
}
.col-right .block,
.col-left .block {
  clear: both;
  border: 1px solid #eee;
  margin-bottom: 18px;
}
.col-right .block .block-title,
.col-left .block .block-title {
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 18px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}
.col-right .block .block-content,
.col-left .block .block-content {
  padding: 20px 15px;
}
.col-right .block .block-content ul#poll-answers,
.col-left .block .block-content ul#poll-answers {
  list-style: none;
  margin: 0 0 10px 0;
}
.col-right .block .block-content ul#poll-answers li .label,
.col-left .block .block-content ul#poll-answers li .label {
  background: none;
  padding: 0;
  text-shadow: none;
  display: inline;
}
.col-right .block .block-content ul#poll-answers li input[type="checkbox"],
.col-right .block .block-content ul#poll-answers li input[type="radio"],
.col-left .block .block-content ul#poll-answers li input[type="checkbox"],
.col-left .block .block-content ul#poll-answers li input[type="radio"] {
  float: left;
  margin-right: 10px;
}
.col-right .block.bg,
.col-left .block.bg {
  background: #f9f9f9;
}
.col-right .block-usp .block-content,
.col-left .block-usp .block-content {
  padding: 0;
}
.nav-tabs.nav-stacked.subnavigation li.nav-title {
  background: #eeeeee;
}
.nav-tabs.nav-stacked.subnavigation li.active a {
  background: #f4f4f4;
}
.block-usp ul {
  padding: 12px 18px;
  margin: 0 auto;
}
.block-usp ul li {
  list-style: none;
}
.block-usp ul li:first-child:before {
  display: none;
}
.block-usp ul li:first-child strong {
  padding-top: 0;
  background-position: 0px 0px;
}
.block-usp ul li:before {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #fff;
  border: 0;
  content: " ";
  display: block;
  height: 1px;
  margin: 6px 0 3px;
  background-image: -webkit-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0));
  background-image: -moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0));
  background-image: -ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0));
  background-image: -o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0));
}
.block-usp strong {
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/vink.png') no-repeat 0 10px;
  border-top: 1px solid #eee;
  display: block;
  padding: 6px 0 0 20px;
  width: 176px;
}
.block-usp strong:first-child {
  border: none;
}
.block-reorder ol {
  list-style: none outside none;
  margin: 0 0 9px 0;
}
.block-reorder .item input.checkbox {
  float: left;
}
.block-reorder .item p.product-name {
  margin-bottom: 0;
  padding-left: 18px;
}
.col-left .block-viewed .block-title {
  border-bottom: none;
}
.col-left .block-viewed .block-content {
  padding: 0 15px 20px;
}
.col-left .block-viewed li.item {
  margin-bottom: 9px;
  padding-bottom: 0;
}
.block-related {
  float: left;
  width: 100%;
}
.block-related .product {
  padding-left: 0 !important;
}
.block-related .block-title {
  text-align: center;
}
.block-related .block-subtitle {
  text-align: center;
}
.block-related ol {
  list-style: none;
}
.block-related ol li {
  float: left;
}
.block-related #block-related .product-details {
  width: auto;
}
.mini-products-list .product {
  float: right;
}
.mini-products-list .product-image {
  float: left;
}
.block-product-view {
  *zoom: 1;
  margin-bottom: 27px;
}
.block-product-view:before,
.block-product-view:after {
  display: table;
  content: "";
}
.block-product-view:after {
  clear: both;
}
.block-product-view .block-title {
  *zoom: 1;
  border-bottom: 1px solid #202020;
  margin-bottom: 18px;
}
.block-product-view .block-title:before,
.block-product-view .block-title:after {
  display: table;
  content: "";
}
.block-product-view .block-title:after {
  clear: both;
}
.block-product-view .block-title > * {
  float: left;
}
.block-product-view .block-title h2 {
  margin-bottom: 0;
}
.block-product-view .block-title .back-top {
  float: right;
  line-height: 36px;
  text-decoration: none;
}
.block-product-view .block-title .back-top > span {
  text-decoration: underline;
}
.block-product-view .block-title .back-top:hover > span {
  text-decoration: none;
}
#block-product-view-index .listing-product-block-index {
  *zoom: 1;
  list-style: none outside none;
  margin: 0;
}
#block-product-view-index .listing-product-block-index:before,
#block-product-view-index .listing-product-block-index:after {
  display: table;
  content: "";
}
#block-product-view-index .listing-product-block-index:after {
  clear: both;
}
#block-product-view-index .listing-product-block-index > li {
  float: left;
  width: 50%;
}
#block-product-view-index .listing-product-block-index > li a {
  border-bottom: 1px solid #dbdbdb;
  display: block;
  margin-bottom: 4px;
  text-decoration: none;
  width: 95%;
}
#block-product-view-index .listing-product-block-index > li a:hover {
  text-decoration: underline;
}
#block-product-view-index .listing-product-block-index > li a:hover [class^="icon-"],
#block-product-view-index .listing-product-block-index > li a:hover [class*=" icon-"] {
  display: inline-block;
  text-decoration: none;
}
#block-product-view-index .listing-product-block-index > li [class^="icon-"],
#block-product-view-index .listing-product-block-index > li [class*=" icon-"] {
  color: #f26f44;
  font-size: 8px;
  line-height: 18px;
  vertical-align: middle;
}
#block-product-view-video .block-content .std {
  position: relative;
  padding-top: 25px;
  padding-bottom: 57.25%;
  height: 0;
  margin-bottom: 16px;
  overflow: hidden;
}
#block-product-view-video .block-content .std iframe,
#block-product-view-video .block-content .std object,
#block-product-view-video .block-content .std embed,
#block-product-view-video .block-content .std video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#block-product-view-upsell_products h2 {
  display: none;
}
.widget-block.first {
  clear: left;
}
.home-widget {
  border: 1px solid #ddd;
  min-height: 333px;
}
.home-widget .home-widget-title {
  border-bottom: 1px solid #dddddd;
}
.home-widget .home-widget-title div {
  font-size: 18px;
  margin-bottom: 18px;
  line-height: 36px;
  font-weight: bold;
  margin: 26px 0 0 12px;
  padding-bottom: 16px;
  text-transform: uppercase;
}
.home-widget .home-widget-title div {
  margin-top: 0;
  padding-bottom: 0;
  height: 50px;
  line-height: 50px;
}
.home-widget .home-widget-middle {
  padding: 10px;
}
.home-widget .home-widget-bottom {
  padding: 5px 10px;
}
.span6 .home-widget .home-widget-bottom {
  margin: auto;
  width: 190px;
}
.span12 .home-widget {
  min-height: 0;
  padding-bottom: 10px;
}
input.qty {
  width: 50px;
}
.form-list {
  list-style: none;
  margin: 0;
  padding: 0;
  *zoom: 1;
}
.form-list input,
.form-list textarea,
.form-list select,
.form-list .help-inline,
.form-list .uneditable-input,
.form-list .input-prepend,
.form-list .input-append {
  display: inline-block;
  margin-bottom: 0;
}
.form-list .hide {
  display: none;
}
.form-list .control-group {
  margin-bottom: 18px;
  *zoom: 1;
}
.form-list .control-group:before,
.form-list .control-group:after {
  display: table;
  content: "";
}
.form-list .control-group:after {
  clear: both;
}
.form-list .control-label {
  float: left;
  width: 140px;
  padding-top: 5px;
  text-align: right;
}
.form-list .controls {
  margin-left: 160px;
  *display: inline-block;
  *margin-left: 0;
  *padding-left: 20px;
}
.form-list .help-block {
  margin-top: 9px;
  margin-bottom: 0;
}
.form-list .form-actions {
  padding-left: 160px;
}
.form-list:before,
.form-list:after {
  display: table;
  content: "";
}
.form-list:after {
  clear: both;
}
.form-list li {
  clear: both;
}
.form-list li.fields .field {
  margin-bottom: 18px;
  *zoom: 1;
}
.form-list li.fields .field:before,
.form-list li.fields .field:after {
  display: table;
  content: "";
}
.form-list li.fields .field:after {
  clear: both;
}
.form-list li.fields .field .input-box {
  margin-left: 160px;
  *display: inline-block;
  *margin-left: 0;
  *padding-left: 20px;
}
.form-list li.wide {
  clear: both;
  margin-bottom: 18px;
  *zoom: 1;
}
.form-list li.wide:before,
.form-list li.wide:after {
  display: table;
  content: "";
}
.form-list li.wide:after {
  clear: both;
}
.form-list li.wide .input-box {
  margin-left: 160px;
  *display: inline-block;
  *margin-left: 0;
  *padding-left: 20px;
}
.form-list label {
  line-height: 23.4px;
}
.form-list li.control {
  *zoom: 1;
  margin-bottom: 36px;
}
.form-list li.control:before,
.form-list li.control:after {
  display: table;
  content: "";
}
.form-list li.control:after {
  clear: both;
}
.form-list li.control .input-box,
.form-list li.control .checkbox {
  margin-left: 0;
  margin-right: 9px;
  float: left;
}
.form-list li.control .input-box label,
.form-list li.control .checkbox label {
  display: inline;
}
.form-list label {
  float: left;
}
.form-list label.required {
  color: #333;
  font-weight: bold;
  position: relative;
  z-index: 0;
}
.form-list label.required em {
  color: #9d261d;
  float: right;
  font-style: normal;
  position: absolute;
  right: -8px;
  top: 0;
}
.form-list .input-text {
  width: 270px;
}
.form-list li.wide .customer-dob div,
.form-list .customer-dob div {
  float: left;
  margin-right: 12px;
}
.form-list li.wide .customer-dob div label,
.form-list .customer-dob div label {
  line-height: 28px;
  margin-bottom: 0;
  padding: 0 5px;
}
.form-list li.wide .customer-dob div .input-text,
.form-list .customer-dob div .input-text {
  float: left;
  width: 46px;
}
.customer-address-form .form-list li.control {
  margin-bottom: 0;
}
.col1-layout .form-list {
  margin-left: 13px;
}
.col1-layout .form-list .field {
  width: 50%;
  float: left;
}
.col2-left-layout .form-list li.fields .field {
  margin-bottom: 18px;
  *zoom: 1;
}
.col2-left-layout .form-list li.fields .field:before,
.col2-left-layout .form-list li.fields .field:after {
  display: table;
  content: "";
}
.col2-left-layout .form-list li.fields .field:after {
  clear: both;
}
.col2-left-layout .form-list li.fields .field .input-box {
  margin-left: 200px;
}
.col2-left-layout .form-list li.wide {
  clear: both;
  margin-bottom: 18px;
  *zoom: 1;
}
.col2-left-layout .form-list li.wide:before,
.col2-left-layout .form-list li.wide:after {
  display: table;
  content: "";
}
.col2-left-layout .form-list li.wide:after {
  clear: both;
}
.col2-left-layout .form-list li.wide .input-box {
  margin-left: 200px;
}
.col2-left-layout .form-list li.wide .input-box .input-text {
  width: 430px;
}
.col2-left-layout .form-list li.wide .customer-dob div .input-text,
.col2-left-layout .form-list .customer-dob div .input-text {
  width: 50px;
}
.fieldset {
  border: 1px solid #eee;
  padding: 18px 36px;
  margin-bottom: 18px;
}
.fieldset .legend {
  border-bottom: 1px solid #eee;
  margin-bottom: 36px;
  line-height: 36px;
}
.buttons-set {
  padding: 9px 18px;
  background: #eeeeee;
  text-align: right;
  margin-bottom: 36px;
  min-height: 18px;
}
.advanced-search {
  padding: 22px;
}
.advanced-search ul li {
  margin-bottom: 15px;
}
.advanced-search ul li label {
  clear: both;
  float: none;
}
.advanced-search ul li .input-range .input-text {
  width: 125px;
}
.advanced-search .string {
  display: block;
  width: 50%;
  float: left;
}
.advanced-search .price {
  display: block;
  width: 50%;
  float: left;
}
.advanced-search .select {
  clear: both;
  display: block;
  width: 100%;
}
.advanced-search .select ul li {
  width: 50%;
  float: left;
  clear: none;
}
.customer-account-forgotpassword #email_address {
  margin-left: 35px;
}
.customer-account-resetpassword .fieldset {
  margin-top: 0 !important;
}
.customer-account-resetpassword .field {
  float: none !important;
}
.customer-account-resetpassword .field .input-box {
  margin-left: 180px !important;
}
#productquestionForm ul.form-list li,
#salesofferquestionForm ul.form-list li {
  *zoom: 1;
  margin-bottom: 6px;
}
#productquestionForm ul.form-list li:before,
#productquestionForm ul.form-list li:after,
#salesofferquestionForm ul.form-list li:before,
#salesofferquestionForm ul.form-list li:after {
  display: table;
  content: "";
}
#productquestionForm ul.form-list li:after,
#salesofferquestionForm ul.form-list li:after {
  clear: both;
}
#productquestionForm ul.form-list li .input-text,
#salesofferquestionForm ul.form-list li .input-text {
  float: right;
  margin-right: 21px;
}
#productquestionForm ul.form-list li textarea,
#salesofferquestionForm ul.form-list li textarea {
  float: none;
  height: 150px;
  width: 880px;
}
#productquestionForm .std,
#salesofferquestionForm .std {
  margin-bottom: 12px;
}
#productquestionForm .validation-advice,
#salesofferquestionForm .validation-advice {
  float: right;
  margin-right: 172px;
  color: #9D261D;
}
#productquestionForm .button-set,
#salesofferquestionForm .button-set {
  *zoom: 1;
  margin-right: 21px;
  text-align: right;
}
#productquestionForm .button-set:before,
#productquestionForm .button-set:after,
#salesofferquestionForm .button-set:before,
#salesofferquestionForm .button-set:after {
  display: table;
  content: "";
}
#productquestionForm .button-set:after,
#salesofferquestionForm .button-set:after {
  clear: both;
}
#productquestionForm .button-set p.required,
#salesofferquestionForm .button-set p.required {
  margin-top: 0;
}
.productquestion-index-index .custom-button.product-question-button,
.salesofferquestion-index-index .custom-button.product-question-button {
  font-size: 18px;
}
.productquestion-index-index .product-image,
.salesofferquestion-index-index .product-image {
  width: 200px;
  float: left;
}
.productquestion-index-index .product-attributes,
.salesofferquestion-index-index .product-attributes {
  float: left;
  margin-left: 0px;
  width: 240px;
}
.productquestion-index-index .short-description,
.salesofferquestion-index-index .short-description {
  margin-top: 10px;
}
.productquestion-index-index .request-form-list,
.salesofferquestion-index-index .request-form-list {
  float: left;
  width: 50%;
}
.productquestion-index-index .request-form-list .field,
.salesofferquestion-index-index .request-form-list .field {
  width: 100%;
}
.productquestion-index-index .request-form-list textarea#comment,
.salesofferquestion-index-index .request-form-list textarea#comment {
  width: 431px;
}
.productquestion-index-index .product-info,
.salesofferquestion-index-index .product-info {
  float: left;
  width: 449px;
}
.productquestion-index-index .page-title,
.salesofferquestion-index-index .page-title {
  *zoom: 1;
  margin-bottom: 12px;
  text-align: right;
}
.productquestion-index-index .page-title:before,
.productquestion-index-index .page-title:after,
.salesofferquestion-index-index .page-title:before,
.salesofferquestion-index-index .page-title:after {
  display: table;
  content: "";
}
.productquestion-index-index .page-title:after,
.salesofferquestion-index-index .page-title:after {
  clear: both;
}
.salesproductquestion-index-index .custom-button.product-question-button {
  font-size: 18px;
}
.salesproductquestion-index-index .product-image {
  width: 200px;
  float: left;
}
.salesproductquestion-index-index .product-attributes {
  float: left;
  margin-left: 9px;
  width: 240px;
}
.salesproductquestion-index-index .short-description {
  margin-top: 10px;
}
.salesproductquestion-index-index .request-form-list {
  float: left;
  width: 50%;
}
.salesproductquestion-index-index .request-form-list .field {
  width: 100%;
}
.salesproductquestion-index-index .request-form-list textarea#comment {
  width: 431px;
}
.salesproductquestion-index-index .product-info {
  float: left;
  width: 449px;
}
#breadcrumb {
  font-size: 11px;
  overflow: hidden;
}
#breadcrumb .container {
  padding: 9px 9px;
}
#breadcrumb a {
  color: #333;
}
#breadcrumb a.last {
  text-decoration: none;
}
#breadcrumb.no-prev-next .breadcrumb {
  margin: auto !important;
}
.breadcrumb {
  padding: 9px 15px;
  margin: auto;
  list-style: none;
  overflow: hidden;
  white-space: nowrap;
  background-color: #fbfbfb;
  background-image: -moz-linear-gradient(top,#fff,#f5f5f5);
  background-image: -ms-linear-gradient(top,#fff,#f5f5f5);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#f5f5f5));
  background-image: -webkit-linear-gradient(top,#fff,#f5f5f5);
  background-image: -o-linear-gradient(top,#fff,#f5f5f5);
  background-image: linear-gradient(top,#fff,#f5f5f5);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  border: 1px solid #ddd;
  -webkit-box-shadow: inset 0 1px 0 #fff;
  -moz-box-shadow: inset 0 1px 0 #fff;
  box-shadow: inset 0 1px 0 #fff;
}
.breadcrumb li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  text-shadow: 0 1px 0 #fff;
}
.breadcrumb .divider {
  padding: 0 5px;
  color: #999;
}
.breadcrumb .active a {
  color: #333;
}
#breadcrumb.has-prev-next .breadcrumb {
  margin-right: 11px;
}
.back-button {
  left: 0;
}
.arrow-left {
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/arrows.png) no-repeat left -2px;
  float: left;
  text-align: center;
  text-decoration: none;
}
.arrow-left span {
  cursor: pointer;
  background-color: #ededed;
  background-image: -moz-linear-gradient(top,#f4f4f4,#e3e3e3);
  background-image: -ms-linear-gradient(top,#f4f4f4,#e3e3e3);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f4f4f4),to(#e3e3e3));
  background-image: -webkit-linear-gradient(top,#f4f4f4,#e3e3e3);
  background-image: -o-linear-gradient(top,#f4f4f4,#e3e3e3);
  background-image: linear-gradient(top,#f4f4f4,#e3e3e3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4', endColorstr='#e3e3e3', GradientType=0);
  border-bottom: 1px solid #dbdbdb;
  border-top: 1px solid #dbdbdb;
  display: inline-block;
  margin-left: 25px;
  padding: 9px 20px 9px 0;
  white-space: nowrap;
  text-align: center;
  border-right: none;
}
.arrow-left.disabled {
  cursor: default;
}
.arrow-left.disabled span {
  cursor: default;
  color: #999;
}
.arrow-right {
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/arrows.png) no-repeat right -43px;
  text-decoration: none;
}
.arrow-right span {
  cursor: pointer;
  background: #f4f4f4;
  background: -moz-linear-gradient(top,#f4f4f4 0%,#e3e3e3 100%);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f4f4f4),color-stop(100%,#e3e3e3));
  background: -webkit-linear-gradient(top,#f4f4f4 0%,#e3e3e3 100%);
  background: -o-linear-gradient(top,#f4f4f4 0%,#e3e3e3 100%);
  background: -ms-linear-gradient(top,#f4f4f4 0%,#e3e3e3 100%);
  background: linear-gradient(top,#f4f4f4 0%,#e3e3e3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4',endColorstr='#e3e3e3',GradientType=0);
  text-align: right;
  border-bottom: 1px solid #dbdbdb;
  border-top: 1px solid #dbdbdb;
  display: inline-block;
  margin-right: 25px;
  padding: 9px 3px 9px 17px;
  white-space: nowrap;
  text-align: center;
}
.arrow-right.disabled {
  cursor: default;
}
.arrow-right.disabled span {
  cursor: default;
  color: #999;
}
.arrow-left:hover,
.arrow-right:hover {
  text-decoration: none;
}
.category-prev-button {
  width: 122px;
  position: absolute;
  top: 9px;
  right: 131px;
  border-right: 1px solid #DDDDDD;
}
.category-prev-button span {
  margin-left: 21px;
  width: 80px;
}
.category-next-button {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 122px;
}
.category-next-button span {
  width: 99px;
  padding-left: 9px;
}
.crosssell-products-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lv_contentBottom .page-title {
  border-bottom: none !important;
}
.lv_contentBottom .page-title h1 {
  color: #ac0206;
  font-size: 21px;
}
.lv_contentBottom .data-table .product-shop-row td,
.lv_contentBottom .data-table .product-shop-row th {
  border-top: none;
}
.page-popup {
  padding: 0;
  background: #FFFFFF;
  min-width: 0;
  overflow: hidden;
}
.page-popup .page-title {
  border-bottom: 0;
  margin-bottom: 0;
  display: none;
}
.page-popup .data-table {
  border: none;
}
.page-popup .data-table .colgroup,
.page-popup .data-table tbody {
  border: none;
}
.page-popup .data-table tbody tr th {
  border: none;
  background: #FFFFFF;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}
.page-popup .data-table tbody tr td {
  background: #eeeeee;
  border-left: none;
  border-right: none;
}
.page-popup .data-table tbody tr td.sec {
  background: #FFFFFF;
}
.page-popup .data-table tbody tr.add-to-row th,
.page-popup .data-table tbody tr.add-to-row td,
.page-popup .data-table tbody tr.product-shop-row th,
.page-popup .data-table tbody tr.product-shop-row td {
  border: none !important;
}
.page-popup .data-table .product-image {
  display: inline-block;
  border: 1px solid #eeeeee;
}
.page-popup .data-table .product-name {
  min-height: 79px;
}
.page-popup .data-table .product-name a {
  font-weight: normal;
  color: #202020 !important;
  text-decoration: underline !important;
  display: inline-block;
  margin-top: 7px;
  line-height: 22px;
  font-size: 15px;
}
.page-popup .data-table .btn-remove {
  color: #202020;
  opacity: 1;
  filter: alpha(opacity=100);
  font-size: 11px;
  float: left;
}
.page-popup .data-table .btn-remove:hover {
  color: #000000;
}
.page-popup .data-table .ratings {
  margin: 5px 0;
}
.page-popup .data-table .ratings .info {
  display: inline-block;
}
.page-popup .data-table .ratings .info .amount {
  display: inline-block;
  margin-left: 5px;
}
.page-popup .data-table .add-to-links {
  list-style: none;
  margin: 0;
}
.page-popup .data-table .add-to-links li {
  float: left;
  width: 100%;
}
.page-popup .data-table .btn-cart {
  padding-top: 2px;
}
.page-popup .buttons-set {
  border-top: none;
}
.page-popup .price-box {
  margin-top: 20px;
}
.page-popup .regular-price .price {
  font-size: 18px;
}
.page-popup.catalog-product-compare-index {
  overflow: auto;
}
.scrollbar-track-horizon {
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  cursor: pointer;
  width: 784px;
  height: 17px;
  background-color: #ececec;
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f4f4f4),color-stop(50%,#eeeeee),to(#e3e3e3));
  background-image: -webkit-linear-gradient(#f4f4f4,#eeeeee 50%,#e3e3e3);
  background-image: -moz-linear-gradient(top,#f4f4f4,#eeeeee 50%,#e3e3e3);
  background-image: -ms-linear-gradient(#f4f4f4,#eeeeee 50%,#e3e3e3);
  background-image: -o-linear-gradient(#f4f4f4,#eeeeee 50%,#e3e3e3);
  background-image: linear-gradient(#f4f4f4,#eeeeee 50%,#e3e3e3);
  background-repeat: no-repeat;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4', endColorstr='#e3e3e3', GradientType=0);
}
.scrollbar-track-horizon .scrollbar-handle {
  display: block;
  float: left;
  width: 300px;
  height: 13px;
  margin-top: 2px;
  background-color: #4e4e4e;
  background-image: -moz-linear-gradient(top,#585858,#404040);
  background-image: -ms-linear-gradient(top,#585858,#404040);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#585858),to(#404040));
  background-image: -webkit-linear-gradient(top,#585858,#404040);
  background-image: -o-linear-gradient(top,#585858,#404040);
  background-image: linear-gradient(top,#585858,#404040);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#585858', endColorstr='#404040', GradientType=0);
}
.scrollbar-track-horizon .scrollbar-handle:hover {
  background-color: #353535;
  background-image: -moz-linear-gradient(top,#3d3d3d,#282828);
  background-image: -ms-linear-gradient(top,#3d3d3d,#282828);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#3d3d3d),to(#282828));
  background-image: -webkit-linear-gradient(top,#3d3d3d,#282828);
  background-image: -o-linear-gradient(top,#3d3d3d,#282828);
  background-image: linear-gradient(top,#3d3d3d,#282828);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3d3d3d', endColorstr='#282828', GradientType=0);
}
.scrollbar-track-verti {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 17px;
  height: 485px;
  background-color: #eeeeee;
  background-image: -moz-linear-gradient(left,#dbdbdb,#eeeeee);
  background-image: -ms-linear-gradient(left,#dbdbdb,#eeeeee);
  background-image: -webkit-gradient(linear,0 0,100% 0,from(#dbdbdb),to(#eeeeee));
  background-image: -webkit-linear-gradient(left,#dbdbdb,#eeeeee);
  background-image: -o-linear-gradient(left,#dbdbdb,#eeeeee);
  background-image: linear-gradient(left,#dbdbdb,#eeeeee);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dbdbdb', endColorstr='#eeeeee', GradientType=1);
}
.scrollbar-track-verti .scrollbar-handle {
  display: block;
  float: left;
  width: 13px;
  height: 300px;
  margin-left: 2px;
  background-color: #404040;
  background-image: -moz-linear-gradient(left,#585858,#404040);
  background-image: -ms-linear-gradient(left,#585858,#404040);
  background-image: -webkit-gradient(linear,0 0,100% 0,from(#585858),to(#404040));
  background-image: -webkit-linear-gradient(left,#585858,#404040);
  background-image: -o-linear-gradient(left,#585858,#404040);
  background-image: linear-gradient(left,#585858,#404040);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#585858', endColorstr='#404040', GradientType=1);
}
.scrollbar-track-verti .scrollbar-handle:hover {
  background-color: #282828;
  background-image: -moz-linear-gradient(left,#3d3d3d,#282828);
  background-image: -ms-linear-gradient(left,#3d3d3d,#282828);
  background-image: -webkit-gradient(linear,0 0,100% 0,from(#3d3d3d),to(#282828));
  background-image: -webkit-linear-gradient(left,#3d3d3d,#282828);
  background-image: -o-linear-gradient(left,#3d3d3d,#282828);
  background-image: linear-gradient(left,#3d3d3d,#282828);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3d3d3d', endColorstr='#282828', GradientType=1);
}
.bottombar {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 100;
  background-color: #c0c0c0;
}
.bottombar .container {
  position: relative;
}
.bottombar .container .title {
  width: 215px;
  float: left;
  padding: 15px 5px 0 0;
}
.bottombar .container .title h2 {
  margin: 5px 0 10px;
  line-height: 1.0em;
}
.bottombar .container .title p {
  margin-right: 15px;
}
.bottombar .container .list {
  margin-left: 215px;
  margin-right: 130px;
  padding: 15px 5px 0 20px;
}
.bottombar .container .list:before {
  background-color: #c0c0c0;
  background-image: -moz-linear-gradient(left,#8d8d8d,#c0c0c0);
  background-image: -ms-linear-gradient(left,#8d8d8d,#c0c0c0);
  background-image: -webkit-gradient(linear,0 0,100% 0,from(#8d8d8d),to(#c0c0c0));
  background-image: -webkit-linear-gradient(left,#8d8d8d,#c0c0c0);
  background-image: -o-linear-gradient(left,#8d8d8d,#c0c0c0);
  background-image: linear-gradient(left,#8d8d8d,#c0c0c0);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8d8d8d', endColorstr='#c0c0c0', GradientType=1);
  content: "";
  display: block;
  width: 75px;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 220px;
}
.bottombar .container .actions {
  width: 135px;
  float: right;
  padding: 15px 0;
  text-align: center;
}
.bottombar ol {
  margin: 0;
  *zoom: 1;
}
.bottombar ol:before,
.bottombar ol:after {
  display: table;
  content: "";
}
.bottombar ol:after {
  clear: both;
}
.bottombar ol li.item {
  float: left;
  display: block;
  width: 190px;
  height: 65px;
  padding: 5px;
  margin-right: 7px;
  border: 0 none;
  position: relative;
  background-color: #fff;
}
.bottombar ol li.item.first {
  margin-left: 0;
}
.bottombar ol li.item.placeholder {
  background-color: #a7a7a7;
}
.bottombar ol li.item.placeholder p {
  margin: 1.25em 26px 0;
  text-align: center;
  font-style: italic;
}
.bottombar ol li.item .icon-remove {
  position: absolute;
  right: 2px;
  top: 2px;
  overflow: hidden;
  text-indent: -9999px;
}
.bottombar ol li.item .product-image {
  float: left;
  margin-right: 5px;
}
.bottombar ol li.item .product-name {
  margin: 10px 0 3px;
}
.bottombar ol li.item .price-box {
  height: 1.4em;
  line-height: 1.4em;
}
.bottombar ol li.item .price-box .old-price,
.bottombar ol li.item .price-box .special-price {
  display: inline;
}
.bottombar ol li.item .price-box .regular-price .price,
.bottombar ol li.item .price-box .special-price .price {
  font-size: 1.0em;
}
.bottombar .toggle {
  cursor: pointer;
}
.bottombar.hidden {
  display: none;
}
.bottombar .wrapper {
  position: relative;
}
.bottombar .wrapper .loader {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/adj-nav-progress.gif') no-repeat center center #fff;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.bottombar.loading .loader {
  display: block;
}
.actionbox {
  position: absolute;
  width: 400px;
  margin-top: -39px;
  margin-left: 8px;
  z-index: 101;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.25), inset 0 -1px 0 rgba(0,0,0,0.1);
  -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.25), inset 0 -1px 0 rgba(0,0,0,0.1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.25), inset 0 -1px 0 rgba(0,0,0,0.1);
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  background-color: #fff;
  border: 1px solid #666;
}
.actionbox .block-title {
  position: relative;
  background-color: #725e49;
  background-image: -moz-linear-gradient(top,#363636,#cc9966);
  background-image: -ms-linear-gradient(top,#363636,#cc9966);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#363636),to(#cc9966));
  background-image: -webkit-linear-gradient(top,#363636,#cc9966);
  background-image: -o-linear-gradient(top,#363636,#cc9966);
  background-image: linear-gradient(top,#363636,#cc9966);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#363636', endColorstr='#cc9966', GradientType=0);
  color: black;
  padding: 5px 8px;
}
.actionbox .block-content {
  padding: 5px 8px 0;
  position: relative;
}
.actionbox .block-content div.arrow {
  position: absolute;
  left: -8px;
  width: 8px;
  height: 15px;
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/popup_arrow.png') no-repeat 0 0 transparent;
}
#compareTable {
  width: 100%;
}
#compareTable th {
  font-weight: normal;
}
#compareTable th,
#compareTable td {
  padding-left: 20px;
  padding-right: 20px;
  vertical-align: top;
  width: 25%;
}
#compareTable .product-list-row th {
  border-left: 1px solid #ccc;
  padding-top: 12px;
  vertical-align: top;
}
#compareTable .product-list-row th .element-wrapper {
  position: relative;
}
#compareTable .product-list-row th .element-wrapper .btn-remove {
  font-size: 12px;
  font-weight: normal;
  position: absolute;
  top: 0px;
  right: 9px;
  opacity: 0.7;
  text-decoration: none;
  z-index: 10;
}
#compareTable .product-list-row th .element-wrapper .btn-remove:hover {
  opacity: 1;
  text-decoration: underline;
}
#compareTable .product-list-row th .element-wrapper.last {
  border-right: none;
}
#compareTable .product-list-row th .element-wrapper.empty-column {
  border: none;
}
#compareTable .product-image {
  clear: both;
  display: block;
  margin-bottom: 18px;
  text-align: center;
}
#compareTable .product-name {
  display: block;
  font-size: 12px;
  margin-bottom: 3px;
  overflow: hidden;
  text-align: left;
}
#compareTable .rating-container .ratings {
  *zoom: 1;
  display: block;
  padding: 5px 0;
}
#compareTable .rating-container .ratings:before,
#compareTable .rating-container .ratings:after {
  display: table;
  content: "";
}
#compareTable .rating-container .ratings:after {
  clear: both;
}
#compareTable .rating-container .info {
  font-size: 10px;
}
#compareTable .rating-container .rating-box,
#compareTable .rating-container .info {
  display: block;
  float: left;
}
#compareTable .price-box {
  float: left;
  margin-right: 6px;
}
#compareTable .price-box .old-price .price {
  display: block;
  font-weight: normal;
  text-align: left;
}
#compareTable .order-btn-container {
  float: right;
}
#compareTable .order-btn-container p {
  margin: 5px 0;
}
#compareTable .order-btn-container .btn {
  background-color: #57af57;
  background-image: -moz-linear-gradient(top,#51a351,#61c161);
  background-image: -ms-linear-gradient(top,#51a351,#61c161);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#51a351),to(#61c161));
  background-image: -webkit-linear-gradient(top,#51a351,#61c161);
  background-image: -o-linear-gradient(top,#51a351,#61c161);
  background-image: linear-gradient(top,#51a351,#61c161);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a351', endColorstr='#61c161', GradientType=0);
  border: 1px solid #5b874a;
  color: #fff;
  padding: 4px 8px 4px;
  text-shadow: none;
}
#compareTable tr.price-attribute-group-row th {
  padding: 0;
  vertical-align: top;
}
#compareTable tr.price-attribute-group-row th.first .border-container {
  -webkit-border-radius: 0 0 0 5px;
  -moz-border-radius: 0 0 0 5px;
  border-radius: 0 0 0 5px;
  -webkit-border-radius: 0 0 0 5px;
  -moz-border-radius: 0 0 0 5px;
  border-radius: 0 0 0 5px;
}
#compareTable tr.price-attribute-group-row th.last {
  border-right: none;
}
#compareTable tr.price-attribute-group-row th.last .border-container {
  -webkit-border-radius: 0 0 5px 0;
  -moz-border-radius: 0 0 5px 0;
  border-radius: 0 0 5px 0;
  -webkit-border-radius: 0 0 5px 0;
  -moz-border-radius: 0 0 5px 0;
  border-radius: 0 0 5px 0;
}
#compareTable tr.price-attribute-group-row th .border-container {
  *zoom: 1;
  border: 1px solid #ccc;
  border-right: none;
  padding: 12px 20px;
}
#compareTable tr.price-attribute-group-row th .border-container:before,
#compareTable tr.price-attribute-group-row th .border-container:after {
  display: table;
  content: "";
}
#compareTable tr.price-attribute-group-row th .border-container:after {
  clear: both;
}
#compareTable tr.price-attribute-group-row .product-name {
  display: block;
  text-align: left;
}
#compareTable tr.attribute-group-row th {
  border-top: none;
  padding: 0;
}
#compareTable tr.attribute-group-row th .border-container {
  background-color: #dbdbdb;
  border: 1px solid #cbcbcb;
  border-right: none;
}
#compareTable tr.attribute-group-row th .border-container h2 {
  padding-left: 12px;
  visibility: hidden;
}
#compareTable tr.attribute-group-row th.last .border-container {
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
#compareTable tr.attribute-group-row .attribute-group-title {
  padding-left: 0;
  padding-right: 0;
  border: none;
}
#compareTable tr.attribute-group-row .attribute-group-title .border-container {
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
#compareTable tr.attribute-group-row .attribute-group-title .border-container h2 {
  visibility: visible;
  text-align: left;
}
#compareTable tr.attribute-group-row h2 {
  margin-bottom: 0;
  width: 100%;
}
#compareTable tr.group-attribute {
  border-bottom: 1px solid #cbcbcb;
}
#compareTable tr.group-attribute.last {
  border-bottom: none;
}
#compareTable tr.group-attribute.first td,
#compareTable tr.group-attribute.first th {
  border-top: none;
}
#compareTable tr.group-attribute th {
  padding: 3px 0 3px 12px;
  text-align: left;
}
#compareTable tr.group-attribute td,
#compareTable tr.group-attribute th.item {
  background-color: #ededed;
  border-left: 1px solid #cbcbcb;
}
#compareTable tr.group-attribute td.first,
#compareTable tr.group-attribute th.item.first {
  -webkit-box-shadow: inset 6px 0px 5px -1px rgba(0,0,0,0.1);
  -moz-box-shadow: inset 6px 0px 5px -1px rgba(0,0,0,0.1);
  box-shadow: inset 6px 0px 5px -1px rgba(0,0,0,0.1);
}
.block-top-cart {
  margin-top: 12px;
}
.block-top-cart .block-title {
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
}
.block-top-cart .block-title:before {
  content: "\f07a";
  font-family: FontAwesome;
  display: inline-block;
  margin-right: 5px;
  width: 10px;
}
.block-top-cart p.amount {
  display: block;
  height: 30px;
  font-size: 13px;
  margin-top: 4px;
}
.block-top-cart p.amount > a {
  text-decoration: none;
}
.block-top-cart p.amount .price {
  font-size: 15px;
  font-weight: bold;
}
.block-top-cart p.amount small {
  display: block;
  margin-top: -3px;
}
.block-top-cart .empty {
  font-style: italic;
  margin-top: 18px;
  color: #999;
}
.block-top-cart .summary {
  margin-top: 9px;
}
.block-top-cart .actions {
  margin-top: 12px;
}
.block-top-cart .actions .btn.btn-link {
  border-left: 1px solid #DBDBDB;
  color: #427bab;
  line-height: 12px;
  margin-left: 6px;
  padding: 0 0 0 6px;
  text-decoration: underline;
  text-transform: lowercase;
}
.block-top-cart .actions .btn.btn-link:first-child {
  border-left: 0;
  margin-left: 0;
  padding: 0;
}
.dropdown-trigger {
  position: relative;
  z-index: 981;
}
.dropdown-trigger:hover {
  z-index: 1000;
}
.block-top-login .dropdown-trigger {
  z-index: 1001;
}
.drop {
  position: absolute;
  left: -9999px;
  top: 18px;
  display: none;
  z-index: 5;
  margin-left: 0;
}
.drop-content {
  background: #fff;
  padding: 18px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.drop-content .mini-products-list {
  max-height: 160px;
  list-style: none;
  margin-left: 0;
}
.drop-content .mini-products-list .item {
  padding: 7px 0;
  border-bottom: 1px solid #dbdbdb;
}
.drop-content .mini-products-list .item .product-image {
  float: left;
}
.drop-content .mini-products-list .item .product-details {
  float: left;
  margin-left: 5px;
  width: 139px;
}
.drop-content .mini-products-list .item .close {
  background: none;
  border: none;
  text-decoration: none;
}
.drop-content .bottom {
  margin-top: 12px;
}
.drop-content .bottom .price {
  font-size: 16px;
  font-weight: bold;
}
.drop-content .bottom .items {
  font-size: 14px;
}
.drop-content .bottom .small {
  font-size: 11px;
  color: #909090;
}
.drop .arrow.up {
  height: 6px;
}
.drop .arrow.up span {
  display: block;
  width: 0;
  height: 0;
  border-width: 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent #fff;
  margin: 0 auto;
}
#dropdown-expose-overlay {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  z-index: 980;
}
.ie7 #dropdown-expose-overlay,
.ie8 #dropdown-expose-overlay {
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/transparent-50-black.png);
}
#header {
  margin-bottom: 12px;
  *position: relative;
  *z-index: 1000;
}
#header .logo {
  margin: 9px 0 0 0;
}
#header .logowrapper {
  margin-left: 10px;
}
#header .header-wrapper {
  margin-bottom: 9px;
  *position: relative;
  *z-index: 3;
}
.quick-access {
  margin-top: 12px;
  border-right: 1px solid #eee;
}
.quick-access ul {
  float: right;
  margin-right: 27px;
}
.quick-access li {
  float: left;
  padding-right: 6px;
  margin-left: 6px;
  margin-bottom: 6px;
  border-right: 1px solid #ccc;
  line-height: 12px;
}
.quick-access li:last-child {
  border-right: 0;
  padding-right: 0;
}
.quick-access li .topLink,
.quick-access li > a {
  text-decoration: underline;
  text-transform: lowercase;
  color: #202020;
}
.quick-access li .topLink:hover,
.quick-access li > a:hover {
  background: none;
}
#dropdownLogin {
  left: -76px !important;
}
#dropdownLogin form {
  margin-bottom: 0;
}
#dropdownLogin .drop-content {
  padding: 12px;
}
#dropdownLogin .drop-content .block-title {
  text-transform: uppercase;
}
#dropdownLogin .drop-content .block-content {
  margin-top: 16px;
}
#dropdownLogin .drop-content .block-content .input-text {
  width: 166px;
}
#dropdownLogin .drop-content .block-content .actions .button {
  width: 100%;
  margin-top: 3px;
}
#dropdownLogin .drop-content .block-content .actions .seperate-buttons {
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/login-sep.jpg) no-repeat left top;
  width: 100%;
  height: 10px;
  margin: 12px 0;
}
#dropdownLogin .drop-content .block-content .actions .button-link {
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  text-decoration: underline;
  color: #202020;
  background: #fff;
  text-align: center;
  display: block;
}
#dropdownLogin .drop-content .block-content .actions a.button-link {
  padding: 2px 0 5px;
}
#dropdownLogin .drop-content .block-content .actions .button-link:hover {
  color: #000000;
}
.form-search {
  float: right;
  margin: 25px 18px 0 0;
}
.form-search .search-query {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  width: 220px;
}
.form-search #search_autocomplete {
  z-index: 1000;
  background: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.form-search #search_autocomplete ul {
  list-style: none;
}
.form-search #search_autocomplete ul li {
  margin-left: -25px;
  padding-left: 10px;
  line-height: 22px;
}
.form-search #search_autocomplete ul li:hover,
.form-search #search_autocomplete ul li.selected {
  background: #eee;
}
.compact .form-search {
  position: relative;
}
.compact .form-search .search-query {
  width: 300px;
  border: 1px solid #eee;
  background: #F8F8F8;
  text-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.compact .form-search .search-query[placeholdercolor] {
  color: #333;
}
.compact .form-search .search-query:focus {
  background: #fff;
}
.compact .form-search button {
  text-indent: -9999px;
  overflow: hidden;
  width: 30px;
  height: 26px;
  position: absolute;
  right: 0px;
  top: 1px;
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/compact-search.png) no-repeat center center;
  border: 0;
}
.nav a {
  text-decoration: none;
}
.navbar li.level-top {
  position: relative;
  border-right: 1px solid #d8d7d7;
}
.navbar li.level-top a {
  font-weight: bold;
  text-transform: lowercase;
  text-shadow: none;
  font-size: 12px;
}
.navbar li.level-top a .icon-home {
  font-size: 16px;
}
.navbar .parent > .over {
  background-color: #bf8040;
  color: white;
}
.navbar .gan-plain {
  color: black;
  padding-bottom: 18px;
  padding-right: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  display: none;
  min-width: 160px;
  padding: 4px 0;
  margin: 0;
  list-style: none;
  background-color: #fff;
  border-color: #ccc;
  border-color: rgba(0,0,0,0.2);
  border-style: solid;
  border-width: 1px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  border: 1px solid rgba(0,0,0,0.2);
}
.navbar .gan-plain.pull-right {
  right: 0;
  left: auto;
}
.navbar .gan-plain .divider {
  height: 1px;
  margin: 8px 1px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #fff;
  *width: 100%;
  *margin: -5px 0 5px;
}
.navbar .gan-plain a {
  display: block;
  padding: 3px 15px;
  clear: both;
  font-weight: normal;
  line-height: 18px;
  color: #333;
  white-space: nowrap;
}
.navbar .gan-plain a {
  font-size: 12px;
}
.navbar .gan-plain.gan-plain-image {
  min-width: 318px;
}
.navbar .gan-plain.shown-sub {
  display: block;
}
.navbar .gan-plain .gan-plain-item-thumbnail {
  margin-right: 9px;
}
.navbar .gan-plain .gan-plain-image-left {
  float: left;
}
.navbar .gan-plain .gan-plain-image-left img,
.navbar .gan-plain .gan-plain-image-right img {
  display: block;
  margin: 5px;
}
.navbar .gan-plain .gan-plain-image-right {
  float: right;
}
.navbar .gan-plain .gan-plain-image-top img,
.navbar .gan-plain .gan-plain-image-bottom img {
  padding: 5px;
}
.navbar .gan-plain .gan-plain-image-top,
.navbar .gan-plain .gan-plain-image-bottom {
  text-align: center;
}
.navbar .gan-plain .gan-plain-items .gan-plain-item {
  list-style: none;
  margin-left: 0;
  min-width: 150px;
}
.navbar .gan-plain .gan-plain-items .gan-plain-item li {
  float: none;
}
.navbar .gan-plain .gan-plain-items .gan-plain-item li a {
  padding: 4px 20px 4px 9px;
}
.navbar .gan-plain .gan-plain-items .gan-plain-item li.over,
.navbar .gan-plain .gan-plain-items .gan-plain-item li:hover {
  background: #202020;
  z-index: 100;
}
.navbar .gan-plain .gan-plain-items .gan-plain-item li.over a.over,
.navbar .gan-plain .gan-plain-items .gan-plain-item li.over a:hover,
.navbar .gan-plain .gan-plain-items .gan-plain-item li:hover a.over,
.navbar .gan-plain .gan-plain-items .gan-plain-item li:hover a:hover {
  color: #fff;
}
.navbar .gan-plain .gan-plain-items .gan-plain-item li.over.gan-plain-item-title,
.navbar .gan-plain .gan-plain-items .gan-plain-item li:hover.gan-plain-item-title {
  background: none;
}
.navbar .gan-plain .gan-plain-items .gan-plain-item li.gan-plain-item-title {
  font-weight: bold;
  margin: 0 9px;
  padding: 4px 20px 4px 9px;
  text-transform: uppercase;
  display: none;
}
.navbar .gan-plain .gan-plain-items .gan-plain-item li.gan-plain-item-bold {
  position: relative;
}
.navbar .gan-plain .gan-plain-items .gan-plain-item li.gan-plain-item-bold a {
  font-weight: bold;
}
.navbar .gan-plain .gan-plain-items .gan-plain-item li.gan-plain-item-bold.has-children > a {
  position: relative;
  white-space: normal;
}
.navbar .gan-plain .gan-plain-items .gan-plain-item li.gan-plain-item-bold.has-children > a:before {
  content: " ";
  background-image: url("https://www.consolepro.nl/skin/frontend/default/default/images/icons/has-submenu-icon.png");
  background-repeat: no-repeat;
  background-position: 100% center;
  position: absolute;
  top: 0;
  right: 5px;
  height: 26px;
  width: 10px;
}
.navbar .gan-plain .gan-plain-items .gan-plain-item li.gan-plain-item-bold.has-children > a.over:before,
.navbar .gan-plain .gan-plain-items .gan-plain-item li.gan-plain-item-bold.has-children > a:hover:before {
  background-image: url("https://www.consolepro.nl/skin/frontend/default/default/images/icons/has-submenu-icon-white.png");
}
.navbar .gan-plain .gan-plain-items .gan-plain-item li.gan-plain-item-bold.over .level-2 {
  display: block;
}
.navbar .gan-plain .gan-plain-items .gan-plain-item li.gan-plain-item-bold .level-2 {
  position: absolute;
  left: 133px;
  top: 0;
  background-color: #fff;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  display: none;
  z-index: 1;
}
.navbar .gan-plain .gan-plain-items .gan-plain-item li.gan-plain-item-bold .level-2 a {
  white-space: normal;
}
.navbar .gan-plain .gan-plain-items .gan-plain-item.level-3 {
  display: none;
}
.navbar .nav.left {
  float: left;
  margin-left: 10px;
}
.navbar .nav.right {
  float: right;
  padding: 0 20px;
  margin: 0;
  background-color: #e9e9e9;
  background-image: -moz-linear-gradient(top,#f0f0f0,#dfdfdf);
  background-image: -ms-linear-gradient(top,#f0f0f0,#dfdfdf);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f0f0f0),to(#dfdfdf));
  background-image: -webkit-linear-gradient(top,#f0f0f0,#dfdfdf);
  background-image: -o-linear-gradient(top,#f0f0f0,#dfdfdf);
  background-image: linear-gradient(top,#f0f0f0,#dfdfdf);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f0f0f0', endColorstr='#dfdfdf', GradientType=0);
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.navbar .nav.right a:hover {
  background-color: #725e49;
  background-image: -moz-linear-gradient(top,#363636,#cc9966);
  background-image: -ms-linear-gradient(top,#363636,#cc9966);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#363636),to(#cc9966));
  background-image: -webkit-linear-gradient(top,#363636,#cc9966);
  background-image: -o-linear-gradient(top,#363636,#cc9966);
  background-image: linear-gradient(top,#363636,#cc9966);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#363636', endColorstr='#cc9966', GradientType=0);
}
.gan-plain-item-title-style {
  font-weight: bold;
  margin: 0 9px;
  padding: 4px 20px 4px 9px;
  text-transform: uppercase;
}
.gan-plain-item-style {
  list-style: none;
  margin-left: 0;
  min-width: 150px;
}
.gan-plain-item-style li {
  float: none;
}
.gan-plain-item-style li a {
  padding: 4px 20px 4px 9px;
}
.gan-plain-item-style li.over,
.gan-plain-item-style li:hover {
  background: #202020;
  z-index: 100;
}
.gan-plain-item-style li.over a.over,
.gan-plain-item-style li.over a:hover,
.gan-plain-item-style li:hover a.over,
.gan-plain-item-style li:hover a:hover {
  color: #fff;
}
.gan-plain-item-style li.over.gan-plain-item-title,
.gan-plain-item-style li:hover.gan-plain-item-title {
  background: none;
}
.gan-plain-item-style li.gan-plain-item-title {
  font-weight: bold;
  margin: 0 9px;
  padding: 4px 20px 4px 9px;
  text-transform: uppercase;
  display: none;
}
.gan-plain-item-style li.gan-plain-item-bold {
  position: relative;
}
.gan-plain-item-style li.gan-plain-item-bold a {
  font-weight: bold;
}
.gan-plain-item-style li.gan-plain-item-bold.has-children > a {
  position: relative;
  white-space: normal;
}
.gan-plain-item-style li.gan-plain-item-bold.has-children > a:before {
  content: " ";
  background-image: url("https://www.consolepro.nl/skin/frontend/default/default/images/icons/has-submenu-icon.png");
  background-repeat: no-repeat;
  background-position: 100% center;
  position: absolute;
  top: 0;
  right: 5px;
  height: 26px;
  width: 10px;
}
.gan-plain-item-style li.gan-plain-item-bold.has-children > a.over:before,
.gan-plain-item-style li.gan-plain-item-bold.has-children > a:hover:before {
  background-image: url("https://www.consolepro.nl/skin/frontend/default/default/images/icons/has-submenu-icon-white.png");
}
.gan-plain-item-style li.gan-plain-item-bold.over .level-2 {
  display: block;
}
.gan-plain-item-style li.gan-plain-item-bold .level-2 {
  position: absolute;
  left: 133px;
  top: 0;
  background-color: #fff;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  display: none;
  z-index: 1;
}
.gan-plain-item-style li.gan-plain-item-bold .level-2 a {
  white-space: normal;
}
.gan-plain-item-style.level-3 {
  display: none;
}
.navbar li.gan-open-left .gan-plain {
  left: 0;
}
.navbar li.gan-open-middle .gan-plain.gan-plain-has-cms-block {
  left: 50%;
  margin-left: -300px;
}
.navbar li.gan-open-middle .gan-plain.gan-plain-has-cms-block.gan-plain-cms-block-count-1 {
  margin-left: -200px;
}
.navbar li.gan-open-right .gan-plain {
  left: auto;
  right: 0;
}
.navbar li.last .gan-plain {
  left: auto;
  right: 0;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items {
  width: 600px;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item {
  float: left;
  width: 200px;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item li.gan-plain-item-title {
  display: list-item;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container {
  overflow: hidden;
  zoom: 1;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container .gan-plain-item-cms-block {
  width: 200px;
  float: left;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container .gan-plain-item-cms-block strong {
  font-weight: bold;
  margin: 0 9px;
  padding: 4px 20px 4px 9px;
  text-transform: uppercase;
  display: block;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul {
  list-style: none;
  margin-left: 0;
  min-width: 150px;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li {
  float: none;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li a {
  padding: 4px 20px 4px 9px;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li.over,
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li:hover {
  background: #202020;
  z-index: 100;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li.over a.over,
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li.over a:hover,
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li:hover a.over,
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li:hover a:hover {
  color: #fff;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li.over.gan-plain-item-title,
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li:hover.gan-plain-item-title {
  background: none;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li.gan-plain-item-title {
  font-weight: bold;
  margin: 0 9px;
  padding: 4px 20px 4px 9px;
  text-transform: uppercase;
  display: none;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li.gan-plain-item-bold {
  position: relative;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li.gan-plain-item-bold a {
  font-weight: bold;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li.gan-plain-item-bold.has-children > a {
  position: relative;
  white-space: normal;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li.gan-plain-item-bold.has-children > a:before {
  content: " ";
  background-image: url("https://www.consolepro.nl/skin/frontend/default/default/images/icons/has-submenu-icon.png");
  background-repeat: no-repeat;
  background-position: 100% center;
  position: absolute;
  top: 0;
  right: 5px;
  height: 26px;
  width: 10px;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li.gan-plain-item-bold.has-children > a.over:before,
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li.gan-plain-item-bold.has-children > a:hover:before {
  background-image: url("https://www.consolepro.nl/skin/frontend/default/default/images/icons/has-submenu-icon-white.png");
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li.gan-plain-item-bold.over .level-2 {
  display: block;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li.gan-plain-item-bold .level-2 {
  position: absolute;
  left: 133px;
  top: 0;
  background-color: #fff;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  display: none;
  z-index: 1;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul li.gan-plain-item-bold .level-2 a {
  white-space: normal;
}
.navbar .gan-plain.gan-plain-has-cms-block .gan-plain-items .gan-plain-item-cms-block-container ul.level-3 {
  display: none;
}
.navbar .gan-plain.gan-plain-has-cms-block.gan-plain-cms-block-count-1 {
  width: 400px;
}
.navbar .gan-plain-full-width li.level-top {
  position: static;
}
.navbar .gan-plain-full-width .gan-plain {
  float: none;
  padding-left: 18px !important;
  width: 939px;
}
.navbar .gan-plain-full-width .gan-plain .gan-plain-items .gan-plain-item {
  margin-left: 0;
  width: 100%;
}
.navbar .gan-plain-full-width .gan-plain .gan-plain-items .gan-plain-item li {
  border-bottom-color: transparent;
}
.navbar .gan-plain-full-width .gan-plain .gan-plain-items .gan-plain-item > li.gan-plain-item-bold {
  float: left;
  width: 185px;
}
.navbar .gan-plain-full-width .gan-plain .gan-plain-items .gan-plain-item > li.gan-plain-item-bold .level-2 {
  display: block;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding-bottom: 8px !important;
  padding-top: 4px !important;
  width: 100%;
  position: static;
  left: auto;
  top: auto;
}
.navbar .gan-plain-full-width .gan-plain .gan-plain-items .gan-plain-item > li.gan-plain-item-bold .level-2 a {
  white-space: normal;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .gan-plain .gan-plain-items > .gan-plain-item {
  border-right: 1px solid #dbdbdb;
  width: 619px;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .gan-plain .gan-plain-items > .gan-plain-item > li.gan-plain-item-bold {
  margin-bottom: 3px;
  position: relative;
  width: 200px;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .gan-plain .gan-plain-items > .gan-plain-item > li.clear-left {
  clear: left;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .gan-plain .gan-plain-items > .gan-plain-item > li.clear-right {
  clear: right;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .gan-plain .gan-plain-items > .gan-plain-item > li.has-children > ul {
  display: none;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .gan-plain .gan-plain-items > .gan-plain-item > li.has-children.over > ul {
  display: block;
  position: absolute;
  left: 200px;
  top: 0px;
  background-color: #fff;
  border-color: #ccc;
  border-color: rgba(0,0,0,0.2);
  border-style: solid;
  border-width: 1px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  z-index: 100;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .gan-plain .gan-plain-items .gan-plain-item-right {
  float: left;
  padding-left: 21px;
  width: 298px;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .menu-featured-title {
  text-transform: uppercase;
  font-size: 14.4px;
  margin-bottom: 12px;
  font-weight: bold;
  margin-top: 4px;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .menu-featured-listing {
  list-style: none outside none;
  margin: 0;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .menu-featured-listing li {
  *zoom: 1;
  margin-bottom: 9px;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .menu-featured-listing li:before,
.navbar .gan-plain-full-width.gan-plain-has-featured-product .menu-featured-listing li:after {
  display: table;
  content: "";
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .menu-featured-listing li:after {
  clear: both;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .menu-featured-listing .menu-featured-product-image {
  clear: none;
  float: left;
  padding: 0;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .menu-featured-listing .menu-featured-product-image img {
  border: 1px solid #dbdbdb;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .menu-featured-listing .menu-featured-product-content {
  float: left;
  margin: 0 0 0 9px;
  width: 200px;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .menu-featured-listing .menu-featured-product-name {
  color: #427bab;
  display: block;
  padding: 0;
  text-decoration: underline;
  white-space: normal;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .menu-featured-listing .menu-featured-product-name:hover {
  text-decoration: none;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .menu-featured-listing .price-box {
  height: auto;
  margin-bottom: 0;
  margin-top: 6px;
}
.navbar .gan-plain-full-width.gan-plain-has-featured-product .menu-featured-listing .price-box .old-price .price {
  font-size: 12px;
}
.ie8 .navbar-inner {
  filter: none;
}
.navbar.navbar-large #gan_nav_top_before {
  background-color: #cc9966;
  margin: 0;
  padding: 0 10px 0 10px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
.navbar.navbar-large .navbar-inner {
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/navbar-large-middle.png) repeat-x scroll 0 44px #cc9966;
}
.navbar.navbar-large.navbar-home-icon #gan_nav_top {
  width: 920px;
  margin-left: 0;
}
.navbar.navbar-large li.level-top {
  border-right-color: transparent;
}
.navbar.navbar-is-large #gan_nav_top_before .home {
  padding-top: 45%;
}
.navbar.navbar-is-large #gan_nav_top_before .home .icon-home:before {
  font-size: 26px;
}
.col-left .gan-sidebar-nav,
.col-left .block-layered-nav {
  background: #f5f5f5;
}
.col-left .gan-sidebar-nav .block-content,
.col-left .block-layered-nav .block-content {
  padding-top: 0;
}
.col-left .gan-sidebar-nav .block-content .actions,
.col-left .block-layered-nav .block-content .actions {
  padding-top: 9px;
  text-align: center;
}
.col-left .gan-sidebar-nav .block-content .actions button.button,
.col-left .block-layered-nav .block-content .actions button.button {
  width: 100%;
}
.col-left .gan-sidebar-nav dt,
.col-left .block-layered-nav dt {
  cursor: pointer;
  font-weight: 700;
  margin: 0;
  padding: 2px 0;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.col-left .gan-sidebar-nav dd,
.col-left .block-layered-nav dd {
  margin: 0 0 18px;
  position: relative;
}
.col-left .gan-sidebar-nav dd ol,
.col-left .block-layered-nav dd ol {
  padding-right: 10px;
  max-height: 200px;
}
.col-left .gan-sidebar-nav dd ol li,
.col-left .block-layered-nav dd ol li {
  padding: 3px 0;
  border-bottom: 1px solid #eee;
}
.col-left .gan-sidebar-nav dd ol li.active a,
.col-left .block-layered-nav dd ol li.active a {
  font-weight: 700;
}
.col-left .gan-sidebar-nav dd.filter-container-style-1 ol,
.col-left .block-layered-nav dd.filter-container-style-1 ol {
  max-height: none;
  padding-right: 0;
}
.col-left .gan-sidebar-nav dd .scrollbar-track,
.col-left .block-layered-nav dd .scrollbar-track {
  display: block;
  position: absolute;
  top: 2px;
  right: -8px;
  height: 200px;
  width: 8px;
  background-color: #eee;
  cursor: pointer;
}
.col-left .gan-sidebar-nav dd .scrollbar-handle,
.col-left .block-layered-nav dd .scrollbar-handle {
  display: block;
  width: 8px;
  background-color: #262626;
  opacity: 0.9;
  filter: alpha(opacity=90);
  float: left;
}
.col-left .gan-sidebar-nav dd .scrollbar-handle:hover,
.col-left .block-layered-nav dd .scrollbar-handle:hover {
  background: #000;
}
.col-left .gan-sidebar-nav dd .navigation a,
.col-left .gan-sidebar-nav dd .transition,
.col-left .block-layered-nav dd .navigation a,
.col-left .block-layered-nav dd .transition {
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}
.col-left .gan-sidebar-nav dd li a,
.col-left .block-layered-nav dd li a {
  display: block;
  color: #333;
  text-decoration: none !important;
}
.col-left .gan-sidebar-nav dd .gan-list-checkbox li,
.col-left .block-layered-nav dd .gan-list-checkbox li {
  padding: 0px 3px !important;
}
.col-left .gan-sidebar-nav dd .image-align-horizontally li,
.col-left .gan-sidebar-nav dd .image-align-horizontally li a,
.col-left .block-layered-nav dd .image-align-horizontally li,
.col-left .block-layered-nav dd .image-align-horizontally li a {
  display: inline;
  padding-right: 2px;
}
.col-left .gan-sidebar-nav dd .image-align-horizontally li.active img,
.col-left .gan-sidebar-nav dd .image-align-horizontally li a.active img,
.col-left .block-layered-nav dd .image-align-horizontally li.active img,
.col-left .block-layered-nav dd .image-align-horizontally li a.active img {
  border: 1px solid #3B3B3B;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.col-left .gan-sidebar-nav dd select,
.col-left .block-layered-nav dd select {
  width: 210px;
}
#advancednavigation-filter-content-category ol {
  margin: 0;
}
#narrow-by-list dd ol.gan-list-checkbox li a,
ul.gan-list-checkbox.gan-default-list li a span,
ul.gan-list-checkbox.gan-folding-list li a span,
.gan-sidebar-nav .gan-image-list.gan-list-checkbox li a {
  padding-left: 18px;
  line-height: 21px;
  background-image: url('https://www.consolepro.nl/skin/frontend/default/default/images/gomage/advanced-navigation/gan_checkbox.gif');
  background-repeat: no-repeat;
  background-position: 0 6px;
}
#narrow-by-list dd ol.gan-list-checkbox li:hover a,
#narrow-by-list dd ol.gan-list-checkbox li a.active {
  background-image: url('https://www.consolepro.nl/skin/frontend/default/default/images/gomage/advanced-navigation/gan_checkbox_active.gif');
  background-position: 0 6px;
  background-repeat: no-repeat;
}
#advanced-navigation-overlay {
  opacity: 0.7;
  filter: alpha(opacity=70);
  background: #fff;
  position: absolute;
}
.gan-loadinfo {
  position: fixed;
  -position: absolute;
  left: 50%;
  top: 45%;
  -top: 0;
  width: 24px;
  height: 24px;
  background: #fff url(https://www.consolepro.nl/skin/frontend/default/default/images/icons/loader.gif) no-repeat scroll center center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 0 3px rgba(0,0,0,0.2);
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
  z-index: 2001;
  padding: 8px;
}
.block-layered-nav .hidden {
  display: none;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
ul.gan-list-checkbox.gan-default-list li a.active span,
ul.gan-list-checkbox.gan-folding-list li a.active span {
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/gomage/advanced-navigation/gan_checkbox_active.gif') 9px 7px no-repeat;
}
ul.gan-list-checkbox.gan-image-list li a.active {
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/gomage/advanced-navigation/gan_checkbox_active.gif') 0 2px no-repeat;
}
.gan-wrapper .gan-folding-list.gan-list-checkbox li a span,
.gan-wrapper .gan-default-list.gan-list-checkbox li a span {
  background-position: 9px 7px;
  padding-left: 26px;
}
.sort-by,
.arrow-down,
.arrow-up {
  text-decoration: none;
}
#narrow-by-list .filter-fieldset .fields .from-wrapper {
  float: left;
}
#narrow-by-list .filter-fieldset .fields .from-wrapper span {
  float: left;
  text-align: center;
  width: 25px;
}
#narrow-by-list .filter-fieldset .fields .from-wrapper  input {
  width: 66px;
}
#narrow-by-list .slider-input-action {
  text-align: right;
  padding-top: 5px;
}
#narrow-by-list .handle-left {
  width: 9px;
  height: 21px;
  position: absolute;
  z-index: 11;
}
#narrow-by-list .handle-right {
  width: 9px;
  height: 21px;
  position: absolute;
  z-index: 11;
}
#narrow-by-list .handle-left .handle-left-bg {
  display: block;
  background: #ccc;
  background-repeat: no-repeat;
  width: 9px;
  height: 21px;
  cursor: pointer;
  position: relative;
  left: -14px;
}
#narrow-by-list .handle-right .handle-right-bg {
  display: block;
  background: #ccc;
  background-repeat: no-repeat;
  width: 9px;
  height: 21px;
  cursor: pointer;
  position: relative;
}
#narrow-by-list .handle-left .handle-left-bg span.slider-span,
#narrow-by-list .handle-right .handle-right-bg span.slider-span {
  position: absolute;
  top: 20px;
  left: 50%;
  display: block;
  width: 45px;
}
#narrow-by-list .handle-left .handle-left-bg span.slider-span span,
#narrow-by-list .handle-right .handle-right-bg span.slider-span span {
  position: absolute;
  left: -50%;
  display: block;
  width: 45px;
  text-align: center;
}
#narrow-by-list .gan-track {
  background-image: #333;
  width: 91%;
  height: 28px;
  position: relative;
  left: 16px;
}
#narrow-by-list .gan-slider-span {
  background: blue;
  height: 4px;
  top: 10px;
  position: relative;
  z-index: 10;
}
#narrow-by-list .slider-back-bg {
  background: #bfbfbf;
  height: 4px;
  left: -9px;
  position: relative;
  top: 10px;
  width: 100%;
  z-index: 9;
}
#narrow-by-list .gan-track div.span {
  top: 0;
  height: 20px;
  overflow: hidden;
  z-index: 10;
}
.gomage-navigation-slider-type-rectangle #narrow-by-list .slider-back-bg,
.gomage-navigation-slider-type-rectangle #narrow-by-list .gan-slider-span {
  height: 3px;
  top: 10px;
}
.gomage-navigation-slider-type-cone #narrow-by-list .slider-back-bg,
.gomage-navigation-slider-type-cone #narrow-by-list .gan-slider-span {
  height: 3px;
  top: 8px;
  overflow: hidden;
}
#narrow-by-list .handle-left .handle-left-bg,
#narrow-by-list .handle-right .handle-right-bg,
#narrow-by-list .handle-left,
#narrow-by-list .handle-right {
  height: 24px;
  width: 14px;
}
#narrow-by-list .handle-right .handle-right-bg,
#narrow-by-list .handle-right .handle-right-bg {
  left: 0;
}
#narrow-by-list .handle-left .handle-left-bg span.slider-span,
#narrow-by-list .handle-right .handle-right-bg span.slider-span {
  margin-left: 0;
  top: 25px;
}
#narrow-by-list .filter-type-input {
  padding-top: 15px;
}
.gomage-navigation-slider-type-cone #narrow-by-list .filter-type-input,
.gomage-navigation-slider-type-rectangle #narrow-by-list .filter-type-input {
  padding-top: 20px;
}
.gomage-navigation-slider-type-rectangle #narrow-by-list .handle-left .handle-left-bg,
.gomage-navigation-slider-type-rectangle #narrow-by-list .handle-right .handle-right-bg {
  background: transparent url(https://www.consolepro.nl/skin/frontend/default/default/images/gomage/advanced-navigation/slider_bg_rect.png) no-repeat 0 0;
}
.gomage-navigation-slider-type-cone #narrow-by-list .handle-left .handle-left-bg,
.gomage-navigation-slider-type-cone #narrow-by-list .handle-right .handle-right-bg {
  background: transparent url(https://www.consolepro.nl/skin/frontend/default/default/images/gomage/advanced-navigation/slider_bg_cone.png) no-repeat 0 0;
}
#narrow-by-list .slider-input-action {
  text-align: left;
}
#narrow-by-list .handle-right .handle-right-bg span.slider-span {
  left: auto;
  right: 0;
}
#narrow-by-list .handle-right .handle-right-bg span.slider-span span {
  left: auto;
  right: 0;
  text-align: right;
}
.product-view.product-view-type-bundle .options-box .price-box-bundle {
  display: none;
}
.product-view .product-name h1 {
  font-size: 18px;
  font-weight: normal;
}
.product-view .product-shop {
  padding-left: 11px;
}
.product-view .product-shop .short-description {
  margin-bottom: 18px;
}
.product-view .product-shop .ratings,
.product-view .product-shop .no-rating {
  margin-bottom: 18px;
}
.product-view .product-shop .product-description-more-anchor span {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 9px;
}
.product-view .product-shop .product-description-more-anchor span:before {
  content: "\00BB";
  margin-left: 3px;
  width: 9px;
}
.product-view .product-shop .options-box {
  margin-bottom: 18px;
}
.product-view .product-shop .options-box .add-to-box .controls,
.product-view .product-shop .options-box .add-to-cart .controls {
  line-height: 28px;
}
.product-view .product-shop .options-box .add-to-box .controls .add-to-cart-x,
.product-view .product-shop .options-box .add-to-cart .controls .add-to-cart-x {
  line-height: 36px;
}
.product-view .product-shop .options-box .add-to-box .controls input.input-text.qty,
.product-view .product-shop .options-box .add-to-cart .controls input.input-text.qty {
  margin-bottom: 0;
}
.product-view .product-shop .options-box .product-options dt {
  margin-top: 12px;
}
.product-view .product-shop .options-box .product-options dt label {
  font-weight: bold;
}
.product-view .product-shop .options-box .product-options .options-list {
  list-style: none;
  margin: 0;
}
.product-view .product-shop .options-box .product-options .options-list li .label {
  background: none;
  padding: 0;
  text-shadow: none;
  display: inline;
}
.product-view .product-shop .options-box .product-options .options-list li .label label {
  white-space: normal;
}
.product-view .product-shop .options-box .product-options .options-list li .label .price {
  font-size: 12px;
  font-weight: bold;
  margin-left: 3px;
}
.product-view .product-shop .options-box .product-options .options-list li input[type="checkbox"],
.product-view .product-shop .options-box .product-options .options-list li input[type="radio"] {
  float: left;
  margin-right: 10px;
}
.product-view .product-shop .social-media {
  border: 1px solid #eee;
  margin-bottom: 18px;
  padding: 9px 0 9px 9px;
  position: relative;
}
.product-view .product-shop .social-media .addthis_default_style {
  height: 20px;
}
.product-view .add-to-cart .controls {
  *zoom: 1;
}
.product-view .add-to-cart .controls:before,
.product-view .add-to-cart .controls:after {
  display: table;
  content: "";
}
.product-view .add-to-cart .controls:after {
  clear: both;
}
.product-view .add-to-cart input.qty {
  margin-right: 3px;
  padding: 8px 4px;
}
.product-view .add-to-cart .btn,
.product-view .add-to-cart button {
  float: right;
  font-size: 15px;
  line-height: 34px;
  height: 36px;
  padding-top: 0;
  padding-bottom: 0;
  text-transform: uppercase;
  width: 250px;
}
.product-view .add-to-cart .btn [class^="icon-"],
.product-view .add-to-cart .btn [class*=" icon-"],
.product-view .add-to-cart button [class^="icon-"],
.product-view .add-to-cart button [class*=" icon-"] {
  margin-right: 12px;
}
.product-view .add-to-box-links {
  float: none;
  text-align: left;
}
.product-view .add-to-box-links ul {
  *zoom: 1;
  list-style: none outside none;
  margin: 0;
}
.product-view .add-to-box-links ul:before,
.product-view .add-to-box-links ul:after {
  display: table;
  content: "";
}
.product-view .add-to-box-links ul:after {
  clear: both;
}
.product-view .add-to-box-links ul li {
  float: left;
  margin-bottom: 3px;
  width: 50%;
}
.product-view .add-to-box-links ul li:before {
  content: "»";
}
.product-view .add-to-box-links ul li.li-productquestion {
  width: 100%;
}
.product-view label.required em {
  color: #9d261d;
  margin-right: 3px;
}
.product-view .options-box {
  background: #f4f4f4;
  padding: 15px 18px;
}
.product-view .options-box .line {
  border-top: 1px solid #eee;
  width: 100%;
  margin: 9px 0;
}
.product-view .options-box .price {
  font-size: 20px;
  color: #202020;
}
.product-view .options-box .product-stock {
  margin-bottom: 10px;
}
.product-view .options-box .product-stock.label-green:before {
  background-color: #7fc123;
}
.product-view .options-box .product-stock.label-green span {
  color: #7fc123;
}
.product-view .options-box .product-stock.label-orange:before {
  background-color: #f89406;
}
.product-view .options-box .product-stock.label-orange span {
  color: #f89406;
}
.product-view .options-box .product-stock.label-red:before {
  background-color: #9d261d;
}
.product-view .options-box .product-stock.label-red span {
  color: #9d261d;
}
.product-view .options-box .stockgreen {
  color: #7fc123;
}
.product-view .options-box .help-inline {
  margin-top: -10px;
}
.product-view .options-box .tier-prices {
  list-style: none outside none;
  margin: 0 0 18px;
}
.product-view .options-box .tier-prices small {
  text-transform: lowercase;
}
.product-view .options-box .tier-prices .price {
  font-size: 12px;
  font-weight: bold;
}
.product-view .grouped-items-table .price {
  font-size: 12px;
  color: #333;
}
.product-view .product-media {
  margin-left: 0;
  border: 1px solid #f4f4f4;
  background: #f9f9f9;
  padding: 9px;
  margin-bottom: 18px;
}
.product-view .product-media.span8 {
  width: 305px;
}
.product-view .product-media .main-image {
  border: 1px solid #f4f4f4;
  background: #fff;
  margin-bottom: 9px;
}
.product-view .product-media .more-views {
  *zoom: 1;
}
.product-view .product-media .more-views:before,
.product-view .product-media .more-views:after {
  display: table;
  content: "";
}
.product-view .product-media .more-views:after {
  clear: both;
}
.product-view .product-media .more-views ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-view .product-media .more-views ul li {
  float: left;
  margin-right: 8px;
  margin-bottom: 10px;
}
.product-view .product-media .more-views ul li.last {
  margin-right: 0;
}
.product-view .product-media .more-views ul li a {
  display: block;
  background: #fff;
  border: 1px solid #f4f4f4;
}
.product-view .social-media {
  border: 1px solid #EEEEEE;
  padding: 9px 0 0;
}
.product-view .social-media .addthis_button_tweet iframe {
  width: 103px !important;
}
.product-view .social-media .addthis_button_google_plusone div {
  width: 69px !important;
}
.product-view .social-media .addthis_button_compact {
  margin-top: 3px;
}
.product-view .tabbable .nav.nav-tabs {
  margin-bottom: 0;
}
.product-view .tabbable .tab-content {
  border: 1px solid #eee;
  border-top: none;
}
.product-view .tabbable .tab-content .actions {
  line-height: 27px;
  clear: both;
}
.product-view .tabbable .tab-content .box-reviews .reviewer-name {
  border-bottom: 1px solid #eee;
  margin-bottom: 9px;
}
.product-view .tabbable .tab-content .box-reviews .ratings-table {
  margin-bottom: 18px;
  margin-left: 18px;
  text-align: left;
}
.product-view .tabbable .tab-content .data-table h2 {
  margin: 0;
}
.product-view .tabbable .tab-content #customer-reviews h3 {
  font-size: 18px;
  margin-top: 5px;
}
.product-view .tabbable .tab-content #tab-reviews .form-list .input-text {
  width: 280px;
}
.product-view .tabbable .tab-content #tab-reviews .form-list #review_field {
  width: 280px;
}
.product-view .tabbable .tab-content #tab-reviews .items .item {
  min-height: 130px;
}
.product-view .tabbable .tab-content #tab-attributes .form-list .input-text {
  width: 322px;
}
.product-view .tabbable .tab-content #tab-attributes .form-list #review_field {
  width: 322px;
}
#customer-reviews #product-review-table tbody,
#review-form #product-review-table tbody {
  border: none !important;
}
#customer-reviews #product-review-table tbody tr.first td,
#review-form #product-review-table tbody tr.first td {
  border: none !important;
}
#customer-reviews #product-review-table tbody tr td,
#review-form #product-review-table tbody tr td {
  line-height: 30px;
}
#customer-reviews .review-info,
#review-form .review-info {
  color: #777777;
  display: block;
  float: left;
  font-size: 11px;
  clear: both;
}
#customer-reviews .starrating,
#review-form .starrating {
  height: 30px;
  display: block;
  width: 121px;
  position: relative;
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/bkg_rating-w24.gif') repeat-x left top;
}
#customer-reviews .starrating .starselect,
#review-form .starrating .starselect {
  height: 23px;
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/bkg_rating-w24.gif') repeat-x 0 100%;
  width: 0;
  overflow: hidden;
  position: absolute;
}
#customer-reviews .starrating .starholder,
#review-form .starrating .starholder {
  height: 23px;
  position: absolute;
}
#customer-reviews .starrating .starholder .starbtn,
#review-form .starrating .starholder .starbtn {
  display: inline-block;
  float: left;
  height: 23px;
  text-decoration: none;
  width: 24px;
}
#customer-reviews .input-box,
#review-form .input-box {
  clear: both;
}
#customer-reviews .input-box textarea,
#review-form .input-box textarea {
  resize: vertical;
  width: 270px;
  margin-bottom: 10px;
}
#customer-reviews ul.form-list,
#review-form ul.form-list {
  margin-left: 0;
}
#customer-reviews ul.form-list li,
#review-form ul.form-list li {
  list-style: none;
}
#customer-reviews ul.form-list li .input-box,
#review-form ul.form-list li .input-box {
  clear: both;
}
.product-image,
.product-media {
  position: relative;
}
.product-image .labelicon,
.product-media .labelicon {
  right: -2px;
  position: absolute;
  top: -2px;
}
.product-image .labelicon.labelicon-new,
.product-image .labelicon.labelicon-new-de,
.product-image .labelicon.labelicon-new-en,
.product-media .labelicon.labelicon-new,
.product-media .labelicon.labelicon-new-de,
.product-media .labelicon.labelicon-new-en {
  left: -2px;
  right: auto;
}
.product-image .labelicon.labelicon-beste-keus,
.product-image .labelicon.labelicon-beste-keus-de,
.product-image .labelicon.labelicon-beste-keus-en,
.product-media .labelicon.labelicon-beste-keus,
.product-media .labelicon.labelicon-beste-keus-de,
.product-media .labelicon.labelicon-beste-keus-en {
  bottom: 9px;
  left: 9px;
  right: auto;
  top: auto;
}
.product-image .image-label,
.product-media .image-label {
  position: absolute;
  top: 10px;
  left: 10px;
}
.product-image .image-label.top-right,
.product-media .image-label.top-right {
  left: auto;
  right: 10px;
}
.product-image .image-label.bottom-left,
.product-media .image-label.bottom-left {
  top: auto;
  bottom: 10px;
}
.product-image .image-label.bottom-right,
.product-media .image-label.bottom-right {
  top: auto;
  left: auto;
  right: 10px;
  bottom: 10px;
}
.product-image .image-label.image-discount,
.product-media .image-label.image-discount {
  top: 0;
  left: 0;
}
.product-image .image-label.image-discount.top-right,
.product-media .image-label.image-discount.top-right {
  left: auto;
  right: 0px;
}
.product-image .image-label.image-discount.bottom-left,
.product-media .image-label.image-discount.bottom-left {
  top: auto;
  bottom: 0px;
}
.product-image .image-label.image-discount.bottom-right,
.product-media .image-label.image-discount.bottom-right {
  top: auto;
  left: auto;
  right: 0px;
  bottom: 0px;
}
.category-products {
  padding: 4px 0;
  margin: 18px 0;
}
.category-products .toolbar-container {
  clear: both;
  margin-bottom: 18px;
}
.category-products .toolbar-container .toolbar {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  padding: 9px;
}
.category-products.toolbar-bottom {
  margin-top: 18px;
}
.category-products .pagination a {
  padding: 0 10px;
}
.category-products .sort-by {
  float: left;
  margin-top: 2px;
}
.category-products .sort-by label {
  margin: 3px 4px 0 0;
}
.category-products .view-mode {
  float: left;
  margin: 0 10px 0 0;
}
.category-products .view-mode [class^="icon-"],
.category-products .view-mode [class*=" icon-"] {
  font-size: 14px;
}
.products-grid {
  margin: 0;
  clear: both;
}
.products-grid > li {
  float: left;
  width: 214px;
  margin: 0 6px 18px 0;
  border: 1px solid #eee;
  list-style: none;
  padding: 10px;
  text-align: center;
}
.products-grid > li.last {
  margin: 0 0 18px 0;
}
.products-grid > li .rating-container {
  height: 18px;
}
.products-grid > li .rating-container .info {
  display: none;
}
.products-grid > li .rating-container .rating-box {
  display: block;
  margin: 0 auto;
  float: none;
}
.products-grid > li .compare-input {
  text-align: left;
  margin-bottom: 9px;
}
.products-grid > li .compare-input label {
  display: inline;
}
.products-grid > li .product-image {
  display: block;
  margin-bottom: 18px;
}
.products-grid > li .product-name {
  margin-bottom: 9px;
  font-size: 12px;
  display: inline-block;
  height: 36px;
  overflow: hidden;
}
.products-grid.small-category > li {
  width: 149px;
}
.products-grid.small > li {
  width: 137px;
}
.products-grid.last {
  *zoom: 1;
}
.products-grid.last:before,
.products-grid.last:after {
  display: table;
  content: "";
}
.products-grid.last:after {
  clear: both;
}
.flex-video {
  position: relative;
  padding-top: 25px;
  padding-bottom: 67.5%;
  height: 0;
  margin: 0;
  overflow: hidden;
}
.flex-video.widescreen {
  padding-bottom: 57.25%;
}
.flex-video.vimeo {
  padding-top: 0;
}
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.products-list {
  margin: 0;
}
.products-list .item {
  *zoom: 1;
  list-style: none;
  margin-top: 14px;
  border: none;
  padding: 0;
  float: left;
}
.products-list .item:before,
.products-list .item:after {
  display: table;
  content: "";
}
.products-list .item:after {
  clear: both;
}
.products-list .item .inner-item {
  *zoom: 1;
  background-color: #fff;
  border: 1px solid #dbdbdb;
}
.products-list .item .inner-item:before,
.products-list .item .inner-item:after {
  display: table;
  content: "";
}
.products-list .item .inner-item:after {
  clear: both;
}
.products-list .item .product-list-item-top-row {
  position: relative;
}
.products-list .product-list-item-right {
  background: #eee;
}
.products-list .product-list-item-top {
  background: #EEEEEE;
  position: relative;
  width: 560px;
  float: left;
}
.products-list .product-list-item-top .product-list-content {
  margin: 0;
  padding-left: 10px;
  background: #fff;
  min-height: 159px;
  width: 392px;
  border-right: 1px solid #dbdbdb;
  float: left;
}
.products-list .product-list-item-top .product-list-content .product-name,
.products-list .product-list-item-top .product-list-content .desc {
  padding-right: 15px;
}
.products-list .product-list-item-top .product-list-content .link-learn {
  margin-bottom: 12px;
}
.products-list .product-list-item-top .product-list-item-right {
  margin-left: 0;
  width: 157px;
  height: 159px;
  float: left;
  display: table;
  position: absolute;
  right: 0;
  bottom: 0;
}
.products-list .product-list-item-top .product-list-item-right .product-list-item-inner {
  display: table-cell;
  vertical-align: bottom;
}
.products-list .product-list-item-top .product-list-item-right .product-list-item-inner .product-list-item-inner-inner {
  margin-left: 20px;
}
.products-list .product-list-item-top .product-list-item-right .product-list-item-inner .product-list-item-inner-inner .product-stock {
  margin-bottom: 10px;
}
.products-list .product-list-item-top .product-list-item-right .product-list-item-inner .product-list-item-inner-inner .product-stock.label-green:before {
  background-color: #7fc123;
}
.products-list .product-list-item-top .product-list-item-right .product-list-item-inner .product-list-item-inner-inner .product-stock.label-green span {
  color: #7fc123;
}
.products-list .product-list-item-top .product-list-item-right .product-list-item-inner .product-list-item-inner-inner .product-stock.label-orange:before {
  background-color: #f89406;
}
.products-list .product-list-item-top .product-list-item-right .product-list-item-inner .product-list-item-inner-inner .product-stock.label-orange span {
  color: #f89406;
}
.products-list .product-list-item-top .product-list-item-right .product-list-item-inner .product-list-item-inner-inner .product-stock.label-red:before {
  background-color: #9d261d;
}
.products-list .product-list-item-top .product-list-item-right .product-list-item-inner .product-list-item-inner-inner .product-stock.label-red span {
  color: #9d261d;
}
.products-list .product-list-item-bottom.product-list-item-left {
  margin-left: 0;
  padding-left: 10px;
  width: 560px;
  float: left;
}
.products-list .product-list-item-bottom.product-list-item-left .product-list-item-inner {
  border-top: 1px solid #dbdbdb;
  padding-top: 9px;
}
.products-list .product-list-item-bottom.product-list-item-right {
  margin-left: 0;
}
.products-list .product-list-item-bottom.product-list-item-right .product-list-item-inner {
  border-left: 1px solid #dbdbdb;
  border-top: 1px solid #dbdbdb;
  padding: 9px 0 9px 12px;
}
.products-list .product-list-item-bottom.product-list-item-left .product-list-item-inner,
.products-list .product-list-item-bottom.product-list-item-right .product-list-item-inner {
  padding-left: 20px;
}
.products-list .product-image {
  padding: 12px 0;
  text-align: center;
}
.products-list .link-learn {
  display: block;
  margin-top: 3px;
  text-transform: lowercase;
}
.products-list .add-to-links {
  list-style: none outside none;
  margin-left: 0;
  margin-bottom: 9px;
}
.products-list .compare-input label {
  display: inline;
}
.catalogimg-listing ~ .no-products-msg {
  display: none;
}
.cat-usp-wrapper {
  margin-bottom: 18px;
  background: #eeeeee;
  border: 1px solid #eee;
  float: left;
}
.cat-usp-wrapper ul {
  margin: 10px;
  list-style: none;
}
.cat-usp-wrapper ul li {
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/vink.png') no-repeat left top;
  float: left;
  margin-right: 8px;
  padding-left: 20px;
  width: 200px;
}
.cat-usp-wrapper ul li p {
  font-style: italic;
}
.discount-ellipse {
  position: absolute;
  padding: 10px;
  left: 10px;
  bottom: 0;
  color: #FFFFFF;
  background: #F8640E;
}
.options-box .price-box.displaybothprices {
  *zoom: 1;
}
.options-box .price-box.displaybothprices .price-including-tax {
  display: inline-block;
}
.options-box .price-box.displaybothprices .price-excluding-tax {
  display: inline-block;
  margin-left: 10px;
}
.options-box .price-box.displaybothprices:before,
.options-box .price-box.displaybothprices:after {
  display: table;
  content: "";
}
.options-box .price-box.displaybothprices:after {
  clear: both;
}
.price-box {
  margin-bottom: 9px;
  height: 38px;
  line-height: 38px;
  vertical-align: middle;
}
.price-box .old-price .price-label {
  display: none;
}
.price-box .special-price {
  line-height: 20px;
}
.price-box .special-price .price-label {
  display: none;
}
.price-box.displaybothprices .price-label {
  display: none;
}
.price-box.displaybothprices .price-excluding-tax {
  display: block;
  line-height: 12px;
}
.price-box.displaybothprices .price-excluding-tax .price {
  font-size: 12px;
  color: #888888;
}
.price-box.displaybothprices .price-excluding-tax .label {
  background: none repeat scroll 0 0 rgba(0,0,0,0);
  color: #888888;
  text-shadow: none;
  padding: 0;
}
.price-box .price-from {
  margin: 0;
}
.price-box .price-from .price {
  font-size: 18px;
}
.price-box .price-to {
  margin: 0;
}
.price-box .price-to .price {
  font-size: 18px;
}
.price-box .regular-price,
.price-box .special-price {
  font-weight: normal !important;
}
.price-box .regular-price .price,
.price-box .special-price .price {
  font-size: 18px;
  font-weight: bold;
}
.price-box .minimal-price .price-label {
  display: inline;
}
.price-box .minimal-price .price {
  font-size: 18px;
  font-weight: bold;
}
.price-box .old-price {
  line-height: 18px;
}
.price-box .old-price .price {
  color: #a0a0a0;
  font-size: 15px;
  text-decoration: line-through;
}
.price-box .price-as-configured .price-label {
  font-weight: bold;
}
.price-box .price-as-configured .full-product-price {
  font-weight: bold;
}
.price-box .minimal-price-link {
  clear: both;
  color: #a0a0a0;
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-style: italic;
  text-decoration: none;
}
.price-box .weee {
  text-transform: lowercase;
}
.price-box .weee .price {
  font-size: 12px;
}
.price-box.has-recommended-price {
  height: auto;
  line-height: 18px;
}
.price-box.has-recommended-price .price-label {
  font-size: 14px;
  display: inline-block;
  width: 120px;
}
.price-box.has-recommended-price .recommended-price .price,
.price-box.has-recommended-price .old-price .price {
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
}
.price-box.has-recommended-price .special-price {
  font-size: 18px;
  line-height: 38px;
}
.price-box.has-recommended-price .special-price .price-label {
  font-size: 18px;
}
.price-box.has-recommended-price .special-price .price {
  color: inherit;
}
.category-products .price-box.has-recommended-price {
  height: auto;
  line-height: 18px;
}
.category-products .price-box.has-recommended-price .price-label {
  font-size: 14px;
  display: inline-block;
  width: 120px;
}
.category-products .price-box.has-recommended-price .recommended-price .price,
.category-products .price-box.has-recommended-price .old-price .price {
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
}
.category-products .price-box.has-recommended-price .special-price {
  font-size: 18px;
  line-height: 38px;
}
.category-products .price-box.has-recommended-price .special-price .price-label {
  font-size: 18px;
}
.category-products .price-box.has-recommended-price .special-price .price {
  color: inherit;
}
.category-products .price-box.has-recommended-price .price-label {
  display: none;
}
.category-products .price-box.has-recommended-price .recommended-price .price {
  text-decoration: line-through;
}
.category-products .price-box.has-recommended-price .old-price {
  display: none;
}
.category-products .price-box.has-recommended-price .special-price {
  line-height: 18px;
}
.catalog-product-view .price-box.has-recommended-price {
  height: auto;
  line-height: 18px;
}
.catalog-product-view .price-box.has-recommended-price .price-label {
  font-size: 14px;
  display: inline-block;
  width: 120px;
}
.catalog-product-view .price-box.has-recommended-price .recommended-price .price,
.catalog-product-view .price-box.has-recommended-price .old-price .price {
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
}
.catalog-product-view .price-box.has-recommended-price .special-price {
  font-size: 18px;
  line-height: 38px;
}
.catalog-product-view .price-box.has-recommended-price .special-price .price-label {
  font-size: 18px;
}
.catalog-product-view .price-box.has-recommended-price .special-price .price {
  color: inherit;
}
.mini-products-list .product {
  padding-left: 18px;
}
.mini-products-list .product p {
  margin: 0;
}
.mini-products-list .product .product-name {
  font-weight: bold;
}
.mini-products-list .product .product-name a {
  text-decoration: none;
}
.mini-products-list .product .product-image {
  display: block;
  width: 94px;
  height: 95px;
  text-align: center;
  border: 1px solid #DBDBDB;
  background: #F9F9F9;
  margin: 4px 8px 0 0;
  line-height: 92px;
}
.mini-products-list .product .product-details {
  float: right;
  width: 105px;
  margin: 4px 0 0;
}
.mini-products-list .product .price-box {
  margin-top: 10px;
}
.mini-products-list .product .price-box .price {
  font-size: 1.75em;
}
.mini-products-list .product .price-box .old-price .price {
  font-size: 1.5em;
  line-height: 2.5em;
  text-decoration: line-through;
}
.mini-products-list .product .price-box .price-to,
.mini-products-list .product .price-box .price-label {
  display: none;
}
.mini-products-list .rating-container .rating-box {
  display: block;
  float: none;
}
.mini-products-list .rating-container .info {
  display: none;
}
#carrouseltabs .products-grid > li {
  width: 163px;
  margin: 0 18px 18px 0;
}
#carrouseltabs .products-grid > li.last {
  margin-right: 0;
}
.ratings .rating-box {
  float: left;
  margin-right: 9px;
  margin-top: 3px;
}
.rating-box {
  width: 69px;
  height: 18px;
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/bkg_rating.gif) 0 0 repeat-x;
  text-indent: -999em;
  overflow: hidden;
}
.rating-box .rating {
  float: left;
  height: 13px;
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/bkg_rating.gif) 0 100% repeat-x;
}
.ratings-table th,
.ratings-table td {
  font-size: 11px;
  line-height: 1.15;
  padding: 3px 0;
}
.ratings-table th {
  font-weight: bold;
  padding-right: 8px;
}
.product-options dd {
  margin-left: 0;
}
.product-sku {
  margin: -18px 0 18px 0;
  color: #999;
}
.checkout-cart-index .data-table .product-name {
  margin-bottom: 4px;
}
.checkout-cart-index .data-table dl.item-options {
  margin: 0;
}
.free-shipping.country_check_enabled {
  display: none;
}
.free-shipping {
  text-align: center;
  width: 100%;
  background: #dff0d8;
  padding: 5px 0;
  color: #468847;
  margin-bottom: 10px;
  border: 1px solid #d6e9c6;
}
.free-shipping.blue {
  background: #bce8f1;
  border: 1px solid #d9edf7;
  color: #2f96b4;
}
#shopping-cart-table .shipping-container .shipping .shipping-wrapper {
  min-height: 45px;
  position: relative;
}
#shopping-cart-table .shipping-container .shipping > .sp-methods {
  width: 275px;
}
#shopping-cart-table .shipping-container .free-shipping {
  position: absolute;
  top: 0;
  right: 9px;
  width: 250px;
}
.listing-catalogimg-grid {
  overflow: hidden;
  zoom: 1;
  margin-top: 4px;
}
.listing-catalogimg-grid .grid-row {
  *zoom: 1;
  margin: 0;
}
.listing-catalogimg-grid .grid-row:before,
.listing-catalogimg-grid .grid-row:after {
  display: table;
  content: "";
}
.listing-catalogimg-grid .grid-row:after {
  clear: both;
}
.listing-catalogimg-grid li.item {
  float: left;
  padding: 14px;
  line-height: 1.6em;
  overflow: hidden;
  text-align: center;
  margin: 10px 26px 10px 0;
  border: 1px solid #DDDDDD;
}
.listing-catalogimg-grid li.item.last {
  margin-right: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid #DDDDDD;
}
.product-downloads ul {
  margin: 0;
}
.product-downloads ul li {
  list-style: none;
}
.product-description-more-anchor {
  display: block;
}
.product-layout-list .block-product-view .flex-video {
  position: relative;
  padding-top: 1.5625em;
  padding-bottom: 67.5%;
  height: 0;
  margin-bottom: 1em;
  overflow: hidden;
}
.product-layout-list .block-product-view .flex-video.widescreen {
  padding-bottom: 57.25%;
}
.product-layout-list .block-product-view .flex-video.vimeo {
  padding-top: 0;
}
.product-layout-list .block-product-view .flex-video iframe,
.product-layout-list .block-product-view .flex-video object,
.product-layout-list .block-product-view .flex-video embed,
.product-layout-list .block-product-view .flex-video video {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-layout-list #product-attribute-specs-table tr.attribute-group-row td {
  border-top: none;
  padding: 0 !important;
}
.product-layout-list #product-attribute-specs-table tr.attribute-group-row .attribute-group-title {
  padding-left: 12px;
  background: #fff;
}
.product-layout-list #product-attribute-specs-table tr.attribute-group-row h2 {
  line-height: 36px;
  margin-bottom: 0;
  width: 100%;
}
.product-layout-list #product-attribute-specs-table tr.group-attribute.first td,
.product-layout-list #product-attribute-specs-table tr.group-attribute.first th {
  border-top: none;
}
.product-layout-list #product-attribute-specs-table tr.group-attribute th {
  width: 50%;
}
.product-layout-list #product-attribute-specs-table tr.group-attribute td {
  background-color: #ededed;
}
.product-layout-list #product-attribute-specs-table tr.group-attribute .attribute-label,
.product-layout-list #product-attribute-specs-table tr.group-attribute .attribute-value {
  padding-left: 12px !important;
}
.product-layout-list #product-attribute-specs-table tr.last td.last {
  -webkit-border-radius: 0 0 5px 0;
  -moz-border-radius: 0 0 5px 0;
  border-radius: 0 0 5px 0;
  -webkit-border-radius: 0 0 5px 0;
  -moz-border-radius: 0 0 5px 0;
  border-radius: 0 0 5px 0;
}
.product-layout-list #product-attribute-specs-table .icon-ok {
  color: #46a546;
}
.product-layout-list #product-attribute-specs-table .icon-remove {
  color: #9d261d;
}
.product-layout-list #product-attribute-specs-table tbody,
.product-layout-list #product-review-table tbody {
  border-bottom: none !important;
}
.product-layout-list .block-product-view-reviews-title {
  *zoom: 1;
  margin-bottom: 18px;
}
.product-layout-list .block-product-view-reviews-title:before,
.product-layout-list .block-product-view-reviews-title:after {
  display: table;
  content: "";
}
.product-layout-list .block-product-view-reviews-title:after {
  clear: both;
}
.product-layout-list .block-product-view-reviews-title .rating-box {
  margin: 0 10px;
}
.product-layout-list .box-reviews #customer-reviews ul.items li {
  margin-bottom: 18px;
}
.product-layout-list .box-reviews .product-review-table td:first-child {
  width: 176px;
}
.product-layout-list .box-reviews #customer-reviews .input-box textarea,
.product-layout-list .box-reviews #review-form .input-box textarea {
  margin-bottom: 0;
  height: 120px;
}
.product-layout-list .box-reviews #customer-reviews ul.form-list li .input-box,
.product-layout-list .box-reviews #review-form ul.form-list li .input-box,
.product-layout-list .box-reviews #customer-reviews .input-box,
.product-layout-list .box-reviews #review-form .input-box {
  clear: none;
}
.product-layout-list .box-reviews .review-meta .review-date {
  display: none;
}
.product-layout-list .box-reviews .review-meta .rating-box {
  display: none;
}
.product-layout-list #block-product-view-reviews {
  position: relative;
}
.product-layout-list #block-product-view-reviews .block-product-view-reviews-title {
  position: absolute;
  top: 12px;
  left: 150px;
}
.product-layout-list #block-product-view-reviews .block-product-view-reviews-title .rating-box {
  margin-right: 18px;
  margin-left: 9px;
}
.product-layout-list #review-form label {
  display: inline-block;
}
.product-layout-list #review-form label.required em {
  position: static;
  margin-left: 3px;
}
.product-layout-list #review-form ul.form-list li {
  margin-bottom: 9px;
}
.product-layout-list #review-form .input-box {
  margin-left: 200px;
}
.product-layout-list #review-form .input-box textarea {
  width: 270px;
}
.product-layout-list #customer-reviews .review-meta {
  *zoom: 1;
}
.product-layout-list #customer-reviews .review-meta:before,
.product-layout-list #customer-reviews .review-meta:after {
  display: table;
  content: "";
}
.product-layout-list #customer-reviews .review-meta:after {
  clear: both;
}
.product-layout-list #customer-reviews .review-meta .rating-box {
  float: left;
  margin-right: 12px;
}
.product-layout-list #customer-reviews .review-meta .reviewer-name {
  float: left;
  margin-right: 12px;
}
.product-layout-list #customer-reviews .review-meta .review-date {
  float: left;
}
.product-layout-list #customer-reviews ul.items li {
  margin-bottom: 21px;
}
.product-layout-list #collapse_review_form {
  margin-top: 21px;
}
.product-layout-list .block-heading {
  margin: 0;
  font-family: inherit;
  font-weight: bold;
  color: inherit;
  text-rendering: optimizelegibility;
  font-size: 24px;
  line-height: 36px;
  font-size: 18px;
  margin-bottom: 18px;
  margin-bottom: 0;
}
.product-layout-list .block-heading small {
  font-weight: normal;
  color: #999;
}
.product-layout-list .block-heading small {
  font-size: 18px;
}
.product-layout-list .block-related .block-title {
  display: none;
}
.product-layout-list .block-related .price-box .regular-price .price,
.product-layout-list .block-related .price-box .special-price .price {
  font-size: 13px;
  font-weight: normal;
}
.product-layout-list .block-related .custom-button {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  text-align: center;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #ddd;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  cursor: pointer;
  *margin-left: .3em;
  text-decoration: none;
}
.product-layout-list .block-related .custom-button [class^="icon-"].icon-large,
.product-layout-list .block-related .custom-button [class*=" icon-"].icon-large {
  line-height: .9em;
}
.product-layout-list .block-related .custom-button [class^="icon-"].icon-spin,
.product-layout-list .block-related .custom-button [class*=" icon-"].icon-spin {
  display: inline-block;
}
.product-layout-list .block-related .custom-button [class^="icon-"].pull-left.icon-2x,
.product-layout-list .block-related .custom-button [class^="icon-"].pull-right.icon-2x,
.product-layout-list .block-related .custom-button [class*=" icon-"].pull-left.icon-2x,
.product-layout-list .block-related .custom-button [class*=" icon-"].pull-right.icon-2x {
  margin-top: .18em;
}
.product-layout-list .block-related .custom-button [class^="icon-"].icon-spin.icon-large,
.product-layout-list .block-related .custom-button [class*=" icon-"].icon-spin.icon-large {
  line-height: .8em;
}
.product-layout-list .block-related .custom-button:hover,
.product-layout-list .block-related .custom-button:active,
.product-layout-list .block-related .custom-button.active,
.product-layout-list .block-related .custom-button.disabled,
.product-layout-list .block-related .custom-button[disabled] {
  background-color: #fff;
}
.product-layout-list .block-related .custom-button:active,
.product-layout-list .block-related .custom-button.active {
  background-color: #e6e6e6 \9;
}
.product-layout-list .block-related .custom-button:hover,
.product-layout-list .block-related .custom-button:active,
.product-layout-list .block-related .custom-button.active,
.product-layout-list .block-related .custom-button.disabled,
.product-layout-list .block-related .custom-button[disabled] {
  background: #e6e6e6;
}
.product-layout-list .block-related .custom-button:active,
.product-layout-list .block-related .custom-button.active {
  background: #e6e6e6;
}
.product-layout-list .block-related .custom-button:first-child {
  *margin-left: 0;
}
.product-layout-list #block-product-view-reviews {
  position: relative;
}
.product-layout-list #block-product-view-reviews .block-product-view-reviews-title {
  position: absolute;
  top: 12px;
  left: 150px;
}
.product-layout-list #block-product-view-reviews .block-product-view-reviews-title .rating-box {
  margin-right: 18px;
  margin-left: 9px;
}
.product-layout-list #review-form label {
  display: inline-block;
}
.product-layout-list #review-form label.required em {
  position: static;
  margin-left: 3px;
}
.product-layout-list #review-form ul.form-list li {
  margin-bottom: 9px;
}
.product-layout-list #review-form .input-box {
  margin-left: 200px;
}
.product-layout-list #review-form .input-box textarea {
  width: 270px;
}
.product-layout-list #customer-reviews .review-meta {
  *zoom: 1;
}
.product-layout-list #customer-reviews .review-meta:before,
.product-layout-list #customer-reviews .review-meta:after {
  display: table;
  content: "";
}
.product-layout-list #customer-reviews .review-meta:after {
  clear: both;
}
.product-layout-list #customer-reviews .review-meta .rating-box {
  float: left;
  margin-right: 12px;
}
.product-layout-list #customer-reviews .review-meta .reviewer-name {
  float: left;
  margin-right: 12px;
}
.product-layout-list #customer-reviews .review-meta .review-date {
  float: left;
}
.product-layout-list #customer-reviews ul.items li {
  margin-bottom: 21px;
}
.product-layout-list #collapse_review_form {
  margin-top: 21px;
}
.product-manufacturer-image-container {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  border: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-top: 0;
  padding: 2px 9px;
  border: 2px solid #EEEEEE;
}
.product-manufacturer-image-container img {
  width: 100%;
}
.products-grid .product-manufacturer-image-container {
  width: 33%;
}
.products-list .product-manufacturer-image-container {
  left: 21px;
  bottom: 21px;
  width: 33%;
}
.products-featured ul {
  float: left;
}
.block-related-fullwidth .block-title {
  text-align: left;
  text-transform: uppercase;
}
.block-related-fullwidth .block-title h3 {
  font-weight: normal;
  font-size: 18px;
}
.block-related-fullwidth .block-content table thead th {
  text-transform: uppercase;
  font-weight: normal;
}
.block-related-fullwidth .block-content table tbody tr td .product-image {
  display: inline-block;
  float: left;
}
.block-related-fullwidth .block-content table tbody tr td .product-info-wrapper {
  margin-left: 10px;
  display: inline-block;
}
.block-related-fullwidth .block-content table tbody tr td .product-info-wrapper .product-name a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
.block-related-fullwidth .block-content table tbody tr td .qty {
  width: 40px;
  margin-top: 17px;
  background: #f8f8f8;
  text-align: center;
}
.block-related-fullwidth .block-content table tbody tr td .price-box {
  border: none;
  height: auto;
  padding-top: 20px;
}
.block-related-fullwidth .block-content table tbody tr td .price-box .special-price .price {
  font-size: 12px;
  font-weight: normal;
}
.block-related-fullwidth .block-content table tbody tr td .price-box .old-price .price {
  font-weight: normal;
}
.block-related-fullwidth .block-content table tbody tr td .calc-price {
  font-size: 17px;
  margin-top: 21px;
  font-weight: bold;
}
.block-related-fullwidth .block-content table tbody tr td .addtocart-small {
  display: block;
  height: auto;
  padding: 3px 2px 3px 3px;
  width: auto;
  margin-top: 17px;
}
.block-related-fullwidth .block-content table tbody tr td .addtocart-small span {
  display: inline-block;
  margin-top: 3px;
}
.products-grid .agp-category-qty,
.products-list .agp-category-qty {
  width: 30px;
  margin-bottom: 0;
}
.products-grid .add-to-cart-x,
.products-list .add-to-cart-x {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin: 0 5px;
  font-size: 11px;
}
.products-grid .btn-cart,
.products-list .btn-cart {
  color: #fff;
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.products-grid .btn-cart:hover,
.products-grid .btn-cart:active,
.products-grid .btn-cart.active,
.products-grid .btn-cart.disabled,
.products-grid .btn-cart[disabled],
.products-list .btn-cart:hover,
.products-list .btn-cart:active,
.products-list .btn-cart.active,
.products-list .btn-cart.disabled,
.products-list .btn-cart[disabled] {
  background-color: #f89406;
}
.products-grid .btn-cart:active,
.products-grid .btn-cart.active,
.products-list .btn-cart:active,
.products-list .btn-cart.active {
  background-color: #c67605 \9;
}
.products-grid .btn-cart:hover,
.products-grid .btn-cart:active,
.products-grid .btn-cart.active,
.products-grid .btn-cart.disabled,
.products-grid .btn-cart[disabled],
.products-list .btn-cart:hover,
.products-list .btn-cart:active,
.products-list .btn-cart.active,
.products-list .btn-cart.disabled,
.products-list .btn-cart[disabled] {
  background: #c67605;
}
.products-grid .btn-cart:active,
.products-grid .btn-cart.active,
.products-list .btn-cart:active,
.products-list .btn-cart.active {
  background: #c67605;
}
.products-grid .btn-cart .caret,
.products-list .btn-cart .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.gan-sidebar-nav #narrow-by-list dt,
.block-layered-nav #narrow-by-list dt {
  margin-top: 12px;
  padding-top: 12px;
}
.gan-sidebar-nav #narrow-by-list dt:first-child,
.block-layered-nav #narrow-by-list dt:first-child {
  border: none;
}
.gan-sidebar-nav #narrow-by-list ol,
.block-layered-nav #narrow-by-list ol {
  list-style: none;
  margin: 0;
}
.gan-sidebar-nav #narrow-by-list ol li,
.block-layered-nav #narrow-by-list ol li {
  padding: 0;
}
.gan-sidebar-nav #narrow-by-list ol li a,
.block-layered-nav #narrow-by-list ol li a {
  padding: 3px 0 3px 9px;
}
.gan-sidebar-nav #narrow-by-list li.active > a,
.gan-sidebar-nav #narrow-by-list li.active > span > a,
.gan-sidebar-nav #narrow-by-list li.parent > a,
.gan-sidebar-nav #narrow-by-list li.parent > span > a,
.gan-sidebar-nav #narrow-by-list li:hover > a,
.gan-sidebar-nav #narrow-by-list li:hover > span > a,
.gan-sidebar-nav #narrow-by-list li a.active,
.block-layered-nav #narrow-by-list li.active > a,
.block-layered-nav #narrow-by-list li.active > span > a,
.block-layered-nav #narrow-by-list li.parent > a,
.block-layered-nav #narrow-by-list li.parent > span > a,
.block-layered-nav #narrow-by-list li:hover > a,
.block-layered-nav #narrow-by-list li:hover > span > a,
.block-layered-nav #narrow-by-list li a.active {
  background-color: #3B3B3B;
  color: #FFFFFF;
}
.gan-sidebar-nav #narrow-by-list ol.gan-list-checkbox li.active > a,
.gan-sidebar-nav #narrow-by-list ol.gan-list-checkbox li.active > span > a,
.gan-sidebar-nav #narrow-by-list ol.gan-list-checkbox li.parent > a,
.gan-sidebar-nav #narrow-by-list ol.gan-list-checkbox li.parent > span > a,
.gan-sidebar-nav #narrow-by-list ol.gan-list-checkbox li:hover > a,
.gan-sidebar-nav #narrow-by-list ol.gan-list-checkbox li:hover > span > a,
.gan-sidebar-nav #narrow-by-list ol.gan-list-checkbox li a.active,
.block-layered-nav #narrow-by-list ol.gan-list-checkbox li.active > a,
.block-layered-nav #narrow-by-list ol.gan-list-checkbox li.active > span > a,
.block-layered-nav #narrow-by-list ol.gan-list-checkbox li.parent > a,
.block-layered-nav #narrow-by-list ol.gan-list-checkbox li.parent > span > a,
.block-layered-nav #narrow-by-list ol.gan-list-checkbox li:hover > a,
.block-layered-nav #narrow-by-list ol.gan-list-checkbox li:hover > span > a,
.block-layered-nav #narrow-by-list ol.gan-list-checkbox li a.active {
  background-color: inherit;
  color: inherit;
}
.gan-sidebar-nav #vertnav .vertnav-cat,
.block-layered-nav #vertnav .vertnav-cat {
  display: block;
  padding: 0;
  width: 200px;
}
.gan-sidebar-nav #vertnav .vertnav-cat > a,
.block-layered-nav #vertnav .vertnav-cat > a {
  display: block;
}
.gan-sidebar-nav #vertnav .level1 .vertnav-cat a,
.block-layered-nav #vertnav .level1 .vertnav-cat a {
  padding-left: 21px;
}
.gan-sidebar-nav #vertnav .level2 .vertnav-cat a,
.block-layered-nav #vertnav .level2 .vertnav-cat a {
  padding-left: 33px;
}
.gan-sidebar-nav #vertnav .level3 .vertnav-cat a,
.block-layered-nav #vertnav .level3 .vertnav-cat a {
  padding-left: 45px;
}
.gan-sidebar-nav #vertnav .active .vertnav-cat,
.block-layered-nav #vertnav .active .vertnav-cat {
  font-weight: bold;
}
.gan-sidebar-nav #vertnav .inactive .vertnav-cat,
.block-layered-nav #vertnav .inactive .vertnav-cat {
  font-weight: normal;
}
#advancednavigation-filter-content-category ol {
  max-height: none;
  list-style: none;
}
#advancednavigation-filter-content-category ol li .vertnav-cat {
  background: none;
  border: none;
  padding: 3px 0 3px 13px;
  font-weight: normal;
  width: 190px;
}
#advancednavigation-filter-content-category ol li a {
  display: inline-block;
}
#advancednavigation-filter-content-category ol li ul {
  margin: 0;
}
#advancednavigation-filter-content-category ol li ul li {
  list-style: none;
}
#advancednavigation-filter-content-category ol li ul li span {
  font-weight: normal;
}
#advancednavigation-filter-content-category ol li ul li span.product-count {
  padding-left: 0;
}
#advancednavigation-filter-content-category ol li ul li a span {
  font-weight: normal;
}
#advancednavigation-filter-content-category ol li.active a {
  font-weight: normal;
}
#advancednavigation-filter-content-category .scrollbar-track {
  display: none;
}
#gan-left-nav-main-container #advancednavigation-filter-content-left-category dl,
#gan-left-nav-main-container #advancednavigation-filter-content-left-category dd,
#gan-left-nav-main-container #advancednavigation-filter-content-right-category dl,
#gan-left-nav-main-container #advancednavigation-filter-content-right-category dd {
  margin-bottom: 0;
}
.block-non-layered-nav {
  background-color: #f5f5f5;
}
.block-non-layered-nav dl {
  margin-top: 0;
}
.block-non-layered-nav dt {
  cursor: pointer;
  font-weight: 700;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.block-non-layered-nav dt:first-child {
  border: none;
}
.block-non-layered-nav dd {
  margin: 0 0 18px;
  position: relative;
}
.block-non-layered-nav dd ol {
  padding-right: 10px;
}
.block-non-layered-nav dd ol li {
  padding: 3px 0;
  border-bottom: 1px solid #eee;
}
.block-non-layered-nav dd ol li.active a {
  font-weight: 700;
}
.block-non-layered-nav ol {
  list-style: none;
  margin: 0;
}
.block-non-layered-nav ol li {
  padding: 0;
}
.block-non-layered-nav ol li a {
  padding: 3px 0 3px 9px;
  text-decoration: none;
}
.no-display {
  display: none;
}
#shopping-cart-table {
  margin-bottom: 12px;
}
#shopping-cart-table input.qty {
  text-align: center;
}
#shopping-cart-table.data-table tbody tr:nth-child(odd) td,
#shopping-cart-table.data-table tbody tr:nth-child(odd) th {
  background: transparent;
}
#shopping-cart-table.data-table tbody tr:nth-child(odd) td.total-column,
#shopping-cart-table.data-table tbody tr:nth-child(odd) th.total-column {
  background: #F6F6F6;
}
#shopping-cart-table.data-table tbody tr:hover td,
#shopping-cart-table.data-table tbody tr:hover th {
  background: #F6F6F6;
}
.tax-notice {
  color: #909090;
  font-size: 10px;
  text-align: right;
}
#checkout-review-table {
  margin-bottom: 0;
}
.checkout-cart-index .custom-button {
  width: 177px;
}
.checkout-cart-index .custom-button.triangle [class^="icon-"],
.checkout-cart-index .custom-button.triangle [class*=" icon-"] {
  font-size: 16px;
  margin-right: 6px;
}
.cart .btn.btn-large [class^="icon-"],
.cart .btn.btn-large [class*=" icon-"] {
  margin-right: 6px;
}
.checkout-cart-index .page-title,
#checkout-review-table-wrapper .page-title {
  margin-bottom: 9px;
}
.checkout-cart-index .cart-wrapper,
#checkout-review-table-wrapper .cart-wrapper {
  margin-bottom: 10px;
}
.checkout-cart-index .cart-form,
#checkout-review-table-wrapper .cart-form {
  margin-bottom: 0;
}
.checkout-cart-index .messages,
#checkout-review-table-wrapper .messages {
  margin-right: 0;
}
.checkout-cart-index .title-buttons,
#checkout-review-table-wrapper .title-buttons {
  border-bottom: none;
}
.checkout-cart-index table#shopping-cart-totals-table,
#checkout-review-table-wrapper table#shopping-cart-totals-table {
  width: 630px;
  margin-bottom: 18px;
}
.checkout-cart-index table#shopping-cart-totals-table tbody tr td,
.checkout-cart-index table#shopping-cart-totals-table tbody tr th,
.checkout-cart-index table#shopping-cart-totals-table tfoot tr td,
.checkout-cart-index table#shopping-cart-totals-table tfoot tr th,
#checkout-review-table-wrapper table#shopping-cart-totals-table tbody tr td,
#checkout-review-table-wrapper table#shopping-cart-totals-table tbody tr th,
#checkout-review-table-wrapper table#shopping-cart-totals-table tfoot tr td,
#checkout-review-table-wrapper table#shopping-cart-totals-table tfoot tr th {
  padding: 2px 0;
}
.checkout-cart-index table#shopping-cart-totals-table tbody tr td.label-column,
.checkout-cart-index table#shopping-cart-totals-table tbody tr th.label-column,
.checkout-cart-index table#shopping-cart-totals-table tfoot tr td.label-column,
.checkout-cart-index table#shopping-cart-totals-table tfoot tr th.label-column,
#checkout-review-table-wrapper table#shopping-cart-totals-table tbody tr td.label-column,
#checkout-review-table-wrapper table#shopping-cart-totals-table tbody tr th.label-column,
#checkout-review-table-wrapper table#shopping-cart-totals-table tfoot tr td.label-column,
#checkout-review-table-wrapper table#shopping-cart-totals-table tfoot tr th.label-column {
  padding: 4px 12px !important;
}
.checkout-cart-index table#shopping-cart-totals-table tbody tr td.total-column,
.checkout-cart-index table#shopping-cart-totals-table tbody tr th.total-column,
.checkout-cart-index table#shopping-cart-totals-table tfoot tr td.total-column,
.checkout-cart-index table#shopping-cart-totals-table tfoot tr th.total-column,
#checkout-review-table-wrapper table#shopping-cart-totals-table tbody tr td.total-column,
#checkout-review-table-wrapper table#shopping-cart-totals-table tbody tr th.total-column,
#checkout-review-table-wrapper table#shopping-cart-totals-table tfoot tr td.total-column,
#checkout-review-table-wrapper table#shopping-cart-totals-table tfoot tr th.total-column {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.checkout-cart-index table thead,
#checkout-review-table-wrapper table thead {
  border-bottom: 1px solid #eee;
  text-transform: lowercase;
}
.checkout-cart-index table thead .qty,
#checkout-review-table-wrapper table thead .qty {
  width: 80px;
}
.checkout-cart-index table tbody tr,
.checkout-cart-index table tfoot tr,
#checkout-review-table-wrapper table tbody tr,
#checkout-review-table-wrapper table tfoot tr {
  border-bottom: 1px solid #eee;
}
.checkout-cart-index table tbody tr.last,
.checkout-cart-index table tfoot tr.last,
#checkout-review-table-wrapper table tbody tr.last,
#checkout-review-table-wrapper table tfoot tr.last {
  border-bottom: none;
}
.checkout-cart-index table tbody tr th,
.checkout-cart-index table tbody tr td,
.checkout-cart-index table tfoot tr th,
.checkout-cart-index table tfoot tr td,
#checkout-review-table-wrapper table tbody tr th,
#checkout-review-table-wrapper table tbody tr td,
#checkout-review-table-wrapper table tfoot tr th,
#checkout-review-table-wrapper table tfoot tr td {
  padding: 9px 0;
  font-size: 12px;
  font-weight: regular;
  border: none;
  vertical-align: middle;
}
.checkout-cart-index table tbody tr th .product-name,
.checkout-cart-index table tbody tr td .product-name,
.checkout-cart-index table tfoot tr th .product-name,
.checkout-cart-index table tfoot tr td .product-name,
#checkout-review-table-wrapper table tbody tr th .product-name,
#checkout-review-table-wrapper table tbody tr td .product-name,
#checkout-review-table-wrapper table tfoot tr th .product-name,
#checkout-review-table-wrapper table tfoot tr td .product-name {
  font-weight: bold;
  color: #202020;
}
.checkout-cart-index table tbody tr th .gpc-cart-arr-tb .pull-right,
.checkout-cart-index table tbody tr td .gpc-cart-arr-tb .pull-right,
.checkout-cart-index table tfoot tr th .gpc-cart-arr-tb .pull-right,
.checkout-cart-index table tfoot tr td .gpc-cart-arr-tb .pull-right,
#checkout-review-table-wrapper table tbody tr th .gpc-cart-arr-tb .pull-right,
#checkout-review-table-wrapper table tbody tr td .gpc-cart-arr-tb .pull-right,
#checkout-review-table-wrapper table tfoot tr th .gpc-cart-arr-tb .pull-right,
#checkout-review-table-wrapper table tfoot tr td .gpc-cart-arr-tb .pull-right {
  margin: 3px 8px 0 0;
}
.checkout-cart-index table tbody tr td.discount,
.checkout-cart-index table tfoot tr td.discount,
#checkout-review-table-wrapper table tbody tr td.discount,
#checkout-review-table-wrapper table tfoot tr td.discount {
  width: 520px;
}
.checkout-cart-index table tbody,
#checkout-review-table-wrapper table tbody {
  border-bottom: 1px solid #eee;
}
.checkout-cart-index table .total-column,
#checkout-review-table-wrapper table .total-column {
  background: #f6f6f6;
}
.checkout-cart-index table td.price-column,
.checkout-cart-index table td.total-column,
#checkout-review-table-wrapper table td.price-column,
#checkout-review-table-wrapper table td.total-column {
  white-space: nowrap;
  text-align: right;
}
.checkout-cart-index table tfoot td,
.checkout-cart-index table tfoot tr:hover td,
#checkout-review-table-wrapper table tfoot td,
#checkout-review-table-wrapper table tfoot tr:hover td {
  border: 0;
}
.checkout-cart-index table .cart-actions,
#checkout-review-table-wrapper table .cart-actions {
  width: 51px;
  height: 26px;
  border: 1px solid #cecece;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top,#fff,#e7e7e7);
  background-image: -ms-linear-gradient(top,#fff,#e7e7e7);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e7e7e7));
  background-image: -webkit-linear-gradient(top,#fff,#e7e7e7);
  background-image: -o-linear-gradient(top,#fff,#e7e7e7);
  background-image: linear-gradient(top,#fff,#e7e7e7);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e7e7e7', GradientType=0);
}
.checkout-cart-index table .cart-actions .remove-item,
#checkout-review-table-wrapper table .cart-actions .remove-item {
  display: block;
  width: 25px;
  height: 25px;
  float: left;
  overflow: hidden;
}
.checkout-cart-index table .cart-actions .remove-item span,
#checkout-review-table-wrapper table .cart-actions .remove-item span {
  margin: 7px;
  text-indent: -999px;
  width: 14px;
  height: 14px;
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/cart-actions.png') no-repeat -25px 0;
}
.checkout-cart-index table .cart-actions .remove-item:hover span,
#checkout-review-table-wrapper table .cart-actions .remove-item:hover span {
  background-position: -25px -14px;
}
.checkout-cart-index table .cart-actions .refresh-item,
#checkout-review-table-wrapper table .cart-actions .refresh-item {
  display: block;
  float: left;
  width: 25px;
  height: 27px;
  overflow: hidden;
  border-right: 1px solid #dbdbdb;
  padding: 0;
  border-left: none;
  border-top: none;
  border-bottom: none;
  background: none;
}
.checkout-cart-index table .cart-actions .refresh-item span,
#checkout-review-table-wrapper table .cart-actions .refresh-item span {
  margin: 7px;
  text-indent: -999px;
  width: 14px;
  height: 14px;
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/cart-actions.png') no-repeat 0 0;
}
.checkout-cart-index table .cart-actions .refresh-item:hover span,
#checkout-review-table-wrapper table .cart-actions .refresh-item:hover span {
  background-position: 0 -14px;
}
.checkout-cart-index table .cart-actions .refresh-item.highlight,
#checkout-review-table-wrapper table .cart-actions .refresh-item.highlight {
  background-color: #57af57;
  background-image: -moz-linear-gradient(top,#51a351,#61c161);
  background-image: -ms-linear-gradient(top,#51a351,#61c161);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#51a351),to(#61c161));
  background-image: -webkit-linear-gradient(top,#51a351,#61c161);
  background-image: -o-linear-gradient(top,#51a351,#61c161);
  background-image: linear-gradient(top,#51a351,#61c161);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a351', endColorstr='#61c161', GradientType=0);
}
.checkout-cart-index table .cart-actions .refresh-item.highlight span,
#checkout-review-table-wrapper table .cart-actions .refresh-item.highlight span {
  background-position: 0 -28px;
}
.checkout-cart-index table .cart-actions .refresh-item.highlight:hover,
#checkout-review-table-wrapper table .cart-actions .refresh-item.highlight:hover {
  background-color: #5bb55b;
  background-image: -moz-linear-gradient(top,#61c161,#51a351);
  background-image: -ms-linear-gradient(top,#61c161,#51a351);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#61c161),to(#51a351));
  background-image: -webkit-linear-gradient(top,#61c161,#51a351);
  background-image: -o-linear-gradient(top,#61c161,#51a351);
  background-image: linear-gradient(top,#61c161,#51a351);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#61c161', endColorstr='#51a351', GradientType=0);
}
.checkout-cart-index table .cart-actions .refresh-item.highlight:hover span,
#checkout-review-table-wrapper table .cart-actions .refresh-item.highlight:hover span {
  background-position: 0 -28px;
}
.checkout-cart-index table .btn-remove.btn-remove2,
#checkout-review-table-wrapper table .btn-remove.btn-remove2 {
  width: 17px;
  height: 17px;
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/remove-item.png) no-repeat left top;
  overflow: hidden;
  text-indent: -9999px;
  display: block;
  margin: 0 auto;
  float: none;
}
.checkout-cart-index table .btn-remove.btn-remove2:hover,
#checkout-review-table-wrapper table .btn-remove.btn-remove2:hover {
  background-position: left bottom;
}
.checkout-cart-index .shipping-container form,
#checkout-review-table-wrapper .shipping-container form {
  margin: 0;
}
.checkout-cart-index .shipping-container dl,
#checkout-review-table-wrapper .shipping-container dl {
  margin-top: 0;
  margin-bottom: 5px;
}
.checkout-cart-index .shipping-container ul,
#checkout-review-table-wrapper .shipping-container ul {
  list-style: none;
  margin: 3px 0;
}
.checkout-cart-index .shipping-container ul li,
#checkout-review-table-wrapper .shipping-container ul li {
  *zoom: 1;
}
.checkout-cart-index .shipping-container ul li:before,
.checkout-cart-index .shipping-container ul li:after,
#checkout-review-table-wrapper .shipping-container ul li:before,
#checkout-review-table-wrapper .shipping-container ul li:after {
  display: table;
  content: "";
}
.checkout-cart-index .shipping-container ul li:after,
#checkout-review-table-wrapper .shipping-container ul li:after {
  clear: both;
}
.checkout-cart-index .shipping-container .radio,
#checkout-review-table-wrapper .shipping-container .radio {
  float: left;
}
.checkout-cart-index .shipping-container label,
#checkout-review-table-wrapper .shipping-container label {
  float: left;
  margin-left: 6px;
}
.checkout-cart-index .shipping-container span,
#checkout-review-table-wrapper .shipping-container span {
  display: inline;
}
.checkout-cart-index .shipping-container .no-display,
#checkout-review-table-wrapper .shipping-container .no-display {
  display: none;
}
.checkout-cart-index .shipping-container .total-column label,
#checkout-review-table-wrapper .shipping-container .total-column label {
  float: none;
  margin-left: 0;
}
.checkout-cart-index .total-container,
#checkout-review-table-wrapper .total-container {
  margin-right: 78px;
}
.checkout-cart-index .total-container tr,
#checkout-review-table-wrapper .total-container tr {
  border-bottom: 0;
}
.checkout-cart-index .totals,
#checkout-review-table-wrapper .totals {
  margin: 0 0 36px 0;
}
.checkout-cart-index .totals #shopping-cart-totals-table th,
.checkout-cart-index .totals #shopping-cart-totals-table td,
#checkout-review-table-wrapper .totals #shopping-cart-totals-table th,
#checkout-review-table-wrapper .totals #shopping-cart-totals-table td {
  border: 0;
  padding: 9px;
  border-bottom: 1px solid #eee;
  font-weight: normal;
}
.checkout-cart-index .totals #shopping-cart-totals-table td,
.checkout-cart-index .totals #shopping-cart-totals-table td a,
#checkout-review-table-wrapper .totals #shopping-cart-totals-table td,
#checkout-review-table-wrapper .totals #shopping-cart-totals-table td a {
  font-size: 14px;
  color: #999;
}
.checkout-cart-index .totals #shopping-cart-totals-table td strong,
#checkout-review-table-wrapper .totals #shopping-cart-totals-table td strong {
  font-weight: normal;
  color: #999;
}
.checkout-cart-index .totals .checkout-types,
#checkout-review-table-wrapper .totals .checkout-types {
  margin-top: 9px;
}
.checkout-cart-index #discount-wrapper .ajax-preloader,
#checkout-review-table-wrapper #discount-wrapper .ajax-preloader {
  display: none;
  margin-left: 10px;
}
.gomage-checkout-onepage-index .glc .discount {
  background: transparent;
  margin-top: 9px;
  padding-left: 9px;
}
.gomage-checkout-onepage-index .glc .checkout-step.address .billing-address .glc-col {
  padding-left: 15px;
}
.gomage-checkout-onepage-index .glc .review {
  padding-bottom: 40px;
}
.gomage-checkout-onepage-index .glc .review .cart-actions {
  width: 25px !important;
  margin-left: 17px;
}
.gomage-checkout-onepage-index .glc .review,
.gomage-checkout-onepage-index .glc .methods {
  width: 660px;
}
.gomage-checkout-onepage-index .gcheckout-right-col dt,
.gomage-checkout-onepage-index .gcheckout-right-col dd {
  *zoom: 1;
}
.gomage-checkout-onepage-index .gcheckout-right-col dt:before,
.gomage-checkout-onepage-index .gcheckout-right-col dt:after,
.gomage-checkout-onepage-index .gcheckout-right-col dd:before,
.gomage-checkout-onepage-index .gcheckout-right-col dd:after {
  display: table;
  content: "";
}
.gomage-checkout-onepage-index .gcheckout-right-col dt:after,
.gomage-checkout-onepage-index .gcheckout-right-col dd:after {
  clear: both;
}
.gomage-checkout-onepage-index .gcheckout-right-col dt .radio,
.gomage-checkout-onepage-index .gcheckout-right-col dd .radio {
  float: left;
}
.gomage-checkout-onepage-index .gcheckout-right-col dt label,
.gomage-checkout-onepage-index .gcheckout-right-col dd label {
  float: left;
  margin: 2px;
}
.gomage-checkout-onepage-index .gcheckout-right-col .glc-col-in .total-column {
  text-align: center;
}
.gomage-checkout-onepage-index table tbody tr td.discount,
.gomage-checkout-onepage-index table tfoot tr td.discount {
  width: 508px;
}
.gomage-checkout-onepage-index table .total-column {
  width: 98px;
}
.gomage-checkout-onepage-index table#shopping-cart-totals-table {
  width: 626px;
}
.gomage-checkout-onepage-index .empty-td {
  width: 71px;
}
#checkout-discount-table {
  width: 100%;
}
#checkout-discount-table tbody tr td.label-column {
  width: 465px;
}
#checkout-total-table tfoot tr td.empty-td {
  width: 60px;
}
#checkout-total-table .multifees-details-view-amount {
  display: none;
}
#checkout-total-table .total-column .multifees-details-view-title {
  display: none;
}
#checkout-total-table .total-column .multifees-details-view-amount {
  display: inline;
}
.ie7 .checkout-cart-index table tbody tr td.discount,
.ie7 .checkout-cart-index table tfoot tr td.discount {
  width: 273px;
}
.ie7 .checkout-cart-index table#shopping-cart-totals-table {
  width: 610px;
}
.ie7 .checkout-cart-index .btn-remove {
  display: block;
}
#checkout-review-table tbody tr.last {
  border-bottom: 1px solid #333 !important;
}
#gcheckout-shipping-method-available ul {
  margin: 3px 0;
}
#gcheckout-shipping-method-available ul li {
  *zoom: 1;
}
#gcheckout-shipping-method-available ul li:before,
#gcheckout-shipping-method-available ul li:after {
  display: table;
  content: "";
}
#gcheckout-shipping-method-available ul li:after {
  clear: both;
}
.cart-price .old-price {
  color: #999;
  text-decoration: line-through;
}
.footer {
  background: #eeeeee;
  padding: 30px 25px;
}
.footer .row {
  margin-top: 0 !important;
}
.footer .row div .social-links {
  list-style: none;
}
.footer .row div .social-links li {
  display: inline;
}
.footer .row div .social-links li::before {
  content: "" !important;
}
.footer .row div .social-links li a {
  margin-left: 3px;
}
.footer .row div .social-links li a img {
  float: none;
}
.footer .row div ul {
  list-style: none outside none;
  margin-left: 0;
}
.footer .row div ul li {
  line-height: 21px;
}
.footer .row div ul li:before {
  content: "\00BB ";
}
.footer .row div ul li a {
  color: #333;
  margin-left: 9px;
  text-decoration: none;
}
.footer .row div ul li a:hover {
  text-decoration: underline;
}
.footer .row div.newsletter {
  float: right;
}
.footer .row div.newsletter p {
  line-height: normal;
}
.footer .row div.newsletter img {
  float: right;
}
.footer .row div.newsletter .block-subscribe {
  border: none;
  margin-top: 16px;
}
.footer .row div.newsletter .block-subscribe .block-content {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}
.footer .row div.newsletter .block-subscribe .block-content label,
.footer .row div.newsletter .block-subscribe .block-content .form-subscribe-header {
  display: none;
}
.footer .row div.newsletter .block-subscribe .block-content .input-box {
  float: left;
  width: 150px;
}
.footer .row div.newsletter .block-subscribe .block-content .input-box input {
  margin-bottom: 3px;
  width: 140px;
}
.footer .row div.newsletter .block-subscribe .block-content .actions {
  *zoom: 1;
}
.footer .row div.newsletter .block-subscribe .block-content .actions:before,
.footer .row div.newsletter .block-subscribe .block-content .actions:after {
  display: table;
  content: "";
}
.footer .row div.newsletter .block-subscribe .block-content .actions:after {
  clear: both;
}
.footer .row div.newsletter .block-subscribe .block-content .actions button {
  float: left;
  margin-left: 7px;
}
.footer .row div.newsletter .block-subscribe button {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  text-align: center;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #ddd;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  cursor: pointer;
  *margin-left: .3em;
  text-decoration: none;
  color: #fff;
  background-color: #222222;
  background-image: -moz-linear-gradient(top,#222,#222);
  background-image: -ms-linear-gradient(top,#222,#222);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#222),to(#222));
  background-image: -webkit-linear-gradient(top,#222,#222);
  background-image: -o-linear-gradient(top,#222,#222);
  background-image: linear-gradient(top,#222,#222);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#222222', endColorstr='#222222', GradientType=0);
  border-color: #222 #222 #000000;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #222222;
  background-image: -moz-linear-gradient(top,#222,#222);
  background-image: -ms-linear-gradient(top,#222,#222);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#222),to(#222));
  background-image: -webkit-linear-gradient(top,#222,#222);
  background-image: -o-linear-gradient(top,#222,#222);
  background-image: linear-gradient(top,#222,#222);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#222222', endColorstr='#222222', GradientType=0);
  border-color: #222 #222 #000000;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.footer .row div.newsletter .block-subscribe button [class^="icon-"].icon-large,
.footer .row div.newsletter .block-subscribe button [class*=" icon-"].icon-large {
  line-height: .9em;
}
.footer .row div.newsletter .block-subscribe button [class^="icon-"].icon-spin,
.footer .row div.newsletter .block-subscribe button [class*=" icon-"].icon-spin {
  display: inline-block;
}
.footer .row div.newsletter .block-subscribe button [class^="icon-"].pull-left.icon-2x,
.footer .row div.newsletter .block-subscribe button [class^="icon-"].pull-right.icon-2x,
.footer .row div.newsletter .block-subscribe button [class*=" icon-"].pull-left.icon-2x,
.footer .row div.newsletter .block-subscribe button [class*=" icon-"].pull-right.icon-2x {
  margin-top: .18em;
}
.footer .row div.newsletter .block-subscribe button [class^="icon-"].icon-spin.icon-large,
.footer .row div.newsletter .block-subscribe button [class*=" icon-"].icon-spin.icon-large {
  line-height: .8em;
}
.footer .row div.newsletter .block-subscribe button:hover,
.footer .row div.newsletter .block-subscribe button:active,
.footer .row div.newsletter .block-subscribe button.active,
.footer .row div.newsletter .block-subscribe button.disabled,
.footer .row div.newsletter .block-subscribe button[disabled] {
  background-color: #fff;
}
.footer .row div.newsletter .block-subscribe button:active,
.footer .row div.newsletter .block-subscribe button.active {
  background-color: #e6e6e6 \9;
}
.footer .row div.newsletter .block-subscribe button:hover,
.footer .row div.newsletter .block-subscribe button:active,
.footer .row div.newsletter .block-subscribe button.active,
.footer .row div.newsletter .block-subscribe button.disabled,
.footer .row div.newsletter .block-subscribe button[disabled] {
  background: #e6e6e6;
}
.footer .row div.newsletter .block-subscribe button:active,
.footer .row div.newsletter .block-subscribe button.active {
  background: #e6e6e6;
}
.footer .row div.newsletter .block-subscribe button:first-child {
  *margin-left: 0;
}
.footer .row div.newsletter .block-subscribe button:hover,
.footer .row div.newsletter .block-subscribe button:active,
.footer .row div.newsletter .block-subscribe button.active,
.footer .row div.newsletter .block-subscribe button.disabled,
.footer .row div.newsletter .block-subscribe button[disabled] {
  background-color: #222;
}
.footer .row div.newsletter .block-subscribe button:active,
.footer .row div.newsletter .block-subscribe button.active {
  background-color: #090909 \9;
}
.footer .row div.newsletter .block-subscribe button:hover,
.footer .row div.newsletter .block-subscribe button:active,
.footer .row div.newsletter .block-subscribe button.active,
.footer .row div.newsletter .block-subscribe button.disabled,
.footer .row div.newsletter .block-subscribe button[disabled] {
  background: #090909;
}
.footer .row div.newsletter .block-subscribe button:active,
.footer .row div.newsletter .block-subscribe button.active {
  background: #090909;
}
.footer .row div.newsletter .block-subscribe button .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.footer .row div > strong {
  display: block;
  margin-bottom: 4px;
  text-shadow: 0 0 0 rgba(0,0,0,0.5);
}
.footer .row div > strong a {
  color: #333;
  text-decoration: none;
}
.footer .row div > strong a:hover {
  text-decoration: underline;
}
.footer .row div p {
  line-height: 21px;
}
.footer-bottom {
  *zoom: 1;
  background-color: #dadada;
  color: #333;
  padding: 20px 25px;
}
.footer-bottom:before,
.footer-bottom:after {
  display: table;
  content: "";
}
.footer-bottom:after {
  clear: both;
}
.footer-bottom ul {
  float: left;
  margin: 0 18px 0 0;
  padding: 0;
}
.footer-bottom ul li {
  float: left;
  margin-left: 18px;
  list-style: none;
}
.footer-bottom ul li:first-child {
  margin-left: 0;
}
.footer-bottom #credits {
  *zoom: 1;
  float: right;
}
.footer-bottom #credits:before,
.footer-bottom #credits:after {
  display: table;
  content: "";
}
.footer-bottom #credits:after {
  clear: both;
}
.footer-bottom #credits a {
  width: 45px;
  height: 18px;
  overflow: hidden;
  text-indent: -9999px;
  float: right;
  background: url('https://www.consolepro.nl/skin/frontend/default/responsive/images/techtwo-small-dark.png') no-repeat center center;
}
.cms-home .row {
  margin-top: 20px;
}
.cms-home .banner {
  list-style: none;
  width: 732px;
  height: 447px;
  margin: 0;
}
.cms-home .banner-right {
  background: #f9f9f9;
}
.cms-home .banner-right p {
  padding: 20px;
}
.cms-home .banner-right a {
  font-style: italic;
  text-decoration: underline;
}
.block-account {
  background: #f4f4f4;
  border: 1px solid #eee;
}
.block-account .block-title {
  line-height: 27px;
  padding: 9px 18px 0;
}
.box-head {
  position: relative;
  line-height: 36px;
  margin-bottom: 18px;
  border-bottom: 1px solid #eee;
}
.box-head a {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  text-align: center;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #ddd;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  cursor: pointer;
  *margin-left: .3em;
  text-decoration: none;
}
.box-head a [class^="icon-"].icon-large,
.box-head a [class*=" icon-"].icon-large {
  line-height: .9em;
}
.box-head a [class^="icon-"].icon-spin,
.box-head a [class*=" icon-"].icon-spin {
  display: inline-block;
}
.box-head a [class^="icon-"].pull-left.icon-2x,
.box-head a [class^="icon-"].pull-right.icon-2x,
.box-head a [class*=" icon-"].pull-left.icon-2x,
.box-head a [class*=" icon-"].pull-right.icon-2x {
  margin-top: .18em;
}
.box-head a [class^="icon-"].icon-spin.icon-large,
.box-head a [class*=" icon-"].icon-spin.icon-large {
  line-height: .8em;
}
.box-head a:hover,
.box-head a:active,
.box-head a.active,
.box-head a.disabled,
.box-head a[disabled] {
  background-color: #fff;
}
.box-head a:active,
.box-head a.active {
  background-color: #e6e6e6 \9;
}
.box-head a:hover,
.box-head a:active,
.box-head a.active,
.box-head a.disabled,
.box-head a[disabled] {
  background: #e6e6e6;
}
.box-head a:active,
.box-head a.active {
  background: #e6e6e6;
}
.box-head a:first-child {
  *margin-left: 0;
}
.box-head h2,
.box-head h3 {
  line-height: 36px;
  margin-bottom: 0;
}
.box {
  padding: 18px;
  border: 1px solid #eee;
}
.box .box-title {
  position: relative;
  line-height: 36px;
  margin-bottom: 18px;
  border-bottom: 1px solid #eee;
}
.box .box-title a {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  text-align: center;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #ddd;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  cursor: pointer;
  *margin-left: .3em;
  text-decoration: none;
}
.box .box-title a [class^="icon-"].icon-large,
.box .box-title a [class*=" icon-"].icon-large {
  line-height: .9em;
}
.box .box-title a [class^="icon-"].icon-spin,
.box .box-title a [class*=" icon-"].icon-spin {
  display: inline-block;
}
.box .box-title a [class^="icon-"].pull-left.icon-2x,
.box .box-title a [class^="icon-"].pull-right.icon-2x,
.box .box-title a [class*=" icon-"].pull-left.icon-2x,
.box .box-title a [class*=" icon-"].pull-right.icon-2x {
  margin-top: .18em;
}
.box .box-title a [class^="icon-"].icon-spin.icon-large,
.box .box-title a [class*=" icon-"].icon-spin.icon-large {
  line-height: .8em;
}
.box .box-title a:hover,
.box .box-title a:active,
.box .box-title a.active,
.box .box-title a.disabled,
.box .box-title a[disabled] {
  background-color: #fff;
}
.box .box-title a:active,
.box .box-title a.active {
  background-color: #e6e6e6 \9;
}
.box .box-title a:hover,
.box .box-title a:active,
.box .box-title a.active,
.box .box-title a.disabled,
.box .box-title a[disabled] {
  background: #e6e6e6;
}
.box .box-title a:active,
.box .box-title a.active {
  background: #e6e6e6;
}
.box .box-title a:first-child {
  *margin-left: 0;
}
.box .box-title h2,
.box .box-title h3 {
  line-height: 36px;
  margin-bottom: 0;
}
.title-buttons {
  position: relative;
  border-bottom: 1px solid #eee;
}
.title-buttons button.button,
.title-buttons .btn-group {
  position: absolute;
  right: 0;
  top: 6px;
  text-align: left;
}
.new-users .content,
.registered-users .content {
  border: 1px solid #eee;
  padding: 18px;
  min-height: 252px;
}
.col2-left-layout .col2-set {
  margin: 0 0 15px;
}
.col2-left-layout .col2-set .col-1 {
  float: left;
  width: 48.5%;
  margin-left: 0;
}
.col2-left-layout .col2-set .col-2 {
  float: right;
  width: 48.5%;
}
#my-orders-table td {
  vertical-align: middle;
}
.my-account p.required {
  margin-top: 0;
}
.my-account .form-list .input-box {
  display: block;
}
.my-account .form-list .input-box .input-text#company {
  width: 270px !important;
}
.my-account .form-list .input-box .input-text#street2 {
  padding-top: 4px;
}
.my-account .form-list .input-box .head-edit-form {
  display: none;
}
.my-account .form-list li.wide .input-box input {
  width: 270px !important;
}
.my-account .form-list li .field {
  height: auto;
  padding-top: 0;
  padding-left: 0;
  width: 100% !important;
  clear: both;
  margin: 3px 0;
}
.my-account .btn-group span {
  display: inline-block;
}
.my-account #my-orders-table th:first-child {
  white-space: nowrap;
}
.my-account .addresses-list .li-shipping-billing-address p a {
  display: block;
}
.sidebar ul li a {
  color: #555;
}
.link-tip {
  display: none;
}
.scrollable {
  position: relative;
}
.scrollable .scrollable-content {
  margin-right: 11px;
}
.scrollable.disabled .scrollable-content {
  margin-right: 0;
}
.scrollable .scrollbar-track {
  display: block;
  position: absolute;
  top: 2px;
  bottom: 0px;
  right: 0;
  cursor: pointer;
  width: 7px;
  -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0.2);
  -moz-box-shadow: inset 0 0 1px rgba(0,0,0,0.2);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.2);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #f4f4f4;
}
.scrollable .scrollbar-track .scrollbar-handle {
  display: block;
  float: left;
  opacity: 0.9;
  filter: alpha(opacity=90);
  width: 7px;
  -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0.4);
  -moz-box-shadow: inset 0 0 1px rgba(0,0,0,0.4);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.4);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #b3b3b3;
  -webkit-transition: .2s background ease;
  -moz-transition: .2s background ease;
  -ms-transition: .2s background ease;
  -o-transition: .2s background ease;
  transition: .2s background ease;
}
.scrollable .scrollbar-track .scrollbar-handle:hover {
  background: #808080;
}
.btn-expand-scrollcontainer {
  position: absolute;
  bottom: -18px;
  right: 0px;
  display: inline-block;
  width: 8px;
  height: 14px;
  line-height: 14px;
  font-size: 10px;
  font-style: normal;
  font-weight: bold;
  text-align: center;
  vertical-align: text-top;
}
.contacts-index-index .col-main .contact-form {
  border-left: 1px solid #DBDBDB;
  border-right: 1px solid #DBDBDB;
  padding: 0 25px;
}
.contacts-index-index .col-main .contact-form input {
  width: 317px;
}
.contacts-index-index .col-main .contact-form textarea {
  height: 235px;
  width: 317px;
}
.contacts-index-index .col-main .contact-form .block-content {
  margin: 0;
}
.contacts-index-index .col-main .span6 {
  margin: 0;
}
.contacts-index-index .col-main .span8 {
  margin-left: 25px;
}
.contacts-index-index .form-list {
  margin-left: 0;
}
.contacts-index-index .form-list .field {
  float: none;
}
.contacts-index-index .form-list label {
  float: none;
}
.contacts-index-index .form-list li {
  margin-top: 1em;
}
.contacts-index-index .form-list li .input-box {
  margin-left: 0 !important;
}
.contacts-index-index .fieldset {
  padding: 0;
  border: 0;
}
.contacts-index-index .buttons-set {
  text-align: right;
  padding: 0;
  background: none;
}
.contacts-index-index .openinghours table {
  width: 100%;
}
.contacts-index-index .sidebar.col-left img {
  max-width: 207px;
}
.contacts-index-index .sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contacts-index-index .sidebar ul .li {
  margin: 0;
  padding: 0;
}
.contacts-index-index .social {
  height: 64px;
}
.contacts-index-index .social div {
  float: left;
  margin-right: 5px;
}
.company-info-datalist,
.contacts-index-index .datalist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.company-info-datalist li,
.contacts-index-index .datalist li {
  list-style: none;
}
.company-info-datalist label,
.contacts-index-index .datalist label {
  float: left;
  margin-bottom: 0;
}
.company-info-datalist label:after,
.contacts-index-index .datalist label:after {
  content: ":";
  margin-right: 3px;
}
.company-info-datalist div,
.contacts-index-index .datalist div {
  display: inline;
}
.googlemap {
  margin-bottom: 18px;
}
.socialicon {
  background-image: url('https://www.consolepro.nl/skin/frontend/default/default/images/social-256.png');
  background-repeat: no-repeat;
  width: 256px;
  height: 256px;
}
.socialicon.twitter {
  background-position: left top;
}
.socialicon.facebook {
  background-position: -256px top;
}
.socialicon.size64 {
  background-image: url('https://www.consolepro.nl/skin/frontend/default/default/images/social-64.png');
  background-repeat: no-repeat;
  width: 64px;
  height: 64px;
}
.socialicon.size64.twitter {
  background-position: left top;
}
.socialicon.size64.facebook {
  background-position: -64px top;
}
.socialicon a {
  display: block;
  width: 100%;
  height: 100%;
}
.glc .checkout-step.address {
  padding-bottom: 10px;
}
.glc .checkout-step .customer-dob-gender .field {
  margin: 0;
  width: 100%;
}
.glc .checkout-step .customer-dob-gender label {
  padding: 0 5px 0 0;
}
.glc .checkout-step .customer-dob-gender .input-box label {
  line-height: 34px;
  padding: 0 5px;
}
.glc .checkout-step ul.form-list li .alert-info {
  margin-right: 8px;
  padding: 10px;
}
.glc .checkout-step .customer-dob .dob-month,
.glc .checkout-step .customer-dob .dob-day,
.glc .checkout-step .customer-dob .dob-year,
.glc .checkout-step .customer-dob .input-box {
  margin: 0;
  margin-right: 10px;
}
.glc .checkout-step .customer-dob .dob-month input,
.glc .checkout-step .customer-dob .dob-month select,
.glc .checkout-step .customer-dob .dob-day input,
.glc .checkout-step .customer-dob .dob-day select,
.glc .checkout-step .customer-dob .dob-year input,
.glc .checkout-step .customer-dob .dob-year select,
.glc .checkout-step .customer-dob .input-box input,
.glc .checkout-step .customer-dob .input-box select {
  clear: both;
  float: left;
  width: 50px !important;
}
.glc .checkout-step .customer-dob .dob-month.field,
.glc .checkout-step .customer-dob .dob-day.field,
.glc .checkout-step .customer-dob .dob-year.field,
.glc .checkout-step .customer-dob .input-box.field {
  width: 50px !important;
}
.glc .checkout-step .field-region,
.glc .checkout-step .field-fax,
.glc .checkout-step .name-suffix {
  margin: 0;
}
.glc .checkout-step .field-region input,
.glc .checkout-step .field-region select,
.glc .checkout-step .field-fax input,
.glc .checkout-step .field-fax select,
.glc .checkout-step .name-suffix input,
.glc .checkout-step .name-suffix select {
  clear: both;
  float: left;
  width: 140px !important;
}
.glc .checkout-step .field-region.field,
.glc .checkout-step .field-fax.field,
.glc .checkout-step .name-suffix.field {
  width: 140px !important;
}
.glc .checkout-step .field-telephone {
  margin: 0;
  margin-right: 15px;
}
.glc .checkout-step .field-telephone input,
.glc .checkout-step .field-telephone select {
  clear: both;
  float: left;
  width: 140px !important;
}
.glc .checkout-step .field-telephone.field {
  width: 140px !important;
}
.glc .checkout-step #billing_gender {
  width: 140px !important;
}
.glc .control input[type="checkbox"] {
  margin: 0 5px 0 0;
}
.glc .control label {
  display: inline;
  float: none;
  margin: 0;
}
.glc .shipping-address {
  padding-left: 12px;
  margin-top: 15px;
  clear: both;
}
.glc .shipping-address .glc-title {
  padding-top: 0;
}
.glc .discount {
  margin: 18px 0;
  background: #eee;
  padding: 9px 18px;
}
.glc .address {
  width: 320px;
}
.glc .postcode-city div.field-postcode {
  float: left;
  width: 95px;
}
.glc .postcode-city div.field-postcode .input-box input {
  width: 80px !important;
}
.glc .postcode-city div.field-city .input-box input {
  width: 200px !important;
}
.glc .postcode-region div.field-postcode {
  float: left;
  width: 95px;
}
.glc .postcode-region div.field-postcode .input-box input {
  width: 80px !important;
}
.glc .postcode-region div.field-region .input-box input {
  width: 200px !important;
}
.glc .address-2fields .field-address1,
.glc .address-2fields .field-address1 input {
  width: 210px !important;
}
.glc .address-2fields .field-address2,
.glc .address-2fields .field-address2 input {
  padding-left: 15px;
  width: 70px !important;
}
.glc .address-3fields .field-address1,
.glc .address-3fields .field-address1 input {
  width: 140px !important;
}
.glc .address-3fields .field-address2,
.glc .address-3fields .field-address2 input,
.glc .address-3fields .field-address3,
.glc .address-3fields .field-address3 input {
  padding-left: 17px;
  width: 60px !important;
}
.glc .glc-title {
  padding: 20px 20px 0 20px;
}
.glc .methods {
  width: 648px;
  background: #fff !important;
}
.glc .methods .shipping-methods {
  margin-right: 15px;
}
.glc .methods .shipping-methods,
.glc .methods .gcheckout-extraproducts-methods,
.glc .methods .gcheckout-payment-methods {
  float: left;
  min-height: 190px;
  background: #f6f6f6;
  width: 316px;
  padding-bottom: 5px;
}
.glc .methods .shipping-methods .glc-col,
.glc .methods .gcheckout-extraproducts-methods .glc-col,
.glc .methods .gcheckout-payment-methods .glc-col {
  padding: 0 0 20px 20px;
}
.glc .methods .shipping-methods .shipping-additional,
.glc .methods .gcheckout-extraproducts-methods .shipping-additional,
.glc .methods .gcheckout-payment-methods .shipping-additional {
  padding-right: 20px;
}
.glc .methods .shipping-methods p,
.glc .methods .gcheckout-extraproducts-methods p,
.glc .methods .gcheckout-payment-methods p {
  margin: 3px 0 5px;
}
.glc .methods .gcheckout-extraproducts-methods {
  clear: left;
  margin-top: 15px;
}
.glc .review {
  width: 648px;
  background: #fff !important;
  margin-top: 15px;
}
.glc .review .glc-title {
  padding: 0;
}
.glc .review .glc-col {
  padding: 0;
}
.glc ul li {
  list-style: none !important;
}
.glc .checkout-step {
  background: #f6f6f6;
  float: left;
}
.glc .checkout-step.address {
  margin: 0 15px 0 0;
}
.glc .checkout-step .fields .name-firstname,
.glc .checkout-step .fields .name-lastname {
  width: 50%;
}
.glc .checkout-step .fields .name-firstname .input-box input,
.glc .checkout-step .fields .name-lastname .input-box input {
  width: 140px;
  zoom: 1;
  *display: inline;
}
.glc .checkout-step .customer-name-prefix .field {
  width: 35%;
}
.glc .checkout-step .customer-name-prefix .name-prefix {
  width: 30%;
}
.glc .checkout-step .customer-name-prefix .name-prefix .input-box select {
  width: 85px;
  zoom: 1;
  *display: inline;
}
.glc .checkout-step .customer-name-prefix .name-firstname .input-box input,
.glc .checkout-step .customer-name-prefix .name-lastname .input-box input {
  width: 96px;
  zoom: 1;
  *display: inline;
}
.glc .checkout-step .customer-name-middlename .name-firstname,
.glc .checkout-step .customer-name-middlename .name-middlename {
  width: 50%;
}
.glc .checkout-step .customer-name-middlename .name-firstname .input-box input,
.glc .checkout-step .customer-name-middlename .name-middlename .input-box input {
  width: 90%;
  zoom: 1;
  *display: inline;
}
.glc .checkout-step .customer-name-prefix-middlename .field,
.glc .checkout-step .customer-name-prefix-middlename-suffix .field {
  width: 50%;
}
.glc .checkout-step .customer-name-prefix-middlename .field .input-box select,
.glc .checkout-step .customer-name-prefix-middlename .field .input-box input,
.glc .checkout-step .customer-name-prefix-middlename-suffix .field .input-box select,
.glc .checkout-step .customer-name-prefix-middlename-suffix .field .input-box input {
  width: 140px;
  zoom: 1;
  *display: inline;
}
.glc .checkout-step .customer-name-prefix-middlename .name-middlename,
.glc .checkout-step .customer-name-prefix-middlename-suffix .name-middlename {
  clear: left;
}
.glc .checkout-step .customer-name-prefix-middlename-suffix .field .input-box select,
.glc .checkout-step .customer-name-prefix-middlename-suffix .field .input-box input {
  width: 132px !important;
}
.glc .checkout-step .customer-name-prefix-middlename-suffix .field.name-prefix,
.glc .checkout-step .customer-name-prefix-middlename-suffix .field.name-firstname,
.glc .checkout-step .customer-name-prefix-middlename-suffix .field.name-middlename {
  width: 33%;
}
.glc .checkout-step .customer-name-prefix-middlename-suffix .field.name-prefix .input-box select,
.glc .checkout-step .customer-name-prefix-middlename-suffix .field.name-prefix .input-box input,
.glc .checkout-step .customer-name-prefix-middlename-suffix .field.name-firstname .input-box select,
.glc .checkout-step .customer-name-prefix-middlename-suffix .field.name-firstname .input-box input,
.glc .checkout-step .customer-name-prefix-middlename-suffix .field.name-middlename .input-box select,
.glc .checkout-step .customer-name-prefix-middlename-suffix .field.name-middlename .input-box input {
  width: 86px !important;
}
.glc .checkout-step .customer-name-prefix-middlename-suffix .field.name-middlename {
  clear: none;
}
.glc .checkout-step .customer-name-prefix-middlename-suffix .field.name-lastname {
  clear: left;
}
.glc .checkout-step .customer-name-prefix-middlename-suffix .name-middlename {
  clear: left;
}
.glc .checkout-step ul {
  margin: 0;
  padding: 0;
}
.glc .checkout-step ul.form-list li {
  *zoom: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
.glc .checkout-step ul.form-list li:before,
.glc .checkout-step ul.form-list li:after {
  display: table;
  content: "";
}
.glc .checkout-step ul.form-list li:after {
  clear: both;
}
.glc .checkout-step ul.form-list li .field {
  margin-bottom: 0;
}
.glc .checkout-step ul.form-list li label {
  margin: 0;
  vertical-align: middle;
}
.glc .checkout-step ul.form-list li .input-box {
  margin: 0;
  clear: both;
}
.glc .checkout-step ul.form-list li .input-box input,
.glc .checkout-step ul.form-list li .input-box select {
  clear: both;
  float: left;
  width: 295px;
  padding: 2px 0;
  margin: 5px 0;
}
.glc .checkout-step ul.form-list li #register-customer-password input {
  width: 90%;
}
.glc .checkout-step .sp-methods ul.form-list li .input-box input,
.glc .checkout-step .sp-methods ul.form-list li .input-box select {
  width: 90%;
}
.glc .glc-title {
  color: #202020;
  font-weight: normal;
}
.glc .glc-title .step-icon {
  display: inline-block;
  background: #202020;
  color: black;
  line-height: 34px;
  padding: 0 12px;
  margin-right: 10px;
  -moz-border-radius-topleft: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  -khtml-border-radius: 3px 3px 3px 3px;
}
.glc .head-edit-form {
  display: none;
}
.glc .button-set button {
  float: right;
}
#gcheckout-login-link > h2 {
  font-weight: bold;
  margin-bottom: 0;
}
.data-table {
  width: 100% !important;
}
.data-table tr td {
  background: #fff;
}
.data-table thead,
.data-table tbody {
  border-bottom: 1px solid #333 !important;
}
.data-table thead th {
  font-size: 13px;
}
.data-table .product-name a {
  text-decoration: none;
  color: #333 !important;
}
.data-table tr td span {
  display: block;
}
.data-table tr td {
  color: #333 !important;
  padding: 9px 8px !important;
}
.data-table .total-column,
#checkout-discount-table .total-column {
  background-color: #f6f6f6;
}
.loadinfo {
  position: fixed;
  left: 50%;
  top: 45%;
  width: 250px;
  margin-left: -150px;
  padding: 8px 8px 8px 35px;
  border: 1px solid #0A263C;
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/gomage/lightcheckout/loadinfo.gif') 5px 50% no-repeat #fff;
  font-weight: 700;
  -moz-box-shadow: 3px 3px 3px #999;
  -webkit-box-shadow: 3px 3px 3px #999;
  box-shadow: 3px 3px 3px #999;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}
#login-form .form-list li {
  margin: 0 0 8px;
}
#login-form .loadinfo {
  clear: both;
  overflow: hidden;
  margin: 0;
  width: 220px;
}
#login-form {
  text-align: left;
}
.gomage-checkout-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background: #000;
  opacity: 0.6;
  width: 100%;
  height: 100%;
}
.simple_overlay {
  z-index: 10000;
  text-align: left;
  display: none;
  width: 320px;
}
#login-form.simple_overlay {
  width: 308px;
  padding: 18px;
  background: #fff;
}
.glc-popup-content {
  background: #fff;
  padding: 18px;
}
.simple_overlay .light-checkout-popup-content-bg-in {
  min-height: 155px;
}
#terms-block.simple_overlay .details {
  height: 100%;
}
#terms-block.simple_overlay .popup-content {
  overflow: auto;
  height: 100%;
  padding: 18px;
}
#login-form .loadinfo {
  position: static;
  border: 0;
  background-position: 0 50%;
  padding: 5px 5px 5px 35px;
  margin: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.simple_overlay .close {
  background-image: url(https://www.consolepro.nl/skin/frontend/default/default/images/gomage/lightcheckout/close.png);
  background-position: 0 0;
  position: absolute;
  right: -14px;
  top: -15px;
  cursor: pointer;
  height: 35px;
  width: 35px;
}
#checkout-alert-container {
  margin-top: 18px;
}
#checkout-alert-container.empty {
  display: none;
}
#checkout-alert {
  margin-bottom: 0;
}
#checkout-alert li {
  list-style: disc !important;
}
.validation-passed-label {
  color: #333;
}
.validation-failed-label {
  color: #9d261d;
}
#gcheckout-onepage-review .customer-comment {
  float: left;
  width: 300px;
}
#gcheckout-onepage-review .advanced-options {
  float: right;
  margin-bottom: 9px;
}
#checkout-update-section {
  clear: both;
}
#checkout-total-table .empty-td {
  display: none;
}
.ops-payment-paypage table {
  width: 100%;
}
.ops-payment-paypage #ncol_ref {
  margin: 47px 0;
}
.ops-payment-paypage .ncoltable2 .ncoltxtc {
  padding-left: 285px;
}
.ops-payment-paypage td .ncol {
  width: 183px;
  height: 38px;
  font-size: 18px;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  -ms-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  text-align: center;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #ddd;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  cursor: pointer;
  *margin-left: .3em;
  text-decoration: none;
  color: #fff;
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.ops-payment-paypage td .ncol [class^="icon-"].icon-large,
.ops-payment-paypage td .ncol [class*=" icon-"].icon-large {
  line-height: .9em;
}
.ops-payment-paypage td .ncol [class^="icon-"].icon-spin,
.ops-payment-paypage td .ncol [class*=" icon-"].icon-spin {
  display: inline-block;
}
.ops-payment-paypage td .ncol [class^="icon-"].pull-left.icon-2x,
.ops-payment-paypage td .ncol [class^="icon-"].pull-right.icon-2x,
.ops-payment-paypage td .ncol [class*=" icon-"].pull-left.icon-2x,
.ops-payment-paypage td .ncol [class*=" icon-"].pull-right.icon-2x {
  margin-top: .18em;
}
.ops-payment-paypage td .ncol [class^="icon-"].icon-spin.icon-large,
.ops-payment-paypage td .ncol [class*=" icon-"].icon-spin.icon-large {
  line-height: .8em;
}
.ops-payment-paypage td .ncol:hover,
.ops-payment-paypage td .ncol:active,
.ops-payment-paypage td .ncol.active,
.ops-payment-paypage td .ncol.disabled,
.ops-payment-paypage td .ncol[disabled] {
  background-color: #fff;
}
.ops-payment-paypage td .ncol:active,
.ops-payment-paypage td .ncol.active {
  background-color: #e6e6e6 \9;
}
.ops-payment-paypage td .ncol:hover,
.ops-payment-paypage td .ncol:active,
.ops-payment-paypage td .ncol.active,
.ops-payment-paypage td .ncol.disabled,
.ops-payment-paypage td .ncol[disabled] {
  background: #e6e6e6;
}
.ops-payment-paypage td .ncol:active,
.ops-payment-paypage td .ncol.active {
  background: #e6e6e6;
}
.ops-payment-paypage td .ncol:first-child {
  *margin-left: 0;
}
.ops-payment-paypage td .ncol:hover,
.ops-payment-paypage td .ncol:active,
.ops-payment-paypage td .ncol.active,
.ops-payment-paypage td .ncol.disabled,
.ops-payment-paypage td .ncol[disabled] {
  background-color: #f89406;
}
.ops-payment-paypage td .ncol:active,
.ops-payment-paypage td .ncol.active {
  background-color: #c67605 \9;
}
.ops-payment-paypage td .ncol:hover,
.ops-payment-paypage td .ncol:active,
.ops-payment-paypage td .ncol.active,
.ops-payment-paypage td .ncol.disabled,
.ops-payment-paypage td .ncol[disabled] {
  background: #c67605;
}
.ops-payment-paypage td .ncol:active,
.ops-payment-paypage td .ncol.active {
  background: #c67605;
}
.ops-payment-paypage td .ncol .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.ops-payment-paypage td .ncol:hover {
  color: #fff;
  text-decoration: none;
}
.ops-payment-paypage td .ncol.large {
  font-size: 20px;
  line-height: 25px;
}
.ops-payment-paypage td .ncol.small {
  font-size: 14px;
  line-height: 27px;
  height: 27px;
}
.ops-payment-paypage td .ncol span {
  white-space: nowrap;
}
.ops-payment-paypage .ncoltable3 {
  margin: 63px 0;
}
#my-orders-table tfoot tr.show-details {
  display: none;
}
#my-orders-table td.a-right span.nobr {
  white-space: nowrap;
}
.checkout-cart-index ul {
  list-style: none;
}
.paypal-review-order .paypal-review-order-left {
  background: #f6f6f6;
  float: left;
  margin-right: 18px;
  padding: 20px 15px;
  width: 290px;
}
.paypal-review-order .paypal-review-order-left .col2-set .col-1,
.paypal-review-order .paypal-review-order-left .col2-set .col-2 {
  width: 100%;
}
.paypal-review-order .paypal-review-order-right {
  float: left;
  width: 660px;
}
.paypal-review-order #order_review_form fieldset {
  display: none;
}
.paypal-review-order #order_review_form fieldset.billing-fieldset,
.paypal-review-order #order_review_form fieldset.shipping-fieldset {
  display: block;
}
.paypal-review-order .form-list li {
  line-height: 16px;
}
.paypal-review-order .form-list label {
  font-weight: bold;
  line-height: 16px;
  margin-right: 6px;
}
.paypal-review-order #customer-info-form {
  display: none;
}
.paypal-review-order .customer-info-set,
.paypal-review-order .address-info-set,
.paypal-review-order .shipping-info-set,
.paypal-review-order .details-info-set {
  margin-bottom: 18px;
}
.paypal-review-order .customer-info-set h2,
.paypal-review-order .address-info-set h2,
.paypal-review-order .shipping-info-set h2,
.paypal-review-order .details-info-set h2 {
  margin-bottom: 9px;
}
.paypal-review-order .address-info-set .col-1 {
  margin-bottom: 18px;
}
.paypal-review-order .details-info-set h2 {
  display: none;
}
.paypal-review-order .details-info-set .data-table thead th {
  border-bottom: 1px solid #333;
  text-transform: lowercase;
}
.paypal-review-order .shipping-info-set {
  display: none;
}
.paypal-review-order .buttons-set {
  background: transparent;
  margin-bottom: 9px;
}
.paypal-review-order .buttons-set button.button {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  text-align: center;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #ddd;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  cursor: pointer;
  *margin-left: .3em;
  text-decoration: none;
  color: #fff;
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  font-size: 14px;
  height: 38px;
  width: 183px;
}
.paypal-review-order .buttons-set button.button [class^="icon-"].icon-large,
.paypal-review-order .buttons-set button.button [class*=" icon-"].icon-large {
  line-height: .9em;
}
.paypal-review-order .buttons-set button.button [class^="icon-"].icon-spin,
.paypal-review-order .buttons-set button.button [class*=" icon-"].icon-spin {
  display: inline-block;
}
.paypal-review-order .buttons-set button.button [class^="icon-"].pull-left.icon-2x,
.paypal-review-order .buttons-set button.button [class^="icon-"].pull-right.icon-2x,
.paypal-review-order .buttons-set button.button [class*=" icon-"].pull-left.icon-2x,
.paypal-review-order .buttons-set button.button [class*=" icon-"].pull-right.icon-2x {
  margin-top: .18em;
}
.paypal-review-order .buttons-set button.button [class^="icon-"].icon-spin.icon-large,
.paypal-review-order .buttons-set button.button [class*=" icon-"].icon-spin.icon-large {
  line-height: .8em;
}
.paypal-review-order .buttons-set button.button:hover,
.paypal-review-order .buttons-set button.button:active,
.paypal-review-order .buttons-set button.button.active,
.paypal-review-order .buttons-set button.button.disabled,
.paypal-review-order .buttons-set button.button[disabled] {
  background-color: #fff;
}
.paypal-review-order .buttons-set button.button:active,
.paypal-review-order .buttons-set button.button.active {
  background-color: #e6e6e6 \9;
}
.paypal-review-order .buttons-set button.button:hover,
.paypal-review-order .buttons-set button.button:active,
.paypal-review-order .buttons-set button.button.active,
.paypal-review-order .buttons-set button.button.disabled,
.paypal-review-order .buttons-set button.button[disabled] {
  background: #e6e6e6;
}
.paypal-review-order .buttons-set button.button:active,
.paypal-review-order .buttons-set button.button.active {
  background: #e6e6e6;
}
.paypal-review-order .buttons-set button.button:first-child {
  *margin-left: 0;
}
.paypal-review-order .buttons-set button.button:hover,
.paypal-review-order .buttons-set button.button:active,
.paypal-review-order .buttons-set button.button.active,
.paypal-review-order .buttons-set button.button.disabled,
.paypal-review-order .buttons-set button.button[disabled] {
  background-color: #f89406;
}
.paypal-review-order .buttons-set button.button:active,
.paypal-review-order .buttons-set button.button.active {
  background-color: #c67605 \9;
}
.paypal-review-order .buttons-set button.button:hover,
.paypal-review-order .buttons-set button.button:active,
.paypal-review-order .buttons-set button.button.active,
.paypal-review-order .buttons-set button.button.disabled,
.paypal-review-order .buttons-set button.button[disabled] {
  background: #c67605;
}
.paypal-review-order .buttons-set button.button:active,
.paypal-review-order .buttons-set button.button.active {
  background: #c67605;
}
.paypal-review-order .buttons-set button.button .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.paypal-review-order .please-wait-set {
  text-align: right;
}
.wishlist-index-index .data-table tbody td.last .btn-remove {
  font-size: 12px;
  text-align: center;
}
#wishlist-top .item {
  margin: 0;
  float: none;
  padding: 0;
  border: 0 none !important;
  height: auto;
}
.block-top-wishlist .drop-content {
  padding: 10px;
}
.block-top-wishlist .drop-content .block-title {
  margin-bottom: 5px;
}
.block-top-wishlist .drop-content .mini-products-list {
  list-style: none;
  margin-left: 0;
  max-height: none;
}
.block-top-wishlist .drop-content .mini-products-list .product {
  float: none;
  padding: 0;
}
.block-top-wishlist .drop-content .mini-products-list .product .wishlist-checkbox {
  float: left;
  margin: 4px 5px 0 0;
}
.block-top-wishlist .drop-content .mini-products-list .product .product-name a {
  font-weight: normal;
  text-decoration: underline;
}
.block-top-wishlist .drop-content .mini-products-list .product .product-image {
  width: 50px;
  height: 50px;
  line-height: 48px;
}
.block-top-wishlist .drop-content .mini-products-list .product .price-box {
  margin: 0;
  line-height: 18px;
}
.block-top-wishlist .drop-content .mini-products-list .product .price-box .old-price .price {
  line-height: 1.0em;
  font-size: 1.0em;
}
.block-top-wishlist .drop-content .mini-products-list .product .price-box .price {
  font-size: 1.5em;
}
.block-top-wishlist .drop-content .mini-products-list .item {
  margin: 0;
}
.block-top-wishlist .drop-content .mini-products-list .item.last {
  border: 0 none;
}
.block-top-wishlist .drop-content .mini-products-list .item .product-details {
  width: 97px;
}
.block-top-wishlist .drop-content .actions {
  clear: both;
  margin-top: 10px;
}
.block-top-wishlist .drop-content .actions .button {
  width: 100%;
  margin-top: 3px;
}
.block-top-wishlist .drop-content .actions .seperate-buttons {
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/login-sep.jpg) no-repeat left top;
  width: 100%;
  height: 10px;
  margin: 12px 0;
}
.block-top-wishlist .drop-content .actions .button-link {
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  text-decoration: underline;
  color: #202020;
  background: #fff;
  text-align: center;
  display: block;
  clear: both;
}
.block-top-wishlist .drop-content .actions a.button-link {
  padding: 2px 0 5px;
}
.block-top-wishlist .drop-content .actions .button-link:hover {
  color: #000000;
}
.my-wishlist .btn-remove {
  width: 17px;
  height: 17px;
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/remove-item.png) no-repeat left top;
  overflow: hidden;
  text-indent: -9999px;
  display: block;
  margin: 0 auto;
  float: right;
}
.my-wishlist .btn-remove:hover {
  background-position: left bottom;
}
.my-wishlist #item-description {
  resize: vertical;
}
.my-wishlist .qty {
  text-align: center;
}
.my-wishlist .btn-cart {
  margin-top: 10px;
}
#wishlist-sidebar {
  margin: 0;
  list-style: none outside none;
}
#wishlist-sidebar .product-image {
  margin-right: 9px;
}
#wishlist-sidebar .btn-remove {
  font-size: 12px;
  line-height: 12px;
  text-decoration: none;
}
#wishlist-sidebar .link-cart {
  text-transform: uppercase;
}
#wishlist-sidebar .link-cart [class^="icon-"],
#wishlist-sidebar .link-cart [class*=" icon-"] {
  margin-right: 6px;
}
#glg_animate_img {
  z-index: 2000;
}
.gpc-loadinfo {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.modal-procart {
  text-transform: uppercase;
  box-sizing: border-box;
  margin-left: -385px;
  margin-top: -280px;
  width: 770px;
  padding: 30px 35px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.modal-procart * {
  box-sizing: border-box;
}
.modal-procart .modal-header {
  border: 0;
  padding: 0;
}
.modal-procart .modal-header span {
  font-size: 2em;
  font-weight: bold;
}
.modal-procart .modal-header .close {
  position: absolute;
  top: 27px;
  right: 36px;
}
.modal-procart .modal-header .close span {
  line-height: 22px;
}
.modal-procart .modal-body {
  max-height: none !important;
  padding: 0;
}
.modal-procart .modal-body .row {
  margin-left: 0;
  margin-right: 0;
}
.modal-procart .product-detail {
  height: 120px;
  margin-top: 20px;
}
.modal-procart .product-detail > .product-image {
  width: 100px;
  float: left;
  border: 1px solid #efefef;
}
.modal-procart .product-detail > .product-info {
  width: 389px;
  float: left;
  padding: 20px;
}
.modal-procart .product-detail > .product-info > span {
  display: block;
}
.modal-procart .product-detail > .product-info .price-box-container .price-box-prefix {
  font-size: 16px;
  height: 38px;
  line-height: 40px;
  float: left;
  margin-right: 6px;
  margin-bottom: 9px;
}
.modal-procart .product-detail > .product-info .price-box-container .price-box-x {
  text-transform: lowercase;
}
.modal-procart .product-detail > .product-info .price-box-container .old-price {
  display: none;
}
.modal-procart .product-detail > .product-info .price-box-container .special-price {
  line-height: 38px;
  margin: 0;
}
.modal-procart .product-detail > .product-info .price-box-container .regular-price .price-label,
.modal-procart .product-detail > .product-info .price-box-container .special-price .price-label {
  display: none;
}
.modal-procart .product-detail > .product-info .price-box-container .price-box.displaybothprices .price-including-tax {
  float: left;
}
.modal-procart .product-detail > .product-info .price-box-container .price-box.displaybothprices .price-excluding-tax {
  float: left;
  line-height: 40px;
  margin-left: 8px;
}
.modal-procart .product-detail > .product-info .price-box-container .price-box.displaybothprices .price-excluding-tax .price {
  font-size: 14px;
}
.modal-procart .product-detail > .product-info .product {
  font-size: 16px;
  margin: 8px 0;
}
.modal-procart .product-detail > .product-info .price {
  font-size: 18px;
}
.modal-procart .product-detail > .product-info .old-price {
  text-decoration: line-through;
  color: #8a8a8a;
  margin: 3px 0;
  line-height: 1.5px;
  margin-top: 15px;
}
.modal-procart .product-detail > .product-info .old-price .price {
  font-size: 14px;
}
.modal-procart .product-detail > .product-info .special-price {
  font-weight: bold;
  margin: 3px 0;
}
.modal-procart .product-detail > .product-info .special-price .price {
  font-size: 18px;
}
.modal-procart .product-detail > .product-cta {
  text-align: center;
  padding-top: 17px;
  width: 209px;
  float: left;
}
.modal-procart .product-detail > .product-cta .btn {
  text-transform: uppercase;
  font-size: 1.1em;
  font-weight: bold;
  padding: 10px 12px;
  text-shadow: none;
}
.modal-procart .product-detail > .product-cta .icon-list-ul {
  padding-right: 3px;
}
.modal-procart .product-detail > .product-cta .icon-shopping-cart {
  padding-right: 5px;
}
.modal-procart .product-detail > .product-cta .continue-shopping {
  margin-top: 15px;
}
.modal-procart .product-detail > .product-cta .continue-shopping a {
  text-decoration: none;
}
.modal-procart .product-detail > .product-cta .continue-shopping .icon-arrow-right {
  padding-right: 15px;
}
.modal-procart .product-recommendations {
  margin-top: 30px;
}
.modal-procart .product-recommendations h3 {
  margin-bottom: 10px;
}
.modal-procart .product-recommendations > div {
  text-align: center;
  border: 1px solid #efefef;
  padding: 10px;
  float: left;
  width: 162px;
  margin-right: 16px;
  position: relative;
}
.modal-procart .product-recommendations > div.add-success {
  border-color: #c3c3c3;
}
.modal-procart .product-recommendations > div.add-success:before {
  content: " ";
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  background: url('https://www.consolepro.nl/skin/frontend/default/default/images/vink-2.png') no-repeat center center #c3c3c3;
  width: 43px;
  height: 41px;
  line-height: 41px;
}
.modal-procart .product-recommendations > div form {
  margin: 0 0 10px;
}
.modal-procart .product-recommendations > div strong {
  margin-top: 10px;
  text-transform: uppercase;
  display: block;
  margin: 5px 0;
}
.modal-procart .product-recommendations > div .extra-info {
  margin-top: 20px;
  padding-top: 3px;
}
.modal-procart .product-recommendations > div .price {
  font-size: 14px;
}
.modal-procart .product-recommendations > div .old-price {
  display: block;
  text-decoration: line-through;
  color: #8a8a8a;
  margin: 3px 0;
  position: relative;
}
.modal-procart .product-recommendations > div .old-price .price {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  font-size: 12px;
}
.modal-procart .product-recommendations > div .special-price {
  display: block;
  font-weight: bold;
  margin: 6px 0;
}
.modal-procart .product-recommendations > div .special-price .price {
  font-size: 14px;
}
.modal-procart .product-recommendations > div .price-box.displaybothprices {
  height: 65px;
}
.modal-procart .product-recommendations > div.last {
  margin-right: 0;
}
.modal-procart .product-recommendations .btn {
  padding: 5px 15px;
  font-size: 1.3em;
}
div.gpc-loadinfo {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  box-shadow: none !important;
}
.col-left .block.feedbackcompany-sidebar .block-title {
  margin-bottom: 10px;
}
.col-left .block.feedbackcompany-sidebar .block-content {
  *zoom: 1;
  padding-top: 0;
  padding-bottom: 10px;
}
.col-left .block.feedbackcompany-sidebar .block-content:before,
.col-left .block.feedbackcompany-sidebar .block-content:after {
  display: table;
  content: "";
}
.col-left .block.feedbackcompany-sidebar .block-content:after {
  clear: both;
}
.col-left .block.feedbackcompany-sidebar .block-content .actions {
  padding: 10px 0;
}
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  -o-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-loading .slick-list {
  background: #fff url('https://www.consolepro.nl/skin/frontend/default/responsive/slick-1.5.7/ajax-loader.gif') center center no-repeat;
}
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url('https://www.consolepro.nl/skin/frontend/default/responsive/slick-1.5.7/fonts/slick.eot');
  src: url('https://www.consolepro.nl/skin/frontend/default/responsive/slick-1.5.7/fonts/slick.eot?#iefix') format('embedded-opentype'), url('https://www.consolepro.nl/skin/frontend/default/responsive/slick-1.5.7/fonts/slick.woff') format('woff'), url('https://www.consolepro.nl/skin/frontend/default/responsive/slick-1.5.7/fonts/slick.ttf') format('truetype'), url('https://www.consolepro.nl/skin/frontend/default/responsive/slick-1.5.7/fonts/slick.svg#slick') format('svg');
}
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}
.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: -25px;
}
[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}
[dir='rtl'] .slick-prev:before {
  content: '→';
}
[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}
[dir='rtl'] .slick-next:before {
  content: '←';
}
.slick-prev:before {
  content: '←';
}
.slick-next {
  right: -25px;
}
.slick-next:before {
  content: '→';
}
.slick-dots {
  position: absolute;
  bottom: -45px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.banner-container .banner-slick {
  margin-bottom: 18px;
}
.banner-slick-widget .slick-dots {
  display: block;
  bottom: 0;
  margin: 0 0 10px;
}
.banner-slick-widget .slick-dots li button:before {
  font-size: 35px;
  color: #fff;
}
.banner-slick-widget .slick-dots li.slick-active button:before {
  color: #fff;
}
.banner-slick {
  position: relative;
  overflow: hidden;
}
.banner-slick > div {
  position: relative;
  left: 0px;
  top: 0px;
}
.banner-slick > div img {
  width: 100%;
}
.banner-slick .slick-next {
  right: 0px;
  z-index: 1;
  height: 100%;
  top: 0;
  width: 50px;
  margin-top: 0;
}
.banner-slick .slick-prev {
  left: 0px;
  z-index: 1;
  height: 100%;
  top: 0;
  width: 50px;
  margin-top: 0;
}
.banner-slick .slick-dots {
  display: block;
  bottom: 0;
  margin: 0 0 10px;
}
.banner-slick .slick-dots li button:before {
  color: #fff;
}
.banner-slick .slick-dots li.slick-active button:before {
  color: #fff;
}
.carrouseltabs-widget .product-grid-title {
  font-size: 18px;
  padding: 10px 0 10px 0;
}
.group-right {
  float: right;
}
.footer .row div pre {
  background: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: inherit;
  padding: inherit;
  display: inherit;
  border: none;
}
.footer .row div .social-links li a {
  margin: 0 0 5px 0px;
  color: #fff;
  background: #202020;
}
.footer .row div .social-links li a:hover {
  background: #3a3a3a;
  color: #fff;
  text-decoration: none;
}
.social-links {
  *zoom: 1;
  margin-bottom: 18px;
}
.social-links:before,
.social-links:after {
  display: table;
  content: "";
}
.social-links:after {
  clear: both;
}
.social-links a {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -ms-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  font-size: 15px;
  line-height: 33px;
  margin-left: 5px;
  padding: 0;
  height: 30px;
  width: 30px;
  text-align: center;
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em;
}
.social-links a:before {
  text-decoration: none;
  display: inline-block;
  speak: none;
}
.social-links a img {
  display: none;
}
.social-links .blog:before {
  content: "\f09e";
}
.social-links .instagram:before {
  content: "\f16d";
}
.social-links .google-plus:before {
  content: "\f0d5";
}
.social-links .facebook:before {
  content: "\f09a";
}
.social-links .twitter:before {
  content: "\f099";
}
.social-links .youtube:before {
  font-size: 22px;
  line-height: 10px;
  content: "\f167";
}
.social-links .linkedin:before {
  content: "\f0e1";
}
.social-links .pinterest:before {
  content: "\f0d2";
}
.footer-bottom-wrapper {
  clear: both;
}
@media (max-width: 1017px) {
  #footer .footer {
    padding: 30px 20px;
  }
  #footer .footer .row {
    margin-left: 0;
  }
  #footer .footer .group-right {
    float: left;
    margin-bottom: 20px;
    width: 100%;
  }
  #footer .footer .footer-column {
    width: 240px;
    float: left;
    margin-left: 2.127659574%;
    width: 31.914893614%;
  }
  #footer .footer .footer-column:first-child {
    margin-left: 0;
  }
  #footer .footer .newsletter {
    float: left;
    margin-left: 2.127659574%;
    width: 65.957446802%;
  }
  #footer .footer .newsletter:first-child {
    margin-left: 0;
  }
  #footer .footer .newsletter .block-subscribe .block-content .input-box {
    width: 230px;
  }
  #footer .footer .newsletter .block-subscribe .block-content .input-box input {
    width: 220px;
  }
}
.mCustomScrollbar {
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
}
.mCustomScrollbar.mCS_no_scrollbar,
.mCustomScrollbar.mCS_touch_action {
  -ms-touch-action: auto;
  touch-action: auto;
}
.mCustomScrollBox {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr;
}
.mCSB_container {
  overflow: hidden;
  width: auto;
  height: auto;
}
.mCSB_inside > .mCSB_container {
  margin-right: 15px;
}
.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
}
.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-left: 30px;
}
.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0;
}
.mCSB_scrollTools {
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
}
.mCSB_outside + .mCSB_scrollTools {
  right: -26px;
}
.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  right: auto;
  left: 0;
}
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  left: -26px;
}
.mCSB_scrollTools .mCSB_draggerContainer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}
.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px 0;
}
.mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
  height: 100%;
  margin: 0 auto;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}
.mCSB_scrollTools .mCSB_dragger {
  cursor: pointer;
  width: 100%;
  height: 30px;
  z-index: 1;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  position: relative;
  width: 4px;
  height: 100%;
  margin: 0 auto;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  text-align: center;
}
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 12px;
}
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 8px;
}
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
  display: block;
  position: absolute;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}
.mCSB_scrollTools .mCSB_buttonDown {
  bottom: 0;
}
.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-bottom: 30px;
}
.mCSB_horizontal.mCSB_outside > .mCSB_container {
  min-height: 100%;
}
.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  width: auto;
  height: 16px;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
}
.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: -26px;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
  margin: 0 20px;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 2px;
  margin: 7px 0;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 30px;
  height: 100%;
  left: 0;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  margin: 2px auto;
}
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 8px;
  margin: 4px 0;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  left: 0;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  right: 0;
}
.mCSB_container_wrapper {
  position: absolute;
  height: auto;
  width: auto;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: 30px;
  margin-bottom: 30px;
}
.mCSB_container_wrapper > .mCSB_container {
  padding-right: 30px;
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 20px;
}
.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 20px;
}
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 0;
}
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 0;
}
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 20px;
}
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 0;
}
.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper {
  margin-right: 0;
  margin-left: 30px;
}
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
  padding-right: 0;
}
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
  padding-bottom: 0;
}
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
  margin-left: 0;
}
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}
.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
  -moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
  -webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
  -moz-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
  -o-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
}
.mCSB_scrollTools {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}
.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 0;
  filter: "alpha(opacity=0)";
  -ms-filter: "alpha(opacity=0)";
}
.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover > .mCSB_scrollTools,
.mCustomScrollBox:hover ~ .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}
.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0,0,0,0.4);
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255,255,255,0.75);
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255,255,255,0.85);
  filter: "alpha(opacity=85)";
  -ms-filter: "alpha(opacity=85)";
}
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255,255,255,0.9);
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  background-image: url(https://www.consolepro.nl/skin/frontend/client/default/images/mCSB_buttons.png);
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
}
.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 0;
}
.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -20px;
}
.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -40px;
}
.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -56px;
}
.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}
.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active {
  opacity: 0.9;
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0,0,0,0.15);
}
.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.75);
}
.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: rgba(0,0,0,0.85);
}
.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: rgba(0,0,0,0.9);
}
.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}
.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}
.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}
.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}
.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255,255,255,0.1);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255,255,255,0.75);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}
.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255,255,255,0.85);
}
.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255,255,255,0.9);
}
.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px 0;
}
.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -20px;
}
.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -40px;
}
.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -56px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0,0,0,0.1);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.75);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.85);
}
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.9);
}
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px 0;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -20px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -40px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -56px;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255,255,255,0.1);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background-color: #fff;
  background-color: rgba(255,255,255,0.75);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px 0;
}
.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 6px;
  margin: 5px auto;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255,255,255,0.85);
}
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255,255,255,0.9);
}
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px 0;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -20px;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -40px;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -56px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0,0,0,0.1);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.75);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.85);
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.9);
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px 0;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -20px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -40px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -56px;
}
.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255,255,255,0.1);
}
.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px;
}
.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
}
.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 2px;
  margin: 7px auto;
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0,0,0,0.15);
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.75);
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.85);
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.9);
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}
.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255,255,255,0.15);
}
.mCS-rounded.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger {
  height: 14px;
}
.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 14px;
  margin: 0 1px;
}
.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 14px;
}
.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 14px;
  margin: 1px 0;
}
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 16px;
  height: 16px;
  margin: -1px 0;
}
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 4px;
}
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 16px;
  width: 16px;
  margin: 0 -1px;
}
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 4px;
  margin: 6px 0;
}
.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 -72px;
}
.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -92px;
}
.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -112px;
}
.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -128px;
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.75);
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0,0,0,0.15);
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.85);
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.9);
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px -72px;
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -92px;
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -112px;
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -128px;
}
.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail {
  width: 4px;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  background-color: transparent;
  background-position: center;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
  background-repeat: repeat-y;
  opacity: 0.3;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  height: 4px;
  margin: 6px 0;
  background-repeat: repeat-x;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px -72px;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -92px;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -112px;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -128px;
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px -72px;
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -92px;
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -112px;
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -128px;
}
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-y;
  background-image: -moz-linear-gradient(left,rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
  background-image: -webkit-gradient(linear,left top,right top,color-stop(0%,rgba(255,255,255,0.5)),color-stop(100%,rgba(255,255,255,0)));
  background-image: -webkit-linear-gradient(left,rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
  background-image: -o-linear-gradient(left,rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
  background-image: -ms-linear-gradient(left,rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
  background-image: linear-gradient(to right,rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
}
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-x;
  background-image: -moz-linear-gradient(top,rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
  background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(255,255,255,0.5)),color-stop(100%,rgba(255,255,255,0)));
  background-image: -webkit-linear-gradient(top,rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
  background-image: -o-linear-gradient(top,rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
  background-image: -ms-linear-gradient(top,rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
  background-image: linear-gradient(to bottom,rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
}
.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 70px;
}
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 70px;
}
.mCS-3d.mCSB_scrollTools,
.mCS-3d-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}
.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}
.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 8px;
  background-color: #000;
  background-color: rgba(0,0,0,0.2);
  box-shadow: inset 1px 0 1px rgba(0,0,0,0.5), inset -1px 0 1px rgba(255,255,255,0.2);
}
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555;
}
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 8px;
}
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 8px;
  margin: 4px 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.5), inset 0 -1px 1px rgba(255,255,255,0.2);
}
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 8px;
  margin: 4px auto;
}
.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}
.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}
.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}
.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0,0,0,0.1);
  box-shadow: inset 1px 0 1px rgba(0,0,0,0.1);
}
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}
.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}
.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools,
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical,
.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  right: 1px;
}
.mCS-3d-thick.mCSB_scrollTools_vertical,
.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  box-shadow: inset 1px 0 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5);
}
.mCS-3d-thick.mCSB_scrollTools_horizontal,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  bottom: 1px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5);
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  box-shadow: inset 1px 0 0 rgba(255,255,255,0.4);
  width: 12px;
  margin: 2px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555;
}
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  width: auto;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #000;
  background-color: rgba(0,0,0,0.05);
  box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1);
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}
.mCS-3d-thick-dark.mCSB_scrollTools {
  box-shadow: inset 0 0 14px rgba(0,0,0,0.2);
}
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.2);
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  box-shadow: inset 1px 0 0 rgba(255,255,255,0.4), inset -1px 0 0 rgba(0,0,0,0.2);
}
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.2);
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #777;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #fff;
  background-color: rgba(0,0,0,0.05);
  box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1);
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}
.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  right: 0;
  margin: 12px 0;
}
.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: 0;
  margin: 0 12px;
}
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  left: 0;
  right: auto;
}
.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}
.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 50px;
}
.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 50px;
}
.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255,255,255,0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)";
}
.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255,255,255,0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)";
}
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}
.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  width: 6px;
  background-color: #000;
  background-color: rgba(0,0,0,0.2);
}
.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
}
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 6px;
  margin: 5px 0;
}
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 12px;
}
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 12px;
  margin: 2px 0;
}
.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}
.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}
.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}
.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.75);
}
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.85);
}
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.9);
}
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0,0,0,0.1);
}
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}
.mCS-inset.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 12px;
  background-color: #000;
  background-color: rgba(0,0,0,0.2);
}
.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  margin: 3px 5px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 6px;
  margin: 5px 3px;
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 12px;
  margin: 2px 0;
}
.mCS-inset.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}
.mCS-inset.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}
.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}
.mCS-inset.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.75);
}
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.85);
}
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.9);
}
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0,0,0,0.1);
}
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  border-color: rgba(255,255,255,0.2);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  border-color: #000;
  border-color: rgba(0,0,0,0.2);
}
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255,255,255,0.6);
}
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0,0,0,0.6);
}
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.75);
}
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.85);
}
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,0.9);
}
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255,255,255,0.75);
}
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255,255,255,0.85);
}
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255,255,255,0.9);
}
input,
textarea,
select,
.uneditable-input {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
img {
  max-width: 100%;
}
.catalog-category-view .col-left {
  box-sizing: border-box;
  padding-right: 25px;
}
.carrouseltabs-widget .carrouseltabs-widget-wrapper {
  padding-top: 29px;
  border: 1px solid #DDDDDD;
  padding-bottom: 30px;
}
#carrouseltabs .nav-tabs {
  margin-bottom: 0;
}
#carrouseltabs .tab-content {
  padding-top: 20px;
}
#carrouseltabs .tab-content .caroussel_slider_wrapper .products-grid {
  margin-left: 0px;
}
#carrouseltabs .tab-content .products-grid {
  margin-left: -18px;
}
#carrouseltabs .tab-content .products-grid li {
  margin: 0 0px 18px 18px;
  width: 163px;
}
#carrouseltabs .tab-content .products-grid li.first {
  clear: left;
}
.search-mini-form {
  float: right;
  clear: both;
}
.search-mini-form .form-search {
  margin: 0px 20px 0 0;
}
.search-mini-form .form-search input {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  box-shadow: none;
}
#header .logowrapper {
  margin-left: 0;
}
#header .logo {
  margin: 9px 0 0 10px;
}
.quick-access-wrapper {
  border-right: 1px solid #dbdbdb;
  float: right;
  width: 100%;
}
.cms-home .widgets-content {
  margin-bottom: 10px;
}
.cms-home .widgets-content .feedbackcompany-wrapper {
  margin-left: 0;
}
.cms-home .widgets-content .blog-wrapper {
  margin-left: 0;
}
.cms-home .widgets-content .likebox-wrapper {
  float: right;
  overflow: hidden;
}
.widget-block {
  margin-bottom: 10px;
}
.widget-block img {
  width: 100%;
}
.dropdown-content {
  *zoom: 1;
  display: none;
  margin: 10px 0 0;
  padding: 10px 10px;
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  background: white;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  list-style: none outside none;
  z-index: 1000;
}
.dropdown-content:before,
.dropdown-content:after {
  display: table;
  content: "";
}
.dropdown-content:after {
  clear: both;
}
.dropdown-content:before {
  content: " ";
  border-width: 0 6px 6px;
  border-style: solid;
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) #FFF;
  position: absolute;
  right: 12px;
  top: -6px;
  right: 50%;
  margin-right: -3px;
}
.select-language.language-flags .nav {
  *zoom: 1;
  margin: 0;
}
.select-language.language-flags .nav:before,
.select-language.language-flags .nav:after {
  display: table;
  content: "";
}
.select-language.language-flags .nav:after {
  clear: both;
}
.select-language.language-flags .nav .open .caret,
.select-language.language-flags .nav .open.active .caret,
.select-language.language-flags .nav .open a:hover .caret {
  border-top-color: black;
}
.select-language.language-flags a {
  *zoom: 1;
  text-decoration: none;
  background: none;
  color: #333;
  display: block;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
}
.select-language.language-flags a:before,
.select-language.language-flags a:after {
  display: table;
  content: "";
}
.select-language.language-flags a:after {
  clear: both;
}
.quick-access {
  border-right: none;
}
.quick-access ul {
  float: right;
  margin-right: 20px;
}
.quick-access .top-links .nav {
  height: 21px;
}
.quick-access .select-language + .top-links {
  max-width: 320px;
}
.language-dropdown {
  margin-right: 20px;
  margin-left: 0;
}
.language-dropdown .dropdown-content {
  right: -10px;
  left: auto;
  margin-right: 0;
  min-width: 66px;
}
.language-dropdown .dropdown-content:before {
  margin-right: 10px;
  right: 0;
}
.language-dropdown .dropdown-content li {
  border-top: 1px solid #eee;
  border-right: none;
  float: none;
  margin: 10px 0 0;
  padding: 10px 0 0;
  text-indent: 10px;
}
.language-dropdown .dropdown-content li:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.language-dropdown .dropdown-content li > a:hover,
.language-dropdown .dropdown-content .active > a,
.language-dropdown .dropdown-content .active > a:hover {
  background: none;
  text-decoration: underline;
}
.language-dropdown .language-dropdown-title {
  display: block;
  float: left;
  margin-right: 0;
  text-transform: uppercase;
}
.language-dropdown .language-dropdown-icon {
  display: block;
  float: right;
  margin-left: 5px;
  margin-right: 10px;
  text-decoration: none;
}
.language-dropdown .language-dropdown-toggle {
  line-height: 12px;
}
.language-dropdown .language-dropdown-toggle .language-dropdown-title {
  margin-right: 10px;
}
.language-dropdown .language-dropdown-toggle .language-dropdown-icon {
  margin-right: 0;
}
.language-dropdown .dropdown-toggle:hover,
.language-dropdown.open .language-dropdown-toggle {
  background: none;
  text-decoration: none;
}
.language-dropdown .dropdown-toggle:hover .caret,
.language-dropdown.open .language-dropdown-toggle .caret {
  border-top-color: black;
}
.language-dropdown .dropdown-toggle:hover .language-dropdown-title,
.language-dropdown.open .language-dropdown-toggle .language-dropdown-title {
  color: #333;
}
.language-dropdown .caret {
  display: block;
  float: right;
  margin: 5px 0 0 5px;
  opacity: 1;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #202020;
}
.block-top-wishlist .drop {
  margin-left: -80px;
}
.block-top-wishlist .drop-content .mini-products-list .product .price-box .price-excluding-tax {
  line-height: 16px;
}
.block-top-wishlist .drop-content .mini-products-list .product .price-box .price-excluding-tax .price {
  font-size: 12px;
}
.navbar .gan-plain-full-width li.last .gan-plain {
  right: 0;
  left: 0;
}
.navbar-inner {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  box-shadow: none;
  background: #cc9966;
}
.navbar-inner .dropdown-trigger {
  display: none;
}
.navbar-inner .search-mini-form {
  display: none;
}
.navbar-home-icon .label-home {
  display: none;
}
.top-cart {
  float: right;
}
.top-cart .block-cart {
  background: white url(https://www.consolepro.nl/skin/frontend/default/default/images/icon-cart-top.png) no-repeat 10px 25px;
  min-height: 60px;
  position: relative;
  margin: 5px 0 0 -10px;
  padding: 5px 0 0 10px;
}
.top-cart .block-cart .dropdown-trigger {
  min-height: 60px;
}
.top-cart .block-cart .block-title:before {
  display: none;
}
.top-cart .block-cart.block-top-cart .actions {
  margin-top: 9px;
}
.top-cart .block-cart .summary,
.top-cart .block-cart .block-title,
.top-cart .block-cart .empty,
.top-cart .block-cart .actions {
  margin-left: 60px;
}
.top-cart .block-cart.open {
  z-index: 1000;
}
.top-cart .block-cart .empty {
  color: #aaa;
  font-style: normal;
  margin-top: 3px;
}
.top-cart .block-cart.empty .drop {
  padding-top: 15px;
  top: 65px !important;
}
.top-cart .block-cart.empty .drop .block-subtitle {
  margin: 0;
}
.top-cart .cart-qty {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #202020;
  border: 2px solid white;
  color: white;
  display: inline-block;
  float: right;
  font-weight: 600;
  height: 24px;
  left: 30px;
  letter-spacing: -1px;
  line-height: 24px;
  position: absolute;
  text-align: center;
  text-indent: 0;
  top: 10px;
  width: 24px;
}
.top-cart .custom-button-black {
  margin-bottom: 0;
  text-decoration: none;
  transition: linear 0.2s;
}
.top-cart .btn-checkout {
  background: #f89406;
  border: none;
  color: #fff;
  display: inline-block;
  margin: 5px 0 0;
  padding: 9px 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: linear 0.2s;
  font-size: 14px;
  text-align: center;
  width: 100%;
}
.top-cart .btn-checkout:hover {
  background: #c67605;
}
.top-cart .drop {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin: 0;
  padding-top: 0;
  top: 75px !important;
  width: 222px;
}
.top-cart .drop:before {
  display: none;
}
.top-cart .drop .arrow.up {
  display: none;
}
.top-cart .drop .arrow.up span {
  position: absolute;
  left: 13px;
}
.top-cart .drop.has-items .block-subtitle {
  border-bottom: 1px solid #dbdbdb;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 6px;
}
.top-cart .drop .scrollable {
  margin-top: 0px;
}
.top-cart .drop .mini-products-list {
  margin-bottom: 0;
}
.top-cart .drop .mini-products-list .item {
  margin-bottom: 0;
}
.top-cart .drop .mini-products-list .item .product-details {
  width: 139px;
}
.top-cart .drop .mini-products-list .item.last {
  border-bottom: 0;
}
.top-cart .drop .mini-products-list .item .close {
  display: none;
}
.top-cart .drop .bottom {
  border-top: 1px solid #dbdbdb;
  margin-top: 0;
  padding-top: 12px;
}
.top-cart .block-cart:not(.open):hover .cart-qty {
  background-color: #555;
}
.top-cart .block-cart.open:hover .cart-qty,
.top-cart .block-cart.incart:hover .cart-qty {
  background-color: #202020;
}
.add-to-cart .custom-button .icon-shopping-cart {
  position: relative;
  display: inline-block;
}
.add-to-cart .custom-button .icon-shopping-cart:before {
  content: '';
  width: 22px;
  height: 20px;
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/icon-cart-white-small.png) no-repeat top left;
  position: absolute;
  top: -4px;
  left: -10px;
}
.add-to-cart .custom-button .icon-shopping-cart:before {
  left: -20px;
  top: -15px;
}
.dropdown-toggle {
  cursor: pointer;
  z-index: auto;
}
.drop-content {
  padding: 0;
}
.dropdown-content {
  *zoom: 1;
  display: none;
  position: absolute;
  left: auto;
  z-index: 1000;
  padding: 15px;
  list-style: none outside none;
}
.dropdown-content:before,
.dropdown-content:after {
  display: table;
  content: "";
}
.dropdown-content:after {
  clear: both;
}
.dropdown.open .dropdown-toggle {
  color: inherit;
  background: transparent;
  z-index: 999;
}
.dropdown.open .dropdown-content {
  display: block;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.4);
  z-index: 1000;
}
.dropdown-backdrop.dropdown-backdrop-touch {
  background-color: rgba(0,0,0,0);
}
.login-dropdown {
  text-align: left;
}
.login-dropdown .dropdown-toggle {
  text-decoration: underline;
  text-transform: lowercase;
}
.login-dropdown .dropdown-toggle:hover {
  text-decoration: none;
}
.login-dropdown .dropdown-content {
  top: 15px;
  left: -104px;
  background: white;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 15px 15px;
  width: 200px;
}
.login-dropdown .dropdown-content:before {
  content: " ";
  border-width: 0 6px 6px;
  border-style: solid;
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) #FFF;
  position: absolute;
  left: 50%;
  top: -6px;
  margin-left: -3px;
}
.login-dropdown .block-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 21px;
  margin-bottom: 15px;
}
.login-dropdown .block-title strong {
  font-weight: 600;
}
.login-dropdown form {
  margin: 0;
}
.login-dropdown input,
.login-dropdown textarea,
.login-dropdown select,
.login-dropdown .uneditable-input {
  width: 190px;
}
.login-dropdown .seperate-buttons {
  border-top: 1px solid #eee;
  margin: 15px 0;
  width: 100%;
}
.login-dropdown button.button {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  text-align: center;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #ddd;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  cursor: pointer;
  *margin-left: .3em;
  text-decoration: none;
  color: #fff;
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  display: block;
  width: 100%;
}
.login-dropdown button.button [class^="icon-"].icon-large,
.login-dropdown button.button [class*=" icon-"].icon-large {
  line-height: .9em;
}
.login-dropdown button.button [class^="icon-"].icon-spin,
.login-dropdown button.button [class*=" icon-"].icon-spin {
  display: inline-block;
}
.login-dropdown button.button [class^="icon-"].pull-left.icon-2x,
.login-dropdown button.button [class^="icon-"].pull-right.icon-2x,
.login-dropdown button.button [class*=" icon-"].pull-left.icon-2x,
.login-dropdown button.button [class*=" icon-"].pull-right.icon-2x {
  margin-top: .18em;
}
.login-dropdown button.button [class^="icon-"].icon-spin.icon-large,
.login-dropdown button.button [class*=" icon-"].icon-spin.icon-large {
  line-height: .8em;
}
.login-dropdown button.button:hover,
.login-dropdown button.button:active,
.login-dropdown button.button.active,
.login-dropdown button.button.disabled,
.login-dropdown button.button[disabled] {
  background-color: #fff;
}
.login-dropdown button.button:active,
.login-dropdown button.button.active {
  background-color: #e6e6e6 \9;
}
.login-dropdown button.button:hover,
.login-dropdown button.button:active,
.login-dropdown button.button.active,
.login-dropdown button.button.disabled,
.login-dropdown button.button[disabled] {
  background: #e6e6e6;
}
.login-dropdown button.button:active,
.login-dropdown button.button.active {
  background: #e6e6e6;
}
.login-dropdown button.button:first-child {
  *margin-left: 0;
}
.login-dropdown button.button:hover,
.login-dropdown button.button:active,
.login-dropdown button.button.active,
.login-dropdown button.button.disabled,
.login-dropdown button.button[disabled] {
  background-color: #f89406;
}
.login-dropdown button.button:active,
.login-dropdown button.button.active {
  background-color: #c67605 \9;
}
.login-dropdown button.button:hover,
.login-dropdown button.button:active,
.login-dropdown button.button.active,
.login-dropdown button.button.disabled,
.login-dropdown button.button[disabled] {
  background: #c67605;
}
.login-dropdown button.button:active,
.login-dropdown button.button.active {
  background: #c67605;
}
.login-dropdown button.button .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.login-dropdown button.button-link {
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
  cursor: pointer;
  color: #202020;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  display: block;
  line-height: 18px;
  margin: 0 auto;
  padding: 0;
  text-decoration: underline;
}
.login-dropdown button.button-link.small {
  font-size: 12px;
  margin-top: 4px;
  color: #777777;
}
.login-dropdown button.button-link:hover {
  text-decoration: none;
}
.selectbox-wrapper .selectbox-trigger {
  display: none;
}
.fb-page {
  transform-origin: 0 0;
  -webkit-transform-origin: 0px 0px;
  -moz-transform-origin: 0px 0px;
}
.gan-sidebar-nav #vertnav .vertnav-cat,
.block-layered-nav #vertnav .vertnav-cat {
  width: 100%;
}
.banner-top .banner-top-cat-image {
  margin-right: 20px;
  margin-bottom: 20px;
}
.banner-top .banner-top-cat-description {
  float: none;
  width: auto;
}
.description-wrapper-tablet {
  display: none;
}
.gan-sidebar-nav form#price-filter-form .noUi-target,
.block-layered-nav form#price-filter-form .noUi-target {
  margin: 13px 16px;
}
.gan-sidebar-nav form#price-filter-form .slider-input-wrapper,
.block-layered-nav form#price-filter-form .slider-input-wrapper {
  clear: both;
}
.gan-sidebar-nav form#price-filter-form .slider-input-wrapper input,
.block-layered-nav form#price-filter-form .slider-input-wrapper input {
  width: 46px;
  float: left;
  margin-right: 10px;
}
.gan-sidebar-nav form#price-filter-form label,
.block-layered-nav form#price-filter-form label {
  float: left;
  margin-right: 10px;
  line-height: 26px;
}
.gan-sidebar-nav form#price-filter-form .btn,
.block-layered-nav form#price-filter-form .btn {
  width: 29px;
  float: right;
}
.gan-sidebar-nav form#price-filter-form .btn:before,
.block-layered-nav form#price-filter-form .btn:before {
  font-family: FontAwesome;
  content: "\f054";
  font-size: 12px;
  color: #202020;
}
.gan-sidebar-nav #narrow-by-list dd select,
.block-layered-nav #narrow-by-list dd select {
  max-width: 100%;
}
.gan-sidebar-nav #narrow-by-list ol li,
.block-layered-nav #narrow-by-list ol li {
  line-height: 26px;
  padding-left: 9px;
}
.gan-sidebar-nav #narrow-by-list ol li a,
.block-layered-nav #narrow-by-list ol li a {
  line-height: 18px;
  margin-left: -9px;
  padding: 4px 0 4px 9px;
}
.gan-sidebar-nav #narrow-by-list ol.gan-list-checkbox li a,
.gan-sidebar-nav #narrow-by-list ol.gan-list-checkbox li:hover a,
.gan-sidebar-nav #narrow-by-list ol.gan-list-checkbox li a.active,
.block-layered-nav #narrow-by-list ol.gan-list-checkbox li a,
.block-layered-nav #narrow-by-list ol.gan-list-checkbox li:hover a,
.block-layered-nav #narrow-by-list ol.gan-list-checkbox li a.active {
  padding-left: 27px;
  background-position: 7px;
}
.gan-sidebar-nav #narrow-by-list ol.image-align-horizontally li a,
.block-layered-nav #narrow-by-list ol.image-align-horizontally li a {
  display: inline-block;
  padding: 4px;
}
.catalog-product-view form {
  *zoom: 1;
  margin-bottom: 0;
}
.catalog-product-view form:before,
.catalog-product-view form:after {
  display: table;
  content: "";
}
.catalog-product-view form:after {
  clear: both;
}
.product-view .block-usp {
  background: #f9f9f9;
  clear: both;
  *zoom: 1;
}
.product-view .block-usp:before,
.product-view .block-usp:after {
  display: table;
  content: "";
}
.product-view .block-usp:after {
  clear: both;
}
.product-view .product-name h1 {
  line-height: 28px;
}
.product-view .product-shop .free-shipping {
  width: 100%;
}
.product-view .product-shop {
  padding-left: 0;
}
.product-view .product-shop-wrapper {
  margin-right: 10px;
  margin-left: 10px;
}
.product-view .add-to-cart .add-to-cart-x {
  display: inline-block;
  text-align: center;
  width: 32px;
}
.product-view .add-to-cart button {
  transition: background 200ms;
}
.product-view .tabbable {
  margin-right: 10px;
}
.product-view .tabbable .tab-content {
  box-sizing: border-box;
}
.product-view .tabbable .tab-content h2 {
  margin-bottom: 8px;
}
.product-view .tabbable .tab-content #customer-reviews h3 {
  margin-bottom: 8px;
  margin-top: 0;
  line-height: 36px;
}
.product-view .tabbable .tab-pane .span8 {
  width: 344px;
}
.product-view .tabbable .tab-pane .span16 {
  width: 698px;
}
.product-view .tabbable .box-reviews .form-list label {
  margin: 10px 0 0;
}
.product-view .tabbable .box-reviews .form-list .input-text {
  width: 270px;
  width: 100%;
  box-sizing: border-box;
  height: 26px;
}
.product-view .tabbable .box-reviews #customer-reviews .input-box textarea,
.product-view .tabbable .box-reviews #review-form .input-box textarea {
  width: 100%;
  box-sizing: border-box;
}
.product-view .grouped-items-table .price-box.displaybothprices .special-price .price-excluding-tax .label {
  line-height: 0;
}
.product-view .grouped-items-table .tier-prices .tier-price .price,
.product-view .grouped-items-table .tier-prices .tier-price .benefit,
.product-view .grouped-items-table .tier-prices .tier-price .benefit .percent {
  display: inline-block;
}
.product-view .product-options input,
.product-view .product-options textarea,
.product-view .product-options select,
.product-view .product-options .uneditable-input {
  margin-bottom: 5px;
}
.product-view .product-options .validation-advice {
  color: #9d261d;
}
.product-view .add-to-box-links ul li:before {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  content: "\f101";
  margin-right: 2px;
}
.product-view .block-related-fullwidth {
  float: none;
  margin-top: 20px;
  margin-bottom: 30px;
}
.product-view .block-related-fullwidth .block-title {
  text-transform: none;
  border-bottom: 1px solid #eee;
  display: block;
  padding-bottom: 5px;
  float: left;
}
.product-view .block-related-fullwidth .block-title h3 {
  margin-bottom: 0;
}
.product-view .block-related-fullwidth .block-title .colname {
  margin-top: 7px;
}
.product-view .block-related-fullwidth .block-content {
  clear: both;
}
.product-view .block-related-fullwidth .block-content .block-related-item {
  border-bottom: 1px solid #eee;
}
.product-view .block-related-fullwidth .block-content .block-related-item > div {
  display: table;
  height: 120px;
}
.product-view .block-related-fullwidth .block-content .block-related-item > div > span.cell {
  display: table-cell;
  vertical-align: middle;
}
.product-view .block-related-fullwidth .block-content .product-name a {
  text-decoration: none;
  font-size: 14px;
}
.product-view .block-related-fullwidth .block-content .product-info-wrapper {
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
  max-width: 260px;
}
.product-view .block-related-fullwidth .block-content .price-box {
  margin-bottom: 0;
  margin-top: 2px;
  height: auto;
  min-height: auto;
  line-height: 23px;
}
.product-view .block-related-fullwidth .block-content .price-box .price {
  font-size: 12px;
  font-weight: normal;
}
.product-view .block-related-fullwidth .block-content .price-box .old-price {
  line-height: 18px;
  width: 100%;
}
.product-view .block-related-fullwidth .block-content .price-box .old-price .price {
  color: #999;
  font-size: 12px;
  font-weight: normal;
}
.product-view .block-related-fullwidth .block-content .price-box .special-price {
  display: inline-block;
  line-height: 18px;
  margin-right: 8px;
  width: 100%;
}
.product-view .block-related-fullwidth .block-content .price-box .special-price .price {
  font-size: 16px;
  font-weight: bold;
}
.product-view .block-related-fullwidth .block-content .price-box .regular-price .price {
  font-size: 16px;
  font-weight: bold;
}
.product-view .block-related-fullwidth .block-content .product-image {
  display: inline-block;
  vertical-align: middle;
}
.product-view .block-related-fullwidth .block-content .qty {
  padding: 8px 5px;
  text-align: center;
  width: 30px;
  margin-bottom: 0;
  font-weight: bold;
  border: 1px solid #eee;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.product-view .block-related-fullwidth .block-content .addtocart-small {
  padding: 0;
  width: 60px;
  height: 35px;
  line-height: 35px;
  color: #fff;
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.product-view .block-related-fullwidth .block-content .addtocart-small:hover,
.product-view .block-related-fullwidth .block-content .addtocart-small:active,
.product-view .block-related-fullwidth .block-content .addtocart-small.active,
.product-view .block-related-fullwidth .block-content .addtocart-small.disabled,
.product-view .block-related-fullwidth .block-content .addtocart-small[disabled] {
  background-color: #f89406;
}
.product-view .block-related-fullwidth .block-content .addtocart-small:active,
.product-view .block-related-fullwidth .block-content .addtocart-small.active {
  background-color: #c67605 \9;
}
.product-view .block-related-fullwidth .block-content .addtocart-small:hover,
.product-view .block-related-fullwidth .block-content .addtocart-small:active,
.product-view .block-related-fullwidth .block-content .addtocart-small.active,
.product-view .block-related-fullwidth .block-content .addtocart-small.disabled,
.product-view .block-related-fullwidth .block-content .addtocart-small[disabled] {
  background: #c67605;
}
.product-view .block-related-fullwidth .block-content .addtocart-small:active,
.product-view .block-related-fullwidth .block-content .addtocart-small.active {
  background: #c67605;
}
.product-view .block-related-fullwidth .block-content .addtocart-small .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.product-view .block-related-fullwidth .block-content .addtocart-small .icon-shopping-cart {
  position: relative;
}
.product-view .block-related-fullwidth .block-content .addtocart-small .icon-shopping-cart:before {
  content: '';
  width: 22px;
  height: 20px;
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/icon-cart-white-small.png) no-repeat top left;
  position: absolute;
  top: -4px;
  left: -10px;
}
.product-view .block-related-fullwidth .block-content .addtocart-small .icon-search {
  font-size: 1.4em;
  line-height: 35px;
  padding-left: 2px;
}
.product-view .block-related-fullwidth .block-content #calc-price {
  font-size: 16px;
  font-weight: bold;
}
.product-view .block-related-fullwidth .block-content p {
  margin-bottom: 0;
}
.product-view .box-reviews .review {
  *zoom: 1;
}
.product-view .box-reviews .review:before,
.product-view .box-reviews .review:after {
  display: table;
  content: "";
}
.product-view .box-reviews .review:after {
  clear: both;
}
.product-view .block-wishlist .link-cart {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  padding-left: 25px;
}
.product-view .block-wishlist .link-cart .icon-shopping-cart {
  position: relative;
  position: absolute;
  top: 10px;
  left: 18px;
}
.product-view .block-wishlist .link-cart .icon-shopping-cart:before {
  content: '';
  width: 22px;
  height: 20px;
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/icon-cart-white-small.png) no-repeat top left;
  position: absolute;
  top: -4px;
  left: -10px;
}
.product-view .block-wishlist .link-cart .icon-shopping-cart:before {
  background-size: 16px;
}
.modal-procart .product-detail > .product-info {
  width: 368px;
}
.modal-procart .product-detail > .product-cta {
  width: 230px;
}
.modal-procart .product-detail > .product-cta .btn {
  padding-left: 35px;
}
.modal-procart .product-detail > .product-cta .icon-shopping-cart {
  position: relative;
}
.modal-procart .product-detail > .product-cta .icon-shopping-cart:before {
  content: '';
  width: 22px;
  height: 20px;
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/icon-cart-white-small.png) no-repeat top left;
  position: absolute;
  top: -4px;
  left: -10px;
}
.modal-procart .product-detail > .product-cta .icon-shopping-cart:before {
  left: -25px;
}
.modal-procart .product-detail > .product-cta .continue-shopping .icon-arrow-right:before {
  content: '\f105';
}
.modal-procart .product-recommendations .btn {
  margin-top: 10px;
}
.modal-procart .product-recommendations .btn .icon-shopping-cart {
  position: relative;
}
.modal-procart .product-recommendations .btn .icon-shopping-cart:before {
  content: '';
  width: 22px;
  height: 20px;
  background: url(https://www.consolepro.nl/skin/frontend/default/default/images/icon-cart-white-small.png) no-repeat top left;
  position: absolute;
  top: -4px;
  left: -10px;
}
.modal-procart .product-recommendations .btn .icon-shopping-cart:before {
  position: relative;
  top: 2px;
  left: -1px;
}
.modal-procart .product-recommendations .price-box .price-excluding-tax {
  text-transform: none;
  margin-bottom: 6px;
}
.modal-procart .product-recommendations .price-box .price-excluding-tax .price {
  font-size: 12px;
}
.modal-procart .product-recommendations .price-box .special-price .price-exclusing-tax {
  margin-top: 4px;
}
.box-collateral .products-grid.small > li {
  width: 143px;
}
.box-reviews .form-add h3 {
  margin-bottom: 8px;
  margin-top: 0;
  line-height: 36px;
}
.box-reviews .form-add h4 {
  margin-top: 18px;
}
.box-reviews #advice-validate-rating-validate_rating {
  margin-bottom: 18px;
}
.box-reviews .validation-advice {
  color: #9d261d;
}
.box-reviews .buttons-set {
  margin-top: 10px;
}
.product-layout-list .box-collateral .products-grid.small > li {
  width: 155px;
}
.product-layout-list .box-collateral h2 {
  font-size: 1.2em;
}
.product-layout-list .block-product-view-reviews-title {
  *zoom: 1;
  margin-bottom: 18px;
}
.product-layout-list .block-product-view-reviews-title:before,
.product-layout-list .block-product-view-reviews-title:after {
  display: table;
  content: "";
}
.product-layout-list .block-product-view-reviews-title:after {
  clear: both;
}
.product-layout-list .block-product-view-reviews-title .rating-box {
  margin: 0 10px;
}
.product-layout-list .block-product-view .description {
  width: 746px;
}
.product-layout-list .box-reviews #customer-reviews ul.items li {
  margin-bottom: 18px;
}
.product-layout-list .box-reviews .product-review-table td:first-child {
  width: 176px;
}
.product-layout-list .box-reviews #customer-reviews .input-box textarea,
.product-layout-list .box-reviews #review-form .input-box textarea {
  margin-bottom: 0;
  height: 120px;
}
.product-layout-list .box-reviews #customer-reviews ul.form-list li .input-box,
.product-layout-list .box-reviews #review-form ul.form-list li .input-box,
.product-layout-list .box-reviews #customer-reviews .input-box,
.product-layout-list .box-reviews #review-form .input-box {
  clear: none;
}
.product-layout-list .back-top .icon-arrow-up:before {
  content: '\f106';
  margin-left: 2px;
}
.product-layout-list #block-product-view-index .listing-product-block-index > li a.block-title {
  border-color: #eee;
  display: inline-block;
  padding: 2px 0 8px;
  font-size: 1.1em;
  position: relative;
  padding-left: 12px;
}
.product-layout-list #block-product-view-index .listing-product-block-index > li a.block-title i {
  left: 0;
  top: 0;
  position: absolute;
  margin-right: 5px;
}
.product-layout-list #block-product-view-index .listing-product-block-index > li a.block-title:hover span {
  text-decoration: underline;
}
#product-attribute-specs-table.data-table {
  font-size: 13px;
  margin-top: 0px;
  margin-bottom: 20px;
}
#product-attribute-specs-table.data-table tbody {
  border-bottom: 0 !important;
}
#product-attribute-specs-table.data-table .attribute-group-row.first td {
  border-top: 0;
}
#product-attribute-specs-table.data-table .attribute-group-row td {
  background: #eee;
  padding: 0 15px !important;
  border-top: 20px solid white;
}
#product-attribute-specs-table.data-table .attribute-group-row h2 {
  font-size: 16px;
}
#product-attribute-specs-table.data-table tr.attribute-group-row .attribute-group-title {
  background: transparent;
}
#product-attribute-specs-table.data-table tr.group-attribute .attribute-label,
#product-attribute-specs-table.data-table tr.group-attribute .attribute-value {
  padding-left: 15px;
}
#product-attribute-specs-table.data-table tr.group-attribute.odd td,
#product-attribute-specs-table.data-table tr.group-attribute.odd th {
  border: none;
  background: #f4f4f4;
}
#product-attribute-specs-table.data-table tr.group-attribute.odd:hover td,
#product-attribute-specs-table.data-table tr.group-attribute.odd:hover th {
  border: none;
  background: #f4f4f4;
}
#product-attribute-specs-table.data-table tr.group-attribute.even td,
#product-attribute-specs-table.data-table tr.group-attribute.even th,
#product-attribute-specs-table.data-table tr.group-attribute.even:hover td,
#product-attribute-specs-table.data-table tr.group-attribute.even:hover th {
  background: white;
  border: none;
}
.price-box {
  height: auto;
  min-height: 38px;
}
.price-box .price-including-tax .price {
  font-size: 18px;
  font-weight: bold;
}
.price-box .special-price .price-excluding-tax .price {
  font-weight: normal;
}
.price-box .minimal-price .price-excluding-tax {
  display: block;
  line-height: 12px;
}
.price-box .minimal-price .price-excluding-tax .price {
  font-weight: normal;
  font-size: 12px;
  color: #888888;
}
.price-box .minimal-price .price-excluding-tax .label {
  background: none repeat scroll 0 0 rgba(0,0,0,0);
  color: #888888;
  text-shadow: none;
  padding: 0;
}
.price-box.displaybothprices .minimal-price-link {
  margin-top: 10px;
  font-size: 11px;
}
.price-box.displaybothprices .price-excluding-tax {
  line-height: 12px;
}
.price-box.displaybothprices .special-price .price-excluding-tax {
  line-height: 26px;
}
.gan-sidebar-nav #narrow-by-list dt:before,
.block-layered-nav #narrow-by-list dt:before {
  font-size: 16px;
  content: "-";
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  float: right;
  line-height: 12px;
  font-weight: 100;
  text-align: center;
  padding-right: 2px;
  width: 10px;
}
.gan-sidebar-nav #narrow-by-list dt.collapsed:before,
.block-layered-nav #narrow-by-list dt.collapsed:before {
  content: "+";
  line-height: 15px;
}
.gan-sidebar-nav #narrow-by-list dd ol,
.block-layered-nav #narrow-by-list dd ol {
  padding-right: 0;
}
.gan-sidebar-nav .btn-clear-filters,
.block-layered-nav .btn-clear-filters {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.products-grid >li {
  margin: 0 12px 18px 0;
}
.products-grid >li.first {
  clear: left;
}
.products-grid >li a img {
  width: 100%;
}
.products-grid >li .product-name {
  height: auto;
  min-height: 36px;
}
.products-grid >li.desktop-first {
  clear: left;
}
.products-grid >li.tablet-last {
  margin-right: 12px;
}
.products-grid >li.desktop-last {
  margin-right: 0;
}
.products-grid >li .bundle-price .price-excluding-tax,
.products-grid >li .bundle-price .price-including-tax {
  display: block;
}
.products-grid form {
  margin: 10px 0;
}
.products-list.responsive-products-list .item {
  width: 100%;
}
.products-list.responsive-products-list .item .responsive-product-list-item {
  border: 1px solid #eee;
  display: block;
  position: relative;
  z-index: 1;
  width: auto;
}
.products-list.responsive-products-list .item .responsive-product-list-item:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.products-list.responsive-products-list .item .responsive-product-list-product {
  float: left;
}
.products-list.responsive-products-list .item .responsive-product-list-product--image {
  float: left;
  padding: 15px;
}
.products-list.responsive-products-list .item .responsive-product-list-product--content {
  float: left;
  padding: 15px;
  padding-left: 0;
  width: 299px;
}
.products-list.responsive-products-list .item .responsive-product-list-product--content .std {
  padding-bottom: 30px;
}
.products-list.responsive-products-list .item .responsive-product-list-product--content .product-name {
  margin-bottom: 5px;
}
.products-list.responsive-products-list .item .responsive-product-list-product--content .link-learn {
  position: absolute;
  bottom: 15px;
}
.products-list.responsive-products-list .item .responsive-product-list-shop {
  height: 100%;
  padding: 15px;
  width: 200px;
  float: right;
}
.products-list.responsive-products-list .item .responsive-product-list-shop:before {
  content: "";
  background: #f5f5f5;
  display: block;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  width: 230px;
  height: auto;
  position: absolute;
  border-left: 1px solid #eee;
}
.products-list.responsive-products-list .item .responsive-product-list-shop .product-list-item-inner {
  position: relative;
  z-index: 1;
}
.products-list.responsive-products-list .item .responsive-product-list-shop .responsive-product-list-shop--info {
  display: inline-block;
}
.products-list.responsive-products-list .item .agp-category-qty {
  padding: 6px 5px 5px;
}
.products-list.responsive-products-list .item .product-stock {
  margin-bottom: 10px;
}
.products-list.responsive-products-list .item .btn-cart {
  margin-top: 0;
}
.product-stock:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.product-stock.label-green:before {
  background-color: #7fc123;
}
.product-stock.label-orange:before {
  background-color: #f89406;
}
.product-stock.label-red:before {
  background-color: #f89406;
}
.screen-md .products-grid.colsize-3 > li {
  width: 218px;
}
.screen-md .products-grid.colsize-4 > li {
  width: 155px;
}
.shipping-container .total-column .sp-methods {
  display: none;
}
.checkout-cart-index .cart .title-buttons .btn,
.checkout-cart-index .cart .pull-right .btn {
  min-width: 159px;
  text-align: center;
}
.checkout-cart-index .cart .title-buttons .btn .icon-caret-right,
.checkout-cart-index .cart .pull-right .btn .icon-caret-right {
  display: none;
}
.checkout-cart-index table .cart-actions,
#checkout-review-table-wrapper table .cart-actions {
  background: none;
  height: 28px;
  width: 60px;
}
.checkout-cart-index table .cart-actions .remove-item,
.checkout-cart-index table .cart-actions .refresh-item,
#checkout-review-table-wrapper table .cart-actions .remove-item,
#checkout-review-table-wrapper table .cart-actions .refresh-item {
  height: 28px;
  line-height: 28px;
  width: 30px;
  text-decoration: none;
}
.checkout-cart-index table .cart-actions .remove-item:before,
.checkout-cart-index table .cart-actions .refresh-item:before,
#checkout-review-table-wrapper table .cart-actions .remove-item:before,
#checkout-review-table-wrapper table .cart-actions .refresh-item:before {
  font-family: FontAwesome;
  font-size: 14px;
}
.checkout-cart-index table .cart-actions .remove-item span,
.checkout-cart-index table .cart-actions .refresh-item span,
#checkout-review-table-wrapper table .cart-actions .remove-item span,
#checkout-review-table-wrapper table .cart-actions .refresh-item span {
  display: none;
}
.checkout-cart-index table .cart-actions .remove-item:before,
#checkout-review-table-wrapper table .cart-actions .remove-item:before {
  content: "\F014";
}
.checkout-cart-index table .cart-actions .refresh-item:before,
#checkout-review-table-wrapper table .cart-actions .refresh-item:before {
  content: "\F021";
}
.glc .discount label[for="coupon_code"],
.cart-table .discount label[for="coupon_code"] {
  display: none;
}
.glc .discount .form-inline,
.cart-table .discount .form-inline {
  margin-top: 10px;
}
.gomage-checkout-onepage-index .gcheckout-right-col dt .radio,
.gomage-checkout-onepage-index .gcheckout-right-col dd .radio {
  margin-right: 5px;
}
#checkout-review-submit button.btn-checkout {
  width: auto;
}
body.page-popup .techtwo-adminbar-container,
body.page-popup .techtwo-adminbar-space {
  display: none;
}
html.touch .gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content {
  -webkit-overflow-scrolling: touch !important;
  overflow-y: scroll !important;
}
.gomage-checkout-onepage-index .lv_window.lv_window_light {
  width: 100% !important;
  max-width: 950px;
  left: 50% !important;
  margin-left: -510px;
}
.gomage-checkout-onepage-index .lv_window.lv_window_light .lv_skin,
.gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content,
.gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content_wrapper,
.gomage-checkout-onepage-index .lv_window.lv_window_light #terms-block {
  width: 100% !important;
}
.gomage-checkout-onepage-index .lv_window.lv_window_light .lv_skin {
  max-width: 1057px;
  overflow: hidden;
}
.gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content {
  background: #fff;
}
.gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content,
.gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content_wrapper {
  max-width: 870px;
}
.gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content_wrapper {
  overflow: visible !important;
}
.gomage-checkout-onepage-index .lv_window.lv_window_light #terms-block {
  max-width: 840px;
}
.gomage-checkout-onepage-index .lv_window.lv_window_light .lv_shadow,
.gomage-checkout-onepage-index .lv_window.lv_window_light .lv_side_buttons_underneath {
  display: none !important;
}
.gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content_iframe {
  width: 870px !important;
}
.gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content {
  top: 60px !important;
  left: 60px !important;
  padding: 0px !important;
}
.gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content .popup-content {
  padding: 10px;
}
.gomage-checkout-onepage-index .lv_window.lv_window_light canvas {
  background: transparent;
  opacity: 0;
}
.gomage-checkout-onepage-index .glc-style-default .checkout-step.review .totals .data-table td.total-column,
.gomage-checkout-onepage-index .glc-style-default .checkout-step.review .totals table td.total-column {
  width: 118px;
}
.gomage-checkout-onepage-index .glc-style-default .checkout-step.review .totals #checkout-discount-table td.total-column {
  width: 136px;
}
.gomage-checkout-onepage-index .glc-style-default .checkout-step.review .totals #checkout-total-table tfoot tr td.total-column {
  width: 135px;
}
.gomage-checkout-onepage-index .glc-style-default.show-product-image .checkout-step.review .totals #checkout-discount-table td.total-column {
  width: 116px;
}
.gomage-checkout-onepage-index .glc-style-default.show-product-image .checkout-step.review .totals #checkout-total-table tfoot tr td.total-column {
  width: 118px;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step.review .totals .data-table td.total-column,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step.review .totals table td.total-column {
  width: 118px;
  background: #f6f6f6 !important;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step.review .totals #checkout-discount-table td.total-column {
  width: 97px;
  background: #f6f6f6 !important;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step.review .totals #checkout-total-table tfoot tr td.total-column {
  width: 83px;
  background: #f6f6f6 !important;
}
.gomage-checkout-onepage-index .glc.glc-style-coww.show-product-image .checkout-step.review .totals #checkout-discount-table td.total-column {
  width: 85px;
}
.gomage-checkout-onepage-index .glc.glc-style-coww.show-product-image .checkout-step.review .totals #checkout-total-table tfoot tr td.total-column {
  width: 71px;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step .customer-comment textarea {
  height: 6em;
  width: 370px;
}
.gomage-checkout-onepage-index .glc.glc-style-default .checkout-step .customer-comment textarea {
  width: 240px;
}
.gomage-checkout-onepage-index .glc.glc-style-default .methods .shipping-methods,
.gomage-checkout-onepage-index .glc.glc-style-default .methods .gcheckout-extraproducts-methods,
.gomage-checkout-onepage-index .glc.glc-style-default .methods .gcheckout-payment-methods {
  width: 322px;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .input-box input,
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .input-box select {
  height: 30px;
  box-sizing: border-box;
  width: 290px;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .input-box input {
  padding: 0 8px;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .input-box select {
  padding: 0 4px;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .input-box .address-select {
  margin-bottom: 15px;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li.postcode-region div.field-region .input-box input {
  width: 195px !important;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-name input {
  width: 137px;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-name-prefix-middlename-suffix .field.name-middlename .input-box input,
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-name-prefix-middlename-suffix .field.name-firstname .input-box input {
  width: 88px !important;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-name-prefix-middlename-suffix .field .input-box input {
  width: 137px !important;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-name-prefix-middlename .field .input-box input,
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-name-prefix-middlename .field .input-box select {
  width: 138px;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-name-middlename .field.name-firstname .input-box input,
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-name-middlename .field.name-middlename .input-box input {
  width: 137px;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .address-2fields .field-address,
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .address-2fields .field-address1 input {
  width: 205px !important;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .address-2fields .field-address2,
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .address-2fields .field-address2 input {
  padding-left: 10px;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .field-region input,
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .field-region select,
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .field-fax input,
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .field-fax select,
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .name-suffix input,
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .name-suffix select {
  width: 135px !important;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-dob {
  width: 280px;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-dob .input-box label {
  padding: 6px 5px;
}
.gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-dob-gender .input-box label {
  line-height: 28px;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .input-box input,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .input-box select {
  width: 270px;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li.postcode-region div.field-region .input-box input {
  width: 175px !important;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-prefix-middlename .field .input-box input,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-prefix-middlename .field .input-box select {
  width: 128px;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name input {
  width: 127px;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-prefix .field .input-box input {
  width: 84px;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-prefix .field .input-box select {
  width: 70px;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-prefix-middlename-suffix .field.name-middlename .input-box input,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-prefix-middlename-suffix .field.name-firstname .input-box input {
  width: 82px !important;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-prefix-middlename-suffix .field .input-box input {
  width: 127px !important;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-middlename .field.name-firstname .input-box input,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-middlename .field.name-middlename .input-box input {
  width: 127px;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .address-2fields .field-address,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .address-2fields .field-address1 input {
  width: 185px !important;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .address-2fields .field-address2,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .address-2fields .field-address2 input {
  padding-left: 10px;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .field-region input,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .field-region select,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .field-fax input,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .field-fax select,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .name-suffix input,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .name-suffix select,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .field-telephone input,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .field-telephone select,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .field-telephone.field {
  width: 127px !important;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step .gcheckout-payment-methods ul.form-list li .input-box input,
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step .gcheckout-payment-methods ul.form-list li .input-box select {
  width: 225px;
}
.gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step .gcheckout-payment-methods ul.checkmo-list li label {
  float: none;
}
.gomage-checkout-onepage-index .glc ul.checkmo-list li label {
  line-height: 18px;
  margin-right: 5px;
}
.checkout-onepage-success #breadcrumb {
  display: none;
}
#breadcrumb {
  margin-bottom: 12px;
}
#breadcrumb ul.breadcrumb {
  filter: none;
}
#breadcrumb ul.breadcrumb li a {
  text-decoration: none;
}
#breadcrumb ul.breadcrumb li a span {
  text-decoration: underline;
}
#breadcrumb ul.breadcrumb li a:hover span {
  text-decoration: none;
}
#breadcrumb ul.breadcrumb li.active a span {
  text-decoration: none;
}
#breadcrumb .container {
  padding: 0;
  position: relative;
}
#breadcrumb .container .prev-next-buttons {
  position: absolute;
  top: 0;
  right: 10px;
}
#breadcrumb .container .prev-next-buttons a span {
  text-decoration: underline;
}
#breadcrumb .container .prev-next-buttons a:hover span {
  text-decoration: none;
}
#breadcrumb .container .category-prev-button,
#breadcrumb .container .category-next-button {
  position: relative;
  right: auto;
  left: auto;
  padding-right: 15px;
  border-right: none;
  text-transform: lowercase;
}
#breadcrumb .container .category-prev-button:before,
#breadcrumb .container .category-next-button:before {
  font-family: FontAwesome;
}
#breadcrumb .container .category-prev-button span,
#breadcrumb .container .category-next-button span {
  filter: none;
  padding: 0;
  margin: 0;
  width: auto;
}
#breadcrumb .container .category-prev-button.disabled,
#breadcrumb .container .category-next-button.disabled {
  color: #999;
}
#breadcrumb .container .category-prev-button:before {
  content: "\f104";
  margin-right: 8px;
}
#breadcrumb .container .category-next-button:before {
  content: "\f105";
  float: right;
  position: absolute;
  right: 0;
  top: -2px;
}
#breadcrumb .container .category-next-button span {
  padding-right: 15px;
}
#breadcrumb .container .arrow-left,
#breadcrumb .container a {
  background: none;
  width: auto;
}
#breadcrumb .container .arrow-left span,
#breadcrumb .container a span {
  background: none;
  border: medium none;
  margin-left: 0;
  padding-left: 0;
}
#breadcrumb .container .arrow-right {
  background: none;
}
#breadcrumb .container .arrow-right span {
  background: none;
  border-bottom: none;
  border-top: none;
}
#breadcrumb .container ul.breadcrumb {
  background: none;
  background-image: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: none;
  padding: 9px 0;
}
#breadcrumb .container ul.breadcrumb a {
  color: #6e6e6e;
  text-transform: lowercase;
}
#breadcrumb .container ul.breadcrumb li.active a strong {
  color: #333333;
  font-weight: normal;
}
#breadcrumb .container .back-button span {
  text-transform: lowercase;
}
.contacts-index-index .col-left .block,
.contacts-index-index .col-left .block-title,
.contacts-index-index .col-right .block,
.contacts-index-index .col-right .block-title {
  border-color: #eee;
}
.contacts-index-index .col-left .block,
.contacts-index-index .col-right .block {
  margin-bottom: 10px;
}
.contacts-index-index .col-left .block .block-title,
.contacts-index-index .col-right .block .block-title {
  font-size: 18px;
  margin: 0;
  padding: 18px 15px 0;
  text-align: left;
  text-transform: none;
  border-bottom: 0;
}
.contacts-index-index .col-left .block .block-title strong,
.contacts-index-index .col-right .block .block-title strong {
  margin: 0;
}
.contacts-index-index .col-right .table {
  margin-bottom: 0;
}
.contacts-index-index .col-right .table th,
.contacts-index-index .col-right .table td {
  padding: 12px 8px;
}
.contacts-index-index .col-main .span8 {
  margin-left: 10px;
  box-sizing: border-box;
}
.contacts-index-index .col-main .span8.col-left {
  margin-left: 0;
}
.contacts-index-index .col-main .contact-form {
  background-color: #f5f5f5;
  border: 0;
  padding-bottom: 15px;
}
.contacts-index-index .col-main .contact-form input,
.contacts-index-index .col-main .contact-form textarea {
  box-shadow: none;
  width: 266px;
  border: 1px solid #ccc;
}
.contacts-index-index .col-main .contact-form input.validation-failed,
.contacts-index-index .col-main .contact-form textarea.validation-failed {
  border-color: #b94a48;
}
.contacts-index-index .col-main .contact-form input {
  height: 20px;
}
.contacts-index-index .col-main .contact-form .validation-advice {
  color: #b94a48;
}
.contacts-index-index .table colgroup + thead tr:first-child th,
.contacts-index-index .table thead:first-child tr:first-child th {
  font-size: 18px;
  padding-top: 22px;
}
.contacts-index-index .googlemap {
  border: 1px solid #eee;
  box-sizing: border-box;
  width: 100%;
  height: 333px;
  margin-bottom: 0;
}
.contacts-index-index .googlemap #map_canvas {
  width: 100%;
  height: 100%;
}
.contact-form .page-title {
  margin: 0;
  padding: 18px 0 0;
  text-align: left;
  text-transform: none;
}
.contact-form .page-title h3 {
  font-size: 18px;
  margin: 0;
}
.contact-form .custom-button {
  line-height: 18px;
  width: 100%;
}
.contact-form .form-list li.fields .field {
  margin-bottom: 8px;
}
.contact-form .form-list label {
  margin-bottom: 0;
}
.contact-form .form-list label.required {
  font-weight: normal;
}
.contact-form .form-list label.required em {
  position: relative;
  float: none;
  right: auto;
}
.nav-tabs.nav-stacked > li:first-child > a,
.nav-tabs.nav-stacked > li:last-child > a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.nav-tabs.nav-stacked > li a {
  background: white;
}
.nav-tabs.nav-stacked > li a:hover {
  background: #eee;
}
.nav-tabs.nav-stacked > li.active a,
.nav-tabs.nav-stacked > li.active a:hover {
  background: #f5f5f5;
}
.sidebar-nav {
  margin-bottom: 0;
}
.sidebar-nav .dropdown-toggle {
  display: block;
  padding: 0 40px 0 20px;
  height: 40px;
  line-height: 40px;
  background: #f4f4f4;
  border: 1px solid #dbdbdb;
  font-weight: bold;
  font-size: 13px;
  color: #333;
  position: relative;
}
.sidebar-nav .dropdown-toggle i {
  position: absolute;
  right: 20px;
  font-size: 1.5em;
  line-height: 40px;
  color: #999;
  font-size: 14px;
}
.sidebar-nav .dropdown-backdrop {
  display: none;
}
.sidebar-nav .dropdown-content {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  left: 0;
  z-index: 1;
}
.sidebar-nav .dropdown-content:before {
  display: none;
}
.sidebar-nav .dropdown.open .dropdown-toggle,
.sidebar-nav .dropdown-toggle:hover {
  color: #333;
  background: #eee;
  border: 1px solid #dbdbdb;
}
.sidebar-nav .dropdown.open .dropdown-toggle .icon-angle-down,
.sidebar-nav .dropdown-toggle:hover .icon-angle-down {
  color: #333;
}
.data-table thead,
.data-table tbody {
  border-bottom-color: #eee !important;
}
.data-table thead th,
.data-table thead td,
.data-table tbody th,
.data-table tbody td {
  border-top: 1px solid #eee;
}
.data-table tr td .price-box span {
  display: inline-block;
}
.customer-account .col-main input,
.customer-account .col-main textarea,
.customer-account-login .col-main input,
.customer-account-login .col-main textarea,
.customer-account-forgotpassword .col-main input,
.customer-account-forgotpassword .col-main textarea,
.customer-account-create .col-main input,
.customer-account-create .col-main textarea {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.customer-account.customer-address-index .title-buttons {
  border-bottom: 0;
}
.customer-account .my-account .form-list li.wide .input-box.customer-dob input {
  width: 50px !important;
}
.customer-account.sales-order-history .data-table thead th,
.customer-account.sales-order-history .data-table tbody td,
.customer-account.review-customer-index .data-table thead th,
.customer-account.review-customer-index .data-table tbody td,
.customer-account .box-recent .data-table thead th,
.customer-account .box-recent .data-table tbody td {
  min-width: 90px;
}
.customer-account.sales-order-history .data-table td.a-right .btn.dropdown-toggle,
.customer-account.review-customer-index .data-table td.a-right .btn.dropdown-toggle,
.customer-account .box-recent .data-table td.a-right .btn.dropdown-toggle {
  float: right;
}
.customer-account.sales-order-history .data-table td .product-name,
.customer-account.review-customer-index .data-table td .product-name,
.customer-account .box-recent .data-table td .product-name {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
}
.customer-account.review-customer-index .data-table thead th:first-child,
.customer-account.review-customer-index .data-table tbody td:first-child {
  min-width: 70px;
}
.customer-account .box-reviews .item .product-name {
  margin-bottom: 0;
}
.customer-account .box-reviews .item .number {
  display: none;
}
.customer-account .box-reviews .item .ratings strong {
  float: left;
  margin-right: 8px;
}
.customer-account .box-reviews .item .ratings .rating-box {
  float: none;
}
.customer-account .my-wishlist .data-table th:first-child {
  width: 90px;
}
.customer-account .my-wishlist .data-table textarea {
  width: 100%;
  height: 64px;
  box-sizing: border-box;
  margin: 0;
}
.customer-account .my-wishlist .data-table th.a-center,
.customer-account .my-wishlist .data-table td.a-center {
  text-align: left;
  vertical-align: top;
}
.customer-account .my-wishlist .data-table td {
  vertical-align: middle;
}
.customer-account .my-wishlist .data-table td.form-inline {
  width: 200px;
  vertical-align: bottom;
}
.customer-account .my-wishlist .data-table td.form-inline .qty {
  float: left;
  width: 40px;
}
.customer-account .my-wishlist .data-table td.form-inline .btn-cart {
  margin-top: 0;
}
.footer .footer-social {
  margin-top: 15px;
}
.checkout-onepage-success .main-container .widget-checkout-upsells {
  margin-top: 10px;
}
.checkout-onepage-success .main-container .widget-checkout-upsells .upsell-slider .upsell-product {
  margin-right: 20px;
  box-sizing: border-box;
  margin-left: 20px;
  text-align: center;
}
.checkout-onepage-success .main-container .widget-checkout-upsells .upsell-slider .slick-prev,
.checkout-onepage-success .main-container .widget-checkout-upsells .upsell-slider .slick-next {
  width: 32px;
  height: 32px;
  top: -46px;
}
.checkout-onepage-success .main-container .widget-checkout-upsells .upsell-slider .slick-prev:before,
.checkout-onepage-success .main-container .widget-checkout-upsells .upsell-slider .slick-next:before {
  color: #555;
}
.checkout-onepage-success .main-container .widget-checkout-upsells .upsell-slider .slick-prev:hover:before,
.checkout-onepage-success .main-container .widget-checkout-upsells .upsell-slider .slick-next:hover:before {
  color: #222;
}
.checkout-onepage-success .main-container .widget-checkout-upsells .upsell-slider .slick-prev {
  right: 32px;
}
.checkout-onepage-success .main-container .widget-checkout-upsells .product-image-wrapper {
  height: auto !important;
  margin-bottom: 20px;
}
.checkout-onepage-success .main-container .checkout-onepage-success--left {
  padding-right: 20px;
  box-sizing: border-box;
}
.checkout-onepage-success .main-container .checkout-onepage-success--left .widget-block {
  width: 610px;
}
.checkout-onepage-success .main-container .checkout-onepage-success--right {
  margin-left: 0;
}
.checkout-onepage-success .main-container .checkout-onepage-success--right .widget-block {
  width: 346px;
}
.checkout-onepage-success .main-container .widget-techtwo-checkout-comment .textarea {
  box-sizing: border-box;
}
.facebook-likebox-sm,
.facebook-likebox-lg {
  display: none;
}
.facebook-likebox-md {
  display: block;
}
@media (max-width: 1017px) {
  .form-list .input-text {
    width: 200px;
  }
  .productquestion-index-index .request-form-list,
  .salesofferquestion-index-index .request-form-list {
    margin-left: 0;
  }
  .productquestion-index-index .request-form-list textarea#comment,
  .salesofferquestion-index-index .request-form-list textarea#comment {
    width: 310px;
  }
  .productquestion-index-index .product-info,
  .salesofferquestion-index-index .product-info {
    width: 328px;
  }
  .productquestion-index-index .product-attributes,
  .salesofferquestion-index-index .product-attributes {
    margin-left: 0;
  }
  #header .logo {
    margin: 20px 0 0 10px;
  }
  .banner-container .bannercol {
    width: 100%;
  }
  .banner-container .sidebar {
    display: block;
    width: 100%;
    margin-left: 0;
  }
  .block-usp ul {
    *zoom: 1;
  }
  .block-usp ul:before,
  .block-usp ul:after {
    display: table;
    content: "";
  }
  .block-usp ul:after {
    clear: both;
  }
  .block-usp ul li {
    width: 239px;
    list-style: none;
    float: left;
    padding: 10px 5px;
    box-sizing: border-box;
  }
  .block-usp ul li:before {
    border: none;
    background: none;
    margin: 0;
    display: inline;
  }
  .block-usp ul li.first {
    padding-left: 0;
    clear: left;
  }
  .block-usp ul li.last {
    padding-right: 0;
  }
  .block-usp strong {
    border: none;
    padding: 0 0 0 20px;
    background-position: 0;
  }
  .top-cart {
    float: right;
    margin-top: 15px;
    margin-left: 0;
    width: 80px;
  }
  .top-cart .dropdown-trigger:after {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #202020;
    content: '';
    display: block;
    float: right;
    margin-right: 10px;
    margin-top: 25px;
  }
  .top-cart .dropdown-content {
    padding: 20px;
  }
  .top-cart .dropdown-content:before {
    right: 9px;
    margin-right: 0;
  }
  .top-cart .drop {
    left: auto !important;
    right: 0 !important;
    width: 260px;
    top: 55px !important;
  }
  .top-cart .drop .arrow.up span {
    left: auto;
    right: 45px;
  }
  .top-cart .drop .mini-products-list .item .product-details {
    width: 180px;
  }
  .top-cart .drop.has-items .block-subtitle {
    font-size: 15px;
  }
  .top-cart .block-cart {
    background-position: 17px 17px;
  }
  .top-cart .block-cart.empty .drop {
    padding-top: 20px;
    top: 55px !important;
  }
  .top-cart .block-cart .block-title,
  .top-cart .block-cart .summary,
  .top-cart .block-cart .actions,
  .top-cart .block-cart .empty {
    display: none;
  }
  .top-cart .cart-qty {
    top: 2px;
    left: auto;
    right: 24px;
  }
  #carrouseltabs .tab-content .products-grid {
    margin-left: -18px;
  }
  #carrouseltabs .tab-content .products-grid li {
    margin: 0 0px 18px 18px;
    width: 153px;
  }
  #carrouseltabs .tab-content .products-grid li.first {
    clear: left;
  }
  .quick-access {
    min-height: 81px;
  }
  .quick-access .form-search {
    margin: 0;
  }
  .quick-access .top-links .nav {
    height: auto;
  }
  .quick-access .select-language + .top-links {
    max-width: none;
  }
  .search-mini-form {
    display: none;
  }
  .navbar .gan-plain-full-width .gan-plain {
    float: inherit;
    padding-left: inherit !important;
    width: inherit;
  }
  .navbar-home-icon .icon-home {
    display: none;
  }
  .navbar-home-icon .label-home {
    display: block;
  }
  .navbar .navbar-inner {
    min-height: 40px;
  }
  .navbar .navbar-inner .search-mini-form {
    display: block;
    position: absolute;
    margin: 0;
    top: 6px;
    right: 20px;
  }
  .navbar .navbar-inner .search-mini-form .form-search {
    margin: 0;
  }
  .navbar .navbar-inner .search-mini-form .form-search input {
    width: 304px;
    height: 21px;
    padding: 4px 8px;
  }
  .navbar .navbar-inner .gan-top {
    position: relative;
  }
  .navbar .navbar-inner .dropdown-trigger {
    background: #cc9966;
    padding: 11px 46px 11px 20px;
    line-height: 19px;
    display: inline-block;
    font-weight: bold;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
  }
  .navbar .navbar-inner .dropdown-trigger:before {
    font-family: FontAwesome;
    content: "\f0c9";
    margin-right: 10px;
    font-size: 15px;
  }
  .navbar .navbar-inner .dropdown-trigger.active {
    background: #d0a171;
  }
  .navbar .navbar-inner .nav {
    display: none;
    position: absolute;
    z-index: 110;
    float: none;
    margin: 0;
    padding: 10px 0;
    background: #d0a171;
  }
  .navbar .navbar-inner .nav li {
    float: none;
  }
  .navbar .navbar-inner .nav li.level-top {
    border: none;
    position: static;
  }
  .navbar .navbar-inner .nav li.over a,
  .navbar .navbar-inner .nav li a {
    text-transform: none;
    padding: 10px 40px 10px 20px;
    line-height: 14px;
    color: white;
    background: #d0a171;
  }
  .navbar .navbar-inner .nav li.over a:hover,
  .navbar .navbar-inner .nav li.over a.over,
  .navbar .navbar-inner .nav li a:hover,
  .navbar .navbar-inner .nav li a.over {
    color: white;
    background: #c9945e;
  }
  .navbar .navbar-inner .nav li.has-children > a {
    position: relative;
  }
  .navbar .navbar-inner .nav li.has-children > a:before {
    font-family: FontAwesome;
    content: "\f054";
    font-size: 8px;
    background: none !important;
    line-height: 36px;
    position: absolute;
    top: 0;
    color: white;
    right: 5px;
    height: 26px;
    width: 10px;
  }
  .navbar .navbar-inner .gan-plain.shown-sub {
    position: absolute;
    top: 0;
    background: #d0a171;
    border: none;
    padding: 0;
    min-width: 185px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    color: ;
  }
  .navbar .navbar-inner .gan-plain.shown-sub ul {
    padding-top: 10px;
    position: static;
    top: 0;
  }
  .navbar .navbar-inner .gan-plain.shown-sub ul.level-2 li.has-children > a:before {
    content: "";
  }
  .navbar .navbar-inner .gan-plain.shown-sub ul li {
    position: static;
  }
  .navbar .navbar-inner .gan-plain.shown-sub ul li.gan-plain-item-bold {
    position: static;
  }
  .navbar .navbar-inner .gan-plain.shown-sub ul li.gan-plain-item-bold .gan-plain-item {
    background: #d0a171;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 10px 0 0;
    width: 185px;
  }
  .navbar .navbar-inner .gan-plain.shown-sub ul li.gan-plain-item-bold.has-children > a:before {
    font-family: FontAwesome;
    content: "\f054";
    font-size: 8px;
    background: none;
    line-height: 36px;
  }
  .navbar .navbar-inner .gan-plain.shown-sub ul li.has-children > a:before {
    font-family: FontAwesome;
    content: "\f054";
    font-size: 8px;
    background: none !important;
    line-height: 36px;
  }
  .navbar .navbar-inner .gan-plain.shown-sub ul li a {
    background: #d0a171;
    color: white;
    padding: 10px 10px 10px 20px;
    line-height: 14px;
    white-space: normal;
  }
  .navbar .navbar-inner .gan-plain.shown-sub ul li.over > a {
    background: #c9945e;
  }
  .navbar .navbar-inner .gan-plain.shown-sub ul li.over > a span {
    color: white;
  }
  .quick-access {
    width: 410px;
  }
  .quick-access .quick-access-wrapper {
    border-right: 0;
  }
  .quick-access .select-language,
  .quick-access .selectbox-wrapper {
    float: right;
    margin-top: 16px;
  }
  .default-dropdown .dropdown-toggle {
    background: white;
    border: 1px solid transparent;
    display: block;
    padding: 15px 20px;
    position: relative;
    text-decoration: none;
  }
  .default-dropdown .dropdown-toggle:hover {
    border-color: #ddd;
    z-index: 101;
  }
  .default-dropdown .dropdown-toggle.active {
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    z-index: 101;
  }
  .default-dropdown .dropdown-content,
  .default-dropdown .selectbox-items {
    border: 1px solid #ddd;
    background: white;
    border-radius: 0;
    right: 0;
    padding: 10px 0;
    margin: 0;
    margin-top: -1px;
    z-index: 100;
  }
  .default-dropdown .dropdown-content:before,
  .default-dropdown .selectbox-items:before {
    display: none;
  }
  .default-dropdown .dropdown-content li,
  .default-dropdown .selectbox-items li {
    border: none;
    padding: 0;
    margin: 0;
    text-indent: 0;
  }
  .default-dropdown .dropdown-content li a,
  .default-dropdown .selectbox-items li a {
    text-decoration: none;
    display: block;
    padding: 10px 20px;
  }
  .default-dropdown .dropdown-content li a:hover,
  .default-dropdown .selectbox-items li a:hover {
    background: #ddd;
  }
  .select-language.language-flags {
    margin-left: 5px;
  }
  .select-language.language-flags .language-dropdown {
    margin: 0;
  }
  .select-language.language-flags .language-dropdown.open .language-dropdown-toggle {
    background: white;
    border-color: #ddd;
    border-bottom: none;
    z-index: 101;
  }
  .select-language.language-flags .dropdown-backdrop {
    display: none;
  }
  .select-language.language-flags .caret {
    margin: 3px 0 0 5px;
  }
  .select-language.language-flags .language-dropdown-toggle {
    padding: 18px 20px;
  }
  .select-language.language-flags .dropdown-content {
    width: 118px;
  }
  .selectbox-wrapper {
    display: block;
    position: relative;
  }
  .selectbox-wrapper .selectbox-trigger:after {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #202020;
    content: '';
    display: inline-block;
    margin-bottom: 2px;
    margin-left: 5px;
  }
  .selectbox-wrapper .selectbox-items {
    display: none;
    position: absolute;
  }
  .selectbox-wrapper .selectbox-items li a {
    min-width: 110px;
  }
  .touch .default-dropdown .dropdown-toggle:hover {
    border-color: transparent;
  }
  .touch .default-dropdown .dropdown-toggle.active {
    border-color: #ddd;
  }
  .home-widget.homepage-blog {
    margin-top: 0;
  }
  .cms-home .std {
    width: 756px;
    margin-bottom: 12px;
  }
  .cms-home .widgets-content {
    width: 756px;
    clear: both;
    margin-bottom: 12px;
  }
  .cms-home .widgets-content .facebook-likebox {
    max-height: 300px;
  }
  .cms-home .widgets-content.has-likebox .likebox-wrapper {
    float: left;
    margin-left: 0;
    width: 276px;
  }
  .cms-home .widgets-content.has-blog-widget .blog-wrapper,
  .cms-home .widgets-content.has-review-widget .feedbackcompany-wrapper {
    width: 372px;
  }
  .cms-home .widgets-content.has-review-widget.has-blog-widget .feedbackcompany-wrapper {
    width: 372px;
  }
  .cms-home .widgets-content.has-review-widget.has-blog-widget .blog-wrapper {
    width: 372px;
    margin-left: 12px;
  }
  .cms-home .widgets-content.has-likebox.has-blog-widget .likebox-wrapper {
    width: 180px;
    float: right;
  }
  .cms-home .widgets-content.has-likebox.has-blog-widget .blog-wrapper {
    width: 564px;
    margin-left: 0;
  }
  .cms-home .widgets-content.has-review-widget.has-likebox .feedbackcompany-wrapper {
    width: 276px;
    margin-left: 0;
    margin-right: 20px;
  }
  .cms-home .widgets-content.has-review-widget.has-likebox .likebox-wrapper {
    float: none;
    overflow: hidden;
    width: auto;
    zoom: 1;
  }
  .cms-home .widgets-content.has-review-widget.has-likebox.has-blog-widget .feedbackcompany-wrapper {
    width: 234px;
    margin-left: 0;
  }
  .cms-home .widgets-content.has-review-widget.has-likebox.has-blog-widget .likebox-wrapper {
    width: 180px;
    float: right;
  }
  .cms-home .widgets-content.has-review-widget.has-likebox.has-blog-widget .blog-wrapper {
    width: 318px;
    margin-left: 12px;
  }
  .widget-block {
    margin-bottom: 12px;
  }
  .checkout-cart-index .sidebar,
  .checkout-cart-index .col-main,
  .checkout-cart-index .cart-wrapper {
    display: block;
    width: 100%;
    margin-left: 0;
  }
  .checkout-cart-index .show-grid {
    margin-left: 0;
  }
  .checkout-cart-index .cart .title-buttons .btn,
  .checkout-cart-index .cart .pull-right .btn {
    min-width: 170px;
  }
  .btn-group .btn {
    padding: 6px 14px;
  }
  .category-products .sort-by {
    line-height: 32px;
    margin-top: 0;
  }
  .category-products .pagination a {
    padding: 2px 18px;
  }
  .toolbar > .pull-left,
  .toolbar > .pull-right {
    max-width: 50%;
  }
  .toolbar select {
    float: left;
    margin-right: 5px;
    height: 32px;
    width: 120px;
  }
  .col-main .category-description-wrapper {
    display: none;
  }
  .description-wrapper-tablet {
    display: block;
  }
  .description-wrapper-tablet strong {
    font-size: 21px;
    margin-bottom: 18px;
    line-height: 36px;
    font-weight: 400;
    color: inherit;
    font-family: inherit;
    display: block;
    text-rendering: optimizelegibility;
  }
  .description-wrapper-tablet .category-description {
    margin-bottom: 30px;
  }
  .category-products .products-grid > li.has-colors:hover .item-wrapper {
    position: static;
    right: 0;
    top: 0;
    padding: 0;
    border: none;
    width: auto;
  }
  .category-products .products-grid > li.has-colors:hover .product-info-wrapper {
    margin-left: 0px;
    width: auto;
  }
  .category-products .products-grid > li.has-colors:hover .colors {
    display: none;
  }
  .products-grid > li {
    width: 222px;
    margin-right: 12px;
  }
  .products-grid > li.desktop-first {
    clear: none;
  }
  .products-grid > li.tablet-first {
    clear: left;
  }
  .products-grid > li.desktop-last {
    margin-right: 12px;
  }
  .products-grid > li.tablet-last {
    margin-right: 0;
  }
  .products-grid .agp-category-qty {
    height: 28px;
  }
  .products-grid .btn-cart {
    padding: 9px 14px;
  }
  .products-list.responsive-products-list .item .responsive-product-list-product {
    float: none;
    width: 100%;
    border-right: 0;
    position: relative;
  }
  .products-list.responsive-products-list .item .responsive-product-list-product .responsive-product-list-product--image img {
    max-width: 130px;
  }
  .products-list.responsive-products-list .item .responsive-product-list-product--content {
    width: 579px;
  }
  .products-list.responsive-products-list .item .responsive-product-list-shop {
    border-top: 1px solid #eee;
    float: none;
    width: auto;
    background: #f5f5f5;
    *zoom: 1;
  }
  .products-list.responsive-products-list .item .responsive-product-list-shop:before,
  .products-list.responsive-products-list .item .responsive-product-list-shop:after {
    display: table;
    content: "";
  }
  .products-list.responsive-products-list .item .responsive-product-list-shop:after {
    clear: both;
  }
  .products-list.responsive-products-list .item .responsive-product-list-shop:before {
    display: none;
  }
  .products-list.responsive-products-list .item .responsive-product-list-shop .add-to-links {
    float: left;
    margin-right: 15px;
    margin-bottom: 0;
    width: 130px;
  }
  .products-list.responsive-products-list .item .responsive-product-list-shop .responsive-product-list-shop--info {
    float: none;
    display: block;
    margin-left: 15px;
    width: auto;
    text-align: right;
  }
  .products-list.responsive-products-list .item .responsive-product-list-shop .price-box {
    float: none;
    display: inline-block;
    margin: 0;
    text-align: right;
    line-height: 30px;
  }
  .products-list.responsive-products-list .item .responsive-product-list-shop .price-box .old-price {
    line-height: 14px;
  }
  .products-list.responsive-products-list .item .responsive-product-list-shop .product-stock {
    float: left;
    display: inline-block;
  }
  .products-list.responsive-products-list .item .responsive-product-list-shop .add-to-cart-box {
    float: right;
    margin: 0;
    display: inline-block;
    margin-left: 10px;
  }
  .products-list.responsive-products-list .item .responsive-product-list-shop .add-to-cart-box .agp-category-qty {
    padding: 10px;
  }
  .products-list.responsive-products-list .item .responsive-product-list-shop .add-to-cart-box .btn-cart {
    padding: 9px 14px;
  }
  .gomage-checkout-onepage-index .glc-style-default .checkout-step.review .totals #checkout-discount-table td.total-column {
    width: 136px;
  }
  .gomage-checkout-onepage-index .glc-style-default .checkout-step.review .totals #checkout-total-table tfoot tr td.total-column {
    width: 157px;
  }
  .gomage-checkout-onepage-index .glc-style-default.show-product-image .checkout-step.review .totals #checkout-discount-table td.total-column {
    width: 117px;
  }
  .gomage-checkout-onepage-index .glc-style-default.show-product-image .checkout-step.review .totals #checkout-total-table tfoot tr td.total-column {
    width: 138px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step.review .totals #checkout-discount-table td.total-column {
    width: 114px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step.review .totals #checkout-total-table tfoot tr td.total-column {
    width: 100px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww.show-product-image .checkout-step.review .totals #checkout-discount-table td.total-column {
    width: 100px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww.show-product-image .checkout-step.review .totals #checkout-total-table tfoot tr td.total-column {
    width: 86px;
  }
  #checkout-alert-container {
    clear: both;
  }
  .gomage-checkout-onepage-index .glc input[type="text"],
  .gomage-checkout-onepage-index .glc textarea,
  .gomage-checkout-onepage-index .glc select,
  .gomage-checkout-onepage-index .glc .uneditable-input {
    height: 26px;
  }
  .gomage-checkout-onepage-index .glc .glc-title {
    min-width: 260px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .field.name-firstname,
  .gomage-checkout-onepage-index .glc .checkout-step .fields .field.name-prefix,
  .gomage-checkout-onepage-index .glc .checkout-step .fields .field.name-middlename,
  .gomage-checkout-onepage-index .glc .checkout-step .fields .field.name-lastname {
    width: auto;
    margin-right: 11px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name .name-firstname .input-box input {
    width: 140px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name .name-lastname {
    width: 140px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-prefix .name-firstname .input-box input {
    width: 200px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-prefix .name-lastname {
    clear: left;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-prefix .name-lastname .input-box input {
    width: 295px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-prefix-middlename .name-firstname {
    margin-bottom: 12px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-prefix-middlename .name-lastname .input-box input,
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-prefix-middlename .name-firstname .input-box input {
    width: 192px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-prefix-middlename .name-prefix .input-box select {
    width: 90px;
    margin-bottom: 12px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-prefix-middlename .name-middlename .input-box input {
    width: 90px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-prefix-middlename-suffix .name-prefix,
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-prefix-middlename-suffix .name-firstname,
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-prefix-middlename-suffix .middlename {
    margin-bottom: 12px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-prefix-middlename-suffix .input-box input {
    width: 141px !important;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-prefix-middlename-suffix .name-firstname .input-box input {
    width: 99px !important;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-prefix-middlename-suffix .name-suffix select {
    width: 144px !important;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-middlename .name-middlename,
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-middlename .name-firstname {
    margin-bottom: 12px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-middlename .name-middlename .input-box input {
    width: 138px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .customer-name-middlename .name-lastname .input-box input {
    width: 296px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields .field.field-region select {
    width: 200px !important;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields.customer-dob {
    width: 100%;
  }
  .gomage-checkout-onepage-index .glc .checkout-step .fields.customer-dob .field {
    width: 50%;
    float: left;
  }
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li #register-customer-password {
    clear: both;
    width: 100%;
    margin-top: 15px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li #register-customer-password input {
    width: 297px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .input-box select {
    height: 32px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list fieldset li {
    width: 50%;
    float: left;
    clear: none;
    min-height: 75px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list fieldset li.control-register {
    min-height: inherit;
  }
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .input-box input,
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .input-box select {
    width: 295px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-name-prefix-middlename .field .input-box input,
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-name-prefix-middlename .field .input-box select {
    width: 142px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-name-prefix-middlename-suffix .field .input-box input {
    width: 142px !important;
  }
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-name-prefix-middlename-suffix .field.name-middlename .input-box input,
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-name-prefix-middlename-suffix .field.name-firstname .input-box input {
    width: 94px !important;
  }
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-name input {
    width: 140px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .field-region input,
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .field-region select,
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .field-fax input,
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .field-fax select,
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .name-suffix input,
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .name-suffix select {
    width: 140px !important;
  }
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li.postcode-region div.field-region .input-box input {
    width: 200px !important;
  }
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .address-2fields .field-address,
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .address-2fields .field-address1 input {
    width: 210px !important;
  }
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .address-2fields .field-address2 {
    padding-left: 15px;
  }
  .gomage-checkout-onepage-index .glc .checkout-step ul.form-list li .customer-dob {
    width: 100%;
  }
  .gomage-checkout-onepage-index .glc.glc-style-default .checkout-step ul.form-list li .field.name-firstname,
  .gomage-checkout-onepage-index .glc.glc-style-default .checkout-step ul.form-list li .field.name-prefix,
  .gomage-checkout-onepage-index .glc.glc-style-default .checkout-step ul.form-list li .field.name-middlename,
  .gomage-checkout-onepage-index .glc.glc-style-default .checkout-step ul.form-list li .fields .field.name-lastname {
    margin-right: 15px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-default .checkout-step ul.form-list li .input-box .address-select {
    width: 300px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-default .checkout-step ul.form-list li .customer-name-middlename .field.name-firstname .input-box input,
  .gomage-checkout-onepage-index .glc.glc-style-default .checkout-step ul.form-list li .customer-name-middlename .field.name-middlename .input-box input {
    width: 140px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-default .methods .shipping-methods,
  .gomage-checkout-onepage-index .glc.glc-style-default .methods .gcheckout-extraproducts-methods,
  .gomage-checkout-onepage-index .glc.glc-style-default .methods .gcheckout-payment-methods {
    width: 370px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-default .methods .shipping-methods .input-box input,
  .gomage-checkout-onepage-index .glc.glc-style-default .methods .gcheckout-extraproducts-methods .input-box input,
  .gomage-checkout-onepage-index .glc.glc-style-default .methods .gcheckout-payment-methods .input-box input {
    width: 265px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .input-box .address-select {
    width: 272px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-prefix-middlename-suffix .field .input-box input {
    width: 130px !important;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-prefix-middlename .field .input-box input,
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-prefix-middlename .field .input-box select {
    width: 130px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name input {
    width: 119px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-prefix .name-prefix {
    margin-right: 15px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-prefix .name-prefix .input-box select {
    width: 85px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-prefix .name-lastname {
    margin-top: 10px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-prefix .name-lastname .input-box input {
    width: 270px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-prefix .name-firstname .input-box input {
    width: 170px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-middlename .field.name-firstname .input-box input,
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-middlename .field.name-middlename .input-box input {
    width: 129px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step ul.form-list li .customer-name-middlename .field.name-lastname .input-box input {
    width: 270px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step .gcheckout-payment-methods ul.form-list li .input-box input,
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step .gcheckout-payment-methods ul.form-list li .input-box select {
    width: 240px;
  }
  .gomage-checkout-onepage-index .glc .sp-methods dt {
    margin-top: 10px;
  }
  .gomage-checkout-onepage-index .glc .methods {
    background: #f6f6f6 !important;
  }
  .gomage-checkout-onepage-index .glc .methods .shipping-methods,
  .gomage-checkout-onepage-index .glc .methods .gcheckout-extraproducts-methods,
  .gomage-checkout-onepage-index .glc .methods .gcheckout-payment-methods {
    min-height: 202px;
    width: 100%;
    margin: 0;
  }
  .gomage-checkout-onepage-index .glc .methods .shipping-methods .input-box input,
  .gomage-checkout-onepage-index .glc .methods .gcheckout-extraproducts-methods .input-box input,
  .gomage-checkout-onepage-index .glc .methods .gcheckout-payment-methods .input-box input {
    width: 240px;
  }
  .gomage-checkout-onepage-index .glc .shipping-address .glc-title {
    padding-left: 0;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .review {
    width: 446px;
    margin-left: 10px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .empty-td td.empty-td,
  .gomage-checkout-onepage-index .glc.glc-style-coww #checkout-total-table tfoot tr td.empty-td {
    display: none;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step .customer-comment textarea {
    height: 6em;
    width: 436px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-default .checkout-step .customer-comment textarea {
    height: auto;
    width: 300px;
  }
  .gomage-checkout-onepage-index .glc .review,
  .gomage-checkout-onepage-index .glc .methods,
  div#gcheckout-onepage-address {
    width: 100%;
    margin: 0 0 10px;
  }
  #gcheckout-login-link {
    *zoom: 1;
  }
  #gcheckout-login-link:before,
  #gcheckout-login-link:after {
    display: table;
    content: "";
  }
  #gcheckout-login-link:after {
    clear: both;
  }
  #gcheckout-login-link h2,
  #gcheckout-login-link a {
    display: inline-block;
    width: 50%;
    float: left;
    line-height: 36px;
  }
  #gcheckout-login-link a {
    text-align: right;
    color: #2393BF;
    font-size: 14px;
  }
  .carrouseltabs-widget .caroussel_slider_wrapper {
    width: 756px;
  }
  #carrouseltabs_container .caroussel_slider_wrapper {
    width: 756px;
  }
  #carrouseltabs_container .caroussel_slider_wrapper .slick-prev,
  #carrouseltabs_container .caroussel_slider_wrapper .slick-next {
    width: 60px;
    height: 40px;
  }
  #carrouseltabs_container .caroussel_slider_wrapper .slick-prev:before,
  #carrouseltabs_container .caroussel_slider_wrapper .slick-next:before {
    font-size: 30px;
  }
  #carrouseltabs_container .caroussel_slider_wrapper .slick-prev {
    right: 61px;
  }
  #carrouseltabs_container .caroussel_slider_wrapper .slick-next {
    right: 0;
  }
  body.page-popup #product_comparison.data-table .custom-button {
    max-width: 176px;
  }
  .gomage-checkout-onepage-index .lv_window.lv_window_light {
    max-width: 757px;
    min-width: 757px;
    left: 50% !important;
    margin-left: -411px;
  }
  .gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content_iframe {
    width: 676px !important;
  }
  .gomage-checkout-onepage-index .lv_window.lv_window_light .lv_skin {
    max-width: 757px;
  }
  .gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content,
  .gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content_wrapper {
    max-width: 676px;
  }
  .gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content_wrapper {
    background: transparent;
  }
  .gomage-checkout-onepage-index .lv_window.lv_window_light #terms-block {
    max-width: 655px;
  }
  .catalog-product-view .sidebar .block-usp {
    display: none;
  }
  .product-view {
    width: 100%;
    margin-left: 0;
  }
  .product-view form {
    width: 100%;
  }
  .product-view .product-shop-wrapper {
    margin: 0;
  }
  .product-view .product-essential {
    margin-left: 0;
  }
  .product-view .product-shop {
    width: 419px;
  }
  .product-view .add-to-cart .add-to-cart-x {
    width: 60px;
  }
  .product-view .tabbable {
    margin-right: 0;
  }
  .product-view .block-related ol li.item {
    border-bottom: 0;
  }
  .product-view .block-related .block-subtitle {
    margin-bottom: 21px;
  }
  .product-view .block-related-fullwidth .block-title {
    width: 100%;
  }
  .product-view .block-related-fullwidth .span8 {
    width: 419px;
  }
  .product-view .product-downloads ul li {
    margin-bottom: 5px;
  }
  .product-view .block-title .back-top {
    padding-left: 10px;
  }
  .product-view .add-to-box-links a,
  .product-view .rating-links a,
  .product-view .listing-product-block-index a,
  .product-view .product-downloads ul li a {
    display: inline-block;
    padding: 4px 0;
    font-size: 1.1em;
  }
  .product-view .sidebar {
    margin-top: 18px;
  }
  .product-view .sidebar .block {
    box-sizing: border-box;
  }
  .product-view .block-wishlist .mini-products-list {
    *zoom: 1;
  }
  .product-view .block-wishlist .mini-products-list:before,
  .product-view .block-wishlist .mini-products-list:after {
    display: table;
    content: "";
  }
  .product-view .block-wishlist .mini-products-list:after {
    clear: both;
  }
  .product-view .block-wishlist .item {
    width: 220px;
    float: left;
    margin-right: 20px;
    border-bottom: none;
  }
  .catalog-product-view .sidebar {
    width: 100%;
    margin-left: 0;
  }
  .catalog-product-view .list {
    width: 100%;
  }
  .catalog-product-view .list .tab-content .span8 {
    width: 353px;
  }
  .catalog-product-view .list .tab-content .span16 {
    width: 100%;
  }
  .block-related ol li {
    float: left;
    width: 50%;
  }
  .block-related ol li .product {
    float: left;
  }
  .box-collateral .products-grid.small > li {
    width: 148px;
  }
  .product-layout-list .box-collateral .products-grid.small > li {
    width: 158px;
  }
  .product-layout-list .block-product-view .description {
    width: 756px;
  }
  .modal-procart {
    width: 750px;
    padding: 30px 25px;
    margin-left: -375px;
  }
  .modal-procart .modal-header .close {
    right: 26px;
  }
  .contacts-index-index .col-main .span8.col-left {
    width: 100%;
  }
  .contacts-index-index .col-left .block {
    margin-bottom: 12px;
    width: 372px;
    box-sizing: border-box;
    display: inline-block;
  }
  .contacts-index-index .customer-service,
  .contacts-index-index .col-main .span8.contact-form {
    margin-left: 0;
    float: left;
  }
  .contacts-index-index .company-information,
  .contacts-index-index .col-right {
    margin-left: 12px;
  }
  .contacts-index-index .contact-form,
  .contacts-index-index .col-right {
    width: 372px;
  }
  .contacts-index-index .col-main .contact-form input,
  .contacts-index-index .col-main .contact-form textarea {
    width: 312px;
  }
  .col3-layout .col-main {
    width: 564px;
  }
  .col3-layout .col-left {
    width: 756px;
  }
  .col2-right-layout .col-right,
  .col2-right-layout .col-left,
  .col2-left-layout .col-right,
  .col2-left-layout .col-left {
    float: none;
    width: auto;
    clear: both;
    padding-right: 0;
  }
  .col2-right-layout .col-right br.clear,
  .col2-right-layout .col-left br.clear,
  .col2-left-layout .col-right br.clear,
  .col2-left-layout .col-left br.clear {
    display: none;
  }
  .col2-right-layout .col-main,
  .col2-left-layout .col-main {
    width: 756px;
  }
  .col2-right-layout .category-products .toolbar-container .toolbar,
  .col2-left-layout .category-products .toolbar-container .toolbar {
    padding: 10px 0;
  }
  .sidebar-nav {
    margin-bottom: 15px;
  }
  .sidebar-nav .dropdown {
    z-index: 90;
  }
  .sidebar-nav .dropdown-content {
    display: none;
    position: absolute;
    background: transparent;
  }
  .sidebar-nav .dropdown-content .nav-title,
  .sidebar-nav .dropdown-content .divider {
    display: none;
  }
  .sidebar-nav .nav-tabs.nav-stacked > li.first > a {
    border-top: 0;
  }
  .sidebar-blocks-wrapper {
    display: none;
  }
  .customer-account-login .col2-set .col-1,
  .customer-account-login .col2-set .col-2 {
    width: 100%;
  }
  .customer-account-login .new-users .content,
  .customer-account-login .registered-users .content {
    min-height: 0;
  }
  .customer-account-create .col1-layout .form-list .field {
    float: none;
  }
  .customer-account .col-main .title-buttons,
  .customer-account-login .col-main .title-buttons,
  .customer-account-forgotpassword .col-main .title-buttons,
  .customer-account-create .col-main .title-buttons {
    border-bottom: 0;
  }
  .sidebar-nav .nav-tabs.nav-stacked {
    box-shadow: 0 5px 15px #aaa;
  }
  .sidebar-nav .nav-tabs.nav-stacked > li a {
    padding-left: 20px;
    background: #f7f7f7;
    border: 1px solid #e4e4e4;
  }
  .sidebar-nav .nav-tabs.nav-stacked > li a:hover {
    background: #eee;
  }
  .sidebar-nav .nav-tabs.nav-stacked > li a:before {
    content: "\f105";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    right: 25px;
    position: absolute;
    color: #aaa;
  }
  .gan-sidebar-nav .btn-clear-filters,
  .block-layered-nav .btn-clear-filters {
    float: right;
    margin-top: 6px;
    margin-right: 28px;
    display: none;
  }
  .gan-sidebar-nav.open .btn-clear-filters,
  .block-layered-nav.open .btn-clear-filters {
    display: block;
  }
  .gan-sidebar-nav #narrow-by-list ol.no-titles li,
  .block-layered-nav #narrow-by-list ol.no-titles li {
    min-width: 0;
  }
  .gan-sidebar-nav #narrow-by-list ol,
  .block-layered-nav #narrow-by-list ol {
    margin-left: -5px;
    margin-right: -10px;
  }
  .gan-sidebar-nav #narrow-by-list ol li,
  .block-layered-nav #narrow-by-list ol li {
    line-height: 30px;
    padding-left: 0;
    margin: 5px 0 5px 5px;
    border-bottom: 0;
    min-width: 170px;
  }
  .gan-sidebar-nav #narrow-by-list ol li a,
  .block-layered-nav #narrow-by-list ol li a {
    line-height: 18px;
    margin-left: 0;
    padding: 6px 9px;
  }
  .gan-sidebar-nav #narrow-by-list ol li .disabled,
  .block-layered-nav #narrow-by-list ol li .disabled {
    background: #eee;
    padding: 0 10px;
    border: 1px solid #ccc;
    display: inline-block;
    min-width: 148px;
  }
  .gan-sidebar-nav #narrow-by-list .filter-container-style-responsive li,
  .block-layered-nav #narrow-by-list .filter-container-style-responsive li {
    float: left;
    margin: 5px;
  }
  .gan-sidebar-nav #narrow-by-list .filter-container-style-responsive li a,
  .block-layered-nav #narrow-by-list .filter-container-style-responsive li a {
    border: 1px solid #ccc;
    background-color: white;
  }
  .gan-sidebar-nav #narrow-by-list .filter-container-style-responsive li:hover a,
  .gan-sidebar-nav #narrow-by-list .filter-container-style-responsive li a:hover,
  .block-layered-nav #narrow-by-list .filter-container-style-responsive li:hover a,
  .block-layered-nav #narrow-by-list .filter-container-style-responsive li a:hover {
    background-color: #3b3b3b;
    border: 1px solid #3b3b3b;
  }
  .gan-sidebar-nav #narrow-by-list .filter-container-style-responsive li a.active,
  .block-layered-nav #narrow-by-list .filter-container-style-responsive li a.active {
    background-color: #3b3b3b;
    border: 1px solid #3b3b3b;
    box-sizing: border-box;
  }
  .gan-sidebar-nav #narrow-by-list ol.gan-list-checkbox li,
  .block-layered-nav #narrow-by-list ol.gan-list-checkbox li {
    margin-left: 0;
  }
  .gan-sidebar-nav #narrow-by-list ol.gan-list-checkbox li a,
  .gan-sidebar-nav #narrow-by-list ol.gan-list-checkbox li:hover a,
  .gan-sidebar-nav #narrow-by-list ol.gan-list-checkbox li a.active,
  .block-layered-nav #narrow-by-list ol.gan-list-checkbox li a,
  .block-layered-nav #narrow-by-list ol.gan-list-checkbox li:hover a,
  .block-layered-nav #narrow-by-list ol.gan-list-checkbox li a.active {
    border: 1px solid transparent;
    background-color: #eee;
    padding-left: 22px;
    background-position: 0 8px;
  }
  .block-non-layered-nav ol li a {
    padding: 10px 20px;
  }
  .block-non-layered-nav li {
    background: #eee;
    border-bottom: none;
  }
  .block-non-layered-nav li a {
    display: block;
    border-bottom: 1px solid #e4e4e4;
  }
  .block-non-layered-nav li a:hover {
    background-color: #3B3B3B;
    color: #FFFFFF;
  }
  .block-non-layered-nav li.last a {
    border-bottom: none;
  }
  .block-non-layered-nav dl#narrow-by-list2 {
    padding-top: 0;
  }
  .block-non-layered-nav dt {
    padding: 10px 20px;
    font-weight: normal;
    text-transform: uppercase;
    margin: 0;
    cursor: default;
    display: none;
  }
  .block-non-layered-nav dd {
    margin-bottom: 0;
  }
  .block-non-layered-nav dd ol {
    padding: 0;
  }
  .block-non-layered-nav dd ol li {
    padding: 0;
  }
  .col-left .sidebar-navigation-wrapper .mCSB_inside > .mCSB_container,
  .col-right .sidebar-navigation-wrapper .mCSB_inside > .mCSB_container {
    margin: 0;
  }
  .col-left .sidebar-navigation-wrapper form#price-filter-form .noUi-target,
  .col-right .sidebar-navigation-wrapper form#price-filter-form .noUi-target {
    width: 468px;
    float: left;
  }
  .col-left .sidebar-navigation-wrapper form#price-filter-form .slider-input-wrapper,
  .col-right .sidebar-navigation-wrapper form#price-filter-form .slider-input-wrapper {
    float: right;
    clear: none;
    margin-top: 8px;
  }
  .col-left .sidebar-navigation-wrapper form#price-filter-form input,
  .col-right .sidebar-navigation-wrapper form#price-filter-form input {
    border: 1px solid #DEDEDE;
  }
  .col-left .sidebar-navigation-wrapper .block,
  .col-right .sidebar-navigation-wrapper .block {
    border: 0;
  }
  .col-left .sidebar-navigation-wrapper .block .block-title,
  .col-right .sidebar-navigation-wrapper .block .block-title {
    cursor: pointer;
    position: relative;
    text-align: left;
    text-transform: none;
    line-height: 40px;
    padding: 0 40px 0 20px;
    margin: 0;
    font-weight: bold;
    font-size: 13px;
    color: #333;
    border: 1px solid #dbdbdb;
    background: #f4f4f4;
  }
  .col-left .sidebar-navigation-wrapper .block .block-title:hover,
  .col-right .sidebar-navigation-wrapper .block .block-title:hover {
    background: #eee;
  }
  .col-left .sidebar-navigation-wrapper .block .block-title:before,
  .col-right .sidebar-navigation-wrapper .block .block-title:before {
    color: #999;
    position: absolute;
    content: "\f107";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    right: 20px;
    transition: all 0.2s;
  }
  .col-left .sidebar-navigation-wrapper .block .block-content,
  .col-right .sidebar-navigation-wrapper .block .block-content {
    display: none;
    border: 1px solid #e4e4e4;
    border-top: 0;
    padding: 0;
  }
  .col-left .sidebar-navigation-wrapper .block .block-content dl,
  .col-left .sidebar-navigation-wrapper .block .block-content #narrow-by-list dt,
  .col-right .sidebar-navigation-wrapper .block .block-content dl,
  .col-right .sidebar-navigation-wrapper .block .block-content #narrow-by-list dt {
    margin: 0;
  }
  .col-left .sidebar-navigation-wrapper .block .block-content dl,
  .col-right .sidebar-navigation-wrapper .block .block-content dl {
    padding-top: 12px;
  }
  .col-left .sidebar-navigation-wrapper .block .block-content #narrow-by-list dt.last.collapsed,
  .col-right .sidebar-navigation-wrapper .block .block-content #narrow-by-list dt.last.collapsed {
    margin-bottom: 18px;
  }
  .col-left .sidebar-navigation-wrapper .block .block-content .actions,
  .col-right .sidebar-navigation-wrapper .block .block-content .actions {
    padding-top: 20px;
    text-align: left;
  }
  .col-left .sidebar-navigation-wrapper .block .block-content .actions button.button,
  .col-right .sidebar-navigation-wrapper .block .block-content .actions button.button {
    width: auto;
  }
  .col-left .sidebar-navigation-wrapper .block.open .block-title,
  .col-right .sidebar-navigation-wrapper .block.open .block-title {
    background: #eee;
  }
  .col-left .sidebar-navigation-wrapper .block.open .block-title:before,
  .col-right .sidebar-navigation-wrapper .block.open .block-title:before {
    transform: rotate(180deg);
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-title,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-title,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-title,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-title {
    padding: 0 20px;
    text-transform: uppercase;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-title .icon,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-title .icon,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-title .icon,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-title .icon {
    font-size: 14px;
    margin-right: 6px;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content {
    padding: 0;
    border-bottom: 0;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content dl,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content dl,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content dl,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content dl {
    padding-top: 0;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd {
    margin: 0;
    *zoom: 1;
    padding: 10px 15px;
    border-bottom: 1px solid #e4e4e4;
    background: #eee;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd:before,
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd:after,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd:before,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd:after,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd:before,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd:after,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd:before,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd:after {
    display: table;
    content: "";
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd:after,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd:after,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd:after,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd:after {
    clear: both;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd ol,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd ol,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd ol,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd ol {
    margin: 0;
    padding: 0;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category {
    border-bottom: 0;
    padding: 0;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li {
    margin: 0;
    background-color: #eee;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li a,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li a,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li a,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li a {
    padding: 10px 20px;
    border-bottom: 1px solid #e4e4e4;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li.level1 .vertnav-cat a,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li.level1 .vertnav-cat a,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li.level1 .vertnav-cat a,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li.level1 .vertnav-cat a {
    padding-left: 40px;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li.level2 .vertnav-cat a,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li.level2 .vertnav-cat a,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li.level2 .vertnav-cat a,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dd#advancednavigation-filter-content-category ol li.level2 .vertnav-cat a {
    padding-left: 60px;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dt,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dt,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dt,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dt {
    padding: 10px 20px;
    font-weight: normal;
    border-bottom: 1px solid transparent;
    background: #eee;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dt.collapsed,
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dt.navigation-filter-trigger-category,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dt.collapsed,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dt.navigation-filter-trigger-category,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dt.collapsed,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dt.navigation-filter-trigger-category,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dt.collapsed,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dt.navigation-filter-trigger-category {
    border-bottom: 1px solid #e4e4e4;
    background: #f5f5f5;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dt.collapsed:hover,
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dt.navigation-filter-trigger-category:hover,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dt.collapsed:hover,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dt.navigation-filter-trigger-category:hover,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dt.collapsed:hover,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dt.navigation-filter-trigger-category:hover,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dt.collapsed:hover,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dt.navigation-filter-trigger-category:hover {
    background: #f1f1f1;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dt.last.collapsed,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dt.last.collapsed,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dt.last.collapsed,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dt.last.collapsed {
    margin-bottom: 0;
  }
  .col-left .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dt:before,
  .col-left .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dt:before,
  .col-right .sidebar-navigation-wrapper .block.gan-sidebar-nav .block-content #narrow-by-list dt:before,
  .col-right .sidebar-navigation-wrapper .block.block-layered-nav .block-content #narrow-by-list dt:before {
    width: 9px;
    color: #555;
    font-size: 14px;
    margin-top: 1px;
  }
  .bottombar.block-compare ol li.item {
    width: 111px;
    height: auto;
  }
  .bottombar.block-compare ol li.item .product-image {
    margin-bottom: 5px;
    display: block;
    text-align: center;
    float: none;
  }
  .bottombar.block-compare ol li.item .product-name {
    text-align: center;
  }
  .bottombar.block-compare ol li.item.placeholder p {
    margin: 5px 0;
  }
  .compare-wrapper .price-attribute-group-row {
    text-align: left;
    height: auto;
  }
  .compare-wrapper .price-attribute-group-row .price-box {
    float: none;
    clear: both;
  }
  .compare-wrapper .price-attribute-group-row .order-btn-container {
    float: none;
  }
  .checkout-onepage-success .main-container .checkout-onepage-success--left .widget-block {
    width: 455px;
  }
  .checkout-onepage-success .main-container .checkout-onepage-success--right .widget-block {
    width: 258px;
  }
  .facebook-likebox-md,
  .facebook-likebox-lg {
    display: none;
  }
  .facebook-likebox-sm {
    display: block;
  }
}
@media (min-width: 1200px) {
  .form-list .input-text {
    width: 350px;
  }
  .productquestion-index-index .request-form-list,
  .salesofferquestion-index-index .request-form-list {
    margin-left: 0;
  }
  .productquestion-index-index .request-form-list textarea#comment,
  .salesofferquestion-index-index .request-form-list textarea#comment {
    width: 505px;
  }
  .productquestion-index-index form .product-info,
  .productquestion-index-index #productquestionForm .product-info,
  .salesofferquestion-index-index form .product-info,
  .salesofferquestion-index-index #productquestionForm .product-info {
    width: 518px;
  }
  .productquestion-index-index form .product-info .product-img-box,
  .productquestion-index-index #productquestionForm .product-info .product-img-box,
  .salesofferquestion-index-index form .product-info .product-img-box,
  .salesofferquestion-index-index #productquestionForm .product-info .product-img-box {
    float: none;
  }
  .productquestion-index-index form .product-attributes,
  .productquestion-index-index #productquestionForm .product-attributes,
  .salesofferquestion-index-index form .product-attributes,
  .salesofferquestion-index-index #productquestionForm .product-attributes {
    width: 100%;
  }
  .quick-access .select-language + .top-links {
    max-width: 380px;
  }
  #carrouseltabs .tab-content .products-grid {
    margin-left: -18px;
  }
  #carrouseltabs .tab-content .products-grid li {
    margin: 0 0px 18px 18px;
    width: 153px;
  }
  .top-cart .block-cart {
    padding-left: 14px;
    margin-left: -14px;
  }
  .top-cart .drop {
    width: 260px;
  }
  .top-cart .drop .mini-products-list .item .product-details {
    width: 180px;
  }
  .navbar .gan-plain-full-width .gan-plain {
    width: 1096px;
  }
  .product-view .product-shop {
    width: 499px;
  }
  .product-view .add-to-cart input.qty {
    width: 60px;
  }
  .product-view .add-to-cart .add-to-cart-x {
    width: 77px;
  }
  .product-view .add-to-cart button {
    width: 289px;
  }
  .product-view .tabbable .tab-pane .span8 {
    width: 396px;
  }
  .product-view .tabbable .tab-pane .span16 {
    width: 804px;
  }
  .box-collateral .products-grid.small > li {
    width: 170px;
  }
  .product-layout-list .box-collateral .products-grid.small > li {
    width: 182px;
  }
  .product-layout-list .block-product-view .description {
    width: 851px;
  }
  .widget-block {
    margin-bottom: 12px;
  }
  .sidebar-navigation-wrapper .block-layered-nav form#price-filter-form .slider-input-wrapper input {
    width: 60px;
  }
  .gomage-checkout-onepage-index .glc .review,
  .gomage-checkout-onepage-index .glc .methods {
    width: 805px;
  }
  .glc .methods .shipping-methods,
  .glc .methods .gcheckout-extraproducts-methods,
  .glc .methods .gcheckout-payment-methods {
    width: 395px;
  }
  .glc.glc-style-default .methods .shipping-methods,
  .glc.glc-style-default .methods .gcheckout-extraproducts-methods,
  .glc.glc-style-default .methods .gcheckout-payment-methods {
    width: 395px !important;
  }
  .gomage-checkout-onepage-index .glc-style-default .checkout-step.review .totals #checkout-discount-table td.total-column {
    width: 112px;
  }
  .gomage-checkout-onepage-index .glc-style-default .checkout-step.review .totals #checkout-total-table tfoot tr td.total-column {
    width: 142px;
  }
  .gomage-checkout-onepage-index .glc-style-default.show-product-image .checkout-step.review .totals #checkout-discount-table td.total-column {
    width: 97px;
  }
  .gomage-checkout-onepage-index .glc-style-default.show-product-image .checkout-step.review .totals #checkout-total-table tfoot tr td.total-column {
    width: 125px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step.review .totals #checkout-discount-table td.total-column {
    width: 132px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step.review .totals #checkout-total-table tfoot tr td.total-column {
    width: 118px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww.show-product-image .checkout-step.review .totals #checkout-discount-table td.total-column {
    width: 115px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww.show-product-image .checkout-step.review .totals #checkout-total-table tfoot tr td.total-column {
    width: 101px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .review {
    width: 525px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-coww .checkout-step .customer-comment textarea {
    height: 6em;
    width: 515px;
  }
  .gomage-checkout-onepage-index .glc.glc-style-default .checkout-step .customer-comment textarea {
    width: 320px;
  }
  .gomage-checkout-onepage-index table td.price-column,
  .gomage-checkout-onepage-index table td.total-column,
  .gomage-checkout-onepage-index #checkout-review-table-wrapper table td.price-column,
  .gomage-checkout-onepage-index #checkout-review-table-wrapper table td.total-column {
    width: 105px;
  }
  .gomage-checkout-onepage-index .show-product-image #checkout-discount-table td.total-column {
    width: 96px;
  }
  .carrouseltabs-widget .caroussel_slider_wrapper {
    width: 1140px;
  }
  #carrouseltabs_container .caroussel_slider_wrapper {
    width: 1140px;
  }
  .products-grid.colsize-3 > li {
    width: 254px;
  }
  .products-grid.colsize-4 > li {
    width: 182px;
  }
  .category-products .products-grid > li.has-colors:hover .item-wrapper {
    width: 358px;
  }
  .category-products .products-grid > li.has-colors:hover .item-wrapper .product-info-wrapper {
    float: left;
    width: 254px;
    margin-left: 19px;
  }
  .products-list.responsive-products-list .item .responsive-product-list-product--content {
    width: 405px;
  }
  .checkout-cart-index .cart .title-buttons .btn,
  .checkout-cart-index .cart .pull-right .btn {
    min-width: 180px;
  }
  .gomage-checkout-onepage-index .lv_window.lv_window_light {
    margin-left: -530px;
    max-width: 1057px;
  }
  .gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content_iframe {
    width: 920px !important;
  }
  .gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content,
  .gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content_wrapper {
    max-width: 920px;
  }
  .gomage-checkout-onepage-index .lv_window.lv_window_light #terms-block {
    max-width: 894px;
  }
  .contacts-index-index .col-main .span8 {
    margin-left: 12px;
    box-sizing: border-box;
  }
  .contacts-index-index .col-main .span8.col-left {
    margin-left: 0;
  }
  .contacts-index-index .col-main .span8.col-left .block {
    margin-bottom: 12px;
  }
  .contacts-index-index .col-main .contact-form input,
  .contacts-index-index .col-main .contact-form textarea {
    width: 313px;
  }
  .customer-account-login .col2-set .col-1,
  .customer-account-login .col2-set .col-2 {
    width: 100%;
    width: 565px;
  }
  .bottombar.block-compare ol li.item {
    width: 239px;
  }
  .checkout-onepage-success .main-container .checkout-onepage-success--left .widget-block {
    width: 700px;
  }
  .checkout-onepage-success .main-container .checkout-onepage-success--right .widget-block {
    width: 400px;
  }
  .facebook-likebox-sm,
  .facebook-likebox-md {
    display: none;
  }
  .facebook-likebox-lg {
    display: block;
  }
}
.touch ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
.touch ::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0,0,0,0.5);
  -webkit-box-shadow: 0 0 1px rgba(255,255,255,0.5);
}
.touch .top-cart .scrollable .scrollable-content {
  overflow: -moz-scrollbars-vertical !important;
  overflow-y: scroll !important;
  margin-right: 0;
  padding-right: 15px;
}
.touch .top-cart .scrollable .scrollbar-track {
  display: none !important;
}
.touch .gan-sidebar-nav #narrow-by-list ol.scrolling,
.touch .block-layered-nav #narrow-by-list ol.scrolling {
  overflow-y: auto !important;
}
.touch .gan-sidebar-nav dd .scrollbar-track,
.touch .block-layered-nav dd .scrollbar-track {
  display: none !important;
}
.touch .cart-table .discount a {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  text-align: center;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -ms-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(top,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  border-color: #fff #fff #d9d9d9;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #ddd;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
  cursor: pointer;
  *margin-left: .3em;
  text-decoration: none;
}
.touch .cart-table .discount a [class^="icon-"].icon-large,
.touch .cart-table .discount a [class*=" icon-"].icon-large {
  line-height: .9em;
}
.touch .cart-table .discount a [class^="icon-"].icon-spin,
.touch .cart-table .discount a [class*=" icon-"].icon-spin {
  display: inline-block;
}
.touch .cart-table .discount a [class^="icon-"].pull-left.icon-2x,
.touch .cart-table .discount a [class^="icon-"].pull-right.icon-2x,
.touch .cart-table .discount a [class*=" icon-"].pull-left.icon-2x,
.touch .cart-table .discount a [class*=" icon-"].pull-right.icon-2x {
  margin-top: .18em;
}
.touch .cart-table .discount a [class^="icon-"].icon-spin.icon-large,
.touch .cart-table .discount a [class*=" icon-"].icon-spin.icon-large {
  line-height: .8em;
}
.touch .cart-table .discount a:hover,
.touch .cart-table .discount a:active,
.touch .cart-table .discount a.active,
.touch .cart-table .discount a.disabled,
.touch .cart-table .discount a[disabled] {
  background-color: #fff;
}
.touch .cart-table .discount a:active,
.touch .cart-table .discount a.active {
  background-color: #e6e6e6 \9;
}
.touch .cart-table .discount a:hover,
.touch .cart-table .discount a:active,
.touch .cart-table .discount a.active,
.touch .cart-table .discount a.disabled,
.touch .cart-table .discount a[disabled] {
  background: #e6e6e6;
}
.touch .cart-table .discount a:active,
.touch .cart-table .discount a.active {
  background: #e6e6e6;
}
.touch .cart-table .discount a:first-child {
  *margin-left: 0;
}
.touch .gomage-checkout-onepage-index .lv_window.lv_window_light {
  max-width: 757px;
  min-width: 757px;
  left: 50% !important;
  margin-left: -411px;
}
.touch .gomage-checkout-onepage-index .lv_window.lv_window_light .lv_skin {
  max-width: 757px;
}
.touch .gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content,
.touch .gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content_wrapper {
  max-width: 676px;
}
.touch .gomage-checkout-onepage-index .lv_window.lv_window_light .lv_content_wrapper {
  overflow: visible;
  background: transparent;
}
.touch .gomage-checkout-onepage-index .lv_window.lv_window_light #terms-block {
  max-width: 655px;
}
@media (max-width: 1017px) {
  .navbar .gan-plain .gan-plain-items .gan-plain-item li.submenu-title {
    display: none;
  }
  body.contacts-index-index .col-main .contact-form input,
  body.contacts-index-index .col-main .contact-form textarea {
    width: 290px;
  }
  body.gomage-checkout-onepage-index .li-street {
    margin-right: 0 !important;
  }
  body .glc .address-3fields .field-address1,
  body .glc .address-3fields .field-address1 input,
  body.gomage-checkout-onepage-index .li-city input {
    width: 295px !important;
  }
  body .description-wrapper-tablet {
    display: none;
  }
  body .col-main .category-description-wrapper {
    display: block;
  }
}
@media (min-width: 1200px) {
  body.contacts-index-index .col-main .contact-form input,
  body.contacts-index-index .col-main .contact-form textarea {
    width: 290px;
  }
  body.catalog-category-view .listing-catalogimg-grid li.item {
    padding: 9px;
    margin: 10px 33px 15px 0;
  }
}
.products-grid .product-info-wrapper,
.product-shop .options-box {
  position: relative;
}
.techtwo-catalogrule {
  padding: 10px;
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 0px;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  background: none repeat scroll 0px 0px #ED008C;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  border-radius: 0px 0px 0px 5px;
  -moz-border-radius: 0px 0px 0px 5px;
  -webkit-border-radius: 0px 0px 0px 5px;
}
.products-grid .techtwo-catalogrule {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
#product-attribute-featured-table.data-table thead,
#product-attribute-featured-table.data-table tbody {
  border-bottom: none !important;
}
#product-attribute-featured-table.data-table thead .group-attribute.first th,
#product-attribute-featured-table.data-table thead .group-attribute.first td,
#product-attribute-featured-table.data-table tbody .group-attribute.first th,
#product-attribute-featured-table.data-table tbody .group-attribute.first td {
  border-top: none;
}
.products-grid > li .data-table td,
.products-grid > li .data-table th {
  text-align: left;
  padding: 5px !important;
  border-top: none;
}
.products-grid > li .data-table .attribute-value {
  max-width: 135px;
  overflow: hidden;
}
.products-grid > li .data-table tbody {
  display: inline-table;
  width: 100%;
}
.products-grid > li.hasfeaturedattr .wrap-featured-attributes {
  display: none;
}
.products-grid > li.hasfeaturedattr .configurable-options {
  margin-bottom: 10px;
}
.products-grid > li.hasfeaturedattr:hover {
  border-color: transparent;
  margin-bottom: 0;
  position: relative;
}
.products-grid > li.hasfeaturedattr:hover .item-wrapper {
  background: #fff;
  position: absolute;
  right: -21px;
  top: -21px;
  border: 1px solid #f1f1f1;
  padding: 0 30px;
  width: inherit;
  z-index: 12;
  -webkit-box-shadow: 0px 0px 18px -5px rgba(0,0,0,0.35);
  -moz-box-shadow: 0px 0px 18px -5px rgba(0,0,0,0.35);
  box-shadow: 0px 0px 18px -5px rgba(0,0,0,0.35);
}
.products-grid > li.hasfeaturedattr:hover .item-wrapper .product-info-wrapper {
  padding: 30px 0;
}
.products-grid > li.hasfeaturedattr:hover .item-wrapper .wrap-featured-attributes {
  display: block;
  border-top: 1px solid #DDD;
  padding-top: 15px;
  margin-top: 9px;
}
@media (max-width: 1199px) {
  .navbar {
    background: url(https://www.consolepro.nl/skin/frontend/client/consolepro/images/pijl-cat.jpg) no-repeat 20px 100%;
    padding-bottom: 50px;
  }
}
.block-top-cart__cart-link--incart {
  color: inherit;
  display: block;
  height: 100%;
  width: 100%;
  min-height: 60px;
  text-decoration: none;
}
.block-top-cart__cart-link--incart:hover {
  text-decoration: none;
}
.feedbackcompany.average-rating {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: right;
  padding-right: 25px;
  margin-top: 25px;
  text-align: right;
  width: auto;
}
.feedbackcompany.average-rating .based-on {
  margin: 0;
}
.feedbackcompany.average-rating .review-archive-link {
  color: inherit;
  display: inline-block;
  text-decoration: none;
}
.feedbackcompany.average-rating .total-block-stars-small {
  display: inline-block;
}
.feedbackcompany.average-rating .rating-score-text {
  display: inline-block;
  vertical-align: super;
}
@media (min-width: 1018px) {
  .feedbackcompany.average-rating {
    clear: left;
    margin-top: -9px;
  }
}
.navbar-inner {
  border: 1px solid #d8d7d7;
  background-color: #e9e9e9;
  background-image: -moz-linear-gradient(top,#f0f0f0,#dfdfdf);
  background-image: -ms-linear-gradient(top,#f0f0f0,#dfdfdf);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f0f0f0),to(#dfdfdf));
  background-image: -webkit-linear-gradient(top,#f0f0f0,#dfdfdf);
  background-image: -o-linear-gradient(top,#f0f0f0,#dfdfdf);
  background-image: linear-gradient(top,#f0f0f0,#dfdfdf);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f0f0f0', endColorstr='#dfdfdf', GradientType=0);
}
.navbar li.level-top > a {
  font-size: 14px;
  font-weight: bold;
  padding-left: 18px;
  padding-right: 18px;
  text-transform: none;
}
.quick-access li > a:hover {
  background: transparent;
}
#dropdownLogin .drop-content .block-content .actions .button {
  color: #fff;
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-color: #f89406;
  background-image: -moz-linear-gradient(top,#f89406,#f89406);
  background-image: -ms-linear-gradient(top,#f89406,#f89406);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f89406),to(#f89406));
  background-image: -webkit-linear-gradient(top,#f89406,#f89406);
  background-image: -o-linear-gradient(top,#f89406,#f89406);
  background-image: linear-gradient(top,#f89406,#f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89406', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
#dropdownLogin .drop-content .block-content .actions .button:hover,
#dropdownLogin .drop-content .block-content .actions .button:active,
#dropdownLogin .drop-content .block-content .actions .button.active,
#dropdownLogin .drop-content .block-content .actions .button.disabled,
#dropdownLogin .drop-content .block-content .actions .button[disabled] {
  background-color: #f89406;
}
#dropdownLogin .drop-content .block-content .actions .button:active,
#dropdownLogin .drop-content .block-content .actions .button.active {
  background-color: #c67605 \9;
}
#dropdownLogin .drop-content .block-content .actions .button:hover,
#dropdownLogin .drop-content .block-content .actions .button:active,
#dropdownLogin .drop-content .block-content .actions .button.active,
#dropdownLogin .drop-content .block-content .actions .button.disabled,
#dropdownLogin .drop-content .block-content .actions .button[disabled] {
  background: #c67605;
}
#dropdownLogin .drop-content .block-content .actions .button:active,
#dropdownLogin .drop-content .block-content .actions .button.active {
  background: #c67605;
}
#dropdownLogin .drop-content .block-content .actions .button .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
a,
.quick-access li .topLink,
.quick-access li > a,
.sidebar ul li a {
  color: #cc9966;
}
#carrouseltabs.tabbable.carrousel-style-white .nav-tabs li.active a {
  color: #cc9966;
}
.nav-tabs.nav-stacked > li > a {
  color: #555;
}
.cms-home .row.banner-container {
  margin-bottom: 0;
}
.cms-home .horizontal-usp-container ul li {
  background-image: url(https://www.consolepro.nl/skin/frontend/client/consolepro/images/vink.png);
}
.product-stock {
  margin-bottom: 10px;
}
.product-stock:before {
  content: '';
  display: inline-block;
  margin-right: 5px;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.product-stock.label-green:before {
  background-color: #7fc123;
}
.product-stock.label-green span {
  color: #7fc123;
}
.product-stock.label-orange:before {
  background-color: #f89406;
}
.product-stock.label-orange span {
  color: #f89406;
}
.product-stock.label-red:before {
  background-color: #9d261d;
}
.product-stock.label-red span {
  color: #9d261d;
}
.span12 .home-widget {
  height: 218px;
}
.review-widget .review-top div {
  height: 45px;
  line-height: 45px;
  background-position-y: -333px;
}
.review-widget .feedbackcompany-sidebar-block > p {
  max-height: 21px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.std h1,
.std h2,
.std h3 {
  color: #cc9966;
}
.block-top-cart .block-title {
  text-decoration: none;
}
.block-top-cart .block-title:before {
  content: "\f07a";
  font-family: FontAwesome;
  display: inline-block;
  margin-right: 5px;
  width: 10px;
}
.block-top-cart p.amount > a {
  color: #333;
}
.glc .glc-title .step-icon {
  background: #cc9966;
  color: #fff;
}
.footer-bottom {
  background-color: #cc9966;
  color: #fff;
}
.contacts-index-index .block .block-title {
  border-color: transparent;
  font-size: 18px;
  font-weight: 400;
  margin-left: 12px;
  padding-bottom: 9px;
  text-transform: none;
  text-align: left;
}
.contacts-index-index .block .block-title strong {
  font-weight: 400;
}
.contacts-index-index .block .block-content {
  padding: 0px 12px 20px;
}
.contacts-index-index .block.customer-service {
  background-color: #f5f5f5;
}
.contacts-index-index .col-main .contact-form .block {
  background-color: #f5f5f5;
  padding-top: 12px;
}
.contacts-index-index .col-main .contact-form h3 {
  font-size: 18px;
  font-weight: 400;
}
.contacts-index-index .col-main .contact-form input,
.contacts-index-index .col-main .contact-form textarea {
  width: 290px;
}
.contacts-index-index .col-main .contact-form button[type="submit"] {
  font-size: 14px;
}
.contacts-index-index .table {
  background-color: #f5f5f5;
}
.contacts-index-index .table th,
.contacts-index-index .table td {
  border-color: transparent;
  padding: 2px 12px;
}
.contacts-index-index .table th {
  font-family: ;
  font-size: 18px;
  font-weight: 400;
  padding-top: 18px;
  padding-bottom: 9px;
}
.contacts-index-index .table tr:last-child td {
  padding-bottom: 18px;
}
.contacts-index-index .table tbody tr:nth-child(odd) td,
.contacts-index-index .table tbody tr:nth-child(odd) th {
  background-color: #f5f5f5;
  border-color: transparent;
}
#topLinks {
  margin-bottom: 0;
}
.navbar li.level-top {
  border-right: 1px solid #D3D3D3;
}
.block-top-cart .block-title {
  font-size: 14px;
}
.products-list .product-list-item-top .product-list-content {
  width: 362px;
}
.products-list .product-list-item-top .product-list-item-right {
  width: 187px;
}
.products-list .price-box {
  height: auto;
  line-height: 27px;
}
.products-list .btn-cart {
  margin-right: 20px;
}
#tt_window_cross_sells .price-box {
  height: auto;
  line-height: 18px;
}
.item-msg.notice {
  color: #9d261d;
  font-weight: bold;
}
body ul.summary {
  list-style: none outside none;
  margin: 0;
}
body .reviewemail-submit ul.summary li {
  padding-left: 0;
}
body .reviewemail-submit input[type=text] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magento.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magento.com for more information.
 *
 * @category    design
 * @package     base_default
 * @copyright   Copyright (c) 2006-2017 X.commerce, Inc. and affiliates (http://www.magento.com)
 * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

/* Widgets =============================================================================== */
.widget { display:inline; }
.widget .widget-title { clear:both; padding:15px 0 0; margin:0 0 7px; }
.widget .widget-title h2 { font-size:15px; font-weight:bold; color:#e25203; }

.widget .mini-products-images-list .product-image { display:block; width:76px; height:76px; border:1px solid #a9a9a9; margin:0 auto; }
.widget .mini-products-images-list li.item { float:left; width:77px; height:77px; }

/* Widget: Catalog New Proructs List */
.widget-new-products { display:block; }
.col-main .widget-new-products { margin:7px 0; }
.widget-new-products .products-grid .product-image,
.widget-new-products .products-list .product-image { width:85px; height:85px; }
.widget-new-products .products-list .product-shop { margin-left:100px; }
.sidebar .widget-new-products .block { font-size:11px; line-height:1.25; }
.sidebar .widget-new-products .block-title strong { background:url(https://www.consolepro.nl/skin/frontend/base/default/images/widgets/i_widget-new.gif) 0 1px no-repeat; padding-left:21px; color:#dc5033; }

/* Widget: Recently Viewed Proructs */
.widget-viewed { display:block; }
.col-main .widget-viewed { margin:7px 0; }
.widget-viewed .products-grid .product-image,
.widget-viewed .products-list .product-image { width:85px; height:85px; }
.widget-viewed .products-list .product-shop { margin-left:100px; }
.sidebar .widget-viewed .block { font-size:11px; line-height:1.25; }
.sidebar .widget-viewed .block-title strong { background:url(https://www.consolepro.nl/skin/frontend/base/default/images/widgets/i_block-list.gif) 0 0 no-repeat; padding-left:21px; }

/* Widget: Recently Compared Proructs */
.widget-compared { display:block;}
.col-main .widget-compared { margin:7px 0; }
.widget-compared .products-grid .product-image,
.widget-compared .products-list .product-image { width:85px; height:85px; }
.widget-compared .products-list .product-shop { margin-left:100px; }
.sidebar .widget-compared .block { font-size:11px; line-height:1.25; }
.sidebar .widget-compared .block-title strong { background:url(https://www.consolepro.nl/skin/frontend/base/default/images/widgets/i_block-list.gif) 0 0 no-repeat; padding-left:21px; }

/* Widget: CMS Static Block */
.widget-static-block {}
.sidebar .widget-static-block { display:block; margin:0 0 15px; }

/* Widgets: Links Common Styles */
.top-container .widget a { padding:0 0 0 7px; }

.bottom-container .widget a { padding:0 3px; }

/* Widget: Catalog Product Link */
.widget-product-link-inline { display:inline; }

.col-main .widget-product-link { display:block; text-align:right; margin:7px 0; }
.col-main .widget-product-link a { background:url(https://www.consolepro.nl/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding-right:15px; }

.sidebar .widget-product-link { display:block; margin:0 0 15px; padding:0 10px; }
.sidebar .widget-product-link a { background:url(https://www.consolepro.nl/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding:0 15px 0 0; }

/* Widget: Catalog Category Link */
.widget-category-link-inline { display:inline; }

.col-main .widget-category-link { display:block; text-align:right; margin:7px 0; }
.col-main .widget-category-link a { background:url(https://www.consolepro.nl/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding-right:15px; }

.sidebar .widget-category-link { display:block; margin:0 0 15px; padding:0 10px; }
.sidebar .widget-category-link a { background:url(https://www.consolepro.nl/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding:0 15px 0 0; }

/* Widget: CMS Page Link */
.widget-cms-link-inline { display:inline; }

.col-main .widget-cms-link { display:block; text-align:right; margin:7px 0; }
.col-main .widget-cms-link a { background:url(https://www.consolepro.nl/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding-right:15px; }

.sidebar .widget-cms-link { display:block; margin:0 0 15px; padding:0 10px; }
.sidebar .widget-cms-link a { background:url(https://www.consolepro.nl/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding:0 15px 0 0; }
/* ======================================================================================= */

/* Dummy file, at least this is cached for some time... The file is set to less, but this file is set in the module. */

/* Overlays */
#gomage-cartpro-overlay,
.overlay_gomage_cp{
	background:#000;
	z-index:2000 !important;
	filter:alpha(opacity=60); 
	-moz-opacity:.6; 
	opacity:.6; 
	-webkit-opacity:.6;
}
/* Overlays END */

/* Conf windows */

	/* Common */
#gpc_confirmation_window,
.gpc-loadinfo{
	position:fixed;
	-position:absolute;
	left:50%;
	top:50%;
	-top:0;
	z-index:2001;
	border:1px solid #0A263C;
	font-size:12px;
}
.gpc-loadinfo{
	width:250px;
	margin-left:-150px;
	background:none;
	padding:8px;
	font-weight:700;
	-moz-box-shadow:3px 3px 3px #999;
	-webkit-box-shadow:3px 3px 3px #999;
	box-shadow:3px 3px 3px #999;
}
.gpc_confirmation_window_actions button.gpc_msg_bnt{
  margin:0 2px;
}
#gpc_confirmation_window{
	width:450px;
	margin-left:-235px;
	text-align:center;
	padding:10px;
	font-weight:400;
	background:#FFF;
}
.gpc-loadinfo .align-top,
.gpc-loadinfo .align-bottom{
	display:block;
	margin:0 auto;
}
.gpc-loadinfo .align-top{
	padding-bottom:5px;
}
.gpc-loadinfo .align-bottom{
	padding-top:5px;
}
.gpc-loadinfo .align-right{
	float:right;
	padding-left:5px;
}
.gpc-loadinfo .align-left{
	float:left;
	padding-right:5px;
}
.gomage_cp_dialog {
	display:block;
	height:auto !important;
	z-index:2001 !important;
	position:fixed;
	border:1px solid #555;
	font-size:12px;
}
#gcp_configurable_add_to_cart .gomage_cp_w,
#gcp_configurable_add_to_cart .gomage_cp_e,
#gcp_configurable_add_to_cart_row1,
#gcp_configurable_add_to_cart .gomage_cp_minimize,
#gcp_configurable_add_to_cart .gomage_cp_maximize,
.gomage_cp_dialog .gomage_cp_bot{
	display:none;
}
#gcp_configurable_add_to_cart_close{
	width:35px;
	height:35px;
	background:url(https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/close.png) no-repeat 0 0;
	position:absolute;
	top:-14px;
	right:-16px;
	cursor:pointer;
	z-index:1000;
}
.gomage_cp_content,
.gomage_cp_content label{
	color:#333;
	font-family:Arial,Helvetica,sans-serif;
}
#gcp_configurable_add_to_cart #gcp_configurable_add_to_cart_content{
	overflow:auto !important;
	padding:5px 10px;
	height:auto !important;
	width:auto !important;
	max-height:480px !important;
	background:none;
  position:relative;
}
	/* Common END */
	
.gomage_cp_dialog table.gomage_cp_table_window { 
	border-collapse:collapse; 
	border-spacing:0; 
	width:100%;
	margin:0;
	padding:0;
}
.gomage_cp_dialog table.gomage_cp_table_window td, 
.gomage_cp_dialog table.gomage_cp_table_window th{ 
	padding:0; 
}

	/* Table styles */
#gcp_configurable_add_to_cart .gomage_cp_content .data-table {
	border:1px solid #BEBCB7;
	width:100%;
}
#gcp_configurable_add_to_cart .gomage_cp_content .data-table tr.last th,
#gcp_configurable_add_to_cart .gomage_cp_content .data-table tr.last td {
	border-bottom:0 none !important;
}
#gcp_configurable_add_to_cart .gomage_cp_content .data-table thead th {
	background:url("https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/bkg_th.gif") repeat-x 0 100% #D9E5EE;
	border-right:1px solid #C2D3E0;
	color:#0A263C;
	font-weight:700;
	padding:2px 8px;
	vertical-align:middle;
	white-space:nowrap;
}
#gcp_configurable_add_to_cart .gomage_cp_content .data-table tbody th,
#gcp_configurable_add_to_cart .gomage_cp_content .data-table tbody td {
	border-bottom:1px solid #D9DDE3;
	border-right:1px solid #D9DDE3;
}
#gcp_configurable_add_to_cart .gomage_cp_content .data-table td {
	padding:3px 8px;
}
#gcp_configurable_add_to_cart .gomage_cp_content .data-table .even {
	background:#EEEDED;
}
#gcp_configurable_add_to_cart .gomage_cp_content .data-table .odd {
	background:#F8F7F5;
}
#gcp_configurable_add_to_cart .gomage_cp_content .grouped-items-table .price-box {
	margin:0;
	padding:0;
}
	/* Table styles END */

	/* Text */
#gcp_configurable_add_to_cart .availability{
	margin:5px 0;
}
#gcp_configurable_add_to_cart .gcp_prod_name{
	font:700 15px/1.35 Arial,Helvetica,sans-serif;
	display:block;
}
#gcp_configurable_add_to_cart .price-notice {
	color:#999;
	padding-left:10px;
}
#gcp_configurable_add_to_cart .price-notice .price {
	color:#2F2F2F;
	font-weight:700;
}
	/* Text END */

/* Conf windows END */

/* Options */
#gcp_configurable_add_to_cart #gcp_configurable_add_to_cart_content .product-options{
	background:none;
	border:0;
	margin:10px 0;
	padding:10px 0 20px;
	position:relative;	
}
#gcp_configurable_add_to_cart .product-options dt {
	font-weight:400;
	padding:10px 0 0;
}
#gcp_configurable_add_to_cart .product-options dt label {
	color:#2F2F2F;
	font-weight:700;
	float:left;
	position:relative;
}
#gcp_configurable_add_to_cart .product-options dd .qty-holder {
	display:block;
	padding:10px 0 0;
}
#gcp_configurable_add_to_cart .product-options ul.options-list {
	margin-right:5px;
}
#gcp_configurable_add_to_cart .product-options ul.options-list li {
	line-height:1.5;
	padding:2px 0;
}
#gcp_configurable_add_to_cart .product-options ul.options-list input.radio {
	float:left;
	margin-top:3px;
}
#gcp_configurable_add_to_cart .product-options ul.options-list .label {
	display:block;
	margin-left:18px;
}
#gcp_configurable_add_to_cart .product-options ul.options-list label {
	font-weight:400;
}
#gcp_configurable_add_to_cart .product-options dt label.required em {
	color:#EB340A;
	margin-left:5px;
	float:right;
	position:absolute;
	right:-8px;
	top:0;	
}
#gcp_configurable_add_to_cart .product-options dd {
	border-bottom:1px solid #E4E4E4;
	margin:0 0 5px;
	padding:5px 0 15px;
}
#gcp_configurable_add_to_cart .product-options dl.last dd.last {
	border-bottom:0 none;
	margin-bottom:0;
	padding-bottom:5px;
}
#gcp_configurable_add_to_cart .product-options-bottom .price-label {
	float:left;
	padding-right:5px;
}
#gcp_configurable_add_to_cart .product-options p.required {
	position:absolute;
	right:20px;
	top:20px;
  padding:0;
  margin:0;
}
#gcp_configurable_add_to_cart .product-options dd select {
	width:100%;
	background:#FFF;
	border:1px solid #B6B6B6;
	color:#2F2F2F;
	font:12px/15px Arial,Helvetica,sans-serif;
	vertical-align:middle;
}
#gcp_configurable_add_to_cart #gcp_configurable_add_to_cart_content .product-options-bottom{
	background:none;
	float:right;
	border:0;
	padding:15px 0;	
}
#gcp_configurable_add_to_cart #gcp_configurable_add_to_cart_content .product-options-bottom p.required{
  width:auto;
  clear:both;
}
#gcp_configurable_add_to_cart #gcp_configurable_add_to_cart_content .product-options-bottom .tier-prices{
  clear:both;
  margin-top:30px;
}
#gcp_configurable_add_to_cart .product-options-bottom .price-box {
	float:left;
	margin:0;
	padding:2px 10px 0 0;
}
#gcp_configurable_add_to_cart .product-options-bottom .add-to-cart{
	float:right;
}
#gcp_configurable_add_to_cart .product-options-bottom .add-to-cart label,
#gcp_configurable_add_to_cart #gcp_configurable_add_to_cart_content .add-to-links{
	display:none;
}
#gcp_configurable_add_to_cart .product-options-bottom .add-to-cart .qty {
	float:left;
	margin-top:2px;
	margin-right:5px;
}
/* Options END */

/* Windows */
.gpc_msg_title{
	margin:0 0 10px;
	line-height:14px;
	font-weight:700;
	padding:10px;
	background:#EFF5EA;
	border:1px solid #446423;
}

/* Buttons */
button.gpc_msg_bnt::-moz-focus-inner,#gcp_configurable_add_to_cart button.btn-cart{ padding:0; border:0; } /* FF Fix */
button.gpc_msg_bnt,#gcp_configurable_add_to_cart button.btn-cart{ -webkit-border-fit:lines; } /* <- Safari & Google Chrome Fix */
button.gpc_msg_bnt,#gcp_configurable_add_to_cart button.btn-cart{overflow:visible; width:auto; border:0; padding:0; margin:0; background:none; cursor:pointer;}

button.gpc_msg_bnt span,#gcp_configurable_add_to_cart button.btn-cart span{ display:block; height:25px !important; border:0; background-color:transparent; background-image:url(https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/button_bg.png); background-repeat:repeat; background-position:0 0; padding:0 0 0 10px !important; font:700 12px/25px Arial,Helvetica,sans-serif !important; text-align:center; white-space:nowrap; color:#fff; }
button.gpc_msg_bnt span span,#gcp_configurable_add_to_cart button.btn-cart span span{ padding:0; padding:0 10px 0 0 !important; background-position:100% 0;}

	/* black */
.gpc-confw-buttoncs-black button.gpc_msg_bnt_cs span,
.gpc-confw-buttongtsc-black button.gpc_msg_bnt_ptc span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-black button.btn-cart span{
	background-position:0 0;
}
.gpc-confw-buttoncs-black button.gpc_msg_bnt_cs span span,
.gpc-confw-buttongtsc-black button.gpc_msg_bnt_ptc span span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-black button.btn-cart span span{
	background-position:100% 0;
}
	/* blue */
.gpc-confw-buttoncs-blue button.gpc_msg_bnt_cs span,
.gpc-confw-buttongtsc-blue button.gpc_msg_bnt_ptc span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-blue button.btn-cart span{
	background-position:0 -150px;
}
.gpc-confw-buttoncs-blue button.gpc_msg_bnt_cs span span,
.gpc-confw-buttongtsc-blue button.gpc_msg_bnt_ptc span span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-blue button.btn-cart span span{
	background-position:100% -150px;
}
	/* brown */
.gpc-confw-buttoncs-brown button.gpc_msg_bnt_cs span,
.gpc-confw-buttongtsc-brown button.gpc_msg_bnt_ptc span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-brown button.btn-cart span{
	background-position:0 -175px;
}
.gpc-confw-buttoncs-brown button.gpc_msg_bnt_cs span span,
.gpc-confw-buttongtsc-brown button.gpc_msg_bnt_ptc span span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-brown button.btn-cart span span{
	background-position:100% -175px;
}
	/* gray */
.gpc-confw-buttoncs-gray button.gpc_msg_bnt_cs span,
.gpc-confw-buttongtsc-gray button.gpc_msg_bnt_ptc span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-gray button.btn-cart span{
	background-position:0 -250px;
}
.gpc-confw-buttoncs-gray button.gpc_msg_bnt_cs span span,
.gpc-confw-buttongtsc-gray button.gpc_msg_bnt_ptc span span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-gray button.btn-cart span span{
	background-position:100% -250px;
}
	/* green */
.gpc-confw-buttoncs-green button.gpc_msg_bnt_cs span,
.gpc-confw-buttongtsc-green button.gpc_msg_bnt_ptc span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-green  button.btn-cart span{
	background-position:0 -275px;
}
.gpc-confw-buttoncs-green button.gpc_msg_bnt_cs span span,
.gpc-confw-buttongtsc-green button.gpc_msg_bnt_ptc span span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-green  button.btn-cart span span{
	background-position:100% -275px;
}
	/* light-blue */
.gpc-confw-buttoncs-light-blue button.gpc_msg_bnt_cs span,
.gpc-confw-buttongtsc-light-blue button.gpc_msg_bnt_ptc span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-light-blue button.btn-cart span{
	background-position:0 -25px;
}
.gpc-confw-buttoncs-light-blue button.gpc_msg_bnt_cs span span,
.gpc-confw-buttongtsc-light-blue button.gpc_msg_bnt_ptc span span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-light-blue button.btn-cart span span{
	background-position:100% -25px;
}
	/* light-green */
.gpc-confw-buttoncs-light-green button.gpc_msg_bnt_cs span,
.gpc-confw-buttongtsc-light-green button.gpc_msg_bnt_ptc span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-light-green button.btn-cart span{
	background-position:0 -200px;
}
.gpc-confw-buttoncs-light-green button.gpc_msg_bnt_cs span span,
.gpc-confw-buttongtsc-light-green button.gpc_msg_bnt_ptc span span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-light-green button.btn-cart span span{
	background-position:100% -200px;
}
	/* Orange */
.gpc-confw-buttoncs-orange button.gpc_msg_bnt_cs span,
.gpc-confw-buttongtsc-orange button.gpc_msg_bnt_ptc span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-orange button.btn-cart span{
	background-position:0 -50px;
}
.gpc-confw-buttoncs-orange button.gpc_msg_bnt_cs span span,
.gpc-confw-buttongtsc-orange button.gpc_msg_bnt_ptc span span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-orange button.btn-cart span span{
	background-position:100% -50px;
}
	/* red */
.gpc-confw-buttoncs-red button.gpc_msg_bnt_cs span,
.gpc-confw-buttongtsc-red button.gpc_msg_bnt_ptc span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-red button.btn-cart span{
	background-position:0 -100px;
}
.gpc-confw-buttoncs-red button.gpc_msg_bnt_cs span span,
.gpc-confw-buttongtsc-red button.gpc_msg_bnt_ptc span span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-red button.btn-cart span span{
	background-position:100% -100px;
}
	/* pink */
.gpc-confw-buttoncs-pink button.gpc_msg_bnt_cs span,
.gpc-confw-buttongtsc-pink button.gpc_msg_bnt_ptc span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-pink button.btn-cart span{
	background-position:0 -75px;
}
.gpc-confw-buttoncs-pink button.gpc_msg_bnt_cs span span,
.gpc-confw-buttongtsc-pink button.gpc_msg_bnt_ptc span span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-pink button.btn-cart span span{
	background-position:100% -75px;
}
	/* violet */
.gpc-confw-buttoncs-violet button.gpc_msg_bnt_cs span,
.gpc-confw-buttongtsc-violet button.gpc_msg_bnt_ptc span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-violet button.btn-cart span{
	background-position:0 -225px;
}
.gpc-confw-buttoncs-violet button.gpc_msg_bnt_cs span span,
.gpc-confw-buttongtsc-violet button.gpc_msg_bnt_ptc span span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-violet button.btn-cart span span{
	background-position:100% -225px;
}
	/* yellow */
.gpc-confw-buttoncs-yellow button.gpc_msg_bnt_cs span,
.gpc-confw-buttongtsc-yellow button.gpc_msg_bnt_ptc span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-yellow button.btn-cart span{
	background-position:0 -125px;
}
.gpc-confw-buttoncs-yellow button.gpc_msg_bnt_cs span span,
.gpc-confw-buttongtsc-yellow button.gpc_msg_bnt_ptc span span,
#gcp_configurable_add_to_cart.gpc-confw-buttons-yellow button.btn-cart span span{
	background-position:100% -125px;
}

/* Qty */
input.procart-qty{
	width:30px !important;
	padding:1px 0;
	background:#fff;
	border:1px solid #B6B6B6;
	text-align:center;
	color:#2F2F2F;
	font:12px/15px Arial,Helvetica,sans-serif;
	vertical-align:middle;
}

/* Qty Arrows/Buttons */

	/* Arrow and button color's */
.procart-ab{
	background-image:url(https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/aab_black.png);
}
.gpc-arbc-black .procart-ab{
	background-image:url(https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/aab_black.png);
}
.gpc-arbc-blue .procart-ab{
	background-image:url(https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/aab_blue.png);
}
.gpc-arbc-brown .procart-ab{
	background-image:url(https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/aab_brown.png);
}
.gpc-arbc-gray .procart-ab{
	background-image:url(https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/aab_gray.png);
}
.gpc-arbc-green .procart-ab{
	background-image:url(https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/aab_green.png);
}
.gpc-arbc-light-blue .procart-ab{
	background-image:url(https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/aab_light_blue.png);
}
.gpc-arbc-light-green .procart-ab{
	background-image:url(https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/aab_light_green.png);
}
.gpc-arbc-orange .procart-ab{
	background-image:url(https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/aab_orange.png);
}
.gpc-arbc-red .procart-ab{
	background-image:url(https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/aab_red.png);
}
.gpc-arbc-pink .procart-ab{
	background-image:url(https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/aab_pink.png);
}
.gpc-arbc-violet .procart-ab{
	background-image:url(https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/aab_violet.png);
}
.gpc-arbc-yellow .procart-ab{
	background-image:url(https://www.consolepro.nl/skin/frontend/base/default/images/gomage/procart/aab_yellow.png);
}

	/* Arrows */
.procart-varr,
.procart-harr{
	text-indent:-999em;
	width:7px;
	height:6px;
	background-repeat:repeat;
	overflow:hidden;
}
.procart-harr{
	float:left;
	margin-top:6px;
	height:7px;
}
.procart-varr{
	display:block;
	margin:0 auto;
}
.procart-tarr{
	background-position:0 0;
	margin-bottom:3px;
}
.procart-barr{
	background-position:0 -6px;
	margin-top:3px;
}
.procart-larr{
	background-position:-7px 0;
	margin-right:3px;
}
.procart-rarr{
	background-position:-7px -7px;
	margin-left:3px;
}

	/* Buttons */
.procart-qbv,
.procart-qbh{
	width:15px;
	height:15px;
	overflow:hidden;
	text-indent:-999em;
	background-repeat:repeat;
}
.procart-qbh{
	float:left;
	margin-top:2px;
}
.procart-qbv{
	display:block;
	margin:0 auto;
}
.procart-qbht{
	background-position:-29px 0;
	margin-bottom:3px;
}
.procart-qbhb{
	background-position:-14px 0;
	margin-top:3px;
}
.procart-qbhl{
	background-position:-14px 0;
	margin-right:3px;	
}
.procart-qbhr{
	background-position:-29px 0;
	margin-left:3px;
}

	/* Cart page */
.gpc-arrbut-cp-en .cart-table input.qty{
	text-align:center;
	padding:1px 0;
}
.gpc-arrbut-cp-en.gpc-ar-lr .gpc-cart-arr-lr{
	width:52px;
}
.gpc-arrbut-cp-en.gpc-but-lr .gpc-cart-butt-lr{
	width:68px;
}
.gpc-arrbut-cp-en.gpc-ar-lr .gpc-cart-arr-lr input.qty,
.gpc-arrbut-cp-en.gpc-but-lr .gpc-cart-butt-lr input.qty{
	float:left;
}
.gpc-arrbut-cross-en .cart .crosssell button.btn-cart{
  margin:8px 6px 0 0;
}
.gpc-arrbut-cross-en.gpc-ar-lr .cart .crosssell button.btn-cart,
.gpc-arrbut-cross-en.gpc-but-lr .cart .crosssell button.btn-cart{
  margin-top:0;
}
.gpc-arrbut-cross-en.gpc-but-tb .cart .crosssell button.btn-cart{
  margin:18px 6px 0 0;
}
.gpc-arrbut-cross-en .cart .crosssell button.btn-cart,
.gpc-arrbut-cross-en .cart .crosssell .gpc_qty_edit{
  float:left;
}
.gpc-arrbut-cross-en .cart .crosssell .add-to-links{
  clear:both;
}
.gpc-arrbut-cross-en.gpc-ar-lr .cart .crosssell .gpc_qty_edit input.procart-qty,
.gpc-arrbut-cross-en.gpc-but-lr .cart .crosssell .gpc_qty_edit input.procart-qty{
  float:left;
}

	/* Sidebar block*/
.gpc-arrbut-mcb-en.gpc-ar-tb .top-cart .product-details input.procart-qty,
.gpc-arrbut-mcb-en.gpc-but-tb .top-cart .product-details input.procart-qty{
  width:35px !important;
}
.gpc-arrbut-mcb-en.gpc-ar-lr .top-cart .product-details input.procart-qty,
.gpc-arrbut-mcb-en.gpc-but-lr .top-cart .product-details input.procart-qty{
  float:left;
}
.gpc-arrbut-mcb-en .block-cart .mini-products-list .product-details strong{
	float:left;
	display:inline;
	width:33px;
	margin-right:4px;
	margin-top:5px;
}
.gpc-arrbut-mcb-en.gpc-ar-lr .block-cart .mini-products-list .product-details strong{
	width:52px;
}
.gpc-arrbut-mcb-en.gpc-but-lr .block-cart .mini-products-list .product-details strong{
	width:68px;
}
.gpc-arrbut-mcb-en.gpc-ar-lr .block-cart .mini-products-list .product-details input.procart-qty,
.gpc-arrbut-mcb-en.gpc-but-lr .block-cart .mini-products-list .product-details input.procart-qty{
	float:left;
}
.gpc-arrbut-mcb-en.gpc-ar-tb .block-cart .mini-products-list .product-details,
.gpc-arrbut-mcb-en.gpc-but-tb .block-cart .mini-products-list .product-details,
.gpc-arrbut-mcb-en.gpc-ar-lr .block-cart .mini-products-list .product-details,
.gpc-arrbut-mcb-en.gpc-but-lr .block-cart .mini-products-list .product-details{
  white-space:nowrap;
}
.gpc-arrbut-mcb-en.gpc-ar-tb .block-cart .mini-products-list .product-details .product-name,
.gpc-arrbut-mcb-en.gpc-but-tb .block-cart .mini-products-list .product-details .product-name,
.gpc-arrbut-mcb-en.gpc-ar-lr .block-cart .mini-products-list .product-details .product-name,
.gpc-arrbut-mcb-en.gpc-but-lr .block-cart .mini-products-list .product-details .product-name,
.gpc-arrbut-mcb-en.gpc-ar-tb .block-cart .mini-products-list .product-details .truncated,
.gpc-arrbut-mcb-en.gpc-but-tb .block-cart .mini-products-list .product-details .truncated,
.gpc-arrbut-mcb-en.gpc-ar-lr .block-cart .mini-products-list .product-details .truncated,
.gpc-arrbut-mcb-en.gpc-but-lr .block-cart .mini-products-list .product-details .truncated{
  white-space:normal;
}
.gpc-arrbut-mcb-en.gpc-ar-tb .block-cart .mini-products-list .product-details .truncated .price,
.gpc-arrbut-mcb-en.gpc-but-tb .block-cart .mini-products-list .product-details .truncated .price,
.gpc-arrbut-mcb-en.gpc-ar-lr .block-cart .mini-products-list .product-details .truncated .price,
.gpc-arrbut-mcb-en.gpc-but-lr .block-cart .mini-products-list .product-details .truncated  .price{
  line-height:normal;
}
.gpc-arrbut-mcb-en.gpc-ar-tb .block-cart .mini-products-list .product-details .price{
	line-height:44px;
}
.gpc-arrbut-mcb-en.gpc-but-tb .block-cart .mini-products-list .product-details .price{
	line-height:64px;
}
.gpc-arrbut-mcb-en.gpc-ar-lr .block-cart .mini-products-list .product-details .price,
.gpc-arrbut-mcb-en.gpc-but-lr .block-cart .mini-products-list .product-details .price{
	line-height:28px;
}
.gpc-arrbut-mcb-en .block-cart .block-content li.item{
	vertical-align:baseline !important;
}

	/* Category */
.gpc-arrbut-cat-en .products-grid .actions button.btn-cart{
	float:left;
	margin-top:8px;
}
.gpc-arrbut-cat-en.gpc-but-tb .products-grid .actions button.btn-cart{
	margin-top:18px;
}
.gpc-arrbut-cat-en.gpc-ar-lr .products-grid .actions button.btn-cart,
.gpc-arrbut-cat-en.gpc-but-lr .products-grid .actions button.btn-cart{
	margin-top:0;
}
.gpc-arrbut-cat-en .products-grid .actions .gpc_qty_edit{
	float:left;
	width:33px;
	display:inline;
	margin-left:6px;
}
.gpc-arrbut-cat-en.gpc-ar-lr .products-grid .actions .gpc_qty_edit{
	width:52px;
}
.gpc-arrbut-cat-en.gpc-but-lr .products-grid .actions .gpc_qty_edit{
	width:68px;
}
.gpc-arrbut-cat-en.gpc-ar-lr .products-grid .actions .gpc_qty_edit input.procart-qty,
.gpc-arrbut-cat-en.gpc-but-lr .products-grid .actions .gpc_qty_edit input.procart-qty{
	float:left;
}
.gpc-arrbut-cat-en .products-grid .actions .add-to-links{
	clear:both;
}
.gpc-arrbut-cat-en.gpc-but-tb .products-grid .actions{
	bottom:6px;
}
.gpc-arrbut-cat-en.gpc-ar-tb .products-list .price-box{
	margin-top:9px;
}
.gpc-arrbut-cat-en.gpc-but-tb .products-list .price-box{
	margin-top:16px;
}
.gpc-arrbut-cat-en .products-list button.btn-cart{
	float:left;
}
.gpc-arrbut-cat-en.gpc-ar-tb .products-list button.btn-cart{
	margin-top:9px;
}
.gpc-arrbut-cat-en.gpc-but-tb .products-list button.btn-cart{
	margin-top:17px;
}
.gpc-arrbut-cat-en .products-list .gpc_qty_edit{
	float:left;
	margin-left:5px;
  margin-right:10px;
}
.gpc-arrbut-cat-en.gpc-but-lr .products-list .price-box,
.gpc-arrbut-cat-en.gpc-ar-lr .products-list .price-box{
	margin-top:0;
}
.gpc-arrbut-cat-en.gpc-but-lr .products-list .gpc_qty_edit .procart-qty,
.gpc-arrbut-cat-en.gpc-ar-lr .products-list .gpc_qty_edit .procart-qty{
	float:left;
}

	/* Product page */
.gpc-arrbut-prodp-en .product-view .product-shop .add-to-cart label{
  float:left;
}
.gpc-arrbut-prodp-en .product-view .product-shop .add-to-cart .gpc_qty_edit{
	float:left;
	margin-right:5px;
	position:relative;
	margin-top:-9px;
	width:33px;
}
.gpc-arrbut-prodp-en.gpc-ar-lr .product-view .product-shop .add-to-cart .gpc_qty_edit{
	width:52px;
	margin-top:1px;
}
.gpc-arrbut-prodp-en.gpc-but-lr .product-view .product-shop .add-to-cart .gpc_qty_edit{
	width:68px;
	margin-top:1px;
}
.gpc-arrbut-prodp-en.gpc-but-tb .product-view .product-shop .add-to-cart .gpc_qty_edit{
	margin-top:-18px;
}
.gpc-arrbut-prodp-en .product-view .product-shop .add-to-cart .gpc_qty_edit .qty{
	margin:0;
	float:none;
	padding:1px 0;
	text-align:center;
}
.gpc-arrbut-prodp-en.gpc-ar-lr .product-view .product-shop .add-to-cart .gpc_qty_edit .qty,
.gpc-arrbut-prodp-en.gpc-but-lr .product-view .product-shop .add-to-cart .gpc_qty_edit .qty{
	float:left;
}
.gpc-arrbut-prodp-en.gpc-but-tb .product-view .product-shop .add-to-box{
	padding-top:10px;
}
.gpc-arrbut-prodp-en.gpc-ar-tb .product-view .product-options-bottom .add-to-cart label{
	margin:10px 5px 0 0;
}
.gpc-arrbut-prodp-en.gpc-but-tb .product-view .product-options-bottom .add-to-cart label{
	margin:19px 5px 0 0;
}
.gpc-arrbut-prodp-en.gpc-ar-tb .product-view .product-shop .product-options-bottom .add-to-cart label,
.gpc-arrbut-prodp-en.gpc-but-tb .product-view .product-shop .product-options-bottom .add-to-cart label{
	margin:0 5px 0 0;
}
.gpc-arrbut-prodp-en.gpc-ar-lr .product-view .product-options-bottom .add-to-cart button,
.gpc-arrbut-prodp-en.gpc-but-lr .product-view .product-options-bottom .add-to-cart button{
	margin:0 0 0 3px;
}
.gpc-arrbut-prodp-en.gpc-ar-tb .product-view .product-shop .product-options-bottom .add-to-cart button,
.gpc-arrbut-prodp-en.gpc-but-tb .product-view .product-shop .product-options-bottom .add-to-cart button{
	margin:0;
}
.gpc-arrbut-prodp-en.gpc-ar-tb .product-view .product-options-bottom .add-to-cart button{
	margin:9px 0 0;
}
.gpc-arrbut-prodp-en.gpc-but-tb .product-view .product-options-bottom .add-to-cart button{
	margin:18px 0 0;
}
.gpc-arrbut-prodp-en.gpc-ar-lr .product-view .product-options-bottom .add-to-cart .gpc_qty_edit .qty,
.gpc-arrbut-prodp-en.gpc-but-lr .product-view .product-options-bottom .add-to-cart .gpc_qty_edit .qty{
	text-align:center;
	margin:0;
}
.gpc-arrbut-prodp-en.gpc-ar-tb .product-view .product-options-bottom .add-to-cart .gpc_qty_edit,
.gpc-arrbut-prodp-en.gpc-but-tb .product-view .product-options-bottom .add-to-cart .gpc_qty_edit{
  margin-right:5px;
}
.gpc-arrbut-prodp-en.gpc-ar-tb .product-view .product-options-bottom .add-to-cart .gpc_qty_edit .qty,
.gpc-arrbut-prodp-en.gpc-but-tb .product-view .product-options-bottom .add-to-cart .gpc_qty_edit .qty{
	float:none;
  margin:0;
	text-align:center;
}
.gpc-arrbut-prodp-en .product-view .product-options-bottom .add-to-cart .gpc_qty_edit{
	float:left;
}
.gpc-arrbut-cross-en .cart .crosssell .product-details{
  float:left;
  width:168px;
  margin-left:12px;
}

/* Sales & Deals */
.gpc-ar-tb .gomage-sd .mini-products-list .product-details button.btn-cart,
.gpc-ar-lr .gomage-sd .mini-products-list .product-details button.btn-cart,
.gpc-but-tb .gomage-sd .mini-products-list .product-details button.btn-cart,
.gpc-but-lr .gomage-sd .mini-products-list .product-details button.btn-cart{
  float:left;
  margin-right:6px;
  margin-top:8px;
}
.gpc-ar-lr .gomage-sd .mini-products-list .product-details button.btn-cart,
.gpc-but-lr .gomage-sd .mini-products-list .product-details button.btn-cart{
  margin-top:0;
}
.gpc-but-tb .gomage-sd .mini-products-list .product-details button.btn-cart{
  margin-top:17px;
}
.gpc-ar-tb .gomage-sd .mini-products-list .product-details .gpc_qty_edit,
.gpc-ar-lr .gomage-sd .mini-products-list .product-details .gpc_qty_edit,
.gpc-but-tb .gomage-sd .mini-products-list .product-details .gpc_qty_edit,
.gpc-but-lr .gomage-sd .mini-products-list .product-details .gpc_qty_edit{
  float:left;
}
.gpc-ar-lr .gomage-sd .mini-products-list .product-details .gpc_qty_edit .procart-qty,
.gpc-but-lr .gomage-sd .mini-products-list .product-details .gpc_qty_edit .procart-qty{
  float:left;
}
/* 1900 */
.gpc-arrbut-prodp-en .bundle-summary .add-to-cart label{
  float:left;
  margin-top:10px;
}
.gpc-arrbut-prodp-en .bundle-summary .add-to-cart .gpc_qty_edit{
  float:left;
  width:36px;
  margin-right:10px;
}
.gpc-arrbut-prodp-en .bundle-summary .add-to-cart .gpc_qty_edit .qty{
  text-align:center;
  margin-right:0;
}
.gpc-arrbut-prodp-en.gpc-ar-lr .bundle-summary .add-to-cart label{
  margin-top:7px;
}
.gpc-arrbut-prodp-en.gpc-ar-lr .bundle-summary .add-to-cart .gpc_qty_edit .qty{
  float:left;
}
.gpc-arrbut-prodp-en.gpc-ar-lr .bundle-summary .add-to-cart .gpc_qty_edit{
	width:57px;
  margin-top:5px;
}
.gpc-arrbut-prodp-en.gpc-but-lr .bundle-summary .add-to-cart .gpc_qty_edit{
	width:72px;
  margin-top:4px;
}
.gpc-arrbut-prodp-en.gpc-but-lr .bundle-summary .add-to-cart label{
  margin-top:6px;
}
.gpc-arrbut-prodp-en.gpc-but-lr .bundle-summary .add-to-cart .gpc_qty_edit .qty{
  float:left;
}
.gpc-arrbut-prodp-en.gpc-ar-tb .bundle-summary .add-to-cart button.btn-cart{
  margin-top:6px;
}
.gpc-arrbut-prodp-en.gpc-but-tb .bundle-summary .add-to-cart button.btn-cart{
  margin-top:6px;
}
.gpc-arrbut-prodp-en.gpc-but-tb .bundle-summary .add-to-cart label{
  margin-top:20px;
}
.gpc-arrbut-prodp-en.gpc-but-tb .bundle-summary .add-to-cart button.btn-cart{
  margin-top:16px;
}
.gpc-arrbut-prodp-en.gpc-ar-lr .grouped-items-table tbody td.last .qty,
.gpc-arrbut-prodp-en.gpc-but-lr .grouped-items-table tbody td.last .qty{
  float:left;
}
.gpc-arrbut-prodp-en.gpc-ar-lr .grouped-items-table tbody td.last{
  white-space:nowrap;
  width:60px;
}
.gpc-arrbut-prodp-en.gpc-but-lr .grouped-items-table tbody td.last{
  white-space:nowrap;
  width:75px;
}

/* Clears */
#gcp_configurable_add_to_cart .product-options dt:after,
#gcp_configurable_add_to_cart .product-options dd:after,
#gcp_configurable_add_to_cart_content:after,
#gcp_configurable_add_to_cart_content .product-options:after,
#gcp_configurable_add_to_cart_content .product-options dl:after,
.gpc-arrbut-cp-en.gpc-ar-lr .gpc-cart-arr-lr:after{content:' ';clear:both;display:block;width:0;height:0;overflow:hidden;font-size:0;}

#gcp_configurable_add_to_cart,#gcp_configurable_add_to_cart_content,#gcp_configurable_add_to_cart_content .product-options,#gcp_configurable_add_to_cart_content .product-options dl,#gcp_configurable_add_to_cart .product-options dt,#gcp_configurable_add_to_cart .product-options dd,#gcp_configurable_add_to_cart .product-options .options-list li,.gpc-arrbut-cp-en.gpc-ar-lr .gpc-cart-arr-lr{zoom:1;}
.gpc_msg_title #gpc_conf_win_qty{padding-right:5px;}
/* Clears END */

.gpc-ar-tb .gomage-sd .mini-products-list .product-details .gpc_qty_edit .procart-tarr{
  margin-bottom:-8px;
}
.gomage-sd .mini-products-list .product-details{
  zoom:0;
}
.gpc-arrbut-prodp-en.gpc-ar-tb .product-view .product-options-bottom .add-to-cart .gpc_qty_edit,
.gpc-arrbut-prodp-en.gpc-but-tb .product-view .product-options-bottom .add-to-cart .gpc_qty_edit{
  width:36px;
}
.gpc-arrbut-cross-en.gpc-ar-tb .cart .crosssell .gpc_qty_edit,
.gpc-arrbut-cross-en.gpc-but-tb .cart .crosssell .gpc_qty_edit,
.gpc-ar-tb .gomage-sd .mini-products-list .product-details .gpc_qty_edit,
.gpc-but-tb .gomage-sd .mini-products-list .product-details .gpc_qty_edit{
  width:32px;
}
.gpc-arrbut-cat-en .products-list .gpc_qty_edit{
	width:42px;
}
.gpc-arrbut-cat-en.gpc-ar-lr .products-list .product-shop .gpc_qty_edit{
	width:61px;
}
.gpc-arrbut-cat-en.gpc-but-lr .products-list .product-shop .gpc_qty_edit{
	width:77px;
}

/**
 * Magmodules.eu
 * http://www.magmodules.eu
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to info@magmodules.eu so we can send you a copy immediately.
 *
 * @category    Magmodules
 * @package     Magmodules_Feedbackcompany
 * @author      Magmodules <info@magmodules.eu)
 * @copyright   Copyright (c) 2016 (http://www.magmodules.eu)
 * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */

.feedbackcompany-sidebar-block {
	padding: 10px;
}

.feedbackcompany-sidebar-block .rating-name {
	font-style: italic;
}

.feedbackcompany-logo {
	width: 100px;
	margin: auto;
}

.feedbackcompany-medium-image {
	width: 125px;
	padding: 7px;
}

/** Discrete stars **/
.feedbackcompany-sidebar-block .rating-empty { float: right; display: block; width: 80px; height: 16px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/star.png') 0 -16px; margin-right: 5px; }
.feedbackcompany-sidebar-block .rating-star-1 { float: left; display: block; width: 16px; height: 16px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/star.png') 0 0; margin-right: 5px; }
.feedbackcompany-sidebar-block .rating-star-2 { float: left; display: block; width: 32px; height: 16px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/star.png') 0 0; margin-right: 5px; }
.feedbackcompany-sidebar-block .rating-star-3 { float: left; display: block; width: 48px; height: 16px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/star.png') 0 0; margin-right: 5px; }
.feedbackcompany-sidebar-block .rating-star-4 { float: left; display: block; width: 64px; height: 16px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/star.png') 0 0; margin-right: 5px; }
.feedbackcompany-sidebar-block .rating-star-5 { float: left; display: block; width: 80px; height: 16px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/star.png') 0 0; margin-right: 5px; }

/** Continuous stars **/


.feedbackcompany-small-widget .rating-box {height: 21px;background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-small-empty.png') no-repeat !important;margin: 5px 0px 0px;width: 75px;}
.feedbackcompany-small-widget .rating {display: block;height: 21px;background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-small-filling.png') no-repeat !important;}
.feedbackcompany-small-widget .feedbackcompany-small-text {padding: 5px 0px 0px 0px;}


.feedbackcompany-medium-widget .rating-box { height: 21px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-big-empty.png') no-repeat;margin: 10px 0px 5px;width: 110px;}
.feedbackcompany-medium-widget .rating {display: block;height: 21px;background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-big-filling.png') no-repeat !important;}
.feedbackcompany-medium-widget .feedbackcompany-small-text { padding:4px 0px 0px 0px;}

.feedbackcompany-small-score .rating-box { height: 21px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-big-empty.png') no-repeat;margin: 5px 15px;width: 109px;float: left;}
.feedbackcompany-small-score .rating { display: block; height: 21px;background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-big-filling.png') no-repeat;}
.feedbackcompany-small-score .feedbackcompany-small-text { padding:4px 0px 0px 0px;}


/** big colorful review stars **/
.block-content p.company-name { text-align: center; margin: 5px auto; font-size: 12px; }
.total-block-text { border-bottom: 1px solid #ccc; padding-bottom: 5px; }
.total-block-text p { text-align: center; padding-top: 5px; margin-bottom: 2px; font-size: 18px; }
.total-block-text p.based-on { text-align: center; padding-top: 0px; font-size: 11px; font-style: italic; }
.total-block-stars { height: 21px; width: 110px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-big-empty.png') no-repeat; margin: 5px auto; }
.total-block-stars span{ display: block; height: 21px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-big-filling.png') no-repeat; }

/** medium colorful review stars **/
.total-block-stars-medium { height: 20px; width: 108px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-medium-empty.png') no-repeat; }
.total-block-stars-medium span{ display: block; height: 20px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-medium-filling.png') no-repeat; }


/** small colorful review stars **/
.total-block-stars-small { height: 14px; width: 74px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-small-empty.png') no-repeat; margin: 5px auto; }
.total-block-stars-small span{ display: block; height: 14px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-small-filling.png') no-repeat; }

/** small grayscale review stars **/
.total-block-stars-grey { height: 14px; width: 74px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-grayscale-small-empty.png') no-repeat; display: inline-block}
.total-block-stars-grey span{ display: block; height: 14px; background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-grayscale-small-filling.png') no-repeat; }

@media (-webkit-min-device-pixel-ratio: 2), not all, not all, not all, (min-resolution: 192dpi), (min-resolution: 2dppx){
	/** big colorful review stars **/
	.total-block-stars { background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-big-empty@2x.png') no-repeat; background-size: 110px 21px;}
	.total-block-stars span{ background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-big-filling@2x.png') no-repeat; background-size: 110px 21px;}

	/** medium colorful review stars **/
	.total-block-stars-small { background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-medium-empty@2x.png') no-repeat; background-size: 108px 20px;}
	.total-block-stars-small span{ background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-medium-filling@2x.png') no-repeat; background-size: 108px 20px;}

	/** small colorful review stars **/
	.total-block-stars-small { background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-small-empty@2x.png') no-repeat; background-size: 74px 14px;}
	.total-block-stars-small span{ background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-colorful-small-filling@2x.png') no-repeat; background-size: 74px 14px;}

	/** small grayscale review stars **/
	.total-block-stars-grey { background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-grayscale-small-empty@2x.png') no-repeat; background-size: 74px 14px;}
	.total-block-stars-grey span{ background: url('https://www.consolepro.nl/skin/frontend/base/default/magmodules/feedbackcompany/images/stars-grayscale-small-filling@2x.png') no-repeat; background-size: 74px 14px;}
}


/* CUSTOM BLOCK */
.feedbackcompany-custom {
	font-weight: bold;
	font-size: 13px;
	display: block;
	border: .25em solid #eee;
	background: #f6f6f6;
	padding: 1.0em;
	width: 30%;
	text-align: center;
}

.feedbackcompany-custom  .client {
	font-size: 16px;	
}

.feedbackcompany-custom .rating-box {
	margin-left: 40%;
	margin-top: 10px;
	margin-bottom: 10px;
}
.feedbackcompany-custom  .number {
	font-size: 11px;	
	font-style: italic;
	font-weight: 300;
}

#feedbackcompany-header-widget {
	font-size: 12px;
	border-radius: 2px;
	border: 1px solid silver;
	padding: 10px 15px 10px 10px;
	line-height: 18px;
}

#feedbackcompany-header-widget.feedbackcompany-header-widget-searchbar {
	position: absolute;
	top: 55px;
	right: 25%;
	margin-right: 18px;
}

#feedbackcompany-header-widget .total-block-stars-small {
	display: inline-block;
	vertical-align: middle;
	margin: -1px 10px 0 8px;
}

.feedbackcompany-logo {
    padding: 10px 0;
}

@media (min-width: 961px) {
	#feedbackcompany-header-widget{ display: inline-block; }
	#feedbackcompany-header-widget > * { display: inline-block; }
	#feedbackcompany-header-widget a:hover {text-decoration: none;}
}

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
-webkit-touch-callout: none;
-webkit-user-select: none;
-ms-touch-action: none;
	touch-action: none;	
-ms-user-select: none;
-moz-user-select: none;
-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.noUi-target {
	position: relative;
	direction: ltr;
}
.noUi-base {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1; /* Fix 401 */
}
.noUi-origin {
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	bottom: 0;
}
.noUi-handle {
	position: relative;
	z-index: 1;
}
.noUi-stacking .noUi-handle {
/* This class is applied to the lower origin when
   its values is > 50%. */
	z-index: 10;
}
.noUi-state-tap .noUi-origin {
-webkit-transition: left 0.3s, top 0.3s;
	transition: left 0.3s, top 0.3s;
}
.noUi-state-drag * {
	cursor: inherit !important;
}

/* Painting and performance;
 * Browsers can paint handles in their own layer.
 */
.noUi-base {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
	height: 18px;
}
.noUi-horizontal .noUi-handle {
	width: 34px;
	height: 28px;
	left: -17px;
	top: -6px;
}
.noUi-vertical {
	width: 18px;
}
.noUi-vertical .noUi-handle {
	width: 28px;
	height: 34px;
	left: -6px;
	top: -17px;
}

/* Styling;
 */
.noUi-background {
	background: #FAFAFA;
	box-shadow: inset 0 1px 1px #f0f0f0;
}
.noUi-connect {
	background: #a5a5a5;
	box-shadow: inset 0 0 3px rgba(51,51,51,0.45);
-webkit-transition: background 450ms;
	transition: background 450ms;
}
.noUi-origin {
	border-radius: 2px;
}
.noUi-target {
	border-radius: 4px;
	border: 1px solid #D3D3D3;
	box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-target.noUi-connect {
	box-shadow: inset 0 0 3px rgba(51,51,51,0.45), 0 3px 6px -5px #BBB;
}

/* Handles and cursors;
 */
.noUi-draggable {
	cursor: w-resize;
}
.noUi-vertical .noUi-draggable {
	cursor: n-resize;
}
.noUi-handle {
	border: 1px solid #D9D9D9;
	border-radius: 3px;
	background: #FFF;
	cursor: default;
	box-shadow: inset 0 0 1px #FFF,
				inset 0 1px 7px #EBEBEB,
				0 3px 6px -3px #BBB;
}
.noUi-active {
	box-shadow: inset 0 0 1px #FFF,
				inset 0 1px 7px #DDD,
				0 3px 6px -3px #BBB;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
	content: "";
	display: block;
	position: absolute;
	height: 14px;
	width: 1px;
	background: #E8E7E6;
	left: 14px;
	top: 6px;
}
.noUi-handle:after {
	left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
	width: 14px;
	height: 1px;
	left: 6px;
	top: 14px;
}
.noUi-vertical .noUi-handle:after {
	top: 17px;
}

/* Disabled state;
 */
[disabled].noUi-connect,
[disabled] .noUi-connect {
	background: #B8B8B8;
}
[disabled].noUi-origin,
[disabled] .noUi-handle {
	cursor: not-allowed;
}

