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

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

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

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

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

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

// ----------------------------------------------
*/
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Removes default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Removes border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/*
 * Re-set default cursor for disabled elements.
 */
button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

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

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

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

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

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

address {
  font-style: normal;
}

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

img {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

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

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

/* ============================================ *
 * Base Styles
 * ============================================ */
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
a, button {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  outline: none;
}

body,
button,
input,
select,
table,
textarea {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #636363;
  font-size: 14px;
  line-height: 1.5;
}

textarea {
  resize: none;
}

body {
  position: relative;
}

a {
  color: #4C7F93;
  text-decoration: none;
  outline: none;
}
a:hover {
  color: #4C7F93;
  text-decoration: underline;
}

a:focus {
  outline-color: #3091c2;
  color: #143d52;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

select {
  height: 30px;
  padding: 0 25px 0 10px;
  font-weight: 300;
  background: #F8f8f8 url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/dmf-show-more-arrow.png) no-repeat;
  background-position: right 10px center;
  border: none;
  color: black;
  font-size: 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  min-width: 55px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
select::-ms-expand {
  display: none;
}

input[type='number'] {
  -moz-appearance: textfield;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

noscript iframe {
  display: none;
}

/* ============================================ *
 * Typography
 * ============================================ */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #3399CC;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}

h2, .h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #636363;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}

h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

h4, .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

h5, .h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

h6, .h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #636363;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

/* ============================================ *
 * Shared Classes
 * ============================================ */
.address-list address {
  margin-bottom: 1em;
}

.availability {
  margin-bottom: 0;
  font-size: 13px;
  text-transform: uppercase;
}

.availability .label {
  display: none;
}

.availability.in-stock {
  color: #11B400;
}

.availability.available-soon,
.availability.out-of-stock {
  color: #DF280A;
}

.availability-only {
  color: #DF280A;
  margin-bottom: 10px;
}

/* -------------------------------------------- *
 * Page Titles
 */
.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  font-size: 24px;
  font-weight: 600;
  color: #636363;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 3px;
  margin-bottom: 15px;
}

/* -------------------------------------------- *
 * Block Module
 */
.block,
.col-left-first {
  margin-bottom: 20px;
}

.col-left-first .block:last-of-type {
  margin-bottom: 0;
}

.block-title {
  padding: 10px 0 0;
  margin-bottom: 5px;
}
.block-title h2,
.block-title h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  color: #3399CC;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}
.block-title small {
  font-size: 100%;
  font-weight: normal;
}

@media only screen and (min-width: 768px) {
  body:not(.customer-account) .block.block-layered-nav .block-title,
  body:not(.customer-account) .block.block-compare .block-title {
    border-top: none;
    color: white;
    padding-top: 0;
    font-size: 18px;
    font-weight: 700;
    height: 39px;
    line-height: 39px;
    background: #292885;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
  }
}
.block-subtitle {
  font-weight: bold;
  margin-bottom: 7px;
}

.block-content.unpad {
  padding: 0;
}

.block-content li.item {
  margin: 0 0 10px 0;
}

.block-content li.item:last-child {
  margin-bottom: 0;
}

.block .actions {
  margin: 10px 0 0;
}
.block .actions:after {
  content: '';
  display: table;
  clear: both;
}
.block .actions a {
  float: left;
}
.block .actions .button {
  float: right;
}

.col-left .block .actions .button ~ a,
.col-right .block .actions .button ~ a {
  line-height: 33px;
  margin-right: 5px;
}

@media only screen and (max-width: 767px) {
  .sidebar .block:not(.block-layered-nav):not(.block-compare) {
    margin-bottom: 0;
  }
  .sidebar .block:not(.block-layered-nav):not(.block-compare) .block-title {
    padding: 0;
    margin-top: 0;
    border-bottom: none;
    border-top: none;
    margin-bottom: 0;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px 7px 24px;
    position: relative;
    background-color: #3399CC;
    color: white;
    font-size: 14px;
    cursor: pointer;
  }
  .sidebar .block:not(.block-layered-nav):not(.block-compare) .block-title:after {
    left: 10px;
    font-size: 18px;
    line-height: 18px;
    position: absolute;
  }
  .sidebar .block:not(.block-layered-nav):not(.block-compare) .block-title:not(.active):after {
    content: "+";
  }
  .sidebar .block:not(.block-layered-nav):not(.block-compare) .block-title.active:after {
    content: "-";
  }
  .sidebar .block:not(.block-layered-nav):not(.block-compare) .block-title strong {
    font-weight: normal;
    font-size: 14px;
  }
  .sidebar .block:not(.block-layered-nav):not(.block-compare) .block-content {
    padding: 10px;
    margin-top: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #CCCCCC;
  }
}
/* -------------------------------------------- *
 * Secondary Navigation
 */
.block-account .block-title,
.block-cms-menu .block-title {
  padding-top: 0;
  border-top: none;
}
.block-account li,
.block-cms-menu li {
  text-transform: uppercase;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin: 7px 0;
}
.block-account li strong,
.block-cms-menu li strong {
  font-weight: 400;
  color: #3399CC;
}
.block-account li a,
.block-cms-menu li a {
  color: #636363;
}
.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #3399CC;
}

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
.cart .buttons-set .button,
.cart-table .button,
.sidebar .actions .button,
.button.button-secondary {
  padding: 7px 15px;
}

.sidebar .actions button.button {
  white-space: normal;
}

/* Primary Buttons */
.button,
.cart-table .product-cart-actions .button,
#co-shipping-method-form .buttons-set .button,
.footer .button {
  background: #fcde96;
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  color: #2a2c83;
  font-size: 16px;
  font-weight: normal;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 19px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}
.button:hover,
.cart-table .product-cart-actions .button:hover,
#co-shipping-method-form .buttons-set .button:hover,
.footer .button:hover {
  background: #fbd67d;
  cursor: pointer;
  color: #2a2c83;
}
.button:active,
.cart-table .product-cart-actions .button:active,
#co-shipping-method-form .buttons-set .button:active,
.footer .button:active {
  background: #fbce64;
  color: #FFFFFF;
}
.button:focus,
.cart-table .product-cart-actions .button:focus,
#co-shipping-method-form .buttons-set .button:focus,
.footer .button:focus {
  background-color: #fbce64;
  outline: none;
}

button.amshopby-price-find {
  padding: 1.5px 5px;
  font-size: 13px;
  margin-top: -2px;
}

input[name^="amshopby"][id$="from"].input-text, input[name^="amshopby"][id$="to"].input-text {
  font-size: 13px;
  width: 48px;
  height: 21px;
}

a.amshopby-attr-selected {
  color: #636363;
}

[data-filterby="Price"] li:hover {
  text-decoration: none !important;
}

a.button {
  text-decoration: none;
}

/* Disabled - class for anchor, state for form elements */
.button.disabled,
.button:disabled {
  background: #C8C8C8;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Adjacent buttons */
.button + .button {
  margin-left: 5px;
}

.button2 {
  border: 0;
  padding: 0 5px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
}

.button2:focus {
  outline: none;
}

.button2 span,
.button2 span span {
  line-height: 30px;
  height: 30px;
  text-decoration: underline;
  text-transform: uppercase;
  display: inline-block;
  color: #3399CC;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: #246b8f;
}

@media only screen and (min-width: 768px) {
  .left,
  .right {
    float: left;
  }
}
@media only screen and (max-width: 767px) {
  .col2-set .buttons-set .button,
  .col2-set .buttons-set .button2 {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .col2-set .buttons-set .back-link {
    display: none;
  }
  .col2-set .buttons-set .required {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .buttons-set .button {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 7px;
  }
  .buttons-set .back-link {
    display: none;
  }
  .buttons-set .required {
    display: none;
  }
}
/* -------------------------------------------- *
 * Paypal Button
 */
.paypal-logo.paypal-after {
  float: left;
}

.paypal-after .paypal-or {
  float: left;
}

.paypal-or {
  line-height: 34px;
  margin: 0px 10px 5px;
}

.paypal-after .paypal-button {
  float: left;
}

.paypal-button {
  line-height: 0px;
}

.paypal-button img {
  display: inline;
}

/* -------------------------------------------- *
 * Button Sets
 */
.buttons-set {
  clear: both;
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid #EDEDED;
  text-align: right;
}
.buttons-set p.required {
  margin: 0;
  margin-left: 10px;
  line-height: 33px;
  float: right;
}
.buttons-set .back-link {
  float: left;
  margin: 0;
  line-height: 33px;
}
.buttons-set a:not(.button) {
  line-height: 20px;
  display: inline-block;
  padding: 5px;
}
.buttons-set button.button {
  float: right;
  margin-left: 5px;
  min-width: 140px;
}
.buttons-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Icons
 */
.icon-sprite, .btn-remove2, .ratings .rating-box, .ratings .rating-box .rating, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
.sorter > .view-mode .list, .skip-nav .icon, .skip-search .icon, .skip-accounts .icon, .skip-cart .icon, .product-view .sharing-links a, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
  background-image: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/icon_sprite.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

/* -------------------------------------------- *
 * Breadcrumbs
 */
.breadcrumbs {
  overflow: hidden;
  margin: 0 0 10px;
  padding: 0 10px;
}

.breadcrumbs li {
  float: left;
  font-size: 12px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}

.breadcrumbs a.no-link {
  color: #636363;
}

.breadcrumbs a {
  float: left;
  color: #2a2c83;
}
.breadcrumbs a > span {
  padding: 0;
}

.breadcrumbs a:hover {
  color: #3399CC;
}

.breadcrumbs a.no-link:hover {
  text-decoration: none;
  color: #2a2c83 !important;
  cursor: default;
}

.breadcrumbs strong {
  color: #636363;
  font-weight: normal;
}

.breadcrumbs span {
  padding: 0 7px;
  float: left;
}

div#breadcrumbs-cart {
  padding: 0;
  clear: both;
}

@media only screen and (max-width: 767px) {
  .breadcrumbs {
    display: block;
    order: 1;
  }

  .firecheckout-index-index .breadcrumbs {
    padding-left: 10px !important;
  }
}
/* -------------------------------------------- *
 * Toggler
 */
.toggler {
  float: right;
  cursor: pointer;
}
.toggler:not(.read-more) label {
  line-height: 20px;
  color: #2a2c83;
  font-size: 16px;
  font-weight: bold;
  vertical-align: top;
}
.toggler label {
  cursor: pointer;
}
.toggler label:before {
  content: attr(data-show);
  margin-right: 15px;
  vertical-align: top;
}
.toggler label img {
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.toggler.expanded label:before {
  content: attr(data-hide);
}
.toggler.expanded label img {
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.toggler.read-more {
  float: none;
  text-align: right;
  margin: 20px 0;
}

/* -------------------------------------------- *
 * Button - Remove / Previous
 */
.btn-previous {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #EDEDED;
  text-align: center;
  /* Hide text */
  text-shadow: none;
  color: transparent;
  position: relative;
}
.btn-previous:hover {
  background-color: #3399CC;
  border-color: #3399CC;
}

.btn-remove {
  color: transparent;
}
.btn-remove:after {
  content: 'X';
  color: #3399CC;
  height: 20px;
  line-height: 20px;
  width: 100%;
  font-size: 10px;
  font-family: Arial, "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: bold;
}
.btn-remove:hover {
  color: transparent;
}

.btn-remove2 {
  background-position: 4px -648px;
  border: none;
  vertical-align: top;
}
.btn-remove2:after {
  display: none;
}
.btn-remove2:hover {
  background-color: transparent;
  opacity: 0.8;
  -moz-opacity: 0.8;
}

.btn-previous:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #3399CC;
  border-left: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -2px;
  margin-top: -4px;
}
.btn-previous:hover:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #FFFFFF;
  border-left: none;
}

.block-layered-nav .currently .btn-remove,
.block-layered-nav .currently .btn-previous,
.mini-products-list .btn-remove,
.mini-products-list .btn-previous,
#compare-items .btn-remove,
#compare-items .btn-previous {
  float: right;
  margin-left: 6px;
}

.login-button,
.register-button,
.btn-add,
.btn-primary,
.btn-cart {
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/add-to-cart.png) no-repeat;
  background-size: 100% 100%;
}
.login-button:hover,
.register-button:hover,
.btn-add:hover,
.btn-primary:hover,
.btn-cart:hover {
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/add-to-cart.png) no-repeat;
  background-size: 100% 100%;
  color: white;
}

/* -------------------------------------------- *
 * Checkout Agreements
 */
.checkout-agreements li {
  margin-bottom: 20px;
}

.checkout-agreements .agreement-content {
  overflow-y: auto;
  max-width: 670px;
  max-height: 125px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #CCCCCC;
  background: #F4F4F4;
}

/* -------------------------------------------- *
 * CVV Security Code
 */
.cvv-what-is-this {
  margin-left: 10px;
  font-size: 13px;
  line-height: 24px;
}

/* -------------------------------------------- *
 * Container
 */
.main-container,
.footer-container {
  position: relative;
  max-width: 989px;
  margin: 0 auto;
  padding: 10px;
}
.main-container:after,
.footer-container:after {
  content: '';
  display: table;
  clear: both;
}

.footer-container {
  padding-top: 0px;
}

/* -------------------------------------------- *
 * Column Layouts
 */
.main:after,
.col-wrapper:after {
  content: '';
  display: table;
  clear: both;
}

.col-left,
.col-right,
.col-main {
  padding: 0 10px;
}

.col-left {
  float: left;
  width: 25%;
  padding-left: 0;
  /* Remove the 15px padding */
  clear: left;
}
.col-left img {
  max-width: 100%;
}

.col-right {
  float: right;
  width: 25%;
  padding-right: 0;
  /* Remove the 15px padding */
}
.col-right img {
  max-width: 100%;
}

.col-main {
  float: left;
  width: 75%;
}

.col1-layout .col-main {
  float: none;
  width: auto;
  padding: 0 10px;
  /* Remove the 15px padding */
}

.col2-left-layout .col-main {
  float: right;
  padding-right: 0;
  /* Remove the 15px padding */
}

.col2-right-layout .col-main {
  padding-left: 0;
  /* Remove the 15px padding */
}

.col3-layout .col-right {
  width: 20.83333%;
}
.col3-layout .col-wrapper {
  float: left;
  width: 79.16667%;
}
.col3-layout .col-wrapper .col-main {
  float: right;
  width: 73.68421%;
}
.col3-layout .col-wrapper .col-left {
  width: 26.31579%;
}

@media only screen and (max-width: 1000px) {
  .col3-layout .col-right {
    float: left;
    clear: left;
    padding-left: 0;
    padding-right: 10px;
    width: 25%;
  }
  .col3-layout .col-wrapper {
    float: right;
    width: 100%;
  }
  .col3-layout .col-wrapper .col-main {
    float: right;
    width: 75%;
  }
  .col3-layout .col-wrapper .col-left {
    width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .col-left,
  .col-right,
  .col-main,
  .col1-layout .col-left,
  .col1-layout .col-right,
  .col1-layout .col-main,
  .col2-left-layout .col-left,
  .col2-left-layout .col-right,
  .col2-left-layout .col-main,
  .col2-right-layout .col-left,
  .col2-right-layout .col-right,
  .col2-right-layout .col-main,
  .col3-layout .col-wrapper .col-left,
  .col3-layout .col-right,
  .col3-layout .col-wrapper .col-main {
    padding: 0;
    margin-bottom: 10px;
    float: none;
    width: auto;
  }

  .col3-layout .col-wrapper {
    float: none;
    width: auto;
  }

  .col-main {
    float: none;
    width: auto;
  }

  .col-main .col-left {
    padding: 0;
    /* On product listing pages, the left column gets moved inside col-main on small viewports */
  }

  .catalog-category-view .main {
    display: flex;
    flex-flow: column-reverse;
  }
}
/* Content Columns */
.col2-set {
  width: 100%;
}
.col2-set .col-1,
.col2-set .col-2 {
  width: 50%;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .col2-set .col-1,
  .col2-set .col-2 {
    padding: 10px;
  }
}
.col2-set .col-1 {
  float: left;
  padding-left: 0;
}
.col2-set .col-2 {
  float: right;
  padding-right: 0;
}
@media only screen and (max-width: 479px) {
  .col2-set .col-1,
  .col2-set .col-2 {
    float: none;
    width: auto;
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
.col2-set .narrow {
  width: 33%;
}
.col2-set .wide {
  width: 65%;
}
.col2-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Top Container
 */
@media only screen and (min-width: 768px) {
  .top-container {
    max-width: 989px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
/* -------------------------------------------- *
 * Global Site Notice
 */
.global-site-notice {
  background: #676157;
  color: #E6E6E6;
  font-size: 11px;
}
.global-site-notice .notice-inner {
  width: 100%;
  max-width: 989px;
  margin-left: auto;
  margin-right: auto;
  line-height: 11px;
  min-height: 40px;
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  background-position: left;
  background-repeat: no-repeat;
}
.global-site-notice p {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Promotional Message Banner
 */
.promo-msg {
  color: #3399CC;
  text-align: center;
  margin: 10px;
  text-transform: uppercase;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* -------------------------------------------- *
 * Grid
 */
.grid:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Messages
 */
.success {
  color: #11B400;
}

.error {
  color: #DF280A;
  font-weight: bold;
}

.notice {
  font-weight: normal;
  color: #DF280A;
}

/* -------------------------------------------- *
 * Messages
 */
.messages {
  margin-bottom: 10px;
}

.messages li li {
  position: relative;
  margin-bottom: 5px;
  padding: 7px 10px 7px 20px;
  background: #F4F4F4;
  font-size: 15px;
}

.messages li li:before {
  top: 50%;
  left: 0;
  margin-top: -6px;
}

.messages .error-msg li {
  color: #000000;
  border-left: 5px solid #DF280A;
  background-color: #FAEBE7;
}

.messages .error-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #DF280A;
  border-right: none;
}

.messages .notice-msg li {
  color: #000000;
  border-left: 5px solid #E26703;
  background-color: #F9EBE6;
}

.messages .notice-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #E26703;
  border-right: none;
}

.messages .success-msg li {
  color: #000000;
  border-left: 5px solid #11B400;
  background-color: #EFF5EA;
}

.messages .success-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #11B400;
  border-right: none;
}

@media only screen and (min-width: 915px) {
  .order-list-grid .col-1 {
    width: 30%;
  }

  .order-list-grid .col-2 {
    width: 50%;
    padding-right: 20px;
  }

  .order-list-grid .col-3 {
    clear: none;
    width: 20%;
    padding-top: 0;
  }
}
/* -------------------------------------------- *
 * Page Popup
 */
.page-popup {
  padding: 20px;
  background: #FFFFFF;
  height: auto;
}

.page-popup h1 {
  margin: 0 0 0.5em;
  font-size: 36px;
}

/* -------------------------------------------- *
 * Payment Methods
 */
.payment-methods {
  margin-bottom: 20px;
}

.payment-methods dt {
  padding: 5px 0;
}

.payment-methods dd {
  padding-top: 10px;
}

.payment-methods .form-list {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 5px 15px 15px;
  padding: 15px;
  border: 1px solid #CCCCCC;
  background: #F4F4F4;
}

.payment-methods .form-list:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #CCCCCC;
  border-top: none;
  top: -11px;
  left: 30px;
}

.payment-methods .form-list:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #F4F4F4;
  border-top: none;
  top: -10px;
  left: 30px;
}

.payment-methods .form-list li:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Please Wait (Loading Indicator)
 */
.please-wait {
  display: inline-block;
  margin-left: 10px;
  margin-top: 5px;
  line-height: 24px;
  height: 24px;
  white-space: nowrap;
  /* Prevent the linebreak in the HTML from causing layout issues */
}
.please-wait img {
  float: left;
  margin-right: 5px;
  width: 24px;
}

/* -------------------------------------------- *
 * Price Box - Standard
 */
.price-box {
  margin: 7px 0;
}

.price-box p {
  margin-bottom: 0;
}

.price-box .price-label {
  white-space: nowrap;
}

.price-box .minimal-price-link {
  padding-left: 1em;
  display: block;
  /* We want this to show on its own line, otherwise the layout looks funky */
}

.msrp {
  text-decoration: line-through;
}

/* -------------------------------------------- *
 * Price Box - Special
 */
.price-box .old-price span {
  text-decoration: line-through;
}

/* -------------------------------------------- *
 * Price Box - Taxes
 */
.price-box .price-excluding-tax,
.price-box .price-including-tax {
  display: block;
}

span.weee {
  display: block;
}

/* -------------------------------------------- *
 * Tier Prices
 */
.product-pricing,
.tier-prices,
.tier-prices-grouped {
  display: inline-block;
  padding: 4px 8px;
  background: #FBF4DE;
  border: 1px solid #E2D4C7;
  margin-top: 7px;
}
.product-pricing li,
.tier-prices li,
.tier-prices-grouped li {
  font-size: 12px;
}
.product-pricing .benefit,
.tier-prices .benefit,
.tier-prices-grouped .benefit {
  font-style: italic;
}
.product-pricing .price,
.tier-prices .price,
.tier-prices-grouped .price {
  font-weight: bold;
}

/* ============================================ *
 * Item Options
 * ============================================ */
.item-options {
  font-size: 14px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.item-options:after {
  content: '';
  display: table;
  clear: both;
}
.item-options dt {
  float: left;
  clear: left;
  font-weight: 600;
  padding-right: 5px;
  font-style: italic;
}
.item-options dt:after {
  content: ': ';
}
.item-options dd {
  float: left;
  padding-left: 10px;
  margin: 0 0 6px;
}

.truncated,
.truncated a.dots {
  cursor: help;
}

.truncated a.details {
  cursor: help;
  height: 16px;
  line-height: 16px;
}
.truncated a.details:hover {
  text-decoration: none;
}

.truncated .truncated_full_value {
  position: relative;
  z-index: 300;
}

.truncated .truncated_full_value .item-options {
  display: none;
  position: absolute;
  z-index: 300;
  width: 200px;
  padding: 8px;
  border: 1px solid #3399CC;
  background-color: #F6F6F6;
  top: 21px;
  left: -100px;
}
.truncated .truncated_full_value .item-options:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #3399CC;
  border-top: none;
  left: 97px;
  top: -7px;
}

.truncated .truncated_full_value .item-options > p {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.truncated .show .item-options {
  display: block;
}

@media only screen and (max-width: 479px) {
  .truncated {
    cursor: inherit;
  }
  .truncated a.details {
    display: none;
  }
  .truncated .truncated_full_value .item-options {
    display: block;
    position: static;
    z-index: 1;
    width: 100%;
    border: none;
    background-color: transparent;
  }
  .truncated .truncated_full_value .item-options p {
    float: none;
  }
  .truncated .truncated_full_value .item-options:after {
    display: none;
  }
}
/* -------------------------------------------- *
 * Printer Friendly Page
 */
.page-print {
  width: 6.5in;
  margin: 20px;
  background: #FFFFFF;
}

/* -------------------------------------------- *
 * Add to links
 */
.add-to-links a {
  display: inline-block;
  padding: 0px 3px 3px;
}

.add-to-links .separator {
  display: none;
}

/* -------------------------------------------- *
 * Product Image
 */
.product-image,
.no-touch .product-img-box .product-image:not(.zoom-available):hover {
  position: relative;
  display: block;
}

/* -------------------------------------------- *
 * Ratings
 */
.ratings {
  margin: 2px 0;
}
.ratings .rating-box,
.ratings .rating-links {
  margin: 5px 0;
}
.ratings .rating-box {
  width: 65px;
  height: 13px;
  background-repeat: repeat-x;
  background-position: 0 -615px;
  overflow: hidden;
}
.ratings .rating-box .rating {
  float: left;
  height: 13px;
  background-repeat: repeat-x;
  background-position: 0 -600px;
}
.ratings .amount {
  display: block;
  margin: 5px auto;
}
.ratings .rating-links .separator {
  margin: 0 3px;
}

/* -------------------------------------------- *
 * Standard Formatted Text Block
 */
p:empty {
  display: none;
}

.std p {
  margin: 0 0 1.5em;
}

.std ol {
  list-style: decimal outside;
  margin-bottom: 1.5em;
}

.std ol li {
  margin-left: 2em;
}

.std ul {
  list-style: disc outside;
  margin-bottom: 1.5em;
}

.std ul li {
  margin-left: 2em;
}

.std .note {
  color: #A0A0A0;
  font-size: 13px;
}

/* -------------------------------------------- *
 * Tabs
 */
.tabs {
  margin-bottom: 10px;
  background: #FFFFFF;
}

/* -------------------------------------------- *
 * Toolbar
 */
.toolbar {
  margin-top: 5px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .toolbar {
    padding: 5px 10px;
    background: #F4F4F4;
  }
  .toolbar select {
    background-color: white;
  }
}
.toolbar:after {
  content: '';
  display: table;
  clear: both;
}

.touch.ios .mobile .toolbar {
  background: #e4e4e4;
}

.pager-no-toolbar {
  margin-bottom: 10px;
}

.pager-no-toolbar ~ .pager-no-toolbar {
  margin-top: 10px;
}

.toolbar,
.pager {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #636363;
  line-height: 30px;
  font-size: 12px;
}

.toolbar label,
.pager-no-toolbar label {
  font-weight: normal;
  text-transform: uppercase;
}

.sorter {
  float: left;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .sorter {
    margin-bottom: 10px;
  }
}
.sorter label {
  float: left;
  margin-right: 3px;
}
.sorter label:after {
  content: ':';
}

.sorter > .sort-by {
  float: left;
  margin-right: 5px;
  height: 30px;
}
.sorter > .sort-by .sort-by-switcher {
  width: 30px;
  height: 30px;
  display: inline-block;
}
.sorter > .sort-by .sort-by-switcher--asc {
  background-position: 4px -542px;
}
.sorter > .sort-by .sort-by-switcher--asc:hover {
  background-position: -46px -542px;
}
.sorter > .sort-by .sort-by-switcher--desc {
  background-position: 4px -567px;
}
.sorter > .sort-by .sort-by-switcher--desc:hover {
  background-position: -46px -567px;
}
.sorter > .sort-by select {
  width: 105px;
  padding-left: 5px;
}
@media only screen and (max-width: 767px) {
  .sorter > .sort-by select {
    width: 115px;
  }
}

.sorter > .view-mode {
  float: right;
  display: none;
}
.sorter > .view-mode .grid,
.sorter > .view-mode .list {
  float: left;
  width: 30px;
  height: 30px;
}
.sorter > .view-mode .grid {
  margin-right: 5px;
  background-position: 8px -492px;
}
.sorter > .view-mode strong.grid,
.sorter > .view-mode a.grid:hover {
  background-position: -42px -492px;
}
.sorter > .view-mode .list {
  background-position: 11px -517px;
}
.sorter > .view-mode strong.list,
.sorter > .view-mode a.list:hover {
  background-position: -39px -517px;
}

.pager {
  float: right;
  overflow: hidden;
}
@media only screen and (width: 768px) {
  .pager {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 560px) {
  .pager {
    float: left;
  }
}
.pager > .count-container {
  float: left;
}
@media only screen and (width: 768px) {
  .pager > .count-container .amount {
    display: none;
  }
}
.pager .amount {
  float: left;
  white-space: nowrap;
  margin: 0 15px 0 0;
}
.pager .limiter {
  float: left;
  height: 30px;
  line-height: 30px;
}
.pager .limiter > label {
  padding-right: 0;
}
.pager .limiter > label:after {
  content: ':';
}
.pager > .limiter select {
  padding-left: 7px;
}
.pager .amount,
.pager .limiter,
.pager .pages {
  margin-bottom: 5px;
}

.count-container-duplicate {
  display: none;
}
@media only screen and (width: 768px) {
  .count-container-duplicate {
    display: inline-block;
  }
}
@media only screen and (max-width: 660px) {
  .count-container-duplicate {
    display: inline-block;
    padding-top: 0px;
    padding-right: 15px;
  }
}

.pages {
  float: right;
  overflow: hidden;
  margin-left: 15px;
}
.pages strong {
  display: none;
}

.pages li {
  float: left;
}

.pages a,
.pages .current {
  display: inline-block;
  border: 0;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 30px;
  width: 30px;
  height: 30px;
  padding: 0;
}

.pages li {
  background: #EBEBEB;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.pages li a {
  color: #292885;
}
.pages li.current {
  background: #292885;
  color: white;
}
.pages .pages-away-6-abs
, .pages .pages-away-5-abs
, .pages .pages-away-4-abs {
  display: block;
}
@media only screen and (max-width: 915px) {
  .pages .pages-away-6-abs
  , .pages .pages-away-5-abs
  , .pages .pages-away-4-abs {
    display: none;
  }
}
@media only screen and (width: 768px) {
  .pages .pages-away-6-abs
  , .pages .pages-away-5-abs
  , .pages .pages-away-4-abs {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .pages .pages-away-6-abs
  , .pages .pages-away-5-abs
  , .pages .pages-away-4-abs {
    display: block;
  }
}
@media only screen and (max-width: 680px) {
  .pages .pages-away-6-abs
  , .pages .pages-away-5-abs
  , .pages .pages-away-4-abs {
    display: none;
  }
}
@media only screen and (max-width: 560px) {
  .pages .pages-away-6-abs
  , .pages .pages-away-5-abs
  , .pages .pages-away-4-abs {
    display: block;
  }
}
@media only screen and (max-width: 365px) {
  .pages .pages-away-6-abs
  , .pages .pages-away-5-abs
  , .pages .pages-away-4-abs {
    display: none;
  }
}
.pages .pages-away-3-abs {
  display: block;
}
@media only screen and (max-width: 875px) {
  .pages .pages-away-3-abs {
    display: none;
  }
}
@media only screen and (width: 768px) {
  .pages .pages-away-3-abs {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .pages .pages-away-3-abs {
    display: block;
  }
}
@media only screen and (max-width: 650px) {
  .pages .pages-away-3-abs {
    display: none;
  }
}
@media only screen and (max-width: 560px) {
  .pages .pages-away-3-abs {
    display: block;
  }
}
@media only screen and (max-width: 365px) {
  .pages .pages-away-3-abs {
    display: none;
  }
}
.pages .pages-away-2-abs {
  display: block;
}
@media only screen and (max-width: 835px) {
  .pages .pages-away-2-abs {
    display: none;
  }
}
@media only screen and (width: 768px) {
  .pages .pages-away-2-abs {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .pages .pages-away-2-abs {
    display: block;
  }
}
@media only screen and (max-width: 620px) {
  .pages .pages-away-2-abs {
    display: none;
  }
}
@media only screen and (max-width: 560px) {
  .pages .pages-away-2-abs {
    display: block;
  }
}
.pages .pages-away-1-abs {
  display: block;
}
@media only screen and (max-width: 795px) {
  .pages .pages-away-1-abs {
    display: none;
  }
}
@media only screen and (width: 768px) {
  .pages .pages-away-1-abs {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .pages .pages-away-1-abs {
    display: block;
  }
}
@media only screen and (max-width: 590px) {
  .pages .pages-away-1-abs {
    display: none;
  }
}
@media only screen and (max-width: 560px) {
  .pages .pages-away-1-abs {
    display: block;
  }
}

.pages a:hover {
  text-decoration: none;
}

.pages .next,
.pages .previous {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  position: relative;
}

.pages .next:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #3399CC;
  border-right: none;
  top: 50%;
  margin-top: -3px;
  left: 50%;
  margin-left: -2px;
}
.pages .next:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #246b8f;
  border-right: none;
}

.pages .previous:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #3399CC;
  border-left: none;
  top: 50%;
  margin-top: -3px;
  left: 50%;
  margin-left: -2px;
}
.pages .previous:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #246b8f;
  border-left: none;
}

@media only screen and (max-width: 479px) {
  .pager .amount--has-pages {
    display: none;
  }

  .pages {
    float: left;
  }

  .limiter label {
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .col1-layout .sorter,
  .col1-layout .pager {
    width: 100%;
  }
  .col1-layout .pager {
    float: left;
    clear: both;
  }
  .col1-layout .pager .pages {
    float: left;
    margin-left: 0;
  }
  .col1-layout .pager .count-container {
    float: right;
  }
}
@media only screen and (max-width: 1279px) {
  .toolbar .view-mode > label {
    display: none;
  }
}
/* ============================================ *
 * Tax - Full Tax Summary
 * ============================================ */
#checkout-review-table .summary-collapse,
#shopping-cart-totals-table .summary-collapse,
body.customer-account .data-table .summary-collapse {
  position: relative;
  cursor: pointer;
}
#checkout-review-table .summary-collapse:before,
#shopping-cart-totals-table .summary-collapse:before,
body.customer-account .data-table .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #3399CC;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
#checkout-review-table .summary-collapse:hover:before,
#shopping-cart-totals-table .summary-collapse:hover:before,
body.customer-account .data-table .summary-collapse:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #246b8f;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
#checkout-review-table .show-details .summary-collapse:before,
#shopping-cart-totals-table .show-details .summary-collapse:before,
body.customer-account .data-table .show-details .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #3399CC;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
#checkout-review-table .show-details .summary-collapse:hover:before,
#shopping-cart-totals-table .show-details .summary-collapse:hover:before,
body.customer-account .data-table .show-details .summary-collapse:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #246b8f;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

#shopping-cart-totals-table tfoot td .summary-collapse:before, #shopping-cart-totals-table tfoot td .summary-collapse:hover:before {
  margin-bottom: 5px;
}

#shopping-cart-totals-table label {
  min-width: initial !important;
}

/* ============================================ *
 * Magento Helpers
 * ============================================ */
.a-center {
  text-align: center;
}

.a-right,
.align-right {
  text-align: right;
}

.no-display {
  display: none !important;
}

.nobr,
.nowrap {
  white-space: nowrap;
}

.width-full {
  width: 100%;
}

/* ============================================ *
 * Custom Helpers
 * ============================================ */
.hidden {
  display: none;
}

/* ============================================ *
 * Print Styles
 * ============================================ */
.page-print .print-head {
  margin: 0 0 15px;
}

.page-print .print-head .logo {
  float: none;
  max-height: 50px;
  width: auto;
}

/* ============================================ *
 * Overlay
 * ============================================ */
#mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(119, 119, 119, 0.75);
  z-index: 999;
  display: none;
  cursor: pointer;
}

#overlay {
  position: fixed;
  z-index: 1000;
}
@media only screen and (min-width: 768px) {
  #overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    position: fixed;
  }
}
#overlay #overlay-content {
  background: white;
}
@media only screen and (max-width: 1024px) {
  #overlay img {
    max-width: 700px;
  }
}
@media only screen and (max-width: 767px) {
  #overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
  }
  #overlay #overlay-content {
    width: 100%;
    height: 100%;
    padding-top: 50px;
  }
  #overlay #overlay-content img {
    max-width: 100vw;
    max-height: calc(100vh - 50px);
    margin: auto;
  }
}

#close-overlay {
  position: absolute;
}
@media only screen and (min-width: 768px) {
  #close-overlay {
    height: 30px;
    width: 30px;
    right: -15px;
    top: -15px;
    background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/icons.png) no-repeat;
    background-position: -40px 0;
    cursor: pointer;
  }
}
@media only screen and (max-width: 767px) {
  #close-overlay {
    right: 10px;
    top: 10px;
  }
  #close-overlay:after {
    content: '\00d7';
    font-size: 50px;
    line-height: 20px;
    font-weight: 100;
  }
}

@media only screen and (max-width: 599px) {
  button.button.btn-update {
    margin-left: 42px !important;
  }
}

body.ajax-loading:before {
  content: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/opc-ajax-loader.gif);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  position: fixed;
  display: block;
  width: 50px;
  height: 50px;
  z-index: 1000;
}
body.ajax-loading:not(.catalog-category-view):after {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(119, 119, 119, 0.75);
  z-index: 999;
  content: '';
  display: block;
}

body.ajax-loading-hide::before,
body.ajax-loading-hide.ajax-loading::before,
body.ajax-loading-hide::after,
body.ajax-loading-hide.ajax-loading::after {
  display: none;
}

.cms-no-route .main,
.cms-service-unavailable .main {
  padding: 0 10px;
}
.cms-no-route .col-main .std h1,
.cms-service-unavailable .col-main .std h1 {
  color: #000000;
  font-size: 20px;
  padding: 10px 0 10px;
  margin: 0;
}
.cms-no-route .col-main .std p,
.cms-service-unavailable .col-main .std p {
  margin: 0 0 10px 0;
}
.cms-no-route .col-main .std .phone,
.cms-service-unavailable .col-main .std .phone {
  color: #4C7F93;
}
.cms-no-route #brands .brands,
.cms-service-unavailable #brands .brands {
  margin: 0;
}
.cms-no-route #brands .brands .block-title,
.cms-service-unavailable #brands .brands .block-title {
  width: 100%;
  border-top: 2px solid #c2c2c2;
  margin: 0;
}
.cms-no-route #brands .brands .block-title .title-helper,
.cms-service-unavailable #brands .brands .block-title .title-helper {
  position: relative;
  text-align: center;
  top: -26px;
}
.cms-no-route #brands .brands .block-title .title-helper span,
.cms-service-unavailable #brands .brands .block-title .title-helper span {
  padding: 0 5px;
}
.cms-no-route #brands .brands .block-title::after,
.cms-service-unavailable #brands .brands .block-title::after {
  display: none;
}
.cms-no-route #brands .brands .toggler,
.cms-service-unavailable #brands .brands .toggler {
  display: none;
}
.cms-no-route #brands .brands ul.hidden,
.cms-service-unavailable #brands .brands ul.hidden {
  display: block;
}

.page-popup #habla_beta_container_do_not_rely_on_div_classes_or_names {
  display: none;
}

/* ============================================ *
 * Slider
 * ============================================ */
.slider {
  position: relative;
}
.slider .widget-static-block p {
  margin-bottom: 0;
}
.slider .slick-slide {
  outline: none;
}
.slider .slick-slide img {
  width: 100%;
  height: auto;
}
.slider .slick-dots {
  text-align: center;
}
.slider .slick-dots li {
  display: inline;
  padding: 5px !important;
}
.slider .slick-dots li button {
  color: transparent;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: none;
}
.slider .slick-dots li.slick-active button {
  background: #292885;
  border-color: #292885;
}
@media only screen and (max-width: 767px) {
  .slider .slide:not(:last-child) {
    margin-bottom: 10px;
  }
  .slider .slide img {
    width: 100%;
  }
}
.slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  color: transparent;
  border: none;
  width: 12px;
  height: 20px;
  background-size: contain;
  z-index: 100;
  outline: none;
  overflow: hidden;
}
.slider .slick-arrow.slick-prev {
  left: -15px;
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/slider-controls.png) left center no-repeat;
}
.slider .slick-arrow.slick-prev:hover {
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/slider-controls.png) left bottom no-repeat;
}
.slider .slick-arrow.slick-next {
  right: -15px;
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/slider-controls.png) right center;
}
.slider .slick-arrow.slick-next:hover {
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/slider-controls.png) right bottom;
}
.slider .slick-arrow.slick-disabled {
  display: none !important;
}

/* Tooltips */
a.tooltip span {
  z-index: 10;
  display: none;
  padding: 14px 20px;
  margin-top: -30px;
  margin-left: 28px;
  width: 240px;
  line-height: 20px;
}
@media only screen and (min-width: 1025px) {
  a.tooltip:hover span {
    display: inline;
    color: #111;
    border: 1px solid #4B99F2;
    background: #EBF3FF;
    position: absolute;
  }
}

.mobile-tooltip {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999999999;
  height: 100%;
}
.mobile-tooltip span {
  display: block;
  padding: 14px 20px;
  width: 240px;
  color: #111;
  border: 1px solid #4B99F2;
  background: #EBF3FF;
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
}
.mobile-tooltip .close {
  position: absolute;
  z-index: 999999999;
  top: 0;
  right: 0;
  border: none;
  background: none;
  width: auto;
  left: auto;
  bottom: auto;
  padding: 2px 5px 0 0;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  cursor: pointer;
}

body.catalog-product-view .product-options-bottom .ui-spinner {
  background: #f9f9f9;
}
body.catalog-product-view .product-options-bottom .ui-spinner .ui-spinner-input,
body.catalog-product-view .product-options-bottom .ui-spinner .ui-spinner-button {
  background: transparent;
}
body.catalog-product-view .product-options-bottom .add-to-cart {
  margin-bottom: 0;
}

img.lazy {
  display: none;
}

img.lazy.lazy-afterLoad {
  display: inline-block;
}

/* ============================================ *
 * FORMS - COMMON
 * ============================================ */
/* -------------------------------------------- *
 * Fieldsets
 */
.fieldset p {
  margin-bottom: 7px;
}
.fieldset p.required {
  margin-bottom: 5px;
  float: right;
  font-size: 12px;
  margin-top: 0px;
}

.fieldset + .fieldset {
  margin-top: 5px;
}

form .legend {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  margin-bottom: 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid #EDEDED;
}

/* -------------------------------------------- *
 * Input Box
 */
.input-box {
  padding-top: 2px;
}
.input-box:after {
  content: '';
  display: table;
  clear: both;
}

li.centinel-logos div.input-box img {
  display: inline;
  vertical-align: middle;
}

/* For adjacent select inputs. */
/* Example: credit card expiration month and year. */
.input-box .v-fix {
  float: left;
  margin-right: 5px;
  max-width: 100%;
}

/* -------------------------------------------- *
 * Labels
 */
label {
  display: inline-block;
  font-size: 13px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 600;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

label.required:after,
span.required:after {
  content: ' *';
  color: #DF280A;
  font-weight: normal;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
}

label.required em,
span.required em {
  display: none;
}

/* -------------------------------------------- *
 * Hints
 */
.input-hint {
  color: #A0A0A0;
  font-size: 12px;
}

/* -------------------------------------------- *
 * Select
 */
select {
  font-size: 14px;
}

select + select {
  margin-left: 5px;
}

select[multiple] {
  width: 270px;
  border: 1px solid #C0C0C0;
  font-size: 15px;
  padding: 5px;
}

/* -------------------------------------------- *
 * Textarea
 */
textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 450px;
  padding: 5px;
}

/* -------------------------------------------- *
 * Inputs
 */
.input-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #C0C0C0;
  background: #FFFFFF;
  font-size: 15px;
}
.input-text:focus {
  border: 1px solid #3399CC;
}

.input-text.validation-failed {
  border-color: #DF280A;
}

.input-text.validation-failed:focus {
  outline-color: #ef9485;
}

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  height: 30px;
  padding: 0 8px;
}

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  width: 365px;
  max-width: 100%;
}

/* Only show on iPhones (not iPads or any other device) */
@media only screen and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 0) {
  input[type=email],
  input[type=search],
  input[type=number],
  input[type=password],
  input[type=tel],
  input[type=text],
  select {
    font-size: 16px;
    /* Prevent from zooming on focus */
  }
}
.ie8 .input-text {
  max-width: none;
}

/* -------------------------------------------- *
 * Inputs - Quantity
 */
input[type=number].qty,
input[type=text].qty {
  /* width: 3em; */
  text-align: center;
  vertical-align: middle;
}

/* -------------------------------------------- *
 * Placeholder
 */
::-webkit-input-placeholder {
  color: #A0A0A0;
}

input:-moz-placeholder {
  color: #A0A0A0;
}

/* -------------------------------------------- *
 * Checkbox And Radio
 */
.checkbox,
.radio {
  position: relative;
  top: -1px;
  display: inline-block;
}

.checkbox + label,
.radio + label {
  width: auto;
  max-width: 85%;
  padding: 0 0 0 8px;
  font-size: 14px;
  font-weight: normal;
  vertical-align: top;
}

/* -------------------------------------------- *
 * Validation
 */
p.required,
.validation-advice {
  margin: 5px 0 0;
  color: #DF280A;
  font-size: 13px;
}

/* ============================================ *
 * Form List
 * ============================================ */
.form-list > li {
  margin-bottom: 10px;
}
.form-list select {
  width: 365px;
  max-width: 100%;
}
.form-list .input-range .input-text {
  width: 74px;
}
.form-list .field,
.form-list .wide,
.form-list .control {
  margin-bottom: 10px;
}

/* Turn the label of controls (radio/checkbox) into a button style that wraps the input */
.form-list .control,
.sp-methods dt,
#checkout-shipping-method-load .sp-methods dd,
#co-shipping-method-form .sp-methods dd,
.product-options ul.options-list {
  /* When a label is next to an input that is set to not display, we should style the label in a non-clickable state */
}
.form-list .control div.input-box,
.sp-methods dt div.input-box,
#checkout-shipping-method-load .sp-methods dd div.input-box,
#co-shipping-method-form .sp-methods dd div.input-box,
.product-options ul.options-list div.input-box {
  display: inline;
  float: left;
}
.form-list .control div.input-box:after,
.sp-methods dt div.input-box:after,
#checkout-shipping-method-load .sp-methods dd div.input-box:after,
#co-shipping-method-form .sp-methods dd div.input-box:after,
.product-options ul.options-list div.input-box:after {
  display: none;
}
.form-list .control input.radio,
.form-list .control input.checkbox,
.sp-methods dt input.radio,
.sp-methods dt input.checkbox,
#checkout-shipping-method-load .sp-methods dd input.radio,
#checkout-shipping-method-load .sp-methods dd input.checkbox,
#co-shipping-method-form .sp-methods dd input.radio,
#co-shipping-method-form .sp-methods dd input.checkbox,
.product-options ul.options-list input.radio,
.product-options ul.options-list input.checkbox {
  float: left;
  margin-right: -40px;
  margin-top: 10px;
  margin-left: 15px;
}
.form-list .control label,
.sp-methods dt label,
#checkout-shipping-method-load .sp-methods dd label,
#co-shipping-method-form .sp-methods dd label,
.product-options ul.options-list label {
  color: #636363;
  background-color: #F4F4F4;
  padding: 5px 10px;
  display: inline-block;
  width: auto;
  max-width: none;
  min-width: 250px;
  float: none;
  padding: 6px 10px 6px 40px;
}
.form-list .control label:hover,
.sp-methods dt label:hover,
#checkout-shipping-method-load .sp-methods dd label:hover,
#co-shipping-method-form .sp-methods dd label:hover,
.product-options ul.options-list label:hover {
  background-color: #ededed;
}
.form-list .control .no-display + label,
.sp-methods dt .no-display + label,
#checkout-shipping-method-load .sp-methods dd .no-display + label,
#co-shipping-method-form .sp-methods dd .no-display + label,
.product-options ul.options-list .no-display + label {
  padding-left: 10px;
  background-color: transparent;
}
.form-list .control .no-display + label:hover,
.sp-methods dt .no-display + label:hover,
#checkout-shipping-method-load .sp-methods dd .no-display + label:hover,
#co-shipping-method-form .sp-methods dd .no-display + label:hover,
.product-options ul.options-list .no-display + label:hover {
  background-color: transparent;
}

.product-options ul.options-list label,
.col2-set .form-list .control label {
  min-width: inherit;
  width: 250px;
  max-width: 100%;
}

.form-list .control.remember-me-box label {
  width: auto;
  max-width: none;
  min-width: inherit;
}

.form-list .control {
  margin-top: 10px;
}
.form-list .control label {
  float: none;
}
.form-list .control .radio,
.form-list .control .checkbox {
  margin-right: 6px;
}
.form-list .control .input-box {
  clear: none;
  display: inline-block;
  width: auto;
  padding: 0;
}

form .form-instructions {
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 13px;
  color: #A0A0A0;
}

/* ============================================ *
 * Table Helpers
 * ============================================ */
.hide-th {
  text-indent: -9999px;
}

/* ============================================ *
 * Data Table
 * ============================================ */
.data-table {
  width: 100%;
}

.data-table td,
.data-table th {
  padding: 10px;
  vertical-align: top;
}

.data-table th {
  background: #F4F4F4;
  text-transform: uppercase;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 1.4;
  white-space: nowrap;
}

.data-table thead th,
.data-table tbody td {
  border-bottom: 1px solid #C0C0C0;
}

.data-table tbody td,
.data-table tfoot td {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}

.data-table tfoot tr {
  background: #F4F4F4;
}

.data-table tbody td .item-options {
  margin-left: 20px;
  margin-top: 10px;
}
.data-table tbody td .item-options dt:after {
  content: ':';
}

td.a-center {
  text-align: center;
}

td.a-right {
  text-align: right;
}

/* ============================================ *
 * Generic Info Table
 * ============================================ */
.info-box {
  border: 1px solid #C0C0C0;
  padding: 12px 15px;
  margin: 0 0 15px;
}
.info-box h2 {
  font-weight: bold;
  font-size: 13px;
}

.info-table th,
.info-table td {
  vertical-align: top;
}

.info-table th {
  font-weight: bold;
  padding: 4px 20px 4px 0;
}

.info-table td {
  padding: 4px 0;
}

/* ============================================ *
 * Zebra-Stripe Table
 * ============================================ */
.zebra-table tr:first-child,
.zebra-table th:first-child {
  border-top: 1px solid #C0C0C0;
}
.zebra-table td,
.zebra-table th {
  border-bottom: 1px solid #C0C0C0;
  padding: 6px;
  background-color: transparent;
}
.zebra-table tr {
  background-color: #EEEDED;
}
.zebra-table tr:nth-child(odd) {
  background-color: #F8F7F5;
}

/* ============================================ *
 * Linearize Table
 * ============================================ */
@media only screen and (max-width: 479px) {
  .linearize-table {
    /* Helpers */
  }
  .linearize-table tr,
  .linearize-table th,
  .linearize-table td {
    display: block;
  }
  .linearize-table thead th {
    border-right: 0;
    border-left: 0;
  }
  .linearize-table thead th.lin-hide {
    display: none;
  }
  .linearize-table thead th:nth-child(1n+2) {
    display: none;
  }
  .linearize-table tbody tr {
    position: relative;
    border-bottom: 1px solid #CCCCCC;
  }
  .linearize-table tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  .linearize-table tbody td.lin-hide {
    display: none;
  }
  .linearize-table tbody td:first-child {
    padding-top: 10px;
  }
  .linearize-table tbody td:first-child,
  .linearize-table tbody td:first-child h3 {
    font-weight: bold;
  }
  .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  .linearize-table tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  .linearize-table tfoot tr {
    display: block;
    text-align: right;
  }
  .linearize-table tfoot tr:after {
    content: '';
    display: table;
    clear: both;
  }
  .linearize-table tfoot td {
    display: block;
    float: left;
  }
  .linearize-table tfoot td.lin-hide {
    display: none;
  }
  .linearize-table tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  .linearize-table tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  .linearize-table .linearize-hide {
    display: none;
  }
  .linearize-table .linearize-unpad {
    padding: 0;
  }
  .linearize-table .linearize-show {
    display: block;
  }
}
@media only screen and (max-width: 599px) {
  .linearize-table-large {
    /* Helpers */
  }
  .linearize-table-large tr,
  .linearize-table-large th,
  .linearize-table-large td {
    display: block;
  }
  .linearize-table-large thead th {
    border-right: 0;
    border-left: 0;
  }
  .linearize-table-large thead th.lin-hide {
    display: none;
  }
  .linearize-table-large thead th:nth-child(1n+2) {
    display: none;
  }
  .linearize-table-large tbody tr {
    position: relative;
    border-bottom: 1px solid #CCCCCC;
  }
  .linearize-table-large tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  .linearize-table-large tbody td.lin-hide {
    display: none;
  }
  .linearize-table-large tbody td:first-child {
    padding-top: 10px;
  }
  .linearize-table-large tbody td:first-child,
  .linearize-table-large tbody td:first-child h3 {
    font-weight: bold;
  }
  .linearize-table-large tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  .linearize-table-large tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  .linearize-table-large tfoot tr {
    display: block;
    text-align: right;
  }
  .linearize-table-large tfoot tr:after {
    content: '';
    display: table;
    clear: both;
  }
  .linearize-table-large tfoot td {
    display: block;
    float: left;
  }
  .linearize-table-large tfoot td.lin-hide {
    display: none;
  }
  .linearize-table-large tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  .linearize-table-large tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  .linearize-table-large .linearize-hide {
    display: none;
  }
  .linearize-table-large .linearize-unpad {
    padding: 0;
  }
  .linearize-table-large .linearize-show {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .linearize-table-summary {
    /* Helpers */
  }
  .linearize-table-summary tr,
  .linearize-table-summary th,
  .linearize-table-summary td {
    display: block;
  }
  .linearize-table-summary thead th {
    border-right: 0;
    border-left: 0;
  }
  .linearize-table-summary thead th.lin-hide {
    display: none;
  }
  .linearize-table-summary thead th:nth-child(1n+2) {
    display: none;
  }
  .linearize-table-summary tbody tr {
    position: relative;
    border-bottom: 1px solid #CCCCCC;
  }
  .linearize-table-summary tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  .linearize-table-summary tbody td.lin-hide {
    display: none;
  }
  .linearize-table-summary tbody td:first-child {
    padding-top: 10px;
  }
  .linearize-table-summary tbody td:first-child,
  .linearize-table-summary tbody td:first-child h3 {
    font-weight: bold;
  }
  .linearize-table-summary tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  .linearize-table-summary tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  .linearize-table-summary tfoot tr {
    display: block;
    text-align: right;
  }
  .linearize-table-summary tfoot tr:after {
    content: '';
    display: table;
    clear: both;
  }
  .linearize-table-summary tfoot td {
    display: block;
    float: left;
  }
  .linearize-table-summary tfoot td.lin-hide {
    display: none;
  }
  .linearize-table-summary tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  .linearize-table-summary tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  .linearize-table-summary .linearize-hide {
    display: none;
  }
  .linearize-table-summary .linearize-unpad {
    padding: 0;
  }
  .linearize-table-summary .linearize-show {
    display: block;
  }
}
@media only screen and (min-width: 600px) {
  .linearize-table .linearize-collapse {
    display: none;
  }
}
/* ============================================ *
 * Global
 * ============================================ */
html,
body {
  height: 100%;
}

.wrapper {
  min-width: 320px;
  min-height: 100%;
  margin: 0 auto;
  background: #FFFFFF;
}

.wrapper:after {
  content: '';
  display: table;
  clear: both;
}

.main-container {
  padding: 10px 0 15px 0;
  background-position: 0 35px;
}

@media only screen and (max-width: 767px) {
  body div.hbl_pal_main_width {
    width: auto !important;
  }
}
/* ============================================ *
 * Header
 * ============================================ */
@media only screen and (min-width: 768px) {
  .page-header {
    max-width: 100%;
    margin: 0 auto;
    background: #76c4e6;
    background: -moz-linear-gradient(top, #76c4e6 0%, #94cde6 100%);
    background: -webkit-linear-gradient(top, #76c4e6 0%, #94cde6 100%);
    background: linear-gradient(to bottom, #76c4e6 0%, #94cde6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#76c4e6', endColorstr='#94cde6',GradientType=0 );
  }

  .page-header-container {
    max-width: 989px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 auto;
    min-height: 120px;
  }

  .mobile-element {
    display: none;
  }
}
.header-language-container,
.page-header {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}

.page-header-container {
  position: relative;
}

.header-promo-callout {
  background-color: #2a2c83;
  clear: both;
  color: #fff;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 16px;
  line-height: 30px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.header-promo-callout .promo-text.toggler {
  float: none;
}
.header-promo-callout .promo-text em {
  text-decoration: underline;
  font-style: normal;
}
.header-promo-callout .details {
  background-color: #fff;
  box-shadow: 0 0 6px #525252;
  left: 50%;
  line-height: 22px;
  position: absolute;
  width: 100%;
  max-width: 989px;
  transform: translate(-50%);
}
.header-promo-callout .details.content .inner {
  padding-bottom: 40px;
}
.header-promo-callout .details.content .inner .button {
  background-color: #2a2c83;
  bottom: 0;
  color: #fff;
  line-height: 40px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  line-height: 1.5;
}
.header-promo-callout .details.content .inner .button:after {
  bottom: 4px;
  content: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/nav_up_arrow-white.png");
  padding-left: 16px;
  position: relative;
}
.header-promo-callout .details a:link, .header-promo-callout .details a:visited {
  color: #4C7F93;
}
.header-promo-callout .details a:active {
  color: #fff;
  text-decoration: none;
}
.header-promo-callout .inner .promo-bar-content-container {
  background-color: #fff;
  color: #525252;
  font-size: 16px;
  padding: 18px 18px 24px;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .header-promo-callout {
    font-size: 18px;
    line-height: 1.5;
    padding: 5px 15px;
  }
}
@media only screen and (max-width: 599px) {
  .header-promo-callout em {
    display: block;
  }
}
@media only screen and (max-width: 479px) {
  .header-promo-callout {
    font-size: 14px;
  }
}

.header-promo-callout-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1005;
}

.firecheckout-index-index .header-promo-callout-fixed {
  position: relative;
}

.mobile-element.contact {
  text-align: center;
  height: 40px;
  line-height: 40px;
  text-transform: uppercase;
  background: #d4d4d4;
  background: -moz-linear-gradient(top, #d4d4d4 0%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d4d4d4), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #d4d4d4 0%, #ffffff 100%);
  background: -o-linear-gradient(top, #d4d4d4 0%, #ffffff 100%);
  background: -ms-linear-gradient(top, #d4d4d4 0%, #ffffff 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4d4d4', endColorstr='#ffffff',GradientType=0 )";
  background: linear-gradient(to bottom, #d4d4d4 0%, #ffffff 100%);
}
.mobile-element.contact a {
  display: block;
  color: #292885;
  font-weight: 500;
}
.mobile-element.contact a:hover {
  text-decoration: none;
}

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
.header-language-background {
  padding: 10px;
  background-color: #3399CC;
  text-transform: uppercase;
}
.header-language-background .header-language-container {
  max-width: 989px;
  margin-left: auto;
  margin-right: auto;
}
.header-language-background:after {
  content: '';
  display: table;
  clear: both;
}
.header-language-background .form-language,
.header-language-background .currency-switcher {
  float: left;
  margin-right: 10px;
}
.header-language-background .welcome-msg {
  float: right;
}

.page-header-container .store-language-container {
  float: right;
  max-width: 35%;
  padding: 13px 15px 10px 10px;
}
.page-header-container .store-language-container label {
  display: none;
}
.page-header-container .store-language-container select {
  max-width: 100%;
}

@media only screen and (max-width: 479px) {
  .page-header-container .store-language-container {
    padding-top: 8px;
  }
  .page-header-container .store-language-container select {
    font-size: 12px;
  }
}
.header-language-background,
.header-language-background a {
  color: #E6E6E6;
}

@media only screen and (max-width: 767px) {
  .header-language-background {
    display: none;
  }
}
/* ============================================ *
 * Logo
 * ============================================ */
.logo {
  display: block;
  float: left;
  min-height: 44px;
  text-align: center;
  margin: 0 83px 0 0;
}
@media only screen and (max-width: 1024px) {
  .logo {
    margin: 0 40px 0 0;
  }
}
.logo img {
  max-width: 100%;
}
.logo .small {
  display: block;
}
.logo .large {
  display: none;
}
@media only screen and (max-width: 767px) {
  .logo {
    display: none;
  }
}

.mobile-logo {
  display: block;
  padding: 15px;
  background: #89CAE6;
}
@media only screen and (min-width: 768px) {
  .mobile-logo {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .mobile-logo img {
    margin: 0 auto;
    max-width: 120px;
  }
}

@media only screen and (min-width: 1025px) {
  .logo {
    max-width: 300px;
    min-height: 88px;
  }
  .logo .small {
    display: none;
  }
  .logo .large {
    display: block;
  }
}
/* ============================================ *
 * Skip Links
 * ============================================ */
.skip-links {
  clear: both;
}

@media only screen and (min-width: 768px) {
  .skip-links {
    border: 0;
    float: right;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .skip-links {
    height: 50px;
    border-bottom: 1px solid #CCCCCC;
  }
  .skip-links .skip-nav,
  .skip-links .skip-search,
  .skip-links .account-cart-wrapper {
    display: inline-block;
    float: left;
    width: 25%;
    height: 100%;
    border-right: 1px solid #CCCCCC;
    position: relative;
  }
  .skip-links .skip-nav .icon,
  .skip-links .skip-search .icon,
  .skip-links .account-cart-wrapper .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
  }
  .skip-links .desktop-element {
    display: none;
  }
}
/* -------------------------------------------- *
 * Skip - Link
 */
a.skip-link {
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .skip-link:last-child {
    border-right: 0;
  }
}
/* -------------------------------------------- *
 * Skip Link - Icon
 */
.skip-link .icon {
  display: inline-block;
  width: 25px;
  height: 24px;
  vertical-align: middle;
  outline: none;
}
@media only screen and (max-width: 599px) {
  .skip-link .icon {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .skip-link .icon {
    display: none;
  }
}

.skip-cart .icon {
  display: inline-block;
  width: 25px;
  height: 24px;
  vertical-align: middle;
  outline: none;
}
@media only screen and (max-width: 599px) {
  .skip-cart .icon {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .skip-cart .icon {
    display: none;
  }
}

/* -------------------------------------------- *
 * Skip Link - Label
 */
@media only screen and (max-width: 767px) {
  .skip-link .label {
    display: none;
  }

  .skip-cart .label {
    display: none;
  }
}
/* ============================================ *
 * Skip Content
 * ============================================ */
.skip-content {
  display: none;
}

.skip-content.skip-active {
  background: #EDEDED;
  display: block;
}

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
.header-extra-links {
  float: right;
  margin-top: 1px;
}
@media only screen and (max-width: 767px) {
  .header-extra-links {
    display: none;
  }
}
.header-extra-links li {
  float: left;
  position: relative;
  margin-right: 10px;
}
.header-extra-links li:after {
  content: ".";
  font-size: 20px;
  font-weight: bold;
  margin: 0 5px;
  position: absolute;
  top: -8px;
  right: -13px;
  color: #323595;
}
.header-extra-links li a {
  color: #323595;
  font-size: 0.75rem;
  text-decoration: underline;
  letter-spacing: 0.5px;
}
.header-extra-links li.hour-spec span {
  display: none;
  line-height: 20px;
  right: -50px;
  top: 35px;
  padding: 14px 20px;
  text-decoration: none;
  width: 195px;
  z-index: 10;
}
.header-extra-links li.hour-spec:hover span {
  display: inline;
  position: absolute;
  color: #111;
  border: 1px solid #4B99F2;
  background: #EBF3FF;
  text-decoration: none;
  right: -55px;
  top: 35px;
  margin: 0;
  width: 207px;
}

#header-nav .header-extra-links {
  display: none;
}
@media only screen and (max-width: 767px) {
  #header-nav .header-extra-links {
    display: block;
    float: none;
    margin: 0;
  }
  #header-nav .header-extra-links li {
    float: none;
    background: #eaf3f8;
    border-bottom: 1px solid #fff;
    margin: 0;
  }
  #header-nav .header-extra-links li:after {
    content: '';
  }
  #header-nav .header-extra-links li.hour-spec {
    display: none;
  }
  #header-nav .header-extra-links li a {
    display: block;
    width: 100%;
    padding-left: 15px;
    line-height: 30px;
    text-decoration: none;
    color: #000000;
    font-size: 13px;
  }
}

.welcome-msg {
  display: inline;
  float: right;
  line-height: 16px;
  margin: 5px 10px 0 0;
  color: #000000;
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .welcome-msg {
    display: none;
  }
}

#header-contact {
  position: absolute;
  right: 10px;
  top: 33px;
}
@media only screen and (max-width: 767px) {
  #header-contact {
    right: 15px;
  }
}
#header-contact a#header-number:after {
  content: attr(data-description);
  display: block;
  font-size: 0.65em;
  text-transform: uppercase;
  margin-top: -4px;
}
#header-contact a#header-number:link, #header-contact a#header-number:visited {
  background: #d6d6d6;
  background: -moz-linear-gradient(top, #d6d6d6 0%, white 100%);
  background: -webkit-linear-gradient(top, #d6d6d6 0%, white 100%);
  background: linear-gradient(to bottom, #d6d6d6 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6d6d6', endColorstr='#ffffff',GradientType=0 );
  border: 1px solid #c2c2c2;
  box-sizing: border-box;
  color: #323595;
  display: block;
  font-size: 16px;
  height: 40px;
  letter-spacing: 0.5px;
  padding-top: 2px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 130px;
}
@media only screen and (max-width: 767px) {
  #header-contact {
    display: none;
  }
}

/* ============================================ *
 * Nav - Skip Link
 * ============================================ */
.skip-nav {
  width: 40%;
}
.skip-nav:not(.skip-active):hover {
  text-decoration: none;
}
.skip-nav:not(.skip-active):hover .icon {
  background-position: -46px 4px;
}

.skip-nav .label {
  display: inline;
}

.skip-nav .icon {
  background-position: 4px 4px;
}

@media only screen and (min-width: 500px) {
  .skip-nav {
    width: 25%;
  }
}
@media only screen and (min-width: 768px) {
  .skip-nav {
    display: none;
  }
}
/* ============================================ *
 * Nav - Skip Content
 * ============================================ */
/* ============================================ *
 * Nav Primary
 * ============================================ */
#header-nav {
  clear: both;
}

/* ============================================ *
 * General Navigation Styles
 * ============================================ */
.nav-primary a {
  text-decoration: none;
  position: relative;
  display: block;
  line-height: 30px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  outline: none;
}
.nav-primary a.active.level0 {
  background: #fbd882;
  background: -moz-linear-gradient(top, #fbd882 0%, #fbe09f 50%, #fbe09f 51%, #fbd882 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbd882), color-stop(50%, #fbe09f), color-stop(51%, #fbe09f), color-stop(100%, #fbd882));
  background: -webkit-linear-gradient(top, #fbd882 0%, #fbe09f 50%, #fbe09f 51%, #fbd882 100%);
  background: -o-linear-gradient(top, #fbd882 0%, #fbe09f 50%, #fbe09f 51%, #fbd882 100%);
  background: -ms-linear-gradient(top, #fbd882 0%, #fbe09f 50%, #fbe09f 51%, #fbd882 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbd882', endColorstr='#fbd882',GradientType=0 )";
  background: linear-gradient(to bottom, #fbd882 0%, #fbe09f 50%, #fbe09f 51%, #fbd882 100%);
}
.nav-primary li {
  position: relative;
}
.nav-primary li a {
  line-height: 30px;
}
.nav-primary li.level1 a {
  color: black;
  line-height: 35px;
}
.nav-primary li.level1:not(:last-child) {
  border-bottom: white 1px solid;
}
.nav-primary li.level1:hover {
  background: #DBECF4;
}
@media only screen and (min-width: 768px) {
  .nav-primary li.level0.active a.level0 {
    background: #fbd882;
    background: -moz-linear-gradient(top, #fbd882 0%, #fbe09f 50%, #fbe09f 51%, #fbd882 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbd882), color-stop(50%, #fbe09f), color-stop(51%, #fbe09f), color-stop(100%, #fbd882));
    background: -webkit-linear-gradient(top, #fbd882 0%, #fbe09f 50%, #fbe09f 51%, #fbd882 100%);
    background: -o-linear-gradient(top, #fbd882 0%, #fbe09f 50%, #fbe09f 51%, #fbd882 100%);
    background: -ms-linear-gradient(top, #fbd882 0%, #fbe09f 50%, #fbe09f 51%, #fbd882 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbd882', endColorstr='#fbd882',GradientType=0 )";
    background: linear-gradient(to bottom, #fbd882 0%, #fbe09f 50%, #fbe09f 51%, #fbd882 100%);
  }
}

.nav-primary .menu-active > ul.level0,
.nav-primary li.level0 li.sub-menu-active > ul {
  display: block;
}

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
@media only screen and (max-width: 767px) {
  .nav-primary a {
    font-size: 13px;
    color: black;
  }
  .nav-primary li.level0 {
    background: #EAF3F8;
    border-bottom: white 1px solid;
  }
  .nav-primary li.level0 > a {
    padding-left: 15px;
  }
  .nav-primary li.level0 > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #000000;
    border-right: none;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
  }
  .nav-primary li.level0 ul {
    display: none;
  }
  .nav-primary li.level0.menu-active > a {
    border-bottom: white 1px solid;
  }
  .nav-primary li.level0.menu-active > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid #000000;
    border-bottom: none;
  }
  .nav-primary li.level0.menu-active ul {
    display: block;
  }
  .nav-primary li.level1 a {
    padding-left: 55px;
  }
}
/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
@media only screen and (min-width: 768px) {
  #header-nav {
    display: block !important;
    position: absolute;
    bottom: 0;
  }

  .nav-primary {
    /* Default styles for 1+ drop-down menus */
    /* Level 2+ */
    /* Class for js to add briefly to evaluate element positioning. */
    /* Correct menus that will hang off the page (class added by js) */
    /* Level 1+ */
  }
  .nav-primary li {
    height: auto;
  }
  .nav-primary li.level0,
  .nav-primary a.level0 {
    display: inline-block;
    float: left;
  }
  .nav-primary a.level0 {
    font-size: 16px;
    color: #323595;
    line-height: 30px;
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
  .nav-primary a.level0 {
    padding: 0 25px 0 15px !important;
    background: #d4d4d4;
    background: -moz-linear-gradient(top, #d4d4d4 0%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d4d4d4), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #d4d4d4 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #d4d4d4 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #d4d4d4 0%, #ffffff 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4d4d4', endColorstr='#ffffff',GradientType=0 )";
    background: linear-gradient(to bottom, #d4d4d4 0%, #ffffff 100%);
  }
  .nav-primary a.level0:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid #000000;
    border-bottom: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    right: 10px;
    border-top-color: #292885;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
  .nav-primary li.level0 {
    border: #c2c2c2 solid 1px;
    border-right: none;
  }
  .nav-primary li.level0:last-child {
    border-right: 1px solid #c2c2c2;
  }
}
@media only screen and (min-width: 768px) {
  .nav-primary .menu-active {
    z-index: 200;
  }
  .nav-primary li.level0 ul {
    border: 1px solid white;
    position: absolute;
    background: #EAF3F8;
    left: 0;
    top: 30px;
    /* Height of ".nav-primary a.level0" */
    min-width: 200px;
    width: 100%;
    z-index: 10;
    display: none;
    /* Hide until displayed. */
    white-space: nowrap;
  }
  .nav-primary li.level0:last-child ul {
    min-width: 140px;
  }
  .nav-primary li.level1 a {
    font-size: 13px;
    padding: 0 15px;
  }
  .nav-primary li.level1 ul {
    left: 60px;
    top: 15px;
  }
  .nav-primary li.level0 ul.level0.position-test {
    display: block;
  }
  .nav-primary li.level0 ul.level0.spill {
    right: 0;
    left: auto;
  }
  .nav-primary li.level0 ul.level0.spill li.level1 ul {
    left: auto;
    right: 50px;
    top: 20px;
  }
  .nav-primary li.level0 li.parent > a {
    position: relative;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #header-nav {
    margin-left: 0;
    margin-top: 30px;
    float: left;
  }
  #header-nav .nav-primary a.level0 {
    padding: 0 10px;
  }
}
.nav-primary li.menu-active > ul {
  display: block;
}

/* ============================================ *
 * Search - Skip Link
 * ============================================ */
.skip-search:not(.skip-active):hover .icon {
  background-position: -46px -146px;
}
.skip-search .icon {
  background-position: 4px -146px;
}

@media only screen and (min-width: 768px) {
  .skip-search {
    display: none;
  }
}
/* ============================================ *
 * Search - Skip Content
 * ============================================ */
@media only screen and (min-width: 768px) {
  #header-search {
    display: block;
    float: left;
    margin: 12px 0 0 50px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  #header .logo {
    margin: 0;
    width: 34%;
  }

  #header-search {
    margin-left: 0;
    width: 66%;
  }
}
@media only screen and (max-width: 767px) {
  #header-search {
    padding: 10px;
  }
}
/* ============================================ *
 * Search Input
 * ============================================ */
#search_mini_form .input-box {
  position: relative;
  padding-top: 0;
  height: 32px;
}

#search_mini_form label {
  display: none;
}

#search {
  height: 32px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  border-radius: 0;
  border: 0;
  border-top: #c2c2c2 solid 1px;
  border-bottom: #c2c2c2 solid 1px;
  border-left: #c2c2c2 solid 1px;
  margin-right: 0;
  padding: 0 8px;
  vertical-align: bottom;
  background-image: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/mag_glass_left_16.png);
  background-repeat: no-repeat;
  background-position: top 7px left 7px;
  text-indent: 22px;
}
#search::placeholder {
  color: #999999;
  opacity: 1;
}
#search:-ms-input-placeholder {
  color: #999999;
}
#search::-ms-input-placeholder {
  color: #999999;
}
@media only screen and (min-width: 768px) {
  #search {
    max-width: 220px;
  }
}
@media only screen and (max-width: 767px) {
  #search {
    width: calc((100% - 88px) - 1px + 2px);
  }
}
@media only screen and (min-width: 1024px) {
  #search {
    max-width: 275px;
  }
}
#search:focus {
  background-image: none;
  text-indent: 0px;
}

#search_mini_form .search-button {
  padding: 0 12px;
  line-height: 30px;
  margin-top: -3px;
  border-top: #c2c2c2 solid 1px;
  border-bottom: #c2c2c2 solid 1px;
  border-right: #c2c2c2 solid 1px;
  height: 32px;
}
@media only screen and (max-width: 767px) {
  #search_mini_form .search-button {
    padding-right: 12px;
    margin-right: -1px;
  }
}

#search_mini_form .search-button:hover:before {
  opacity: 0.8;
}

#search_mini_form .search-button:active:before {
  margin-top: -13px;
  margin-left: -13px;
}

/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
.skip-accounts:not(.skip-active):hover .icon {
  background-position: -46px -44px;
}
.skip-accounts .icon {
  background-position: 4px -44px;
}

@media only screen and (min-width: 768px) {
  #header-account.skip-active {
    background: #FBFBFB;
    border: solid 1px #CCCCCC;
    display: block;
    position: absolute;
    z-index: 200;
    top: 20px;
    right: 8px;
    width: 120px;
  }
  #header-account.skip-active a {
    text-align: left;
    line-height: normal;
  }

  #header-account a {
    display: block;
    padding: 5px 10px;
    color: #636363;
    line-height: 2;
  }

  #header-account a:hover {
    color: #3399CC;
  }
}
/* -------------------------------------------- *
 * Account Links
 */
#header-account a {
  position: relative;
  display: block;
  padding: 5px 10px;
  line-height: 23px;
  text-align: center;
  font-size: .75rem;
  text-decoration: underline;
}

#header-account li.last {
  display: none;
}

#header-account a:hover {
  color: #3399CC;
}

@media only screen and (max-width: 767px) {
  #header-account {
    background: none;
  }
  #header-account li {
    background: #EAF3F8;
  }
  #header-account li:hover {
    background: #DBECF4;
  }
  #header-account li a {
    padding: 0 15px;
    height: 30px;
    line-height: 30px;
    border-bottom: 1px solid white;
    text-align: left;
    font-size: 13px;
    color: black;
  }
  #header-account li a:hover {
    color: black;
  }
  #header-account li:last-child a {
    border-bottom: 0;
    display: none;
  }

  #header-account li
  .no-touch #header-account a:hover {
    background-color: #F4F4F4;
    text-decoration: none;
  }
}
.account-cart-wrapper {
  float: right;
}
@media only screen and (min-width: 768px) {
  .account-cart-wrapper {
    margin-top: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .account-cart-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.account-cart-wrapper a {
  color: #323595;
  font-size: 0.75rem;
  text-decoration: underline;
}

/* ============================================ *
 * Header - Cart
 * ============================================ */
.checkout-cart-index td.a-right.free-shipping {
  color: #00bf32;
  font-weight: bolder;
}

/* -------------------------------------------- *
 * Skip Link - Cart
 */
@media only screen and (min-width: 767px) {
  .skip-cart .icon {
    background-image: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/image_sprite.png);
    background-position: -34px -9px;
  }
}
@media only screen and (max-width: 767px) {
  .skip-cart .icon {
    background-position: -2px -95px;
  }
}

@media only screen and (min-width: 768px) {
  .skip-cart {
    width: auto;
    padding: 0 10px;
  }
  .skip-cart .label {
    font-size: 1.15rem;
    line-height: 38px;
  }

  #header-cart.skip-active {
    background: #FBFBFB;
    border: solid 1px #CCCCCC;
    display: block;
    position: absolute;
    z-index: 200;
    top: 40px;
    right: -1px;
    width: 320px;
    background: white;
  }
}
/* -------------------------------------------- *
 * Skip Cart Notifier
 */
.skip-cart .count {
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  display: inline-block;
  top: -6px;
  position: relative;
  z-index: 5;
  width: 22px;
  height: 22px;
  background: rgba(51, 153, 204, 0.9);
  color: #FFFFFF;
  font-size: 11px;
  line-height: 22px;
  text-align: center;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}

.skip-link.skip-active .count {
  color: white;
}

@media only screen and (max-width: 499px) {
  .skip-cart .count {
    margin-left: -12px;
  }
}
@media only screen and (min-width: 768px) {
  .skip-cart {
    color: #2a2c83;
    text-transform: uppercase;
  }
  .skip-cart:hover {
    text-decoration: none;
  }
  .skip-cart .count {
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    position: static;
    background: none;
    margin-left: 0px;
    font-size: 1.15rem;
    width: auto;
  }
  .skip-cart .count:before {
    content: '(';
  }
  .skip-cart .count:after {
    content: ')';
  }

  .skip-cart .count, .skip-link.skip-active .count {
    color: #2a2c83;
  }
}
.skip-cart .count.empty {
  display: none;
}

/* -------------------------------------------- *
 * Mini Cart - Empty
 */
.cart-menu .empty {
  padding: 20px;
  text-align: center;
}

/* -------------------------------------------- *
 * Mini Cart - Full
 */
/* Actions */
.cart-menu .actions {
  overflow: hidden;
  padding: 15px;
}

.cart-menu .actions .button {
  float: left;
  width: 48%;
}

.cart-menu .actions .button + .button {
  margin-left: 4%;
}

/* Subtotal */
.cart-menu .subtotal {
  padding: 0 15px 15px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

/* List */
.mini-cart-list {
  margin-bottom: 5px;
}

.mini-cart-list li {
  position: relative;
  min-height: 90px;
  padding: 15px 15px 15px 90px;
  border-top: 1px solid #CCCCCC;
  font-size: 13px;
  line-height: 1.35;
}

.mini-cart-list .product-name {
  display: inline-block;
}

.mini-cart-list .product-image {
  position: absolute;
  left: 15px;
  top: 15px;
}

.mini-cart-list .product-image img {
  width: 60px;
  height: 60px;
}

.mini-cart-list .has-options {
  margin-bottom: 0;
  color: #A0A0A0;
  font-size: 12px;
}

/* Too full - additional items will be shown in cart */
.cart-menu .last-added {
  padding: 10px 15px 15px;
  border-top: 1px solid #CCCCCC;
  font-size: 13px;
}

.mini-products-list .product-details {
  position: relative;
}
.mini-products-list .product-details .badges.FreeGift {
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/free-gift-icon.png) no-repeat;
  width: 18px;
  text-indent: -9999px;
  padding: 0;
  height: 20px;
  top: 10px;
  position: absolute;
  left: 80px;
  z-index: 1;
}
.mini-products-list .product-details .badges {
  padding: 1px 5px 2px 20px;
  z-index: 1;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/badge.png") no-repeat;
  background-size: 100% 100%;
  width: 75px;
  height: 23px;
  margin-bottom: 3px;
}
.mini-products-list .product-details .badges span {
  font-size: 12px;
}
.mini-products-list .price {
  font-weight: bold;
}
.mini-products-list .old-price {
  text-decoration: line-through;
}
.mini-products-list .old-price .price {
  font-weight: normal;
}

/* ============================================ *
 * Footer
 * ============================================ */
/* -------------------------------------------- *
 * Footer
 */
.footer,
.footer button {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}

.footer-container {
  background: #89CAE6;
  padding: 0;
  max-width: none;
}

.footer {
  clear: both;
  width: 100%;
  color: #2e444d;
  /* -------------------------------------------- *
   * Social icons
   */
}
.footer .bg-mastercard {
  width: 50px;
  height: 30px;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/footer_sprites.png") -73px -68px;
}
.footer .bg-paypal {
  width: 62px;
  height: 38px;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/footer_sprites.png") -110px -10px;
}
.footer .bg-discover {
  width: 80px;
  height: 38px;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/footer_sprites.png") -10px -10px;
}
.footer .bg-amex {
  width: 33px;
  height: 32px;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/footer_sprites.png") -10px -126px;
}
.footer .bg-visa {
  width: 43px;
  height: 38px;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/footer_sprites.png") -10px -68px;
}
.footer .block-title {
  border: none;
  padding: 0;
  line-height: 1.25;
  margin-bottom: 12px;
}
.footer .block-title span {
  border-bottom: 1px solid #2e444d;
  font-size: 18px;
  color: #2e444d;
}
.footer .block-title span a {
  color: #2e444d;
}
@media only screen and (min-width: 768px) {
  .footer .block-title span a {
    cursor: default;
    pointer-events: none;
  }
}
.footer .block-title span a:hover {
  text-decoration: none;
}
.footer a {
  color: #292885;
}
.footer li {
  line-height: 1.25;
}
.footer .footer-middle,
.footer .footer-bottom #footer-payments {
  width: 100%;
  max-width: 989px;
  padding: 0 10px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .footer .footer-middle,
  .footer .footer-bottom #footer-payments {
    padding: 0 15px;
  }
}
.footer #footer-banner {
  text-align: center;
  background: #292885;
  color: white;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .footer #footer-banner {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer #footer-banner {
    margin-bottom: 0;
  }
}
.footer #footer-banner a {
  color: white;
  text-decoration: underline;
}
.footer .footer-middle {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .footer .footer-middle {
    padding-top: 20px;
  }
}
.footer .footer-middle > div {
  float: left;
}
@media only screen and (min-width: 768px) {
  .footer .footer-middle > div {
    padding-right: 6.5%;
  }
}
.footer .footer-middle > div div:not(.block-title) {
  line-height: 17px;
}
.footer .footer-middle > div.stay-connected {
  padding-right: 0;
}
@media only screen and (min-width: 1025px) {
  .footer .footer-middle > div.stay-connected {
    max-width: 277px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer .footer-middle > div.stay-connected {
    float: none;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .footer .footer-middle > div.stay-connected {
    margin-bottom: 20px;
  }
  .footer .footer-middle > div.stay-connected:after {
    content: '';
    display: table;
    clear: both;
  }
}
@media only screen and (min-width: 1020px) and (max-width: 1024px) {
  .footer .footer-middle > div.stay-connected {
    max-width: 277px;
    float: left;
  }
}
.footer .footer-middle > div.stay-connected > div {
  width: 100%;
  margin-bottom: 12px;
  clear: both;
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .footer .footer-middle > div.stay-connected > div {
    width: calc(50% - 25px);
    clear: none;
    float: left;
  }
  .footer .footer-middle > div.stay-connected > div.block-subscribe {
    margin-right: 50px;
  }
  .footer .footer-middle > div.stay-connected > div#footer-stay-connected {
    margin-bottom: 0;
  }
  .footer .footer-middle > div.stay-connected > div#footer-social-media {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1020px) and (max-width: 1024px) {
  .footer .footer-middle > div.stay-connected > div {
    width: 277px;
    max-width: 277px;
    float: left;
  }
  .footer .footer-middle > div.stay-connected > div.block-subscribe {
    margin-right: 0px;
    float: none;
    clear: both;
    width: 100%;
  }
  .footer .footer-middle > div.stay-connected > div.block-subscribe .block-title {
    display: none;
  }
  .footer .footer-middle > div.stay-connected > div#footer-stay-connected {
    margin-bottom: 12px;
  }
  .footer .footer-middle > div.stay-connected > div#footer-stay-connected .content {
    display: block;
  }
}
.footer .footer-middle a:hover {
  text-decoration: underline;
}
.footer .footer-middle #footer-contact-us div:not(.block-title) {
  margin-bottom: 12px;
}
.footer .footer-middle #footer-contact-us div:not(.block-title) span {
  display: block;
}
.footer .footer-middle .block-subscribe:after,
.footer .footer-middle .block-subscribe form:after {
  content: '';
  display: table;
  clear: both;
}
.footer .footer-middle .block-subscribe .block-content {
  position: relative;
}
.footer .footer-middle .block-subscribe form {
  margin-bottom: 10px;
}
@media only screen and (min-width: 1025px) {
  .footer .footer-middle .block-subscribe .block-title {
    display: none;
  }
}
.footer .footer-middle .block-subscribe .input-box {
  width: 100%;
  float: left;
  padding-top: 0;
}
.footer .footer-middle .block-subscribe .input-box #newsletter {
  width: calc(100% - 87px);
  border: none;
  height: 32px;
  font-size: 11px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.footer .footer-middle .block-subscribe .input-box #newsletter:focus {
  background: #FAFFBD;
}
.footer .footer-middle .block-subscribe .actions {
  position: absolute;
  right: 0;
  margin-top: 0;
}
.footer .footer-middle .block-subscribe .actions button {
  height: 32px;
  text-transform: uppercase;
}
.footer .footer-middle .block-subscribe .actions button span span {
  font-weight: 600;
  font-size: 14px;
}
@media only screen and (max-width: 1024px) {
  .footer .footer-middle #footer-stay-connected .content {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-middle .stay-connected {
    margin-bottom: 20px;
  }
  .footer .footer-middle #footer-contact-us {
    clear: left;
  }
  .footer .footer-middle #footer-contact-us > div:not(.block-title):not(.hours):not(.phone-number) {
    display: none;
  }
  .footer .footer-middle #footer-contact-us,
  .footer .footer-middle #footer-links-company {
    margin-right: 15%;
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer-middle #footer-contact-us {
    float: none;
    clear: both;
    margin-right: 0;
  }
}
.footer .footer-middle #footer-social-media {
  margin-top: 12px;
}
.footer .footer-middle #footer-social-media .bg-facebook {
  width: 31px;
  height: 31px;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/footer_sprites.png") -192px -112px;
}
.footer .footer-middle #footer-social-media .bg-googleplus {
  width: 31px;
  height: 31px;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/footer_sprites.png") -63px -126px;
}
.footer .footer-middle #footer-social-media .bg-twitter {
  width: 31px;
  height: 31px;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/footer_sprites.png") -192px -61px;
}
.footer .footer-middle #footer-social-media .bg-youtube {
  width: 31px;
  height: 31px;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/footer_sprites.png") -10px -178px;
}
.footer .footer-middle #footer-social-media .bg-pinterest {
  width: 31px;
  height: 31px;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/footer_sprites.png") -114px -126px;
}
.footer .footer-middle #footer-social-media .bg-rss {
  width: 31px;
  height: 31px;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/footer_sprites.png") -191px -11px;
}
.footer .footer-middle #footer-social-media span {
  margin-bottom: 12px;
  display: block;
}
.footer .footer-middle #footer-social-media ul:after {
  content: '';
  display: table;
  clear: both;
}
.footer .footer-middle #footer-social-media ul li {
  float: left;
  background: #73B5D5;
  padding: 2px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.footer .footer-middle #footer-social-media ul li a:hover {
  text-decoration: none;
}
.footer .footer-middle #footer-social-media ul li:not(:last-child) {
  margin-right: 10px;
}
.footer .footer-middle #footer-social-media ul li#f-facebook:hover {
  background-color: #3b5998;
}
.footer .footer-middle #footer-social-media ul li#f-twitter:hover {
  background-color: #00aced;
}
.footer .footer-middle #footer-social-media ul li#f-pinterest:hover {
  background-color: #cb2027;
}
.footer .footer-middle #footer-social-media ul li#f-youtube:hover {
  background-color: #b00;
}
.footer .footer-middle #footer-social-media ul li#f-googleplus:hover {
  background-color: #dd4b39;
}
.footer .footer-middle #footer-social-media ul li#f-rss:hover {
  background-color: #F60;
}
.footer .footer-middle:after {
  content: '';
  display: table;
  clear: both;
}
.footer .footer-bottom {
  background: #73B5D5;
}
.footer .footer-bottom #footer-payments {
  position: relative;
}
.footer .footer-bottom #footer-payments ul:first-child {
  left: 30px;
}
@media only screen and (max: 767px) {
  .footer .footer-bottom #footer-payments ul:first-child {
    margin-bottom: 20px;
  }
}
.footer .footer-bottom #footer-payments ul:first-child li:not(:last-child) {
  padding-right: 24px;
}
.footer .footer-bottom #footer-payments ul:last-child {
  right: 30px;
  filter: drop-shadow(0px 0px 4px, rgba(0, 0, 0, 0.35));
  -moz-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.35));
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.35));
}
.footer .footer-bottom #footer-payments ul:last-child li:not(:last-child) {
  padding-right: 8px;
}
.footer .footer-bottom #footer-payments ul:after {
  content: '';
  display: table;
  clear: both;
}
.footer .footer-bottom #footer-payments ul li {
  list-style: none;
  vertical-align: middle;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .footer .footer-bottom #footer-payments {
    height: 80px;
  }
  .footer .footer-bottom #footer-payments ul {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-bottom #footer-payments ul {
    text-align: center;
  }
}
.footer .footer-bottom #footer-payments .f-bizrate img {
  width: 112px;
}
.footer .footer-bottom #footer-payments .f-norton img {
  width: 100px;
}
@media only screen and (max-width: 1024px) {
  .footer .footer-bottom #footer-payments #f-bizrate img {
    width: 84px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #f-norton img {
    width: 75px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #f-bbb img {
    width: 72px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #f-mcafee img {
    width: 48.75px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #paypal-payment-icon {
    width: 61.5px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #mastercard-payment-icon {
    width: 50.25px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #visa-payment-icon {
    width: 42.75px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #amex-payment-icon {
    width: 33.75px;
  }
  .footer .footer-bottom #footer-payments #discover-payment-icon {
    width: 79.5px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-bottom #footer-payments {
    padding: 15px;
  }
  .footer .footer-bottom #footer-payments ul:first-child {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 599px) {
  .footer .footer-bottom #footer-payments #f-bizrate img {
    width: 95.2px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #f-norton img {
    width: 85px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #f-bbb img {
    width: 81.6px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #f-mcafee img {
    width: 55.25px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #paypal-payment-icon {
    width: 69.7px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #mastercard-payment-icon {
    width: 56.95px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #visa-payment-icon {
    width: 48.45px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #amex-payment-icon {
    width: 38.25px;
  }
  .footer .footer-bottom #footer-payments #discover-payment-icon {
    width: 90.1px;
  }
}
@media only screen and (max-width: 479px) {
  .footer .footer-bottom #footer-payments #f-bizrate img {
    width: 56px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #f-norton img {
    width: 50px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #f-bbb img {
    width: 48px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #f-mcafee img {
    width: 32.5px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #paypal-payment-icon {
    width: 41px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #mastercard-payment-icon {
    width: 33.5px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #visa-payment-icon {
    width: 28.5px;
    height: auto;
  }
  .footer .footer-bottom #footer-payments #amex-payment-icon {
    width: 22.5px;
  }
  .footer .footer-bottom #footer-payments #discover-payment-icon {
    width: 53px;
  }
}
.footer .links {
  text-transform: uppercase;
  font-size: 12px;
}
.footer .form-subscribe-header {
  display: none;
}
@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .links.social-media em {
    background-image: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/social_icons@2x.png);
    background-size: 50px 125px;
  }
}
.footer .links.social-media em.facebook {
  background-position: 0 -0px;
  height: 13px;
}
.footer .links.social-media a:hover em.facebook {
  background-position: -25px -0px;
}
.footer .links.social-media em.twitter {
  background-position: 0 -24px;
  height: 13px;
}
.footer .links.social-media a:hover em.twitter {
  background-position: -25px -24px;
}
.footer .links.social-media em.youtube {
  background-position: 0 -49px;
  height: 13px;
}
.footer .links.social-media a:hover em.youtube {
  background-position: -25px -49px;
}
.footer .links.social-media em.pinterest {
  background-position: 0 -74px;
  height: 15px;
}
.footer .links.social-media a:hover em.pinterest {
  background-position: -25px -74px;
}
.footer .links.social-media em.rss {
  background-position: 0 -99px;
  height: 13px;
}
.footer .links.social-media a:hover em.rss {
  background-position: -25px -99px;
}
.footer .bugs,
.footer address {
  clear: both;
}
.footer .bugs {
  display: none;
}
.footer .form-language,
.footer .currency-switcher,
.footer .store-switcher {
  clear: both;
  margin-bottom: 10px;
}
.footer .form-language,
.footer .currency-switcher {
  display: none;
}
.footer address {
  text-align: center;
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  .footer address {
    height: 40px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .footer address {
    padding: 10px 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer .links {
    width: 22.65625%;
    padding-right: 0;
    margin-right: 3.125%;
  }
  .footer .links:nth-child(4) {
    margin-right: 0;
  }
  .footer .block-subscribe {
    clear: both;
    float: none;
    margin: 0 auto 30px auto;
  }
}
@media only screen and (max-width: 767px) {
  .footer .form-language,
  .footer .currency-switcher {
    display: block;
  }
}
@media only screen and (max-width: 599px) {
  .footer .links {
    width: 48.4375%;
    margin-right: 0;
  }
  .footer .links:nth-child(odd) {
    margin-right: 3.125%;
    clear: both;
  }
  .footer .block-subscribe {
    clear: both;
    float: left;
    width: 100%;
  }
}

/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */
/* -------------------------------------------- *
 * Product List General
 */
body.catalogsearch-result-index .page-title h1 {
  border-bottom: none;
}

@media only screen and (min-width: 768px) {
  body.catalogsearch-result-index .main-container {
    max-width: 1019px;
    background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/page-row-bg.png) no-repeat;
    background-size: 100% auto;
    background-position: 0 35px;
  }
  body.catalogsearch-result-index .main-container .main {
    padding: 0 15px;
  }
  body.catalogsearch-result-index .main-container .col-left,
  body.catalogsearch-result-index .main-container .col-main {
    padding-top: 5px;
    margin-bottom: 0;
    margin-top: 20px;
  }
  body.catalogsearch-result-index .main-container .col-left:not(.col-left-first) {
    padding-top: 0;
  }
  body.catalogsearch-result-index .main-container .col-main {
    padding-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  body.catalogsearch-result-index .main-container {
    padding: 15px;
  }
}

.category-products .pr-snippet-read-write,
.category-products .pr-snippet-wrapper .pr-snippet-read-write {
  display: none;
}
.category-products .pr-snippet-review-count {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  line-height: normal;
  font-size: 14px;
}
.category-products .pr-snippet-review-count.no-reviews {
  text-decoration: underline;
}
.category-products .pr-snippet-rating-decimal.pr-rounded,
.category-products .pr-snippet-stars {
  margin-right: 0;
  margin-top: 1px;
}
.category-products .pr-snippet-wrapper {
  display: inline-block;
}
.category-products .pr-snippet {
  margin-bottom: 5px;
}

.category-image {
  margin-bottom: 1.5em;
}

.products-list .action .button,
.products-grid .actions .button {
  white-space: normal;
}

.category-title {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .category-title {
    padding: 0 15px;
  }
}
.category-title h1 {
  border-bottom-color: #CCCCCC;
  padding-bottom: 10px;
  font-weight: normal;
  color: #292885;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
}

.category-description {
  display: none;
}

.list-category-block .title {
  color: #525252;
  cursor: default;
  margin-bottom: 9px;
  transition: all 0.25s linear 0s;
  border-bottom: 1px solid #c2c2c2;
  padding-bottom: 9px;
}
.list-category-block .title h3, .list-category-block .title div {
  display: inline;
  font-size: 1.05rem;
  font-weight: 700;
  margin-left: 12px;
  text-transform: uppercase;
  vertical-align: middle;
}
.list-category-block .image-blocks > *:not(:nth-child(5n)) {
  margin-right: 2.02224% !important;
}
.list-category-block .image-blocks > *:nth-child(5n) {
  margin-right: 0 !important;
}
.list-category-block .image-blocks > * {
  width: 18.3822% !important;
  float: left !important;
  display: inline-block !important;
}
.list-category-block .image-blocks:after {
  content: '';
  display: table;
  clear: both;
}
.list-category-block .image-blocks li a img {
  width: 100%;
}
.list-category-block .image-blocks li a span {
  color: #666;
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 4px;
  max-width: 127px;
  text-align: center;
}
.list-category-block .image-blocks li a:active span, .list-category-block .image-blocks li a:hover span {
  color: #2a2c83;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .list-category-block {
    display: block;
  }
  .list-category-block .title {
    box-sizing: border-box;
    border: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: 400;
    margin-bottom: 0;
    padding: 5px 25px 4px 12px;
    border-width: 1px;
    border-style: solid;
    position: relative;
    background-color: #39c;
    color: #fff;
    cursor: pointer;
    border-left: 0;
    border-right: 0;
  }
  .list-category-block .title > div {
    color: #fff;
    cursor: pointer;
    display: inline;
    font-size: 14px;
    font-weight: 700;
    margin-left: 12px;
    text-transform: none;
    vertical-align: middle;
  }
  .list-category-block .title:after {
    content: "+";
    left: 9px;
    font-size: 18px;
    line-height: 18px;
    position: absolute;
    top: 6px;
  }
  .list-category-block .title.active:after {
    content: "-";
  }
  .list-category-block .category-list .block-list li img {
    display: none !important;
  }
  .list-category-block .category-list .block-list li {
    text-align: left !important;
    padding-left: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .no-display-mobile {
    display: none !important;
  }
}
/* -------------------------------------------- *
 * Product Name
 */
h2.product-name,
.gen-product-name.product-name,
h3.product-name,
h4.product-name,
h5.product-name,
p.product-name {
  margin: 0;
  margin-bottom: 0.5em;
  color: #636363;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  font-size: 13px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.4;
}
h2.product-name a,
.gen-product-name.product-name a,
h3.product-name a,
h4.product-name a,
h5.product-name a,
p.product-name a {
  color: #636363;
}
h2.product-name a:hover,
.gen-product-name.product-name a:hover,
h3.product-name a:hover,
h4.product-name a:hover,
h5.product-name a:hover,
p.product-name a:hover {
  text-decoration: underline;
}

.gen-product-name.product-name {
  display: block;
}

.products-grid .product-name,
.products-list .product-name {
  text-transform: uppercase;
  margin-bottom: 2px;
  font-size: 14px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.products-grid .product-name a,
.products-list .product-name a {
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 22px;
  color: #666;
}

/* ============================================ *
 * Brand Category Block
 * ============================================ */
@media only screen and (min-width: 768px) {
  body.brand-type-category .main-container .col-left,
  body.brand-type-category .main-container .col-main {
    margin-top: 0;
  }
  body.brand-type-category .main-container .col-main {
    padding-top: 5px;
  }
}

@media only screen and (min-width: 768px) {
  [data-filterby="Price"] .amshopby-attr-item-selected {
    margin-bottom: 10px;
  }
}

.block-layered-nav [data-filterby="Price"] .amshopby-attr-selected {
  padding-left: 0px;
}

li.amtofrom {
  margin-top: -20px;
  margin-bottom: 10px;
}

[data-filterby="Price"] .amshopby-attr-item-selected {
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  li.amtofrom {
    margin-left: 5px;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) {
  [data-filterby="Price"] .amshopby-attr-item-selected {
    margin-bottom: 30px;
    margin-left: -5px;
  }
}

.brand-category-block {
  padding-top: 35px;
  margin-bottom: 0;
}
.brand-category-block:after {
  content: '';
  display: table;
  clear: both;
}
.brand-category-block .left,
.brand-category-block .right {
  float: left;
}
.brand-category-block img {
  width: 100%;
}
.brand-category-block .left {
  width: 25%;
  padding: 0 10px;
}
.brand-category-block .right {
  padding: 0 10px;
  width: 75%;
}
.brand-category-block .title h3 {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 3px;
}
.brand-category-block ul {
  margin-top: 5px;
}
.brand-category-block ul:after {
  content: '';
  display: table;
  clear: both;
}
.brand-category-block ul li {
  width: calc((100% - (4 * 15px))/5);
  float: left;
  margin-right: 15px;
  margin-top: 5px;
}
.brand-category-block ul li:nth-child(5n) {
  margin-right: 0;
}
.brand-category-block ul li img {
  margin-bottom: 5px;
}
.brand-category-block ul li span {
  display: block;
  text-align: center;
  font-size: 12px;
  line-height: 1.25;
  color: #636363;
}
.brand-category-block ul li:hover img {
  box-shadow: 1px 1px 5px;
}
.brand-category-block ul li:hover span {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .brand-category-block {
    padding-top: 0;
    margin-bottom: 20px;
    background: #F4F4F4;
  }
  .brand-category-block .left {
    width: auto;
    float: none;
    margin-right: 0;
  }
  .brand-category-block .left img {
    width: auto;
    margin: auto;
  }
  .brand-category-block .right {
    display: none;
  }
}

/* ============================================ *
 * How To Info Blocks
 * ============================================ */
.how-to-image-block {
  text-align: center;
  margin-bottom: 10px !important;
}
.how-to-image-block img {
  margin: auto;
}

.how-to-content-block .title {
  color: white;
  font-size: 18px;
  font-weight: 700;
  height: 39px;
  line-height: 39px;
  background: #292885;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
}
.how-to-content-block .title:before {
  content: ' ';
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/sidebar-title-bg.png) no-repeat;
  height: 50px;
  width: 50px;
  display: block;
  top: 0;
  left: -14px;
  position: absolute;
}
.how-to-content-block .content {
  text-align: justify;
  line-height: 20px;
  font-weight: 300;
  font-size: 14px;
}
.how-to-content-block .content a {
  text-decoration: underline;
}
.how-to-content-block .learn-more-anchor {
  float: right;
  font-size: 12px;
  text-decoration: none;
  margin-top: 20px;
}
.how-to-content-block .learn-more-anchor:hover {
  text-decoration: underline;
}

@media only screen and (min-width: 768px) {
  .block-compare .block-title {
    background: #292885;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    height: 39px;
    padding: 0;
  }
  .block-compare .block-title strong {
    color: white;
    font-size: 18px;
    font-weight: 700;
    line-height: 39px;
    text-transform: none;
  }
  .block-compare .block-title strong small {
    color: #E6E6E6;
  }
  .block-compare .block-title:before {
    content: ' ';
    background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/sidebar-title-bg.png) no-repeat;
    height: 50px;
    width: 50px;
    display: block;
    top: 0;
    left: -23px;
    position: absolute;
  }
}
.gen-page-content {
  padding-top: 30px;
  border-top: solid 1px #CCCCCC;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .gen-page-content {
    padding: 30px 15px 0 15px;
  }
}
.gen-page-content h2,
.gen-page-content h3 {
  font-size: 14px;
  color: #292885;
  font-weight: 500;
  margin-bottom: 12px;
}
.gen-page-content .text-align-right {
  text-align: right;
}
.gen-page-content p {
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 18px;
}
@media only screen and (max-width: 767px) {
  .gen-page-content p
  , .gen-page-content h2
  , .gen-page-content h3
  , .gen-page-content ul
  , .gen-page-content img {
    padding-left: 10px;
    padding-right: 10px;
  }
  .gen-page-content .nosto-header {
    padding-left: 0;
    padding-right: 0;
  }
}
.gen-page-content li {
  list-style: disc;
  margin-left: 15px;
  margin-bottom: 15px;
  font-weight: 300;
}
.gen-page-content strong {
  color: #666666;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .gen-page-content .two-column:after {
    content: '';
    display: table;
    clear: both;
  }
  .gen-page-content .two-column .left,
  .gen-page-content .two-column .right {
    float: left;
    width: 50%;
  }
  .gen-page-content .two-column .left {
    padding-right: 30px;
  }
  .gen-page-content .two-column .right {
    padding-left: 30px;
  }
}

/* ============================================ *
 * Hub Category Block
 * ============================================ */
.hub-category.block .learn-more-anchor {
  float: right;
}
.hub-category.block ul.block-list:after {
  content: '';
  display: table;
  clear: both;
}
.hub-category.block ul.block-list li {
  text-align: center;
}
.hub-category.block ul.block-list li span {
  margin: 5px 0;
  display: block;
  font-size: 12px;
  color: #636363;
}
@media only screen and (max-width: 767px) {
  .hub-category.block ul.block-list li span {
    font-size: 14px;
  }
}
.hub-category.block ul.block-list li a {
  display: block;
}
.hub-category.block ul.block-list li img {
  width: 100%;
  height: auto;
}
.hub-category.block section {
  margin-bottom: 20px;
}
.hub-category.block section:after {
  content: '';
  display: table;
  clear: both;
}
.hub-category.block section h3 {
  background: #292885;
  font-size: 18px;
  height: 36px;
  line-height: 36px;
  padding-left: 10px;
  color: white;
  margin-bottom: 15px;
}
.hub-category.block section.category-list {
  /*
              ul{
                  @include bp(min-width,$bp-large + 1){
                      @include column-equal-gutter(5,15px);
                  }
                  @include bp-range(min-width,$bp-medium + 1,max-width,$bp-large){
                      @include column-equal-gutter(4,15px);
                  }
  
                  @include bp(max-width,$bp-medium){
                      @include column-equal-gutter(2,15px);
  					display: block !important;
  					width: 100%;
                  }
  
  				> * {
  					@include bp(max-width,$bp-medium){
  						display: block !important;
  						width: 100%;
  						margin-bottom: 11px;
  					}
  				}
              }
  */
}
.hub-category.block section.category-list ul {
  /*padding:0 25px;*/
}
@media only screen and (min-width: 1025px) {
  .hub-category.block section.category-list ul > *:not(:nth-child(5n)) {
    margin-right: 15px;
  }
  .hub-category.block section.category-list ul > *:nth-child(5n) {
    margin-right: 0 !important;
    clear: right;
  }
  .hub-category.block section.category-list ul > *:nth-child(5n + 1) {
    clear: left;
  }
  .hub-category.block section.category-list ul > * {
    width: calc((100% - 15px * 4)/5);
    float: left !important;
    display: inline-block !important;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .hub-category.block section.category-list ul > *:not(:nth-child(5n)) {
    margin-right: 30px;
  }
  .hub-category.block section.category-list ul > *:nth-child(5n) {
    margin-right: 0 !important;
    clear: right;
  }
  .hub-category.block section.category-list ul > *:nth-child(5n + 1) {
    clear: left;
  }
  .hub-category.block section.category-list ul > * {
    width: calc((100% - 30px * 4)/5);
    float: left !important;
    display: inline-block !important;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .hub-category.block section.category-list ul {
    padding: 0;
  }
  .hub-category.block section.category-list ul > *:not(:nth-child(3n)) {
    margin-right: 15px;
  }
  .hub-category.block section.category-list ul > *:nth-child(3n) {
    margin-right: 0 !important;
    clear: right;
  }
  .hub-category.block section.category-list ul > *:nth-child(3n + 1) {
    clear: left;
  }
  .hub-category.block section.category-list ul > * {
    width: calc((100% - 15px * 2)/3);
    float: left !important;
    display: inline-block !important;
    margin-bottom: 15px;
  }
}
.hub-category.block section.category-list ul a.video div {
  position: relative;
}
.hub-category.block section.category-list ul a.video div:before {
  content: ' ';
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/play-icon.png) no-repeat;
  background-size: contain;
  width: 50%;
  height: 50%;
  display: block;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.hub-category.block section.category-list ul li:hover a.video div:before {
  opacity: 0.5;
  -moz-opacity: 0.5;
}
.hub-category.block section.brands h3 {
  position: relative;
}
.hub-category.block section.brands ul {
  padding: 0 10px;
}
@media only screen and (min-width: 768px) {
  .hub-category.block section.brands ul > *:not(:nth-child(5n)) {
    margin-right: 30px;
  }
  .hub-category.block section.brands ul > *:nth-child(5n) {
    margin-right: 0 !important;
    clear: right;
  }
  .hub-category.block section.brands ul > *:nth-child(5n + 1) {
    clear: left;
  }
  .hub-category.block section.brands ul > * {
    width: calc((100% - 30px * 4)/5);
    float: left !important;
    display: inline-block !important;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .hub-category.block section.brands ul {
    padding: 0;
  }
  .hub-category.block section.brands ul > *:not(:nth-child(3n)) {
    margin-right: 15px;
  }
  .hub-category.block section.brands ul > *:nth-child(3n) {
    margin-right: 0 !important;
    clear: right;
  }
  .hub-category.block section.brands ul > *:nth-child(3n + 1) {
    clear: left;
  }
  .hub-category.block section.brands ul > * {
    width: calc((100% - 15px * 2)/3);
    float: left !important;
    display: inline-block !important;
    margin-bottom: 15px;
  }
}
.hub-category.block section.brands li {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .hub-category.block section.brands li {
    margin-bottom: 10px;
  }
}
.hub-category.block section.brands li img {
  border: 1px solid #CCCCCC;
  filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.hub-category.block section.brands li:hover img {
  filter: grayscale(0);
  -moz-filter: grayscale(0);
  -webkit-filter: grayscale(0);
}
.hub-category.block section.brands .toggler {
  right: 0;
  line-height: 100%;
  padding-right: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}
.hub-category.block section.brands .toggler label {
  color: white;
}
.hub-category.block section.brands .toggler label img {
  width: 15px;
  height: auto;
}
.hub-category.block section.brands:after {
  content: '';
  display: table;
  clear: both;
}
.hub-category.block section.articles ul {
  padding: 0 25px;
}
@media only screen and (min-width: 768px) {
  .hub-category.block section.articles ul > *:not(:nth-child(5n)) {
    margin-right: 30px;
  }
  .hub-category.block section.articles ul > *:nth-child(5n) {
    margin-right: 0 !important;
    clear: right;
  }
  .hub-category.block section.articles ul > *:nth-child(5n + 1) {
    clear: left;
  }
  .hub-category.block section.articles ul > * {
    width: calc((100% - 30px * 4)/5);
    float: left !important;
    display: inline-block !important;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .hub-category.block section.articles ul {
    padding: 0;
  }
  .hub-category.block section.articles ul > *:not(:nth-child(3n)) {
    margin-right: 15px;
  }
  .hub-category.block section.articles ul > *:nth-child(3n) {
    margin-right: 0 !important;
    clear: right;
  }
  .hub-category.block section.articles ul > *:nth-child(3n + 1) {
    clear: left;
  }
  .hub-category.block section.articles ul > * {
    width: calc((100% - 15px * 2)/3);
    float: left !important;
    display: inline-block !important;
    margin-bottom: 15px;
  }
}
.hub-category.block section.articles ul a.video div {
  position: relative;
}
.hub-category.block section.articles ul a.video div:before {
  content: ' ';
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/play-icon.png) no-repeat;
  background-size: contain;
  width: 50%;
  height: 50%;
  display: block;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.hub-category.block section.articles ul li:hover a.video div:before {
  opacity: 0.5;
  -moz-opacity: 0.5;
}
.hub-category.block .bottom-content {
  padding-top: 30px;
  border-top: 1px solid #CCCCCC;
}
.hub-category.block .bottom-content h2 {
  font-size: 16px;
  color: #292885;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .hub-category.block .bottom-content .half {
    width: 50%;
  }
  .hub-category.block .bottom-content .left {
    padding-right: 15px;
    clear: left;
    float: left;
  }
  .hub-category.block .bottom-content .right {
    padding-left: 15px;
    clear: right;
    float: right;
  }
  .hub-category.block .bottom-content:after {
    content: '';
    display: table;
    clear: both;
  }
}
.hub-category.block .bottom-content .full {
  clear: both;
}
.hub-category.block .bottom-content img {
  width: 100%;
}
.hub-category.block .bottom-content div {
  margin-bottom: 20px;
}
.hub-category.block .bottom-content p {
  text-align: justify;
}
.hub-category.block .bottom-content .author-last-edit {
  margin-top: 20px;
  text-align: right;
}
.hub-category.block.list-category-block-cms ul.block-list li a:hover span {
  color: #54479c;
}
.hub-category.block.list-category-block-cms ul.block-list li a:hover img {
  box-shadow: 0 0 6px #525252;
}
.hub-category.block.list-category-block-cms ul.block-list li span:hover {
  color: #54479c;
}

/* Responsive Youtube, could be on other pages but primarily for PLP */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe
, .embed-container object
, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================ *
 * Product Grid
 * ============================================ */
.products-grid {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .category-products .products-grid {
    padding: 0 15px;
  }
}

.products-grid:after {
  content: '';
  display: table;
  clear: both;
}

.products-grid > li {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
}
.products-grid > li:after {
  content: '';
  display: table;
  clear: both;
}
.products-grid > li .product-image-container {
  position: relative;
}
.products-grid > li .badges {
  position: absolute;
  right: 0;
  top: 10px;
  padding: 2px 5px 1px 15px;
  z-index: 1;
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/badge.png) no-repeat;
  background-size: 100% 100%;
}
.products-grid > li .badges.FreeGift {
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/free-gift-icon.png) no-repeat;
  width: 18px;
  text-indent: -9999px;
  padding: 0;
  height: 20px;
  top: 0;
}
.products-grid > li .badges.badges-freegift {
  padding-left: 18px;
  padding-right: 6px;
}
.products-grid > li .badges:nth-of-type(2) {
  top: 35px;
}
.products-grid > li .quick-view-trigger {
  display: none;
  cursor: pointer;
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/quick-view.png) no-repeat;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.products-grid > li .amquickview-hover {
  cursor: pointer;
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/quick-view.png) no-repeat;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0 !important;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.products-grid > li .amquickview-hover .amquickview-link {
  font-size: 0;
  width: 40px;
  height: 40px;
  top: -8px;
  position: relative;
}
.products-grid > li .amquickview-hover .amquickview-link img {
  display: none !important;
}
@media only screen and (max-width: 1024px) {
  .products-grid > li .amquickview-hover {
    display: none;
  }
}
.products-grid > li.hover .quick-view-trigger:not(.hidden) {
  display: none;
}
.products-grid > li .brand {
  margin-bottom: 5px;
}
.products-grid > li .product-name {
  font-size: 15px;
  font-weight: 700;
}
.products-grid > li .product-name:hover {
  color: #636363;
}
.products-grid > li .price-box .price {
  font-size: 12px;
}
.products-grid > li .price-box > .price,
.products-grid > li .price-box .regular-price .price,
.products-grid > li .price-box .special-price .price {
  font-size: 18px;
  color: #292885;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.products-grid > li .price-box .regular-price .price-label,
.products-grid > li .price-box .special-price .price-label {
  display: none;
}
.products-grid > li .price-box .discount {
  display: none;
}

#quick-view {
  width: 760px;
  height: 565px;
  background: white;
}
#quick-view > .content {
  padding: 20px;
}
#quick-view .top {
  margin-bottom: 20px;
}
#quick-view .top:after {
  content: '';
  display: table;
  clear: both;
}
#quick-view .left,
#quick-view .right {
  width: calc(50% - 10px);
  float: left;
}
#quick-view .right {
  margin-left: 20px;
}
#quick-view .right > div {
  margin-bottom: 15px;
}
#quick-view .bottom {
  border-top: 1px solid #CCCCCC;
  display: table;
  width: 100%;
  padding-top: 20px;
}
#quick-view .bottom > div {
  display: table-cell;
  text-align: center;
  padding: 0 20px;
}
#quick-view .bottom > div span {
  display: block;
}
#quick-view .bottom > div span:first-child {
  color: #292885;
  font-weight: 500;
  font-size: 14px;
}
#quick-view .bottom > div span:last-child {
  font-size: 12px;
}
#quick-view .bottom > div:not(:last-child) {
  border-right: 1px solid #CCCCCC;
}
#quick-view .bottom > div:last-child {
  width: 33%;
}
#quick-view .banner {
  position: relative;
}
#quick-view .banner .title {
  color: white;
  font-weight: 700;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  float: none;
  background: #292885;
  padding: 0 10px;
}
#quick-view .banner .title span {
  float: none;
  color: white;
  text-decoration: underline;
}
#quick-view .banner .promo-details {
  position: absolute;
  width: 100%;
  background: white;
  font-size: 16px;
  z-index: 1000;
  border-bottom: 1px solid #CCCCCC;
}
#quick-view .banner .promo-details .c-text {
  color: green;
}
#quick-view .banner .promo-details p {
  margin: 15px 15px 5px 10px;
}
#quick-view .banner .promo-details .hide-button {
  margin-top: 20px;
  text-align: right;
}
#quick-view .banner .promo-details .hide-button > span {
  color: white;
  float: right;
  text-transform: uppercase;
  background: #292885;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  display: block;
  padding: 0 15px;
  cursor: pointer;
}
#quick-view .banner .promo-details .hide-button > span span {
  margin-left: 15px;
}
#quick-view .close-quick-view {
  font-size: 40px;
  line-height: 30px;
  color: white;
  font-weight: 100;
  right: 15px;
  position: absolute;
  top: 0;
  cursor: pointer;
}
#quick-view .product-image {
  width: 100%;
  border: 1px solid #CCCCCC;
}
#quick-view .product-image img {
  width: 100%;
}
#quick-view .product-name a {
  font-size: 18px;
  font-weight: bold;
  color: #636363;
  line-height: 22px;
}
#quick-view .sku {
  font-size: 11px;
  font-weight: bold;
  color: #A0A0A0;
  text-transform: uppercase;
}
#quick-view .product-info {
  color: #A0A0A0;
}
#quick-view .product-info ul {
  margin-left: 15px;
}
#quick-view .product-info ul li {
  list-style: disc;
}
#quick-view .view-more-details a {
  color: #292885;
  font-size: 15px;
}
#quick-view .regular-price > span {
  vertical-align: middle;
}
#quick-view .regular-price .label {
  color: #A0A0A0;
  font-weight: bold;
}
#quick-view .regular-price .price {
  font-size: 25px;
  font-weight: bold;
  color: #292885;
  margin-left: 5px;
}
#quick-view .regular-price .discount {
  color: green;
  font-style: italic;
  margin-left: 10px;
}
#quick-view .msrp .label {
  color: #A0A0A0;
  font-weight: bold;
}
#quick-view .msrp .price {
  text-decoration: line-through;
  margin-left: 20px;
  color: #A0A0A0;
  font-weight: bold;
}
#quick-view .add-to-cart {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #CCCCCC;
  background: #F4F4F4;
  padding: 10px;
  position: relative;
  /* Webkit browsers like Safari and Chrome */
}
#quick-view .add-to-cart .btn-cart {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  right: 15px;
  width: 100%;
  max-width: 170px;
  height: 40px;
}
#quick-view .add-to-cart label {
  line-height: 40px;
  font-size: 14px;
}
#quick-view .add-to-cart input {
  margin-left: 10px;
  padding-right: 15px;
}
#quick-view .add-to-cart:after {
  content: '';
  display: table;
  clear: both;
}
#quick-view .add-to-cart input[type='number'] {
  -moz-appearance: textfield;
}
#quick-view .add-to-cart input[type=number]::-webkit-inner-spin-button,
#quick-view .add-to-cart input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#quick-view .add-to-cart .ui-spinner {
  position: relative;
}
#quick-view .add-to-cart .ui-spinner .ui-spinner-button {
  border-left: 1px solid #ccc;
  color: #e8b742;
  font-size: 9px;
  padding: 1px 3px;
  position: absolute;
  right: 0;
  text-decoration: none;
  cursor: pointer;
}
#quick-view .add-to-cart .ui-spinner .ui-spinner-button.ui-spinner-up {
  top: -4px;
}
#quick-view .add-to-cart .ui-spinner .ui-spinner-button.ui-spinner-down {
  bottom: -7px;
}

body.ajax-loading .quick-view-overlay:before {
  content: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/opc-ajax-loader.gif);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  position: fixed;
  display: block;
  width: 50px;
  height: 50px;
  z-index: 1000;
}
body.ajax-loading .quick-view-overlay:not(.catalog-category-view):after {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(119, 119, 119, 0.75);
  z-index: 999;
  content: '';
  display: block;
}

.quick-view-overlay #close-overlay {
  display: none;
}

.products-grid .product-image {
  width: 100%;
  margin-bottom: 0;
}

.products-grid .product-image img {
  width: 100%;
  height: auto;
}
.products-grid .product-image img.hidden {
  display: none;
}

.widget-new-products .products-grid .product-image {
  width: 75%;
  margin-bottom: 15px;
  margin-left: 10%;
}

.products-grid .product-info {
  position: relative;
  padding-bottom: 95px;
  min-height: auto !important;
}
.products-grid .product-info .more-finish-options {
  font-size: 13px;
  font-weight: 500;
  height: 20px;
  display: block;
}
.products-grid .product-info .see-discount-msg {
  color: #FF6F57;
}

.products-grid .actions {
  position: absolute;
  bottom: 0px;
  width: 100%;
}

.products-grid .ratings .rating-box {
  margin: 0 auto;
}

.products-grid .ratings .amount {
  display: none;
}

.products-grid .price-box {
  margin: 5px 0 2px 0;
}

.products-grid .add-to-links {
  margin-bottom: 0;
}
.products-grid .add-to-links li > input,
.products-grid .add-to-links li > span {
  vertical-align: middle;
}

/* Config: Two columns + flexible gutter */
.products-grid > li {
  float: left;
  width: 47.72727%;
  margin-right: 4.54545%;
  cursor: pointer;
}

.products-grid > li:nth-child(odd) {
  clear: left;
}

.products-grid > li:nth-child(even) {
  margin-right: 0;
}

.products-grid .product-image {
  margin-bottom: 0;
}
.products-grid .product-image:before, .products-grid .product-image:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.products-grid .product-image:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.products-grid .product-image:after {
  background-image: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.products-grid .product-image.loading {
  position: relative;
}
.products-grid .product-image.loading:before, .products-grid .product-image.loading:after {
  display: block;
}

.msrp-linethrough {
  display: block;
  text-decoration: line-through;
}
.msrp-linethrough > .msrp-label {
  width: 65px;
  display: inline-block;
  margin-right: 4px;
  position: relative;
  top: 1px;
  color: #929292;
}
.msrp-linethrough .price {
  font-weight: bold;
}

.products-grid .msrp-linethrough > span,
.products-list .msrp-linethrough > span {
  width: auto;
  display: inline;
  margin-right: 0;
  position: static;
}
.products-grid .msrp-linethrough .price,
.products-list .msrp-linethrough .price {
  color: #929292;
  font-weight: normal;
}

.products-grid .label.our-price {
  display: none;
}

@media only screen and (min-width: 480px) {
  /* Config: Three columns + flexible gutter */
  .products-grid {
    /* Undo two-column config */
    /* Set three-column config */
  }
  .products-grid > li:nth-child(odd) {
    clear: none;
  }
  .products-grid > li:nth-child(even) {
    margin-right: 3.7037%;
  }
  .products-grid > li {
    width: 30.8642%;
    margin-right: 3.7037%;
  }
  .products-grid > li:nth-child(3n+1) {
    clear: left;
  }
  .products-grid > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 960px) {
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-4-col > li:nth-child(odd) {
    clear: none;
  }

  .products-grid--max-4-col > li:nth-child(3n+1) {
    clear: none;
  }

  .products-grid--max-4-col > li:nth-child(even),
  .products-grid--max-4-col > li:nth-child(3n) {
    margin-right: 2.22222%;
  }

  /* Set column config */
  .products-grid--max-4-col > li {
    margin-right: 2.22222%;
  }

  .products-grid--max-4-col > li {
    width: 23.33333%;
    margin-right: 2.22222%;
  }

  .products-grid--max-4-col > li:nth-child(4n+1) {
    clear: left;
  }

  .products-grid--max-4-col > li:nth-child(4n) {
    margin-right: 0;
  }

  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-5-col > li:nth-child(odd) {
    clear: none;
  }

  .products-grid--max-5-col > li:nth-child(3n+1) {
    clear: none;
  }

  .products-grid--max-5-col > li:nth-child(even),
  .products-grid--max-5-col > li:nth-child(3n) {
    margin-right: 2.22222%;
  }

  /* Set column config */
  .products-grid--max-5-col > li {
    margin-right: 2.22222%;
  }

  .products-grid--max-5-col > li {
    width: 18.22222%;
    margin-right: 2.22222%;
  }

  .products-grid--max-5-col > li:nth-child(5n+1) {
    clear: left;
  }

  .products-grid--max-5-col > li:nth-child(5n) {
    margin-right: 0;
  }

  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-6-col > li:nth-child(odd) {
    clear: none;
  }

  .products-grid--max-6-col > li:nth-child(3n+1) {
    clear: none;
  }

  .products-grid--max-6-col > li:nth-child(even),
  .products-grid--max-6-col > li:nth-child(3n) {
    margin-right: 2.22222%;
  }

  /* Set column config */
  .products-grid--max-6-col > li {
    margin-right: 2.22222%;
  }

  .products-grid--max-6-col > li {
    width: 14.81481%;
    margin-right: 2.22222%;
  }

  .products-grid--max-6-col > li:nth-child(6n+1) {
    clear: left;
  }

  .products-grid--max-6-col > li:nth-child(6n) {
    margin-right: 0;
  }
}
/* ============================================ *
 * Product List
 * ============================================ */
.products-list {
  margin-top: 20px;
  margin-bottom: 20px;
}
.products-list > li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EDEDED;
}
.products-list > li:after {
  content: '';
  display: table;
  clear: both;
}
.products-list > li .product-image {
  float: left;
  width: 33.33333%;
}
.products-list > li .product-image img {
  width: 100%;
  max-width: 100%;
}
.products-list > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.rating-box,
.rating-links {
  margin-right: 7px;
}

.separator,
#goto-reviews-form {
  display: none;
}

.rating-box {
  display: inline-block;
  height: 12px;
}

.rating-links {
  display: inline;
  vertical-align: text-bottom;
}

.products-list .product-shop {
  float: right;
  width: 66.66667%;
  padding-left: 20px;
}
.products-list .product-shop .product-name {
  margin-bottom: 0;
}
.products-list .product-shop .ratings {
  margin: 0;
}
.products-list .product-shop .ratings .rating-box,
.products-list .product-shop .ratings .rating-links {
  display: inline-block;
  float: left;
  margin-right: 7px;
}
.products-list .product-shop .ratings .separator,
.products-list .product-shop .ratings .goto-reviews-form {
  display: none;
}
.products-list .product-shop .ratings .rating-links {
  margin-top: 4px;
}
.products-list .product-shop .price-box {
  margin-top: 0;
}
.products-list .product-shop .price-box .price {
  font-size: 18px;
}
.products-list .product-shop .action {
  margin: 7px 0;
}
.products-list .product-shop .desc {
  margin-top: 7px;
}
.products-list .product-shop .product-primary,
.products-list .product-shop .desc {
  float: left;
  width: 65%;
  overflow: hidden;
}
.products-list .product-shop .product-secondary {
  float: right;
  width: 35%;
  text-align: right;
  clear: right;
}

@media only screen and (min-width: 480px) {
  .products-list .product-name a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1279px) {
  .products-list .product-shop .product-primary,
  .products-list .product-shop .desc {
    float: left;
    width: 60%;
    padding-right: 20px;
  }
  .products-list .product-shop .product-secondary {
    float: right;
    width: 40%;
  }
}
@media only screen and (max-width: 600px) {
  .products-list .product-shop .price-box .special-price {
    padding-left: 0;
  }

  .products-list .product-shop .product-primary,
  .products-list .product-shop .product-secondary,
  .products-list .product-shop .desc {
    float: none;
    width: 100%;
    padding-right: 0;
    text-align: left;
  }
}
/* ============================================ *
 * Mini Product List
 * ============================================ */
.mini-products-list .product-image {
  min-width: 50px;
}
.mini-products-list .product-details {
  margin-left: 60px;
}
.mini-products-list .product-details .product-name {
  padding-top: 10px;
  height: 50px;
}
.mini-products-list .product-details .product-description {
  height: 50px;
}
.mini-products-list li {
  margin-bottom: 10px;
  clear: both;
}
.mini-products-list li:after {
  content: '';
  display: table;
  clear: both;
}

.mini-products-images-list:after {
  content: '';
  display: table;
  clear: both;
}
.mini-products-images-list li.item {
  float: left;
  width: 50%;
  margin: 0;
  padding: 0 5px 10px 0;
}
.mini-products-images-list li.item:nth-child(even) {
  padding-right: 0;
  padding-left: 5px;
}
.mini-products-images-list li.item .product-image {
  display: block;
}
.mini-products-images-list li.item .product-image img {
  width: 100%;
  max-width: 100%;
}

/* ============================================ *
 * Catalog - List
 * ============================================ */
.category-image {
  border: 1px solid #CCCCCC;
  padding: 10px;
}
.category-image img {
  width: 100%;
  max-width: 100%;
}
.category-image img.hidden {
  display: none;
}

/* ============================================ *
 * Layered Navigation
 * ============================================ */
.block-layered-nav .block-subtitle--filter {
  display: none;
  cursor: pointer;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  position: relative;
  background-color: #3399CC;
  color: white;
  cursor: pointer;
}
.block-layered-nav .block-subtitle--filter:after {
  left: 10px;
  font-size: 18px;
  line-height: 18px;
  position: absolute;
}
.block-layered-nav .block-subtitle--filter:not(.active):after {
  content: "+";
}
.block-layered-nav .block-subtitle--filter.active:after {
  content: "-";
}

.block-layered-nav .amshopby-attr {
  padding-left: 0;
  background: none;
}
.block-layered-nav .amshopby-attr:hover {
  padding-left: 0;
  background: none;
}
.block-layered-nav .single-choice a.amshopby-attr {
  background: none;
}
.block-layered-nav .single-choice a.amshopby-attr:hover {
  background: none;
}

.logo-left img {
  margin: auto;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .logo-left img {
    padding: 15px 75px 30px;
  }
}

#narrow-by-list .show-more,
#narrow-by-list2 .show-more {
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
  padding-left: 15px;
  cursor: pointer;
}
#narrow-by-list .show-more::after,
#narrow-by-list2 .show-more::after {
  content: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/dmf-show-more-arrow.png);
  position: relative;
  margin: 0 0 0 7px;
}
@media only screen and (max-width: 767px) {
  #narrow-by-list .show-more,
  #narrow-by-list2 .show-more {
    display: none;
  }
}

#narrow-by-list .show-more.expanded::after,
#narrow-by-list2 .show-more.expanded::after {
  content: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/dmf-show-less-arrow.png);
  top: 2px;
}

.block-layered-nav .catname {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .block-layered-nav .catname {
    display: inline;
  }
}

@media only screen and (max-width: 767px) {
  .block.block-compare {
    margin-bottom: 0;
    margin-top: 1px;
    display: none;
  }

  .block-compare .block-title {
    font-weight: bold;
    padding-top: 5px;
    padding-bottom: 5px;
    border: none;
  }

  .block-compare .block-title:not(.active)::after {
    font-weight: normal;
    top: 6px;
  }
}
@media only screen and (min-width: 768px) {
  .block-layered-nav .block-title,
  .block-compare .block-title {
    height: 39px;
    line-height: 39px;
    text-align: center;
    background-color: #292885;
    position: relative;
  }
  .block-layered-nav .block-title strong span,
  .block-compare .block-title strong span {
    color: white;
    font-size: 14px;
    text-transform: none;
    font-weight: 700;
  }
  .block-layered-nav .block-title:before,
  .block-compare .block-title:before {
    content: ' ';
    background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/sidebar-title-bg.png) no-repeat;
    height: 50px;
    width: 50px;
    display: block;
    top: 0;
    left: -14px;
    position: absolute;
  }

  .block-layered-nav .currently {
    margin: 15px 0;
    padding-left: 10px;
    white-space: nowrap;
  }
  .block-layered-nav .actions {
    padding-left: 10px;
  }

  .block-compare .block-title span {
    color: #fff;
    font-size: 18px;
    text-transform: none;
    font-weight: 700;
  }
  .block-compare .block-content {
    padding: 10px 0 0 10px;
  }

  #narrow-by-list {
    padding: 10px 0;
  }
  #narrow-by-list > dt {
    text-transform: uppercase;
    padding: 0 10px 5px;
    font-size: 18px;
    margin-bottom: 5px;
    position: relative;
    border-bottom: 1px solid #CCCCCC;
    cursor: pointer;
    background: none;
  }
  #narrow-by-list > dt:after {
    content: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/dmf-show-more-arrow.png);
    position: absolute;
    top: -3px;
    right: 0;
  }
  #narrow-by-list > dt.open:after {
    content: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/dmf-show-less-arrow.png);
  }
  #narrow-by-list > dd {
    margin: 10px 0;
  }
  #narrow-by-list > dd li {
    padding: 0px 0 3px 15px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
  }
  #narrow-by-list > dd li a {
    color: #9e9e9e;
  }
  #narrow-by-list > dd li:hover {
    text-decoration: underline;
  }
  #narrow-by-list > dd.expanded li:nth-child(n+5) {
    display: block;
  }
  #narrow-by-list > dd li.amshopby-clearer a {
    font-style: italic;
  }
  #narrow-by-list > dd li.amshopby-clearer a:after {
    margin-left: 10px;
  }
  #narrow-by-list > dd li.amshopby-clearer .amshopby-more:after {
    content: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/dmf-show-more-arrow.png);
  }
  #narrow-by-list > dd li.amshopby-clearer .amshopby-less:after {
    content: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/dmf-show-less-arrow.png);
  }
  #narrow-by-list li.amshopby-attr-item-selected {
    margin-top: 3px;
    background-color: #f2f2f2;
    padding: 5px 0 5px 20px;
  }
  #narrow-by-list li.amshopby-attr-item-selected a.amshopby-attr-selected {
    padding-left: 0;
    background: none;
    font-weight: normal;
    font-size: 13px;
    color: #898989;
    width: 100%;
  }
  #narrow-by-list li.amshopby-attr-item-selected a.amshopby-attr-selected:after {
    content: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/dmf-remove-filter.png);
    float: right;
  }
  #narrow-by-list li.amshopby-attr-item-selected a.amshopby-attr-selected:hover:after {
    content: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/dmf-remove-filter-h.png);
  }
}
@media only screen and (max-width: 800px) {
  .block-layered-nav .block-title span, .block-layered-nav .block-title strong span,
  .block-compare .block-title span,
  .block-compare .block-title strong span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .block-compare .block-title strong span {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .sidebar .block.block-layered-nav {
    margin: 0 0 0 0;
    border-bottom: none;
  }
  .sidebar .block.block-layered-nav .block-title {
    padding: 5px 15px 5px 25px;
    background-color: #3399CC;
    color: #FFFFFF;
    cursor: pointer;
    position: relative;
    margin-bottom: 0;
  }
  .sidebar .block.block-layered-nav .block-title:before {
    font-size: 18px;
    position: absolute;
    line-height: 18px;
    left: 10px;
    top: 6px;
  }
  .sidebar .block.block-layered-nav .block-title.active:before {
    content: '-';
  }
  .sidebar .block.block-layered-nav .block-title:not(.active):before {
    content: '+';
  }
  .sidebar .block.block-layered-nav .currently {
    display: block;
    padding: 0 15px;
  }
  .sidebar .block.block-layered-nav .actions {
    display: block;
    padding: 0 15px 10px 15px;
  }
  .sidebar .block.block-layered-nav .block-subtitle {
    display: block;
  }
  .sidebar .block.block-layered-nav .block-subtitle--filter {
    display: none;
  }

  .col-left.sidebar {
    margin-bottom: 0;
  }

  .block-layered-nav--no-filters .block-title {
    display: none;
  }

  .block-layered-nav .block-content {
    padding-top: 0;
  }
  .block-layered-nav .block-content > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
  }
  .block-layered-nav .block-content > dl > dt:after {
    content: "+";
    left: 10px;
    font-size: 18px;
    line-height: 18px;
    position: absolute;
  }
  .block-layered-nav .block-content > dl > dt.last {
    border-bottom-width: 1px;
  }
  .block-layered-nav .block-content > dl > dd {
    display: none;
  }
  .block-layered-nav .block-content.accordion-open > dl > dt.current {
    border-bottom-width: 1px;
  }
  .block-layered-nav .block-content.accordion-open > dl > dt.current:after {
    content: '-';
  }
  .block-layered-nav .block-content.accordion-open > dl > dd.current {
    display: block;
  }

  .block-layered-nav .block-subtitle--filter {
    background-color: #3399CC;
    border: 0;
    margin-bottom: 0;
    display: none;
    color: #FFFFFF;
    position: relative;
    padding: 7px 10px 7px 28px;
  }
  .block-layered-nav .block-subtitle--filter:after {
    left: 15px;
  }

  dl#narrow-by-list {
    padding-left: 7px;
  }

  #narrow-by-list,
  #narrow-by-list2 {
    padding: 10px;
    border: 1px solid #CCCCCC;
    border-top: 0;
  }

  #narrow-by-list dt {
    padding-left: 16px;
    padding-top: 1px;
    position: relative;
  }
  #narrow-by-list dt:after {
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
  }
  #narrow-by-list dd a {
    background: none;
  }

  .block-layered-nav dl ol > li > a,
  .block-layered-nav dl ol > li > span {
    padding: 7px;
    margin: 5px;
  }

  .block-layered-nav dl ol > li > a {
    color: #636363;
    background-color: #F4F4F4;
    padding: 5px 10px;
  }
  .block-layered-nav dl ol > li > a:hover {
    text-decoration: none;
    background: #ededed;
  }

  .block-compare {
    border-bottom: none !important;
  }
  .block-compare .block-title {
    border: 1px solid #CCCCCC;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    position: relative;
    background-color: #3399CC;
    color: white;
    cursor: pointer;
    font-weight: bold;
    padding-top: 5px;
    padding-bottom: 5px;
    border: none;
  }
  .block-compare .block-title:after {
    left: 10px;
    font-size: 18px;
    line-height: 18px;
    position: absolute;
  }
  .block-compare .block-title:not(.active):after {
    content: "+";
  }
  .block-compare .block-title.active:after {
    content: "-";
  }
  .block-compare .block-content {
    border: 1px solid #CCCCCC;
    border-top: none;
    padding: 10px;
  }
}
.block-layered-nav .currently {
  display: none;
}
.block-layered-nav .currently .block-subtitle {
  display: block;
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
.block-layered-nav .currently ol {
  padding-left: 10px;
  margin-bottom: 10px;
}
.block-layered-nav .currently ol li {
  margin-bottom: 5px;
}
.block-layered-nav .currently ol li .label {
  font-weight: bold;
}
.block-layered-nav .currently ol li:after {
  content: '';
  display: table;
  clear: both;
}

.block-layered-nav .actions {
  display: none;
  text-align: right;
  margin-bottom: 7px;
}

.block-layered-nav .block-subtitle {
  display: none;
}

.widget .how-to-content-block .content,
.widget .how-to-content-block .learn-more-anchor {
  padding: 0 15px;
}

.banner.toggle-content .toggler em {
  font-style: normal;
  text-decoration: underline;
}

.pr-snippet-stars .pr-stars-small, .pr-modal-container .pr-stars {
  background-image: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/gold-ratings-2015.png");
}

/** COMPARE **/
.compare-modal .product-shop-row li:nth-child(odd) {
  background: #fff;
}
.compare-modal li button.button {
  font-size: 12px;
  padding: 7px 7px;
}
.compare-modal .product-name a {
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  /* color: #636363; */
  font-size: 14px;
  line-height: 1.5;
}
.compare-modal .product-name a:hover {
  overflow: visible;
}
.compare-modal .product-shop-row li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 5px 0px;
  min-height: 31px;
  padding-left: 8px;
}
.compare-modal h2.product-name {
  margin: 0px;
}
.compare-modal button.button.btn-cart:hover {
  background-color: #fbd67d;
}
.compare-modal .compare-popup button.button {
  float: right;
}
.compare-modal .compare-popup.actions {
  margin-top: 20px;
}
.compare-modal .fancybox-skin {
  background: #fff;
}
.compare-modal .product-shop-row li:first-of-type {
  background: #f9f9f9 !important;
}
.compare-modal .product-shop-row li:nth-child(odd) {
  background: #EAF3F8;
}
.compare-modal .product-shop-row ul {
  padding-right: 10px;
}
.compare-modal .product-shop-row img {
  margin: 0 auto;
}
.compare-modal #inline1 .block-title span {
  color: #292885;
  font-weight: bold;
}
.compare-modal .compare-popup button.button:first-of-type {
  margin-left: 17px;
}
.compare-modal .compare-popup.actions button {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 7px;
}
.compare-modal .center-align {
  text-align: center;
}
.compare-modal .tooltip .tooltiptext {
  visibility: hidden;
  background-color: #2a2c83;
  color: #f4f4f4;
  text-align: center;
  padding: 5px 5px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  margin-left: -135px;
  margin-top: 30px;
  transition: opacity 0.3s;
}
.compare-modal tr.product-shop-row.top td:last-of-type .tooltiptext {
  margin-left: -255px;
}
.compare-modal .tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  bottom: 100%;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

@media screen and (max-width: 413px) {
  .compare-btn {
    margin-top: 0px;
  }
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.compare-modal .compareButton {
  -moz-box-shadow: inset 0px 1px 3px 0px #d1ba8c;
  -webkit-box-shadow: inset 0px 1px 3px 0px #d1ba8c;
  box-shadow: inset 0px 1px 3px 0px #d1ba8c;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f5d893), color-stop(1, #fcdd96));
  background: -moz-linear-gradient(top, #f5d893 5%, #fcdd96 100%);
  background: -webkit-linear-gradient(top, #f5d893 5%, #fcdd96 100%);
  background: -o-linear-gradient(top, #f5d893 5%, #fcdd96 100%);
  background: -ms-linear-gradient(top, #f5d893 5%, #fcdd96 100%);
  background: linear-gradient(to bottom, #f5d893 5%, #fcdd96 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5d893', endColorstr='#fcdd96',GradientType=0);
  background-color: #f5d893;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #ffd175;
  display: inline-block;
  cursor: pointer;
  color: #2a2c83;
  font-weight: bold;
  padding: 11px 23px;
  text-decoration: none;
  text-shadow: 0px 2px 0px #fcdb94;
}
.compare-modal .compareButton:hover {
  background-color: #fbd67d;
}
.compare-modal tr td {
  border-bottom: none;
}
.compare-modal .btn-remove {
  background-color: #ffffff;
}

@media only screen and (max-width: 767px) {
  #narrow-by-list .amshopby-tooltip-img {
    display: none;
  }
}
#narrow-by-list .amshopby-tooltip-img-mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  #narrow-by-list .amshopby-tooltip-img-mobile {
    display: inline;
  }
}

@media only screen and (max-width: 767px) {
  #listings-moved-blocks-container {
    display: table;
  }

  #listings-moved-logo {
    display: table-cell;
  }

  #listings-moved-h1 {
    display: table-cell;
    vertical-align: top;
  }

  #listings-moved-logo img {
    padding: 0;
  }

  .col-main h1, .col-left.sidebar.col-left-first .logo-left img {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #listings-moved-blocks-container {
    display: none;
  }
}
/* ============================================ *
 * Catalog - Product
 * ============================================ */
@media only screen and (max-width: 767px) {
  .product-view .product-essential .extra-info {
    display: none;
  }
}
.product-view .product-essential .extra-info .ratings .rating-box,
.product-view .product-essential .extra-info .ratings .amount {
  float: left;
}
.product-view .product-essential .extra-info .ratings .rating-box {
  margin-top: 8px;
  margin-right: 5px;
  font-size: 12px;
}
.product-view .product-essential .extra-info .ratings:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-essential:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-shop h1.product-name {
  color: #636363;
  font-size: 18px;
  line-height: 21px;
  font-weight: bold;
  margin-bottom: 7px;
}
.product-view .product-shop .product-sku {
  font-size: 12px;
  color: #999999;
  font-weight: bold;
}
.product-view .product-shop .extra-info {
  margin-bottom: 0;
  clear: both;
}
.product-view .product-shop .short-description {
  margin-bottom: 10px;
  overflow: hidden;
  max-height: 85px;
}
@media only screen and (max-width: 767px) {
  .product-view .product-shop .short-description {
    display: none;
  }
}
.product-view .product-shop .short-description li {
  list-style-type: disc;
  margin-left: 15px;
  color: #929292;
}
.product-view .product-shop .configurable-swatch-list li {
  margin-top: 5px;
}
.product-view .product-shop .ratings {
  margin-bottom: 8px;
  color: #4C7F93;
  cursor: pointer;
}
.product-view .product-shop .product-options {
  padding-bottom: 10px;
}
.product-view .product-shop .product-options dt {
  margin-top: 0;
}
.product-view .product-shop .product-options-bottom {
  padding: 10px 20px 10px 20px;
}
.product-view .product-shop .availability {
  font-size: 16px;
}
.product-view .product-shop .price-box {
  margin-top: 0;
}
.product-view .product-shop .price-box > *:not(:last-child) {
  margin-bottom: 10px;
}
.product-view .product-shop .price-box .price-label {
  color: #929292;
  display: inline-block;
  vertical-align: middle;
  width: 90px;
}
.product-view .product-shop .price-box .old-price .price-label {
  text-decoration: none;
}
.product-view .product-shop .price-box .old-price .price {
  font-weight: 500;
}
.product-view .product-shop .price-box .save-percent {
  color: #008000;
  font-weight: 500;
  font-style: italic;
  text-decoration: none;
  margin: 0 0 0 15px;
  font-size: 13px;
}
.product-view .product-shop .price-box .special-price .price-label {
  width: auto;
  padding-right: 8px;
}
.product-view .product-shop .price-box .discount {
  color: green;
  font-weight: bold;
  font-style: italic;
  margin-left: 10px;
}
.product-view .product-shop .price-box .price {
  vertical-align: middle;
}
.product-view .product-shop .price-box .label {
  color: #929292;
  width: 65px;
  display: inline-block;
}
.product-view .product-shop .price-box .label.our-price {
  position: relative;
  top: 1px;
}
.product-view .product-shop .price-box .old-price,
.product-view .product-shop .price-box .special-price,
.product-view .product-shop .price-box .regular-price {
  padding-right: 0;
  line-height: 1.2;
}
.product-view .product-shop .price-box .regular-price .price,
.product-view .product-shop .price-box .special-price .price,
.product-view .product-shop .price-box .full-product-price .price {
  font-size: 24px;
  color: #292885;
  font-weight: bold;
}
.product-view .product-shop .price-box .special-price span.weee {
  color: #636363;
}
.product-view .product-shop .price-box .special-price span.weee span.price {
  font-size: 16px;
}
.product-view .product-shop .price-box .price-excluding-tax,
.product-view .product-shop .price-box .price-including-tax {
  display: block;
  line-height: 1.2;
  color: #636363;
}
.product-view .product-shop .price-box .price-excluding-tax .label,
.product-view .product-shop .price-box .price-including-tax .label {
  font-size: 16px;
  font-weight: 300;
}
.product-view .product-shop .price-box .price-excluding-tax .price,
.product-view .product-shop .price-box .price-including-tax .price {
  font-size: 20px;
}
.product-view .product-shop .price-box span[id^='configurable-price-from-'] {
  display: none;
}
.product-view .price-box.map-info a {
  display: inherit;
}
.product-view .add-to-cart-wrapper {
  width: 50%;
  float: right;
  clear: right;
}
.product-view .add-to-box {
  padding: 10px 20px 0 20px;
  margin-bottom: 20px;
  background: #F4F4F4;
  border: 1px solid #CCCCCC;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.product-view .add-to-cart label[for='qty'] {
  font-size: 14px;
  line-height: 40px;
}
.product-view .add-to-cart .btn-cart {
  width: calc(100% - 140px);
  float: right;
  padding: 10px;
}
.product-view .add-to-cart .btn-cart:disabled:hover {
  background: #c8c8c8;
}
@media only screen and (max-width: 767px) {
  .product-view .add-to-cart .btn-cart {
    font-size: 14px;
  }
}
.product-view .add-to-cart:disabled:hover {
  background: none;
}
.product-view .add-to-cart .ui-spinner {
  display: inline-block;
  position: relative;
  border: 1px solid #CCCCCC;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #f9f9f9;
  width: calc(3em + 20px);
}
.product-view .add-to-cart .ui-spinner input {
  border: none;
  border-right: 1px solid #CCCCCC;
  background: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.product-view .add-to-cart .ui-spinner .ui-spinner-button {
  color: #e8b742;
  position: absolute;
  font-size: 0.75em;
  right: 2px;
  cursor: pointer;
}
.product-view .add-to-cart .ui-spinner .ui-spinner-button:hover {
  text-decoration: none;
}
.product-view .add-to-cart .ui-spinner .ui-spinner-up {
  top: 1px;
}
.product-view .add-to-cart .ui-spinner .ui-spinner-down {
  bottom: 1px;
}
.product-view .bottom-info-wrapper {
  display: table;
  width: 100%;
  padding-top: 5px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .product-view .bottom-info-wrapper {
    margin: 0;
    padding: 0;
  }
}
.product-view .bottom-info-wrapper > div {
  display: table-cell;
  text-align: center;
  padding: 0 20px;
  vertical-align: middle;
}
.product-view .bottom-info-wrapper > div span {
  display: block;
}
.product-view .bottom-info-wrapper > div span:first-child {
  color: #292885;
  font-weight: 600;
  font-size: 14px;
}
.product-view .bottom-info-wrapper > div span:last-child {
  font-size: 12px;
}
.product-view .bottom-info-wrapper > div:not(:last-child) {
  border-right: 1px solid #CCCCCC;
}
.product-view .bottom-info-wrapper .promo-info {
  width: 40%;
}
.product-view .bottom-info-wrapper .promo-info img {
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  .product-view .bottom-info-wrapper > div:nth-child(2) {
    border-right: none;
  }
  .product-view .bottom-info-wrapper .promo-info {
    display: table-caption;
    caption-side: bottom;
    width: 100%;
    padding-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .product-view .bottom-info-wrapper > div {
    border: none;
    display: block;
    padding: 10px 0;
  }
  .product-view .bottom-info-wrapper > div:not(:last-child) {
    border-bottom: 1px solid #CCCCCC;
    border-right: none;
  }
}
.product-view #qty + .validation-advice {
  top: -50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  background: rgba(207, 80, 80, 0.8);
  color: white;
  border-radius: 5px;
  padding: 5px;
  width: 120px;
  text-align: center;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  white-space: nowrap;
}
.product-view #qty + .validation-advice:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid #000000;
  border-bottom: none;
  border-top-color: rgba(207, 80, 80, 0.8);
  top: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}

@media only screen and (min-width: 768px) {
  .product-view .product-img-box {
    width: 45%;
    padding-right: 20px;
    float: left;
  }
  .product-view .product-shop,
  .product-view .add-to-cart-wrapper,
  .product-view .bottom-info-wrapper {
    width: 55%;
    padding-left: 20px;
    float: right;
  }
  .product-view:after {
    content: '';
    display: table;
    clear: both;
  }
  .product-view .product-essential {
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 1025px) {
  .product-view .product-img-box {
    width: 40%;
    padding-right: 40px;
  }
  .product-view .product-shop,
  .product-view .add-to-cart-wrapper,
  .product-view .bottom-info-wrapper {
    width: 60%;
    padding-left: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .product-essential,
  .box-up-sell,
  .block-viewed {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#shareTtlWrap {
  color: #666;
  font-size: 12px;
  font-weight: bold;
  margin: 19px 0 11px;
}
@media only screen and (max-width: 767px) {
  #shareTtlWrap {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .addthis_sharing_toolbox {
    display: none;
  }
}
.addthis_sharing_toolbox:after {
  content: '';
  display: table;
  clear: both;
}
.addthis_sharing_toolbox a {
  float: left;
  height: 40px;
  width: 40px;
  margin-right: 10px !important;
  max-height: 40px !important;
  max-width: 40px !important;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .addthis_sharing_toolbox a {
    margin-right: 5px !important;
  }
}
.addthis_sharing_toolbox a.at-share-btn .at-icon-wrapper {
  display: none;
}
.addthis_sharing_toolbox a.at-svc-facebook {
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/social-sprite-005.jpg") no-repeat !important;
}
.addthis_sharing_toolbox a.at-svc-twitter {
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/social-sprite-005.jpg") no-repeat -50px 0 !important;
}
.addthis_sharing_toolbox a.at-svc-pinterest_share {
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/social-sprite-005.jpg") no-repeat -100px 0 !important;
}
.addthis_sharing_toolbox a.at-svc-email {
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/social-sprite-005.jpg") no-repeat -150px 0 !important;
}
.addthis_sharing_toolbox a.at-svc-print {
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/social-sprite-005.jpg") no-repeat -200px 0 !important;
}
.addthis_sharing_toolbox a.at-svc-compact {
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/social-sprite-005.jpg") no-repeat -250px 0 !important;
}

@media only screen and (max-width: 850px) {
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 15px;
  }
  .product-view .product-shop .price-box .price-excluding-tax .price,
  .product-view .product-shop .price-box .price-including-tax .price {
    font-size: 18px;
  }
}
.touch .mobile .product-view .add-to-box {
  background: #e4e4e4;
}
.touch .mobile .product-view .add-to-box .add-to-cart .ui-spinner {
  margin-top: 4px;
}
.touch .mobile .product-view .add-to-cart .qty {
  width: calc(3em - 2.4px);
}

@media only screen and (max-width: 1024px) {
  .product-view .add-to-box {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
  }
  .product-view .add-to-cart-wrapper .add-to-box .add-to-links {
    float: none;
  }
  .product-view .add-to-cart-wrapper .add-to-box label {
    display: inline;
  }
  .product-view .add-to-cart-wrapper .add-to-box .btn-cart {
    width: calc(100% - 140px);
  }
  .product-view .product-img-box .product-image {
    margin-bottom: 0;
  }
  .product-view .product-options-bottom {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .product-view .add-to-cart-wrapper {
    float: none;
    width: 100%;
    clear: both;
  }
  .product-view .product-shop {
    clear: both;
  }
  .product-view .product-shop .product-name {
    display: none;
  }
  .product-view .product-shop .product-sku {
    display: none;
  }
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 16px;
  }
  .product-view .product-shop .price-box .price-excluding-tax .price,
  .product-view .product-shop .price-box .price-including-tax .price {
    font-size: 20px;
  }
  .product-view #collateral-tabs .tab-content {
    padding: 0;
  }
  .product-view #collateral-tabs .tab-content #customer-reviews {
    padding: 0 15px;
  }
  .product-view #collateral-tabs .tab-content #customer-reviews .pr-snapshot-title {
    font-size: 14px;
  }
  .product-view #collateral-tabs .tab-content #customer-reviews .pr-page-count-wrapper {
    width: 100%;
  }
  .product-view #collateral-tabs .features-content .title {
    border-left: none;
    border-right: none;
  }
  .product-view #collateral-tabs dt {
    margin-bottom: 1px;
  }
  .product-view #collateral-tabs dd {
    border: none;
  }
  .product-view #description iframe {
    display: block;
    margin: auto;
  }
}
@media only screen and (max-width: 420px) {
  .product-view .product-shop .price-box .price-excluding-tax,
  .product-view .product-shop .price-box .price-including-tax {
    margin-bottom: 5px;
  }
  .product-view .product-shop .price-box .price-excluding-tax span,
  .product-view .product-shop .price-box .price-including-tax span {
    display: block;
  }
}
.product-img-box:after {
  content: '';
  display: table;
  clear: both;
}
.product-img-box .product-name h1 {
  border: 0;
}
.product-img-box .product-image {
  margin-bottom: 10px;
}
.product-img-box .product-image-gallery {
  padding: 10px;
}
.product-img-box .product-image img {
  max-width: 100%;
  max-height: 100%;
  margin: 0px auto;
}
.product-img-box .more-views {
  position: relative;
  border: 1px solid #CCCCCC;
  padding: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 479px) {
  .product-img-box .more-views {
    margin-top: 10px;
  }
}
.product-img-box .more-views .title {
  background: white;
  padding: 0 5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  top: -10px;
}

.product-image-gallery {
  position: relative;
  border: 1px solid #CCCCCC;
  text-align: center;
}
.product-image-gallery .fullsize-link {
  display: none;
  position: relative;
}
.product-image-gallery .fullsize-link.visible {
  display: block;
}
.product-image-gallery > .gallery-image.visible {
  padding: 10px;
}
.product-image-gallery .gallery-image {
  display: none;
}
.product-image-gallery .gallery-image.visible {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.product-image-gallery .gallery-image.visible.hidden {
  visibility: hidden;
}
.product-image-gallery:before, .product-image-gallery:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.product-image-gallery:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.product-image-gallery:after {
  background-image: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.product-image-gallery.loading {
  position: relative;
}
.product-image-gallery.loading:before, .product-image-gallery.loading:after {
  display: block;
}

.product-image-thumbs li {
  padding: 0 10px;
}
.product-image-thumbs li img {
  border: 1px solid #CCCCCC;
}

.product-view .product-shop,
.product-view .add-to-cart-wrapper {
  padding-left: 15px;
}

.product-img-box {
  padding-right: 15px;
}
.product-img-box .mobile-h1 {
  display: block;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  font-size: 24px;
  font-weight: 600;
  color: #636363;
  padding-bottom: 3px;
  margin: 0 0 15px 0;
  border: 0;
}

.product-view .product-shop,
.product-img-box,
.product-collateral,
.box-collateral {
  margin-bottom: 10px;
}

.product-view {
  /* Set a min-height so that the floated elements break appropriately */
}
.product-view .add-to-box:after,
.product-view .add-to-cart:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .add-to-cart {
  margin-bottom: 10px;
}
.product-view .add-to-cart .qty {
  width: 3em;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart-buttons {
  min-height: 40px;
}
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart-buttons .button,
.product-view .add-to-cart-buttons .paypal-logo {
  margin-bottom: 10px;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart .qty-wrapper label {
  margin-right: 7px;
  float: left;
}
.product-view .add-to-cart .qty-wrapper label {
  line-height: 40px;
}
.product-view .add-to-cart .qty-wrapper .qty {
  float: left;
  height: 40px;
}
.product-view .add-to-cart-buttons {
  float: left;
  margin-right: 10px;
  max-width: 100%;
}
.product-view .add-to-cart-buttons .paypal-logo {
  clear: left;
  text-align: center;
}
.product-view .add-to-cart-buttons .paypal-logo .paypal-button {
  margin: 0 auto;
  display: block;
  width: 170px;
}
.product-view .add-to-cart-buttons .paypal-logo .bml_button {
  display: block;
  width: 174px;
  margin: 0 auto;
}
.product-view .add-to-cart-buttons .paypal-logo .bml_button a {
  text-align: center;
}
.product-view .add-to-cart-buttons .paypal-logo .paypal-or {
  display: block;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  line-height: 1;
  text-align: center;
}
.product-view .add-to-cart-buttons .button {
  min-height: 40px;
  line-height: 40px;
  font-size: 16px;
  padding: 0px 30px;
  float: left;
  min-width: 160px;
  width: 100%;
  white-space: normal;
}
.product-view .alert-price,
.product-view .alert-stock {
  clear: both;
}

@media only screen and (max-width: 479px) {
  .product-view .add-to-cart-buttons .paypal-or {
    line-height: 20px;
  }
  .product-view .add-to-cart-buttons .paypal-logo,
  .product-view .add-to-cart-buttons .paypal-or,
  .product-view .add-to-cart-buttons .paypal-button,
  .product-view .add-to-cart-buttons .button {
    text-align: center;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
}
/* This is the "or" that separates the "Add to Cart" and "Add to X" links */
.add-to-box .or {
  display: none;
}

.product-view .add-to-links {
  float: right;
  text-align: center;
}
@media only screen and (min-width: 1025px) {
  .product-view .add-to-links {
    width: calc(100% - 140px);
  }
}
.product-view .add-to-links:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .add-to-links li {
  display: inline;
}
.product-view .add-to-links a {
  padding: 2px 7px 2px 0px;
  margin-left: 7px;
  border-right: 1px solid #CCCCCC;
}
.product-view .add-to-links li:first-child a {
  margin-left: 0px;
}
.product-view .add-to-links li:last-child a {
  border-right: 0px;
}

.product-view .sharing-links {
  float: left;
}
.product-view .sharing-links:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .sharing-links li {
  float: left;
  padding: 0px 7px 7px;
}
.product-view .sharing-links a {
  text-indent: -9999px;
  display: block;
  width: 26px;
  height: 26px;
}
.product-view .sharing-links a:hover {
  opacity: 0.8;
}
.product-view .sharing-links a.link-wishlist {
  background-position: 0px -225px;
}
.product-view .sharing-links a.link-compare {
  background-position: 0px -250px;
}
.product-view .sharing-links a.link-email-friend {
  background-position: 0px -322px;
}
.product-view .sharing-links a.link-facebook {
  background-position: 0px -425px;
}
.product-view .sharing-links a.link-twitter {
  background-position: 0px -372px;
}

@media only screen and (max-width: 599px) {
  .add-to-box .add-to-links a {
    float: none;
    width: auto;
    text-indent: 0;
  }
}
.product-collateral {
  clear: both;
}

.collateral-tabs .tab-container {
  padding-left: 0;
  padding-right: 0;
}
.collateral-tabs dd h2 {
  background: #EBEBEB;
  border: 1px solid #CCCCCC;
  color: #333333;
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 10px 15px;
  text-transform: none;
  font-size: 18px;
  line-height: 18px;
}
.collateral-tabs dd .title {
  background: #EBEBEB;
  border: 1px solid #CCCCCC;
  color: #333333;
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 10px 15px;
  text-transform: none;
  font-size: 18px;
  line-height: 18px;
}
.collateral-tabs .sub-tabs {
  padding: 0 20px 15px 20px;
}
@media only screen and (max-width: 1024px) {
  .collateral-tabs .sub-tabs {
    display: none;
  }
}
.collateral-tabs .sub-tabs li {
  display: inline;
}
.collateral-tabs .sub-tabs li:not(:last-child) {
  margin-right: 20px;
}
.collateral-tabs .sub-tabs li a {
  color: #292885;
  font-size: 14px;
  font-weight: bold;
}
.collateral-tabs .tab-content p {
  margin-bottom: 15px;
}
.collateral-tabs .tab-content .content {
  padding: 15px;
}
.collateral-tabs .tab-content .content ul {
  margin: 15px;
}
.collateral-tabs .tab-content .content ul li {
  list-style-type: disc;
  margin: 5px 0 0 15px;
}
.collateral-tabs .tab-content .content ol li {
  margin: 0 0 10px 30px;
  list-style: decimal;
}
.collateral-tabs .tab-content h4 {
  font-size: 16px;
  color: black;
}
.collateral-tabs .tab-content .sub-bold {
  font-size: 16px;
  color: black;
}
.collateral-tabs .tab-content strong {
  color: black;
}
.collateral-tabs .tab-content img.textwrap {
  padding: 25px;
  box-sizing: initial;
  float: right;
}
.collateral-tabs .tab-content img.inline {
  display: inline;
}
.collateral-tabs .tab-content img + img {
  padding-left: 5px;
}
.collateral-tabs .features-content .title {
  background: #ebebeb;
  border: 1px solid #cccccc;
  color: #333333;
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 9px 15px 10px 15px;
  text-transform: none;
  font-size: 18px;
  line-height: 18px;
}
@media only screen and (min-width: 768px) {
  .collateral-tabs .features-content .content .left,
  .collateral-tabs .features-content .content .right {
    float: left;
  }
  .collateral-tabs .features-content .content .left {
    width: 80%;
    padding-right: 20px;
  }
  .collateral-tabs .features-content .content .right {
    width: 20%;
    padding-left: 20px;
  }
  .collateral-tabs .features-content .content:after {
    content: '';
    display: table;
    clear: both;
  }
}
.collateral-tabs .features-content .content .image-container {
  border: 1px solid #CCCCCC;
  height: 115px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .collateral-tabs .features-content .content .image-container {
    max-width: 200px;
    margin: 15px auto 0;
  }
}
.collateral-tabs .features-content .content .image-container img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media only screen and (min-width: 768px) {
  .collateral-tabs .features-content td.label {
    min-width: 180px;
  }
}
@media only screen and (min-width: 768px) {
  .collateral-tabs #description .left {
    width: calc(100% - 230px) !important;
  }
  .collateral-tabs #description .right {
    width: 230px !important;
  }
}
.collateral-tabs #description .upc {
  color: black;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}
.collateral-tabs #description .colldesc {
  font-weight: bold;
}
.collateral-tabs #description .product-manual {
  width: 210px;
  margin: 30px auto 0;
  text-align: center;
  border: solid 1px #CCCCCC;
  padding: 20px;
}
.collateral-tabs #description .product-manual a > * {
  vertical-align: middle;
  display: inline;
}
.collateral-tabs #description .product-manual img {
  margin-right: 5px;
  width: 20px;
}
.collateral-tabs #description .product-manual div {
  margin-bottom: 10px;
}
.collateral-tabs .dimensions .left {
  width: calc(100% - 360px) !important;
  padding-right: 30px;
}
.collateral-tabs .dimensions .left .dimension-info {
  border: 1px solid #CCCCCC;
  height: 100%;
}
.collateral-tabs .dimensions .left .dimension-info img {
  height: calc(340px - 60px) !important;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .collateral-tabs .dimensions .left .dimension-info img {
    height: auto !important;
    width: 100%;
  }
}
.collateral-tabs .dimensions .left .dimension-info ul {
  margin: 0;
}
.collateral-tabs .dimensions .left .dimension-info ul li {
  background: #F4F4F4;
  float: left;
  text-align: center;
  width: calc(100%/6);
  display: block;
  list-style-type: none;
  height: 60px;
  margin: 0;
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
}
.collateral-tabs .dimensions .left .dimension-info ul li span {
  line-height: 30px;
  display: block;
}
.collateral-tabs .dimensions .left .dimension-info ul li .label {
  color: #292885;
  font-weight: bold;
  font-size: 16px;
}
.collateral-tabs .dimensions .left .dimension-info ul li:last-child {
  border-right: none;
}
.collateral-tabs .dimensions .left .dimension-info ul:after {
  content: '';
  display: table;
  clear: both;
}
@media only screen and (max-width: 1024px) {
  .collateral-tabs .dimensions .left {
    width: 100% !important;
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .collateral-tabs .dimensions .right {
    width: 360px !important;
  }
}
@media only screen and (max-width: 1024px) {
  .collateral-tabs .dimensions .right {
    float: none !important;
    clear: both;
    padding-left: 0 !important;
    padding-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .collateral-tabs .dimensions .right {
    width: 100%;
  }
  .collateral-tabs .dimensions .right img {
    max-width: 100%;
  }
}
.collateral-tabs .dimensions .dimension-detail {
  clear: both;
  padding-top: 15px;
}
.collateral-tabs .product-name,
.collateral-tabs td.label {
  font-size: 16px;
  font-weight: bold;
}
.collateral-tabs td.label {
  padding: 5px 15px 5px 0;
}
.collateral-tabs #energy_information .energy-info {
  text-align: center;
}
.collateral-tabs #energy_information .energy-info .item {
  margin-bottom: 30px;
}
.collateral-tabs #energy_information .energy-info img {
  margin: 10px auto;
}
@media only screen and (min-width: 768px) {
  .collateral-tabs #energy_information .energy-info > *:not(:nth-child(3n)) {
    margin-right: 2.02224% !important;
  }
  .collateral-tabs #energy_information .energy-info > *:nth-child(3n) {
    margin-right: 0 !important;
  }
  .collateral-tabs #energy_information .energy-info > * {
    width: 31.98517% !important;
    float: left !important;
    display: inline-block !important;
  }
}
.collateral-tabs #energy_information .energy-info h4 {
  color: #636363;
}
.collateral-tabs #energy_information .energy-info .graph {
  margin-top: -45px;
}
.collateral-tabs #energy_information .energy-info text {
  font-size: 30px !important;
  fill: #292885;
  font-weight: bold;
}
.collateral-tabs #energy_information .energy-info .note {
  font-size: 11px;
  color: #A0A0A0;
}
.collateral-tabs .enlarge {
  cursor: pointer;
}
.collateral-tabs #customer-reviews p {
  margin-bottom: initial;
}
.collateral-tabs #customer-reviews .pr-review-sort-by {
  padding-right: 5px;
}

.box-collateral {
  clear: both;
}

@media only screen and (min-width: 768px) {
  .product-collateral .toggle-tabs {
    display: block;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #CCCCCC;
  }
  .product-collateral .toggle-tabs li {
    float: left;
    border-width: 1px 1px 0 1px;
    border-style: solid;
    border-color: #CCCCCC;
    margin-left: 20px;
    background: #EBEBEB;
  }
  .product-collateral .toggle-tabs li > span {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    display: inline-block;
    padding: 0 30px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    bottom: -1px;
    color: #8a8a8a;
  }
  .product-collateral .toggle-tabs li.current {
    background: #fff;
  }
  .product-collateral .toggle-tabs li.current > span {
    background-color: #FFFFFF;
    z-index: 5;
  }
  .product-collateral .toggle-tabs li.current span {
    color: #1e1c7f;
  }
  .product-collateral .toggle-tabs:after {
    content: '';
    display: table;
    clear: both;
  }
  .product-collateral > dl {
    width: 100%;
  }
  .product-collateral > dl > dt {
    display: none;
  }
  .product-collateral > dl > dd {
    width: 100%;
    display: none;
    padding: 15px;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: #CCCCCC;
  }
  .product-collateral > dl > dd.current {
    display: block;
  }
  .product-collateral .toggle-tabs {
    border-bottom: none;
  }
}
@media only screen and (max-width: 767px) {
  .product-collateral .toggle-tabs {
    display: none;
  }
  .product-collateral > dl > dt {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px 7px 24px;
    position: relative;
    background-color: #3399CC;
    color: white;
    font-size: 14px;
    cursor: pointer;
    display: block;
  }
  .product-collateral > dl > dt:after {
    left: 10px;
    font-size: 18px;
    line-height: 18px;
    position: absolute;
  }
  .product-collateral > dl > dt:not(.active):after {
    content: "+";
  }
  .product-collateral > dl > dt.active:after {
    content: "-";
  }
  .product-collateral > dl > dd {
    padding: 10px;
    margin: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #CCCCCC;
  }
  .product-collateral > dl > dd:last-child {
    border-width: 0 1px 1px 1px;
  }
  .product-collateral > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
  }
  .product-collateral > dl > dt:after {
    content: "+";
    left: 10px;
    font-size: 18px;
    line-height: 18px;
    position: absolute;
  }
  .product-collateral > dl > dt.last {
    border-bottom-width: 1px;
  }
  .product-collateral > dl > dd {
    display: none;
  }
  .product-collateral.accordion-open > dl > dt.current {
    border-bottom-width: 1px;
  }
  .product-collateral.accordion-open > dl > dt.current:after {
    content: '-';
  }
  .product-collateral.accordion-open > dl > dd.current {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .product-view .product-shop,
  .product-view .add-to-cart-wrapper,
  .product-view .block-related,
  .product-img-box,
  .product-collateral {
    width: 100%;
    float: none;
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .product-view .product-shop .product-name {
    display: block;
  }

  .product-img-box .product-name {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  .product-view .product-shop {
    margin-bottom: 0;
  }

  .product-img-box,
  .product-collateral,
  .box-collateral {
    margin-bottom: 15px;
  }
}
.product-view .ratings .rating-links {
  float: left;
  margin-top: 6px;
  font-size: 12px;
}

.product-view .extra-info .separator,
.product-view .extra-info #goto-reviews-form {
  display: inline-block;
}

#product-attribute-specs-table {
  max-width: 50em;
  border: 1px solid #C0C0C0;
}
#product-attribute-specs-table th {
  border-right: 1px solid #C0C0C0;
  border-bottom: 1px solid #C0C0C0;
}

/* -------------------------------------------- *
 * Catalog - Grouped Product List
 */
.grouped-items-table-wrapper {
  border: solid 1px #C0C0C0;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}
.grouped-items-table-wrapper tbody tr:last-child td {
  border-bottom: none;
}
@media only screen and (max-width: 479px) {
  .grouped-items-table-wrapper {
    margin-bottom: 15px;
  }
}

.grouped-items-table .name-wrapper {
  color: #3399CC;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.grouped-items-table .qty-wrapper {
  padding-top: 7px;
}
.grouped-items-table .qty-label {
  margin-left: 7px;
}
.grouped-items-table td {
  padding: 4px;
}
.grouped-items-table td:last-child {
  width: 30%;
  text-align: left;
}
.grouped-items-table .price-box {
  text-align: right;
}

/* -------------------------------------------- *
 * Catalog - Product Options
 */
.product-options {
  width: 100%;
  margin: 10px 0 0;
  padding: 10px 15px 15px;
  border: 1px solid #CCCCCC;
  clear: both;
  position: relative;
}
.product-options label.required:after, .product-options span.required:after {
  display: none;
}

.product-options p.required {
  position: absolute;
  top: 6px;
  right: 15px;
  text-align: right;
}

@media only screen and (max-width: 1024px) {
  .product-view .product-options .required {
    position: static;
  }
}
.product-options dt {
  margin: 10px 0 3px;
  font-weight: normal;
}

.product-options dt:first-child {
  margin-top: 0;
}

.product-options dd .qty-holder {
  display: block;
  padding: 10px 0 0 0;
}

.product-options dd .qty-holder .qty {
  width: 3em;
}

.product-options dd .qty-holder label {
  vertical-align: middle;
}

.product-options dd .qty-disabled {
  background: none;
  border: 0;
  padding: 0 2px;
}

.product-options dd {
  padding: 0 0 10px 0;
  margin: 0 0 5px;
  border-bottom: 1px solid #EDEDED;
}

.product-options dl.last dd.last {
  border-bottom: 0;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.product-options dd .input-text {
  width: 98%;
}

.product-options dd .input-box {
  padding-top: 0;
}

.product-options dd input.datetime-picker {
  width: 150px;
}

.product-options dd .time-picker {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 2px 0;
  vertical-align: middle;
}

.product-options dd textarea {
  width: 98%;
  height: 8em;
}

.product-options dd select {
  width: 330px;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .product-options dd select {
    width: 100%;
  }
}

.product-options ul.options-list {
  margin-right: 5px;
}

.product-options ul.options-list li {
  line-height: 1.5;
  margin-bottom: 7px;
}

.product-options ul.options-list li:last-child {
  margin-bottom: 0;
}

.product-options ul.options-list .radio,
.product-options ul.options-list .checkbox {
  float: left;
  margin-top: 5px;
}

.product-options ul.options-list .label {
  display: block;
}

.product-options ul.options-list label {
  font-weight: normal;
}

.product-options p.note {
  margin: 0;
  font-size: 11px;
}

.product-options-bottom {
  background-color: #F4F4F4;
  padding: 15px 20px;
  border: 1px solid #CCCCCC;
  border-top: 0;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .product-options-bottom {
    margin-bottom: 0;
  }
}

.product-options-bottom:after {
  content: '';
  display: table;
  clear: both;
}

.product-options-bottom .product-pricing,
.product-options-bottom .tier-prices {
  float: right;
  margin: 0;
  padding: 0 0 10px;
  border: 0;
  background: 0;
  color: #636363;
}
@media only screen and (max-width: 1199px) {
  .product-options-bottom .product-pricing,
  .product-options-bottom .tier-prices {
    float: none;
    width: 100%;
    text-align: right;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #CCCCCC;
  }
}

.product-options-bottom .tier-prices li {
  background: 0;
  padding: 2px 0;
}

.product-options-bottom .tier-prices .price,
.product-options-bottom .tier-prices .benefit {
  color: #636363;
}

/* "display: none" should be removed if products on site have a long list of product options and those product options */
/*  affect the price so that the customer can see the updated price close to the "Add to Cart" button */
.product-options-bottom .price-box {
  display: none;
  float: right;
  margin: 0 0 10px;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .product-shop > .price-info {
    display: block;
  }

  .product-options-bottom .price-box {
    display: none;
    float: none;
  }

  .main .product-view .product-options-bottom .price-box {
    margin: 0;
    min-height: auto;
  }
  .main .product-view .product-options-bottom .see-discount-msg {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 479px) {
  .product-options-bottom .price-box .price-as-configured {
    text-align: right;
  }
  .product-options-bottom .price-box .price-as-configured .price-label {
    display: block;
  }
}
.product-options-bottom .price-tax {
  float: left;
}

/* -------------------------------------------- *
 * Related Products
 */
/* Block: Related */
@media only screen and (max-width: 767px) {
  .product-options-bottom .configurable-price-from-label {
    display: none;
  }
}
.block-related {
  clear: both;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .block-related {
    padding: 0 15px;
  }
}
.block-related .configurable-price-from-label {
  display: none;
}
.block-related #block-related li {
  border: 1px solid #CCCCCC;
  clear: none;
  margin: 5px 10px 5px 10px !important;
}
.block-related .add-to-cart {
  margin-bottom: 0;
}
.block-related .block-title {
  margin-bottom: 20px;
  position: relative;
  padding: 0;
}
.block-related .block-title h2 {
  background: #ebebeb;
  border: 1px solid #cccccc;
  font-weight: bold;
  color: #333;
  padding: 5px 15px;
  font-size: 18px;
  text-transform: none;
}
.block-related .block-title .show-hide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  right: 15px;
  line-height: 100%;
  font-weight: 500;
  color: #8a8a8a;
}
.block-related .block-title:not(.open) .show {
  color: #292885;
}
.block-related .block-title.open .hide {
  color: #292885;
}
.block-related .product {
  position: relative;
}
.block-related .product .msrp-linethrough {
  display: none;
}
.block-related .product-details {
  margin-left: 0;
  font-size: 12px;
  text-align: left;
}
.block-related .product-name {
  margin-bottom: 5px;
  font-weight: bold;
}
.block-related .product-details .price-box .discount {
  display: none;
}
.block-related .product-details .price-box .old-price, .block-related .product-details .price-box .old-price span {
  text-decoration: none;
}
.block-related .product-details .price-box .old-price span.price {
  text-decoration: line-through;
}
.block-related .product-details .price-box .old-price .save-percent {
  color: #008000;
  font-weight: 500;
  font-style: italic;
  text-decoration: none;
  font-size: 13px;
}
.block-related .link-wishlist {
  display: none;
}
.block-related .btn-cart {
  width: 100%;
}
.block-related .accessory-tabs {
  padding: 0 15px 15px 15px;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .block-related .accessory-tabs {
    display: none !important;
  }
}
.block-related .accessory-tabs li {
  padding: 0 !important;
  display: inline;
}
.block-related .accessory-tabs li:not(:last-child) {
  margin-right: 20px;
}
.block-related .accessory-tabs li a {
  color: #292885;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
.block-related .accessory-tabs li a.current:after {
  border: 1px solid #CCCCCC;
  border-bottom: 0;
  border-right: 0;
  background: #fff;
  content: "";
  display: block;
  height: 15px;
  left: 50%;
  position: absolute;
  top: 32px;
  transform: rotate(45deg) translateX(-50%);
  width: 15px;
}
@media only screen and (max-width: 1024px) {
  .block-related .block-content .accessory-tabs {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
  .block-related .block-content .btn-cart {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .block-related #block-related {
    clear: both;
  }
  .block-related .mobile-element {
    margin: 20px 15px;
  }
  .block-related .mobile-element:before {
    content: 'View: ';
    line-height: 30px;
  }
  .block-related .mobile-accessory-selector {
    width: calc(100% - 45px);
    float: right;
  }
}
.block-related .btn-cart.related-product {
  width: 100%;
}

/* -------------------------------------------- *
 * Upsell Products
 */
.box-up-sell {
  margin-top: 20px;
}
.box-up-sell .ratings {
  display: none;
}

/* -------------------------------------------- *
 * Power reviews
 */
.pr-snippet {
  margin-bottom: 15px;
}

.pr-snippet-wrapper,
.pr-snippet-stars,
.pr-snippet-read-write {
  border: none !important;
  background: none !important;
  padding: 0 !important;
}

.pr-snippet-review-count {
  display: none;
}

.pr-snippet-read-write {
  float: left;
  clear: none !important;
  margin-top: 0 !important;
  line-height: 15px !important;
}

.pr-snippet-read-reviews {
  border-right: 0 !important;
}

.pr-snippet-read-reviews a,
.pr-snippet-write-review a {
  color: #292885 !important;
  font-size: 12px !important;
  text-decoration: none;
}

.pr-comments-header em {
  font-style: normal;
}

.pr-review-engine {
  color: black;
}

@media only screen and (max-width: 767px) {
  .pr-snippet-wrapper .pr-snippet-stars,
  .pr-snippet-wrapper .pr-snippet-read-write {
    display: block;
  }
  .pr-snippet-wrapper .pr-snippet-read-reviews {
    padding: 10px 0;
  }
  .pr-snippet-wrapper .pr-snippet-write-review {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.catalog-product-view .block-viewed,
.catalog-product-view .box-up-sell {
  fon-size: 16px;
}
.catalog-product-view .block-viewed .block-title,
.catalog-product-view .box-up-sell .block-title {
  position: relative;
  text-align: center;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .catalog-product-view .block-viewed .block-title,
  .catalog-product-view .box-up-sell .block-title {
    margin-bottom: 20px;
  }
}
.catalog-product-view .block-viewed .block-title strong span,
.catalog-product-view .box-up-sell .block-title strong span {
  font-size: 18px;
  color: black;
  padding: 0 15px;
  background: white;
  position: relative;
  z-index: 1;
}
.catalog-product-view .block-viewed .block-title hr,
.catalog-product-view .box-up-sell .block-title hr {
  height: 1px;
  width: 100%;
  z-index: 0;
  color: #CCCCCC;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}
.catalog-product-view .block-viewed .price-box,
.catalog-product-view .box-up-sell .price-box {
  color: #999999;
}

#block-related li {
  padding: 15px 15px 10px;
}

#recently-viewed-items.slider .slick-dots li,
#upsell-product-table.slider .slick-dots li {
  cursor: pointer;
  padding: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  border-radius: 15px;
  display: inline-block;
  margin: 0 5px;
}
@media only screen and (max-width: 479px) {
  #recently-viewed-items.slider .slick-dots li,
  #upsell-product-table.slider .slick-dots li {
    margin: 0 10px !important;
  }
}
#recently-viewed-items.slider .slick-dots li.slick-active,
#upsell-product-table.slider .slick-dots li.slick-active {
  background: #cccccc;
}
#recently-viewed-items.slider .slick-dots button,
#upsell-product-table.slider .slick-dots button {
  border: none;
  background: none;
  font-size: 0;
}
@media only screen and (max-width: 1024px) {
  #recently-viewed-items.slider .slick-arrow.slick-next,
  #upsell-product-table.slider .slick-arrow.slick-next {
    right: -6px;
  }
  #recently-viewed-items.slider .slick-arrow.slick-prev,
  #upsell-product-table.slider .slick-arrow.slick-prev {
    left: -6px;
  }
}
#recently-viewed-items li,
#upsell-product-table li {
  padding: 15px;
  text-align: center;
}
#recently-viewed-items .product-image img,
#upsell-product-table .product-image img {
  border: 1px solid #CCCCCC;
  padding: 20px;
}
@media only screen and (min-width: 768px) {
  #recently-viewed-items .product-image,
  #upsell-product-table .product-image {
    width: 100% !important;
  }
}
@media only screen and (max-width: 767px) {
  #recently-viewed-items .product-image,
  #upsell-product-table .product-image {
    display: initial;
  }
  #recently-viewed-items .product-image img,
  #upsell-product-table .product-image img {
    width: auto;
    margin: auto;
    max-width: 100%;
  }
}
#recently-viewed-items .product-details,
#upsell-product-table .product-details {
  margin-left: 0;
  text-align: center;
  clear: both;
  font-size: 16px;
}
#recently-viewed-items .product-name,
#upsell-product-table .product-name {
  text-transform: none;
  margin-top: 10px;
}
#recently-viewed-items .product-name a,
#upsell-product-table .product-name a {
  color: #666666;
  font-weight: bold;
  font-size: 16px;
}
#recently-viewed-items .sku-price,
#upsell-product-table .sku-price {
  color: #999999;
}
#recently-viewed-items:after,
#upsell-product-table:after {
  content: '';
  display: table;
  clear: both;
}
#recently-viewed-items .pr-snippet-wrapper .pr-snippet-stars,
#upsell-product-table .pr-snippet-wrapper .pr-snippet-stars {
  text-align: center;
  float: none;
  margin-right: 0;
}
#recently-viewed-items .pr-snippet-wrapper .pr-snippet-stars > *,
#upsell-product-table .pr-snippet-wrapper .pr-snippet-stars > * {
  display: inline-block;
  float: none;
}
#recently-viewed-items .pr-snippet-wrapper .pr-snippet-read-write,
#upsell-product-table .pr-snippet-wrapper .pr-snippet-read-write {
  display: none;
}

.quickview-wrapper .fancybox-close {
  background: none;
  font-size: 40px;
  line-height: 30px;
  color: white;
  font-weight: 100;
  right: 15px;
  position: absolute;
  top: 4px;
  cursor: pointer;
}
.quickview-wrapper .fancybox-close:hover {
  text-decoration: none;
}

.amquickview-ajax-view .banner {
  position: fixed;
  width: 100%;
  z-index: 999999;
}
.amquickview-ajax-view .banner .title {
  color: white;
  font-weight: normal;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  float: none;
  background: #292885;
  padding: 0 10px;
}
.amquickview-ajax-view .banner .title span {
  float: none;
  color: white;
  text-decoration: underline;
}
.amquickview-ajax-view .banner .promo-details {
  position: absolute;
  width: 100%;
  background: white;
  font-size: 16px;
  z-index: 1000;
  border-bottom: 1px solid #CCCCCC;
}
.amquickview-ajax-view .banner .promo-details .c-text {
  color: green;
}
.amquickview-ajax-view .banner .promo-details p {
  margin: 15px 15px 5px 10px;
}
.amquickview-ajax-view .banner .promo-details .hide-button {
  margin-top: 20px;
  text-align: right;
}
.amquickview-ajax-view .banner .promo-details .hide-button > span {
  color: white;
  float: right;
  text-transform: uppercase;
  background: #292885;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  display: block;
  padding: 0 15px;
  cursor: pointer;
}
.amquickview-ajax-view .banner .promo-details .hide-button > span span {
  margin-left: 15px;
}
.amquickview-ajax-view .main-container {
  padding: 20px 10px 0px 10px;
}
.amquickview-ajax-view .wrapper {
  min-height: 0;
  padding-top: 40px;
}
.amquickview-ajax-view .product-img-box {
  width: 50%;
  max-width: 380px;
  padding-right: 10px;
}
.amquickview-ajax-view .product-shop {
  width: 50%;
  padding-left: 10px;
}
.amquickview-ajax-view .product-shop .price-box .price-label,
.amquickview-ajax-view .product-shop .price-box .label {
  width: auto;
  padding-right: 10px;
}
.amquickview-ajax-view .product-shop .msrp-linethrough .msrp-label {
  margin-right: 9px;
}
.amquickview-ajax-view .short-description {
  margin-bottom: 0;
}
.amquickview-ajax-view .view-more-details {
  float: none;
  margin: 10px 0;
}
.amquickview-ajax-view .view-more-details a {
  color: #292885;
  font-size: 15px;
}
.amquickview-ajax-view .add-to-cart-wrapper {
  width: 50%;
  padding-left: 10px;
}
.amquickview-ajax-view .add-to-cart-wrapper .add-to-box label {
  display: inline-block;
}
.amquickview-ajax-view .add-to-cart-wrapper .add-to-box .btn-cart {
  width: calc(100% - 140px);
}
.amquickview-ajax-view #shareTtlWrap,
.amquickview-ajax-view .addthis_sharing_toolbox {
  display: none;
}
.amquickview-ajax-view .product-essential {
  margin-bottom: 0;
}
.amquickview-ajax-view .product-collateral,
.amquickview-ajax-view .block-viewed,
.amquickview-ajax-view .box-collateral {
  display: none;
}
.amquickview-ajax-view .bottom-info-wrapper {
  width: 100%;
  border-top: 1px solid #ccc;
  margin-top: 15px;
  margin-bottom: 13px;
  padding: 15px 0 0 0;
}
.amquickview-ajax-view .bottom-info-wrapper .shipping-info, .amquickview-ajax-view .bottom-info-wrapper .stock-info, .amquickview-ajax-view .bottom-info-wrapper .promo-info {
  display: table-cell;
  vertical-align: middle;
  width: 33.33%;
}
.amquickview-ajax-view .bottom-info-wrapper .promo-info {
  padding-top: 0;
  border-left: 1px solid #ccc;
}
.amquickview-ajax-view .link-compare {
  display: none;
}

@media only screen and (max-width: 767px) {
  #block-related {
    margin-bottom: 10px;
  }
}
#block-related .accessory-tabs {
  padding: 0 30px 15px 30px;
}
#block-related .block-title {
  width: 100%;
  height: auto;
  background: #ebebeb;
  border: 1px solid #cccccc;
  font-weight: bold;
  color: #333;
  padding: 5px 15px;
  font-size: 18px;
  margin-bottom: 14px;
}
#block-related .block-title .show-hide {
  font-size: 14px;
  color: #292885;
  cursor: pointer;
}
#block-related .block-title .show-hide .active {
  color: #8a8a8a;
}
#block-related .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  color: transparent;
  border: none;
  width: 12px;
  height: 20px;
  background-size: contain;
  z-index: 100;
  outline: none;
  overflow: hidden;
}
#block-related .slick-prev {
  left: -15px;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/slider-controls.png") left bottom no-repeat;
}
#block-related .slick-next {
  right: -15px;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/slider-controls.png") right bottom;
}
#block-related .slick-disabled {
  display: none !important;
}
#block-related .mini-products-list {
  margin: 0 20px;
}
@media only screen and (max-width: 1024px) {
  #block-related .mini-products-list {
    margin: 0 5px;
  }
}
@media only screen and (max-width: 1024px) {
  #block-related .mobile-element {
    margin: 20px 15px;
  }
}
#block-related .slick-slide img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border: 1px solid #CCCCCC;
}
#block-related .price-box .label, #block-related .price-box .price {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
#block-related .slick-dots {
  display: block;
  text-align: center;
  margin: 24px 0 -10px 0;
}
@media only screen and (max-width: 767px) {
  #block-related .slick-dots {
    margin: 24px 0 15px 0;
  }
}
#block-related .slick-dots li {
  cursor: pointer;
  padding: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  border-radius: 15px;
  display: inline-block;
  margin: 0 5px;
}
#block-related .slick-dots li button {
  border: none;
  background: none;
  font-size: 0;
}
#block-related .slick-dots li.slick-active {
  background: #cccccc;
}
@media only screen and (min-width: 768px) {
  #block-related .accessory-categories .mobile-element {
    display: none !important;
  }
}

.product-view .zoomMsg {
  margin-top: -10px;
  float: right;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .product-view .zoomMsg {
    display: none;
  }
}
.product-view .see-discount-msg {
  color: #FF6F57;
  font-weight: bold;
  font-size: 13px;
}
.product-view .product-promo-banner {
  max-width: 100%;
}
.product-view .product-promo-banner img {
  max-width: 100%;
}

.checkbox_container.disabled {
  color: #C8C8C8;
}
.checkbox_container input[type="checkbox"] {
  display: none;
  border: none;
  box-shadow: none;
}
.checkbox_container input[type="checkbox"] + label span {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/radio_button_unchecked_control.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  margin-top: -3px;
}
.checkbox_container input[type="checkbox"]:checked + label span {
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/radio_button_checked_control.png);
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
}

.button-add-accessories {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 444px) {
  .button-add-accessories {
    width: 300px !important;
    margin-left: 15px;
  }
}
@media only screen and (max-width: 479px) {
  .button-add-accessories {
    margin-top: 15px;
  }
}

#add-accessories-to-cart .mini-products-list .price-box {
  min-height: 50px;
}
#add-accessories-to-cart .mini-products-list.has-sale-item .price-box {
  min-height: 65px;
}
@media only screen and (max-width: 479px) {
  #add-accessories-to-cart .mini-products-list.has-sale-item .price-box {
    min-height: 85px;
  }
  #add-accessories-to-cart .mini-products-list.has-sale-item .price-box .save-percent {
    display: block;
  }
}
#add-accessories-to-cart .buttons-float-right {
  margin: 0 15px;
  float: right;
}

li.item.slick-slide:focus {
  outline: none;
  box-shadow: 0 0 6px #525252;
}

.mobile-acc-list {
  display: none;
}
@media only screen and (max-width: 599px) {
  .mobile-acc-list {
    display: block;
    margin-bottom: 8px;
    margin-left: 15px;
  }
  .mobile-acc-list .filter-by {
    display: inline-block;
  }
}

.mobile-acc-list .filter-by {
  display: inline-block;
}

.large-acc-list {
  display: block;
}
.large-acc-list #accCats {
  color: #292885;
  font-size: 14px;
  font-weight: bold;
  padding-right: 20px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 767px) {
  .large-acc-list {
    margin-bottom: 15px;
    padding: 0 20px 15px 20px;
    border-bottom: solid 1px #cccccc;
  }
  .large-acc-list .active {
    height: 20px;
  }
  .large-acc-list .active::after {
    border: 1px solid #ccc;
    border-bottom: 0;
    border-right: 0;
    background: #fff;
    content: "";
    display: block;
    height: 15px;
    left: 25%;
    position: absolute;
    top: 27px;
    transform: rotate(45deg);
    width: 15px;
  }
}
@media only screen and (max-width: 599px) {
  .large-acc-list {
    display: none;
  }
}

/* ============================================ *
 * Catalog - MSRP MAP Popup
 * ============================================ */
.cart-msrp-totals {
  color: red;
  font-size: 12px !important;
  font-weight: bold;
  margin: 10px 10px 0;
  padding: 10px;
  text-align: right;
  text-transform: uppercase;
}

.map-cart-sidebar-total {
  color: red;
  display: block;
  font-size: 10px;
  font-weight: bold;
  text-align: left;
  padding: 2px 5px;
}

.map-popup {
  background: #FFFFFF;
  border: 5px solid #CCCCCC;
  margin: 12px 0 0;
  position: absolute;
  text-align: left;
  width: 450px;
  z-index: 100;
}
@media only screen and (min-width: 768px) {
  .map-popup.map-popup-right {
    left: 10px !important;
  }
  .map-popup.map-popup-left {
    left: auto !important;
    right: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .map-popup {
    width: 100%;
    left: 0px !important;
  }
}
.map-popup .map-popup-heading {
  padding: 8px 10px;
  margin-right: 40px;
  width: auto;
}
.map-popup .map-popup-heading h3 {
  font-size: 14px;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: break-word;
  text-align: left;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 479px) {
  .map-popup .map-popup-heading h3 {
    text-align: center;
  }
}
.map-popup .map-popup-close {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 36px;
  width: 36px;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
}
.map-popup .map-popup-content {
  border-top: 1px solid #EDEDED;
  padding: 10px;
  margin: 0 10px;
  overflow: hidden;
  text-align: left;
}
@media only screen and (max-width: 479px) {
  .map-popup .map-popup-content {
    text-align: center;
  }
}
.map-popup .map-popup-checkout {
  padding: 10px 0;
}
.map-popup .map-popup-checkout form:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-checkout span {
  display: block;
}
.map-popup .map-popup-checkout .button {
  float: left;
  margin: 0 2px;
  clear: left;
}
.map-popup .map-popup-checkout .additional-addtocart-box {
  float: left;
  min-width: 210px;
}
.map-popup .map-popup-checkout .additional-addtocart-box li {
  list-style-type: none;
}
.map-popup .map-popup-checkout .paypal-logo {
  width: auto;
}
.map-popup .map-popup-checkout .paypal-logo a {
  display: inline-block;
  float: left;
  clear: left;
}
.map-popup .map-popup-checkout .paypal-logo .paypal-or {
  float: left;
  text-align: center;
  padding: 5px 15px;
  clear: left;
}
.map-popup .map-popup-checkout .paypal-logo:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-checkout .paypal-logo .bml_button a {
  clear: left;
}
@media only screen and (max-width: 479px) {
  .map-popup .map-popup-checkout {
    text-align: center;
  }
  .map-popup .map-popup-checkout .button,
  .map-popup .map-popup-checkout .additional-addtocart-box,
  .map-popup .map-popup-checkout .paypal-logo a,
  .map-popup .map-popup-checkout .paypal-logo .paypal-or {
    float: none;
  }
  .map-popup .map-popup-checkout .additional-addtocart-box {
    min-width: 0px;
  }
  .map-popup .map-popup-checkout .paypal-logo .paypal-or {
    margin: 0px;
    margin-bottom: 10px;
  }
}
.map-popup .map-popup-checkout:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-price {
  padding: 10px 0;
}
@media only screen and (max-width: 479px) {
  .map-popup .map-popup-price {
    text-align: center;
    padding-top: 0px;
  }
}
.map-popup .map-popup-price .price-box,
.map-popup .map-popup-price .price-box .special-price {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.map-popup .map-popup-price .price-box .minimal-price-link {
  display: inline-block;
}
.map-popup .map-popup-text {
  padding: 10px 0;
  margin: 0 10px;
  word-wrap: break-word;
}
.map-popup .map-popup-text,
.map-popup .map-popup-only-text {
  border-top: 1px solid #EDEDED;
}

/* ============================================ *
 * Catalog - MSRP Product Listing
 * ============================================ */
.price-box .map-link {
  display: block;
  text-align: center;
}

/* ============================================ *
 * Catalog - Compare
 * ============================================ */
.block-compare .product-name:after {
  content: '';
  display: table;
  clear: both;
}

.compare-table .product-image {
  display: inline-block;
}

.compare-table .product-shop-row.top td {
  padding-bottom: 0;
  border-bottom: 0;
}
.compare-table .product-shop-row.bottom td {
  padding-top: 0;
}

.compare-table .product-shop-row th {
  background: #fff;
}
.compare-table td {
  border-right: 10px solid white;
}
.compare-table tr.odd th, .compare-table tr.odd td {
  background: #EAF3F8;
  border-bottom: 1px solid #C0C0C0;
}
.compare-table span#msrp-linethrough, .compare-table span.label.our-price {
  display: none;
}
.compare-table tr.product-shop-row.top.first.odd th, .compare-table tr.product-shop-row.top.first.odd td {
  background: #fff;
  border: none;
}
.compare-table tr th, .compare-table tr td {
  border-bottom: 1px solid #C0C0C0;
}
.compare-table .data-table th {
  background: #fff;
}
.compare-table span.label.our-price {
  padding-right: 4px;
}
.compare-table h2.product-name {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
}
.compare-table th span {
  font-weight: bold;
  color: #292885;
}
.compare-table .btn-remove {
  color: #636363;
  background: #f4f2f2;
  padding: 10px;
}
.compare-table .btn-remove:after {
  padding-left: 5px;
  color: #292885;
}
.compare-table thead.removeitem td, .compare-table thead.removeitem th {
  border: none;
  background: none;
}
.compare-table .btn-remove:hover {
  color: inherit;
}
.compare-table .product-name:hover .tooltiptext {
  visibility: visible;
}
.compare-table button.button.btn-cart.btn-simple {
  margin-top: 21px;
}
.compare-table tr .std.clicked {
  z-index: 1;
  width: auto;
}
.compare-table .tooltip .tooltiptext {
  visibility: hidden;
  width: 244px;
  background-color: #2a2c83;
  color: #f4f4f4;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  margin-left: -211px;
  margin-top: 30px;
  transition: opacity 0.3s;
}
.compare-table .tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  bottom: 100%;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
.compare-table .tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.compare-table .regular-price span.price {
  padding-left: 1px;
}
.compare-table button.button.button-cart {
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  background: url(/skin/frontend/perficient/delmarfans/images/add-to-cart.png) no-repeat;
  background-size: 100% 100%;
}
.compare-table a.product-image {
  display: block !important;
}
.compare-table img.img-center {
  margin: auto auto;
}
.compare-table .removeitem .a-right, .compare-table .text-center {
  text-align: center;
}
.compare-table .compare-table th {
  border-right: 10px solid white;
}
.compare-table .compareButton {
  -moz-box-shadow: inset 0px 1px 3px 0px #d1ba8c;
  -webkit-box-shadow: inset 0px 1px 3px 0px #d1ba8c;
  box-shadow: inset 0px 1px 3px 0px #d1ba8c;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f5d893), color-stop(1, #fcdd96));
  background: -moz-linear-gradient(top, #f5d893 5%, #fcdd96 100%);
  background: -webkit-linear-gradient(top, #f5d893 5%, #fcdd96 100%);
  background: -o-linear-gradient(top, #f5d893 5%, #fcdd96 100%);
  background: -ms-linear-gradient(top, #f5d893 5%, #fcdd96 100%);
  background: linear-gradient(to bottom, #f5d893 5%, #fcdd96 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5d893', endColorstr='#fcdd96',GradientType=0);
  background-color: #f5d893;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #ffd175;
  display: inline-block;
  cursor: pointer;
  color: #2a2c83;
  font-weight: bold;
  padding: 11px 23px;
  text-decoration: none;
  text-shadow: 0px 2px 0px #fcdb94;
}
.compare-table .compareButton:hover {
  background-color: #fbd67d;
}

.compare-data {
  overflow-x: visible;
}

@media only screen and (max-width: 1224px) {
  .compare-data {
    overflow-x: auto;
  }
}
/* ============================================ *
 * Checkout - Layout
 * ============================================ */
.cart .button {
  white-space: normal;
}

.cart-forms,
.cart-totals-wrapper,
.crosssell {
  float: right;
  clear: right;
  width: 40%;
  padding-left: 20px;
}

.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  padding: 10px;
  background-color: #F4F4F4;
  border: 1px solid #CCCCCC;
}

.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  margin-bottom: 20px;
}

.checkout-cart-index .main-container {
  padding: 15px 0;
}
.checkout-cart-index .col-main {
  padding: 0 10px;
}
.checkout-cart-index .wrapper {
  background: #f4f4f4;
}
.checkout-cart-index .cart .page-title {
  clear: both;
  border: none;
}
.checkout-cart-index .cart .page-title h1 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  color: #2a2c83;
  font-size: 22px;
}
.checkout-cart-index #shopping-cart-table {
  background: #ffffff;
  border: 1px solid #dbdbdb;
}
.checkout-cart-index #shopping-cart-table thead > tr {
  border-bottom: none;
}
.checkout-cart-index #shopping-cart-table thead > tr.first th:first-child {
  padding: 14px 10px 16px 15px;
  text-align: left;
}
.checkout-cart-index #shopping-cart-table thead > tr.first th {
  padding: 14px 10px 16px 10px;
}
.checkout-cart-index #shopping-cart-table thead > tr.first th:last-child {
  padding: 14px 25px 16px 10px;
  text-align: right;
}
.checkout-cart-index #shopping-cart-table thead th {
  border-bottom: 0;
  color: #000000;
}
.checkout-cart-index #shopping-cart-table thead th span {
  color: #000000;
}
.checkout-cart-index #shopping-cart-table thead th.hr {
  padding: 0 15px;
}
.checkout-cart-index #shopping-cart-table thead th.hr hr {
  border: 1px solid #dbdbdb;
  border-bottom: none;
  border-left: none;
  border-right: none;
}
.checkout-cart-index #shopping-cart-table tbody td {
  padding: 28px 0px 10px 10px;
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-image {
  width: 20%;
  padding-left: 15px;
  position: relative;
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-image .badges.FreeGift {
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/free-gift-icon.png) no-repeat;
  width: 18px;
  text-indent: -9999px;
  padding: 0;
  height: 20px;
  top: 10px;
  position: absolute;
  right: 5px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .checkout-cart-index #shopping-cart-table tbody td.product-cart-image {
    width: 50%;
    padding-left: 10px;
  }
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-image > a {
  border: none;
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-info {
  width: 40%;
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-info .item-msg {
  clear: both;
}
@media only screen and (max-width: 767px) {
  .checkout-cart-index #shopping-cart-table tbody td.product-cart-info {
    width: 50%;
  }
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-info .product-name a {
  font-weight: normal;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #2a2c83;
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-info div {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-style: normal;
  font-size: 14px;
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-price {
  width: 10%;
}
@media only screen and (max-width: 599px) {
  .checkout-cart-index #shopping-cart-table tbody td.product-cart-price {
    width: 50%;
    padding-top: 0;
  }
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-price span {
  font-weight: bold;
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-actions {
  width: 10%;
}
@media only screen and (max-width: 362px) {
  .checkout-cart-index #shopping-cart-table tbody td.product-cart-actions {
    clear: both;
  }
}
@media only screen and (max-width: 599px) {
  .checkout-cart-index #shopping-cart-table tbody td.product-cart-actions {
    width: 50%;
    padding-top: 0;
  }
  .checkout-cart-index #shopping-cart-table tbody td.product-cart-actions:before {
    vertical-align: 12px;
  }
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-actions .button {
  background: none;
  padding: 0;
  text-transform: none;
  margin: 0 0 5px 0;
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-actions .button > span {
  font-size: 14px;
  color: #656565;
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-total {
  width: 20%;
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-total del {
  display: block;
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-total del span {
  text-align: right;
  font-weight: normal;
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-total span {
  font-weight: bold;
  color: #2a2c83;
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-total .nondiscount-price {
  float: right;
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-total .nondiscount-price .price {
  color: #636363;
  font-weight: 300;
  text-decoration: line-through;
}
.checkout-cart-index #shopping-cart-table tbody td.product-cart-total .discount-price {
  clear: both;
  float: right;
}
.checkout-cart-index #shopping-cart-table tbody td:last-child {
  padding-right: 15px;
  text-align: right;
}
.checkout-cart-index #shopping-cart-table tbody td .badges {
  position: absolute;
  right: 0;
  top: 10px;
  padding: 2px 5px 1px 15px;
  z-index: 1;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/badge.png") no-repeat;
  background-size: 100% 100%;
}
.checkout-cart-index #shopping-cart-table tbody td .badges span {
  font-size: 12px;
}
.checkout-cart-index #shopping-cart-table .cart-links > li > a, .checkout-cart-index #shopping-cart-table .cart-links a {
  color: #656565;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .checkout-cart-index #shopping-cart-table .cart-links > li > a {
    background: none;
    text-indent: inherit;
    width: 100%;
  }
  .checkout-cart-index #shopping-cart-table .cart-links > li > a:after {
    content: "";
    display: inline;
  }
}
.checkout-cart-index #shopping-cart-table .btn-update.loading span span {
  color: transparent;
  background-image: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
}
.checkout-cart-index .cart .cart-right {
  width: calc(30% - 20px);
  display: inline-block;
  margin-left: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .checkout-cart-index .cart .cart-right {
    margin-top: 17px;
    float: right;
    width: 50%;
    max-width: 275px;
  }
}
@media only screen and (max-width: 767px) {
  .checkout-cart-index .cart .cart-right {
    width: 100%;
    margin: 10px auto 0;
    padding: 0;
    float: none;
  }
}
.checkout-cart-index .cart .cart-right .cart-forms, .checkout-cart-index .cart .cart-right .cart-totals-wrapper {
  width: 100%;
  padding: 0;
}
.checkout-cart-index .cart .cart-right .cart-totals {
  background: #ffffff;
  padding: 15px;
}
.checkout-cart-index .cart .cart-right .cart-totals h5 {
  text-align: left;
  text-transform: uppercase;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #2a2c83;
  font-size: 18px;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 14px;
}
.checkout-cart-index .cart .cart-right .cart-totals tfoot {
  border: none;
  border-top: 1px solid #dbdbdb;
}
.checkout-cart-index .cart .cart-right .cart-totals tfoot td {
  text-align: left;
  font-size: 14px;
  padding: 20px 0 10px 0;
  text-transform: uppercase;
}
.checkout-cart-index .cart .cart-right .cart-totals tfoot td strong {
  font-weight: bold;
  font-size: 14px;
}
.checkout-cart-index .cart .cart-right .cart-totals tfoot td .price {
  font-weight: bold;
  font-size: 14px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.checkout-cart-index .cart .cart-right .cart-totals tfoot td:last-child {
  text-align: right;
}
.checkout-cart-index .cart .cart-right .cart-totals tfoot td span {
  font-size: 14px;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody tr:first-child td {
  padding: 10px 0 0 0;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody tr td {
  text-align: left;
  text-transform: none;
  font-size: 14px;
  padding: 10px 0 0 0;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody tr td:last-child {
  text-align: right;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody tr td span {
  font-size: 14px;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody .toggler {
  float: none;
  margin-bottom: 15px;
  position: relative;
  color: #292885;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody .toggler:hover {
  text-decoration: underline;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody .toggler:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  font-size: 28px;
  color: #636363;
  right: 0;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody .toggler:not(.expanded):after {
  content: '+';
}
.checkout-cart-index .cart .cart-right .cart-totals tbody .toggler.expanded:after {
  content: '-';
}
.checkout-cart-index .cart .cart-right .cart-totals tbody .shipping-special {
  text-align: left !important;
  padding-top: 15px !important;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody #zip-code-entry {
  margin: 15px 0;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody #zip-code-entry:after {
  content: '';
  display: table;
  clear: both;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody #zip-code-entry input {
  width: 65%;
  float: left;
  height: 32px;
  border: 1px solid #CCCCCC;
  border-right: none;
  margin-top: 1px;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  .checkout-cart-index .cart .cart-right .cart-totals tbody #zip-code-entry input {
    max-width: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .checkout-cart-index .cart .cart-right .cart-totals tbody #zip-code-entry input {
    width: calc(100% - 85px);
  }
}
.checkout-cart-index .cart .cart-right .cart-totals tbody #zip-code-entry .update-zip {
  width: 35%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .checkout-cart-index .cart .cart-right .cart-totals tbody #zip-code-entry .update-zip {
    width: 85px;
  }
}
.checkout-cart-index .cart .cart-right .cart-totals tbody .collapse-bar {
  cursor: pointer;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody .collapse-bar td {
  text-align: left;
  padding: 10px 0 20px 0;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody .collapse-bar td span {
  text-align: left;
  display: block;
  color: #2a2c83;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody .collapse-bar td span .indicator {
  float: right;
  font-size: 28px;
  line-height: 19px;
  color: #636363;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody .collapse-bar.open td {
  padding: 10px 0;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody .collapse-content {
  display: none;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody .collapse-content td {
  padding: 0 0 20px 0;
}
.checkout-cart-index .cart .cart-right .cart-totals tbody .free {
  color: #36b607;
}
.checkout-cart-index .cart .cart-right .applied-coupon-title {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  color: #2a2c83;
  margin: 10px 0;
}
.checkout-cart-index .cart .cart-right .cart-promo-code {
  background: #ffffff;
  clear: both;
  border: 1px solid #dbdbdb;
  padding: 15px;
}
.checkout-cart-index .cart .cart-right .cart-promo-code .collapse-bar {
  cursor: pointer;
}
.checkout-cart-index .cart .cart-right .cart-promo-code .collapse-bar span {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  width: 100%;
  display: block;
  color: #2a2c83;
}
.checkout-cart-index .cart .cart-right .cart-promo-code .collapse-bar span .indicator {
  float: right;
  font-weight: normal;
  font-size: 28px;
  line-height: 16px;
  width: auto;
  color: #636363;
}
.checkout-cart-index .cart .cart-right .cart-promo-code #discount-coupon-form {
  display: none;
}
.checkout-cart-index .cart .cart-right .cart-promo-code form #coupon_code {
  padding: 0 10px;
  width: 100%;
}
.checkout-cart-index .cart .cart-right .cart-promo-code form .button2 {
  padding: 0;
}
.checkout-cart-index .cart .cart-right .cart-promo-code form .button2 span {
  color: #2a2c83;
  text-decoration: none;
}
.checkout-cart-index .cart .cart-right #co-shipping-method-form button {
  margin-bottom: 10px;
}
.checkout-cart-index #postcode {
  width: 100%;
}
.checkout-cart-index .checkout-types {
  width: 100%;
}
.checkout-cart-index .checkout-types.top {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .checkout-cart-index .checkout-types.top {
    display: none;
  }
}
.checkout-cart-index .checkout-types li {
  text-align: center;
}
.checkout-cart-index .checkout-types li .btn-checkout {
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/checkout.png");
  height: 49px;
  width: 228px;
  margin: 0 auto;
  float: none;
  text-indent: 24px;
  font-size: 18px;
  font-weight: bold;
}
.checkout-cart-index .checkout-types li .btn-checkout span {
  color: #ffffff;
  text-transform: uppercase;
}
.checkout-cart-index .checkout-types li .btn-checkout-paypal {
  width: 228px;
  height: 44px;
  margin: 10px auto 0 auto;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/checkout_paypal.png");
}
.checkout-cart-index .checkout-types li .or {
  margin: 10px 0 0 0;
  text-transform: uppercase;
}
.checkout-cart-index .checkout-types li.method-checkout-cart-methods-multishipping {
  display: none;
}

.touch.ios .checkout-cart-index.mobile .wrapper {
  background: #e4e4e4;
}

@media only screen and (max-width: 1024px) {
  .checkout-cart-index .checkout-types li .btn-checkout {
    font-size: 17px;
  }
}
.cart-table .ship-time {
  float: left;
  margin: 8px 0;
}

.display-both-prices .cart-table {
  float: none;
  width: 100%;
}
.display-both-prices .cart-forms {
  float: left;
  padding-right: 10px;
  padding-left: 0;
}
.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  padding-left: 10px;
}
.display-both-prices .cart-forms,
.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  width: 50%;
}
.display-both-prices .crosssell {
  clear: right;
  float: right;
}

@media only screen and (max-width: 1024px) {
  .display-single-price .cart-table {
    float: none;
    width: 100%;
  }
  .display-single-price .cart-forms {
    float: left;
    padding-right: 10px;
    padding-left: 0;
  }
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-left: 10px;
  }
  .display-single-price .cart-forms,
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    width: 50%;
  }
  .display-single-price .crosssell {
    clear: right;
    float: right;
  }
}
@media only screen and (max-width: 599px) {
  .product-cart-sku {
    display: none;
  }

  .display-both-prices .cart-forms,
  .display-both-prices .cart-totals-wrapper,
  .display-both-prices .crosssell,
  .display-single-price .cart-forms,
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    float: none;
    width: 100%;
  }
}
.display-single-price:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Checkout - Cart
 * ============================================ */
.cart .page-title {
  margin-bottom: 15px;
  border-bottom: 1px solid #EDEDED;
}
@media only screen and (max-width: 767px) {
  .cart .page-title {
    width: 95%;
    margin: 0 auto 10px;
  }
}
.cart .page-title:after {
  content: '';
  display: table;
  clear: both;
}
.cart .page-title h1 {
  float: left;
  border-bottom: none;
  margin-bottom: 6px;
  margin-right: 10px;
}

.cart #cart-message-block {
  background: white;
  padding: 15px;
  margin-top: 10px;
  border: 1px solid #CCCCCC;
}
.cart #cart-message-block img {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .cart #cart-message-block {
    width: 100%;
    margin: 20px 0 0;
  }
}
.cart #cart-message-block .title h3 {
  text-transform: none;
  color: #636363;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 0;
}
.cart #cart-message-block .content div {
  margin-bottom: 20px;
}
.cart #cart-message-block .content div:last-child {
  margin-bottom: 0;
}
.cart #cart-message-block .content div a {
  margin-bottom: 15px;
  display: block;
}
.cart #cart-message-block .content div a:last-child {
  margin-bottom: 0;
}
.cart .ui-spinner {
  display: inline-block;
  position: relative;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #f9f9f9;
  width: calc(3em + 20px);
  height: 30px;
}
@media only screen and (max-width: 599px) {
  .cart .ui-spinner {
    width: calc(3em + 23px);
  }
}
.cart .ui-spinner input {
  border: none;
  border-right: 1px solid #CCCCCC;
  background: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  width: 3em;
}
.cart .ui-spinner .ui-spinner-button {
  color: #e8b742;
  position: absolute;
  font-size: 0.75em;
  right: 1px;
  cursor: pointer;
}
.cart .ui-spinner .ui-spinner-button:hover {
  text-decoration: none;
}
.cart .ui-spinner .ui-spinner-up {
  top: 1px;
}
.cart .ui-spinner .ui-spinner-down {
  bottom: 1px;
}
.cart .ui-spinner .ui-widget.ui-widget-content.ui-corner-all {
  border: 1px solid #CCCCCC;
}
.cart .buttons-wrapper {
  margin-top: 10px;
}
.cart .buttons-wrapper .or {
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .cart .cart-table-after {
    width: 50%;
    float: left;
  }
}
@media only screen and (min-width: 1025px) {
  .cart > form {
    width: 70%;
    float: left;
  }
  .cart .cart-table-after {
    width: 70%;
  }
}

.checkout-types {
  float: right;
  text-align: right;
  max-width: 100%;
  /* We always want this shipping method to display on its own line */
}
.checkout-types li {
  vertical-align: top;
  margin: 0 0 5px 5px;
}
.checkout-types li:after {
  content: '';
  display: table;
  clear: both;
}
.checkout-types li img {
  display: inline;
  vertical-align: top;
}
.checkout-types li:first-child {
  margin-left: 0;
}
.checkout-types .method-checkout-cart-methods-multishipping {
  display: block;
}
.checkout-types.top li {
  display: inline-block;
}
.checkout-types.top .bml_button {
  display: inline-block;
  vertical-align: top;
}
.checkout-types.top .bml_button img {
  display: block;
}
.checkout-types.top .paypal-logo .paypal-or {
  margin-top: 5px;
}
.checkout-types.bottom .paypal-logo a, .checkout-types.minicart .paypal-logo a {
  display: block;
}
.checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
  margin: 0px;
  display: block;
  text-align: center;
}

.cart-totals .checkout-types .btn-checkout {
  margin-bottom: 7px;
}

button.button.btn-update {
  display: block !important;
  width: 100%;
}
@media only screen and (max-width: 599px) {
  button.button.btn-update {
    width: initial;
  }
}

.breadcrumbs a.no-link {
  color: #636363;
}

@media only screen and (max-width: 740px) {
  .checkout-types {
    float: none;
    text-align: center;
  }
  .checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
    width: auto;
    float: none;
  }

  .checkout-types li {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 599px) {
  .btn-checkout {
    width: 100%;
  }
}
.cart-table {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
}
.cart-table h2 {
  color: #636363;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}
.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 10px 5px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table .product-cart-info,
.cart-table .product-cart-actions {
  padding-left: 15px;
}
.cart-table tr {
  border-bottom: 1px solid #C0C0C0;
}
.cart-table tfoot tr {
  background: none;
}
.cart-table tfoot tr > td:after {
  content: '';
  display: table;
  clear: both;
}
.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table .product-cart-image .cart-links,
.cart-table .product-cart-info .btn-remove,
.cart-table .product-cart-actions .button {
  display: none;
}
.cart-table .product-cart-image {
  padding-left: 0;
  padding-right: 0;
}
.cart-table .product-cart-image .product-image img, .cart-table .product-cart-image img {
  max-width: 100%;
  width: 100%;
}
.cart-table .product-cart-image a.cart-edit {
  display: none;
}
.cart-table .product-cart-sku {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
  font-size: 12px;
  margin: 5px 0 12px;
}
.cart-table .product-cart-sku .label {
  font-weight: 600;
}
.cart-table .btn-empty {
  float: left;
}
.cart-table .product-cart-total,
.cart-table .product-cart-price {
  text-align: center;
}
.cart-table .cart-tax-total {
  position: relative;
  cursor: pointer;
}
.cart-table .cart-tax-total:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #3399CC;
  border-left: none;
  position: absolute;
  top: 3px;
  right: -11px;
}
.cart-table .cart-tax-total.cart-tax-total-expanded:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #3399CC;
  border-bottom: none;
  right: -15px;
  top: 6px;
}
.cart-table .cart-links > li {
  white-space: nowrap;
  line-height: 1.3;
  margin-bottom: 5px;
  min-width: 65px;
  font-size: 13px;
}
.cart-table .cart-links > li > a {
  display: block;
}
.cart-table .cart-links > li:last-child {
  margin-bottom: 0;
}
.cart-table .product-cart-actions {
  min-width: 60px;
  text-align: center;
}
.cart-table .product-cart-actions .qty {
  float: left;
  height: 28px;
  border-color: #C0C0C0;
  border-radius: 0;
  width: 3.2em;
  margin-bottom: 9px;
  text-align: center;
}
.cart-table .product-cart-actions .button {
  margin-bottom: 5px;
}
.cart-table .item-options {
  padding-left: 15px;
}

@media only screen and (min-width: 480px) {
  .checkout-cart-index #ampromo-carousel-content > *:not(:nth-child(2n)) {
    margin-right: 2.02224% !important;
  }
  .checkout-cart-index #ampromo-carousel-content > *:nth-child(2n) {
    margin-right: 0 !important;
  }
  .checkout-cart-index #ampromo-carousel-content > * {
    width: 48.98888% !important;
    float: left !important;
    display: inline-block !important;
  }
}
.checkout-cart-index #ampromo-carousel-content .ampromo-slide .ampromo-item-title h4 a {
  color: #636363;
}
.checkout-cart-index #ampromo-carousel-content .ampromo-slide .ampromo-item-title h4 a:hover {
  text-decoration: none;
}
.checkout-cart-index #ampromo-carousel-content .ampromo-slide .ampromo-item {
  margin-right: 0;
  width: initial;
}
.checkout-cart-index #ampromo-carousel-content .ampromo-slide .ampromo-item-image {
  width: 100%;
  height: initial;
}
@media only screen and (max-width: 767px) {
  .checkout-cart-index #ampromo-items {
    top: 0 !important;
    width: 100%;
    min-height: 100%;
  }
}
@media only screen and (max-width: 479px) {
  .checkout-cart-index .ampromo-slide {
    float: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .cart-table th {
    font-size: 12px;
  }
  .cart-table th,
  .cart-table td {
    padding: 7px 6px;
  }
  .cart-table .product-cart-actions > li {
    white-space: inherit;
  }
}
@media only screen and (max-width: 699px) {
  .display-both-prices .cart-table thead th.cart-total-head,
  .display-both-prices .cart-table td.product-cart-total {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .cart-table colgroup, .cart-table thead {
    display: none;
  }
  .cart-table tr {
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
  }
  .cart-table tr:after {
    content: '';
    display: table;
    clear: both;
  }
  .cart-table tr:last-child {
    margin-bottom: 0;
  }
  .cart-table tfoot tr {
    padding-bottom: 0;
  }
  .cart-table td {
    border: none;
    display: block;
  }
  .cart-table td[data-rwd-label] {
    padding-left: 15px;
    margin-bottom: 6px;
  }
  .cart-table td[data-rwd-label] .price {
    font-weight: normal;
  }
  .cart-table td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  .cart-table td.product-cart-price {
    text-align: left;
  }
  .cart-table h2 {
    font-size: 12px;
    padding-right: 10px;
  }
  .cart-table .cart-links {
    float: left;
    margin-left: 33px;
    display: block !important;
  }
  .cart-table .cart-links > li {
    white-space: normal;
    text-align: center;
  }
  .cart-table .cart-links > li > a {
    padding: 2px 0px;
  }
  .cart-table .cart-links > li a.btn-remove2 {
    display: none;
  }
  .cart-table .cart-tax-info {
    font-style: italic;
    padding-left: 15px;
    font-size: 13px;
  }
  .cart-table .cart-tax-info .price {
    font-size: 13px;
  }
  .cart-table .product-cart-image {
    width: 25%;
    float: left;
    padding-bottom: 0;
  }
  .cart-table .product-cart-image a.cart-edit {
    display: block;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
  }
  .cart-table .product-cart-info,
  .cart-table td[data-rwd-label] {
    float: right;
    width: 75%;
  }
  .cart-table .product-cart-actions,
  .cart-table .product-cart-price {
    padding-bottom: 0;
    padding-top: 0;
    float: right;
  }
  .cart-table .product-cart-remove,
  .cart-table .product-cart-total,
  .cart-table .product-cart-actions .cart-links {
    display: none;
  }
  .cart-table .product-cart-image .cart-links,
  .cart-table .product-cart-info .btn-remove {
    display: block;
  }
  .cart-table .product-cart-actions .button {
    display: none;
  }
  .cart-table .product-cart-info .btn-remove {
    float: right;
    margin: -4px 0px 2px 7px;
  }
}
@media only screen and (max-width: 599px) and (max-width: 767px) {
  .cart-table .product-cart-info .btn-remove {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .cart-table .product-cart-info .product-cart-sku {
    margin-bottom: 5px;
  }
  .cart-table .product-cart-actions {
    text-align: left;
  }
  .cart-table .price,
  .cart-table .product-cart-price:before {
    font-weight: 500;
    font-size: 15px;
    font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  }
  .cart-table .cart-footer-actions {
    text-align: center;
    width: 100%;
  }
  .cart-table .cart-footer-actions #empty_cart_button {
    float: right;
  }
  .cart-table .cart-footer-actions .btn-continue {
    float: left;
  }
  .cart-table .cart-footer-actions .btn-update,
  .cart-table .cart-footer-actions span.or {
    display: none;
  }

  .display-both-prices .cart-table td[data-rwd-tax-label]:before {
    content: attr(data-rwd-tax-label) ":";
  }
}
/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
.shipping h2 {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 5px;
}
.shipping select {
  max-width: 100%;
  height: 30px;
  display: block;
  border: 1px solid #C0C0C0;
}
.shipping select.validation-failed {
  border-color: #DF280A;
}
.shipping .shipping-desc {
  display: none;
}
.shipping .buttons-set {
  border: none;
  margin: 0;
  padding: 0;
}
.shipping .form-list:after {
  content: '';
  display: table;
  clear: both;
}
.shipping .form-list li {
  float: left;
  margin: 5px 2% 10px 0;
}
.shipping .form-list .shipping-country {
  width: 37%;
}
.shipping .form-list .shipping-region {
  width: 41%;
}
.shipping .form-list .shipping-postcode {
  margin-right: 0;
  width: 18%;
}
.shipping .form-list .shipping-postcode input {
  margin-top: 4px;
}
.shipping .form-list .input-box {
  padding-top: 0;
}
.shipping .form-list input {
  height: 30px;
  margin-top: 4px;
}
.shipping .form-list label {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}
.shipping .sp-methods {
  padding: 10px 0 0;
  text-align: left;
}
.shipping .sp-methods dd {
  margin-bottom: 10px;
}
.shipping .sp-methods label {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  min-width: 100px;
}
.shipping .sp-methods label span {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
}
.shipping #co-shipping-method-form .buttons-set .button {
  float: left;
  margin-left: 0;
}
.shipping #co-shipping-method-form .sp-methods dd label {
  border: 1px solid #CCCCCC;
  background-color: #ededed;
  min-width: 220px;
}
.shipping #co-shipping-method-form .sp-methods dd label:hover {
  background-color: gainsboro;
}

@media only screen and (max-width: 767px) {
  .shipping .shipping-form .form-list > li {
    width: 100%;
    float: none;
  }
  .shipping .shipping-form .form-list > li label {
    display: block;
  }
  .shipping .shipping-form .form-list > li input,
  .shipping .shipping-form .form-list > li select {
    width: 100%;
  }
}
.cart .cart-totals {
  text-align: right;
}
.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}
.cart .cart-totals table {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
  width: 100%;
}
.cart .cart-totals table td {
  padding: 2px 0px;
}
.cart .cart-totals table td:first-child {
  padding-right: 10px;
  min-width: 120px;
}
.cart .cart-totals table tbody tr:last-child td,
.cart .cart-totals table tbody tr:last-child th {
  padding-bottom: 10px;
}
.cart .cart-totals table .shipping-line td {
  padding-bottom: 10px !important;
}
.cart .cart-totals table tfoot {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
.cart .cart-totals table tfoot td {
  font-size: 24px;
  padding: 2px 5px;
  vertical-align: top;
}
.cart .cart-totals table tfoot strong span,
.cart .cart-totals table tfoot span.price {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart .cart-totals table tfoot strong {
  font-weight: 400;
}

@media only screen and (max-width: 600px) {
  .cart-totals {
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
  .cart .cart-totals table tfoot td {
    font-size: 18px;
  }
}
.discount-form:after,
#giftcard-form:after {
  content: '';
  display: table;
  clear: both;
}

#discount-coupon-form,
.cart .giftcard {
  width: 100%;
}
#discount-coupon-form h2,
.cart .giftcard h2 {
  display: none;
}
#discount-coupon-form label,
.cart .giftcard label {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  min-width: 105px;
  display: inline-block;
  margin-right: 10px;
}
#discount-coupon-form .field-wrapper,
.cart .giftcard .field-wrapper {
  display: inline-block;
}
#discount-coupon-form .validation-advice,
.cart .giftcard .validation-advice {
  display: inline;
}
#discount-coupon-form .button-wrapper,
.cart .giftcard .button-wrapper {
  display: inline-block;
  vertical-align: bottom;
}
#discount-coupon-form .button-wrapper > button,
.cart .giftcard .button-wrapper > button {
  float: left;
  margin-right: 15px;
}
#discount-coupon-form .input-text,
.cart .giftcard .input-text {
  border-radius: 0;
  height: 30px;
  margin: 4px 10px 0 0;
  width: 190px;
}

.cart .giftcard p {
  margin-bottom: 7px;
}

.cart .giftcard .check-gc-status {
  float: left;
  padding: 0px;
}
.cart .giftcard .check-gc-status > span > span {
  font-size: 14px;
  text-transform: none;
}

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */
.crosssell h2 {
  color: #3399CC;
}
.crosssell .item a.product-image {
  width: auto;
  float: left;
}

/* Change the layout to 2 columns at a breakpoint that is higher than a 3 columns layout would normally break */
@media only screen and (max-width: 1024px) {
  .crosssell {
    /* Undo three-column config */
  }
  .crosssell .products-grid > li:nth-child(even),
  .crosssell .products-grid > li:nth-child(3n),
  .crosssell .products-grid > li {
    width: 47.72727%;
    margin-right: 4.54545%;
  }
  .crosssell .products-grid > li:nth-child(odd) {
    clear: left;
  }
  .crosssell .products-grid > li:nth-child(even) {
    margin-right: 0;
  }
  .crosssell .products-grid > li:nth-child(3n+1) {
    clear: none;
  }
}
@media only screen and (max-width: 599px) {
  .cart-table .cart-tax-total:after {
    right: -9px;
  }
  .cart-table .cart-tax-total.cart-tax-total-expanded:after {
    right: -13px;
  }
}
@media only screen and (max-width: 320px) {
  .crosssell ul .item {
    padding: 0 0px 40px;
  }
  .crosssell ul .product-details .crosssell-actions {
    padding: 0 5px;
  }
}
#shopping-cart-table #ampromo-items-add {
  border: none;
  padding: 0;
  margin: 0 0 15px 0;
  min-height: 90px;
  text-align: left;
}
#shopping-cart-table #ampromo-items-add a {
  color: #2a2c83;
  border-bottom: none;
}
#shopping-cart-table #ampromo-items-add a:hover {
  text-decoration: underline;
}

#ampromo-overlay #ampromo-items .top-bar {
  height: 40px;
  margin: -25px -25px 15px -25px;
  background: #292885;
}
#ampromo-overlay #ampromo-items .top-bar .close {
  background: none;
  width: 16px;
  height: 16px;
  top: 11px;
  right: 17px;
  color: #fff;
  opacity: 1;
  font-size: 36px;
  font-weight: 100;
  line-height: 8px;
}
#ampromo-overlay #ampromo-items .top-bar .close:hover {
  text-decoration: none;
}

.ampromo-item-buttons {
  margin: 0 -10px;
}
.ampromo-item-buttons span span {
  font-size: 13px;
}

.checkout-cart-index #ampromo-carousel-content .ampromo-slide {
  width: 100% !important;
}
.checkout-cart-index #ampromo-carousel-content .ampromo-slide .ampromo-item {
  width: 200px;
}

#eligible-promo-message {
  margin-bottom: 15px;
}

/* ============================================ *
 * Checkout - One Page
 * ============================================ */
.checkout-onepage-index ul#payment_form_securepay_directpost .cc-img {
  display: none;
}

.checkout-onepage-index .fctooltip {
  display: none;
}

.checkout-onepage-index .page-title {
  height: 45px;
}
.checkout-onepage-index .page-title h1 {
  font-size: 20px;
  color: #292885;
  text-transform: uppercase;
  border: none;
}
.checkout-onepage-index .page-title:after {
  content: '';
  display: table;
  clear: both;
}
.checkout-onepage-index .page-title > a {
  position: absolute;
  top: 10px;
  right: 10px;
}
@media only screen and (max-width: 767px) {
  .checkout-onepage-index .page-title > a {
    top: 0;
  }
}

.checkout-onepage-index .col-main,
.checkout-onepage-index .col-right {
  width: calc(50% - 5px);
  padding: 20px 10px 0;
}

@media only screen and (max-width: 767px) {
  .checkout-onepage-index .col-main {
    width: 100%;
    padding-top: 0;
  }

  .checkout-onepage-index .col-right {
    display: none;
  }
}
.checkout-onepage-index .col-main {
  margin-right: 10px;
}

.checkout-onepage-index .col-right {
  margin-top: 45px;
}

@media only screen and (min-width: 768px) {
  .checkout-onepage-index #header-nav {
    display: none !important;
  }
}
#checkoutSteps > li {
  background: #F4F4F4;
  border: 1px solid #CCCCCC;
  margin-bottom: 20px;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  #checkoutSteps > li {
    padding: 10px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  #checkoutSteps > li {
    padding: 15px;
  }
}
.opc select {
  width: 365px;
  background-color: white;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: 1px solid #CCCCCC;
}

/* -------------------------------------------- *
 * Section Styling - Default
 */
.opc .section .step-title h2 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}
.opc .section .step-title:after {
  content: '';
  display: table;
  clear: both;
}
.opc .section .step {
  padding: 20px 0 0;
}
@media only screen and (max-width: 1024px) {
  .opc .section button[title="Continue"] {
    float: none !important;
    margin-right: 0 !important;
  }
}
.opc .section .address-declaration {
  float: right;
  width: 64%;
  text-align: right;
  font-style: italic;
}
@media only screen and (max-width: 1024px) {
  .opc .section .address-declaration {
    float: none;
    clear: both;
    margin-top: 15px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .opc .section .address-declaration {
    text-align: left;
  }
}
.opc .section .address-declaration .note {
  display: block;
  font-size: 0.7rem;
  color: #656565;
}
.opc .section .address-declaration .note.shp-dtls {
  font-weight: bold;
}
.opc .section .address-declaration .note.shp-dtls a {
  display: inline;
  padding: 0;
}

.opc .section.allow:not(.active) .step-title {
  cursor: pointer;
}

.opc .section.active .step-title {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 15px;
}

/* Using .no-touch since touch devices emulate hover, thereby making steps look active that are not */
.opc .section .step-title a {
  display: none;
}

.opc .section.allow:not(.active) .step-title a {
  display: block;
  float: right;
  padding: 0px 10px;
}

.opc .section .step-title h2 {
  float: left;
  margin-bottom: 0;
}

.opc .section .step:after {
  content: '';
  display: table;
  clear: both;
}
@media only screen and (max-width: 1024px) {
  .opc .section .step {
    padding: 10px;
  }
}

.opc select {
  max-width: 365px;
  width: 100%;
}

.opc h3 {
  font-weight: 500;
}

.opc .buttons-set {
  text-align: left;
}
.opc .buttons-set button.button {
  float: left;
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 0;
}
.opc .buttons-set p.required {
  float: right;
  margin-left: 5px;
  margin-bottom: 0;
}
.opc .buttons-set .back-link {
  float: right;
  clear: right;
  margin: 0;
}
.opc .buttons-set a {
  line-height: 20px;
  display: inline-block;
  padding: 5px 5px 5px 0;
}
.opc .buttons-set .btn-checkout {
  margin-right: 0;
  float: none;
  height: 60px;
  max-width: 290px;
  width: 100%;
  background: linear-gradient(to bottom, #389f00 1%, #357c0c 100%);
  color: white;
  font-size: 20px;
  font-weight: bold;
  box-shadow: inset 0px 1px 0px #a4e87f;
  border: 1px solid #31591b;
  text-transform: uppercase;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.opc .buttons-set .btn-checkout span span img {
  max-width: 17px;
  display: inline;
  margin-right: 15px;
  position: relative;
  top: 1px;
}
@media only screen and (max-width: 1024px) {
  .opc .buttons-set .btn-checkout span span img {
    top: 3px;
  }
}
.opc .buttons-set .btn-checkout:hover {
  background: #389f00;
}

#opc-review .buttons-set {
  text-align: center;
  padding: 0;
  margin-top: 0;
}
#opc-review button {
  margin: 0;
  float: none;
}

#checkout-review-table tfoot > tr:first-child td,
#order-total-table tbody > tr:first-child td {
  padding-top: 15px;
}
#checkout-review-table tfoot > tr > td,
#order-total-table tbody > tr > td {
  padding: 0 0 15px 0;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
#checkout-review-table tfoot > tr > td:first-child,
#order-total-table tbody > tr > td:first-child {
  text-align: left;
}
#checkout-review-table tfoot > tr > td .free,
#order-total-table tbody > tr > td .free {
  color: #389E2B;
  font-weight: bold;
}
#checkout-review-table tfoot tr.last,
#order-total-table tbody tr.last {
  border-top: 1px solid #CCCCCC;
  font-size: 18px;
}
#checkout-review-table tfoot tr.last td,
#order-total-table tbody tr.last td {
  padding-top: 10px;
}

#checkout-step-login .col-1,
#checkout-step-login .col-2 {
  width: 100%;
  padding: 20px 0;
}

@media only screen and (max-width: 479px) {
  .opc .buttons-set .button + .buttons-set .button,
  .paypal-express-review .buttons-set .button + .buttons-set .button {
    margin-left: 0;
  }
}
.opc #opc-login .step {
  padding: 0px;
}
.opc #opc-login .buttons-set {
  border-top: 0;
  padding-top: 5px;
}

@media only screen and (max-width: 767px) {
  .opc #opc-login .description,
  .opc #opc-login p.required {
    display: none;
  }
}
#opc-payment .note {
  padding: 10px;
}

/* -------------------------------------------- *
 * This section hides everything but the "Checkout Method" step of the checkout process and fades in the content
 * once the customer progresses to the next step. The purpose of this is to simplify what the customer has to focus on.
 * It is limited to larger viewports since smaller devices are inherently going to be focused solely on the
 * "Checkout Method" step.
 */
.opc.opc-firststep-login .section:not(#opc-login) .step-title,
.opc-block-progress-step-login {
  -webkit-transition: opacity 300ms linear 0 0.25s linear;
  -moz-transition: opacity 300ms linear 0 0.25s linear;
  transition: opacity 300ms linear 0 0.25s linear;
}

.opc.opc-firststep-login .section#opc-login .step-title h2 {
  -webkit-transition: margin-left 80ms linear 0 0.25s linear;
  -moz-transition: margin-left 80ms linear 0 0.25s linear;
  transition: margin-left 80ms linear 0 0.25s linear;
}

/* When a user progresses from the "Checkout Method" to "Billing Information" for the first time, the              */
/* "opc-has-progressed-from-login" class gets added to the body. Also, the .opc element will only have the         */
/* "opc-firststep-login" class if the first step of the checkout is the "Checkout Method" (eg, not when logged in) */
body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section:not(#opc-login),
body:not(.opc-has-progressed-from-login) .opc-block-progress-step-login,
body:not(.opc-has-progressed-from-login) #checkout-progress-section,
body:not(.opc-has-progressed-from-login) #order-summary-section,
body:not(.opc-has-progressed-from-login) #order-total-section {
  opacity: 0;
}

#checkout-progress-section.logged-in,
#order-summary-section.logged-in,
#order-total-section.logged-in {
  opacity: 1 !important;
}

body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title h2 {
  margin-left: 0px;
}

/* -------------------------------------------- *
 * Shipping and Payment methods
 */
.sp-methods {
  margin: 0 0 8px;
}
.sp-methods dt {
  margin: 13px 0 5px;
  font-weight: bold;
}
.sp-methods dt:first-child {
  margin: 0 0 5px;
}
.sp-methods dd li {
  margin: 5px 0;
}
.sp-methods label img {
  float: left;
}
.sp-methods label a {
  margin-top: 6px;
  float: right;
  margin-left: 10px;
}
.sp-methods .price {
  font-weight: bold;
}
.sp-methods .form-list {
  padding-left: 20px;
}
.sp-methods .form-list li {
  margin: 0 0 8px;
}
.sp-methods select.month {
  width: 120px;
  margin-right: 10px;
}
.sp-methods select.year {
  width: 96px;
}
.sp-methods input.cvv {
  width: 4.5em;
}
.sp-methods #advice-validate-cc-exp-ccsave_expiration {
  max-width: 130px;
}
.sp-methods .checkmo-list li {
  margin: 0 0 5px;
  content: '';
  display: table;
  clear: both;
}
.sp-methods .checkmo-list label {
  width: 165px;
  padding-right: 15px;
  text-align: right;
  float: left;
}
.sp-methods .checkmo-list address {
  float: left;
}
@media only screen and (max-width: 479px) {
  .sp-methods .checkmo-list {
    padding-left: 0;
  }
  .sp-methods .checkmo-list label {
    width: 135px;
  }
}
.sp-methods .release-amounts {
  margin: 0.5em 0;
}
.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0;
}

/* One Page Checkout */
#checkout-progress-section {
  margin-bottom: 20px;
  padding: 20px;
  background: #F4F4F4;
  border: 1px solid #CCCCCC;
}
@media only screen and (max-width: 767px) {
  #checkout-progress-section {
    display: none;
  }
}

.name-middlename,
.field.country,
.field.fax,
.gift-messages {
  display: none;
}

.block-progress {
  border: 0;
  margin: 0;
}
.block-progress .block-title {
  margin-bottom: 20px;
  border-top: none;
  border-bottom: 1px solid #CCCCCC;
  padding: 0 0 10px;
}
.block-progress .block-title strong {
  color: #636363;
  font-size: 18px;
}
.block-progress .block-content {
  font-size: 13px;
  padding: 10px;
  margin-top: 0;
  background: white;
  border: 1px solid #CCCCCC;
}
.block-progress dt {
  padding-top: 6px;
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 14px;
  color: #A0A0A0;
}
.block-progress dt.complete {
  color: #636363;
}
.block-progress dd {
  padding-left: 15px;
  margin-bottom: 10px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.block-progress #payment-progress-opcheckout .subtitle {
  margin-bottom: 3px;
}
.block-progress .payment-info dt {
  padding: 0;
  margin: 0 0 3px 0;
  color: #636363;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: none;
  float: left;
  clear: both;
  font-size: 13px;
}
.block-progress .payment-info dt:after {
  content: ': ';
}
.block-progress .payment-info dd {
  float: left;
  margin-bottom: 3px;
  font-size: 13px;
}
.block-progress .payment-info:after {
  content: '';
  display: table;
  clear: both;
}

#order-summary-section {
  padding: 20px;
  border: 1px solid #CCCCCC;
  background: #F4F4F4;
  margin-bottom: 20px;
}
#order-summary-section .block-title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  padding-top: 0;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-bottom: 1px solid #CCCCCC;
}
#order-summary-section ul {
  background: white;
  border: 1px solid #CCCCCC;
}
#order-summary-section ul .badges {
  position: absolute;
  right: 0;
  top: 10px;
  padding: 2px 5px 1px 15px;
  z-index: 1;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/badge.png") no-repeat;
  background-size: 100% 100%;
}
#order-summary-section ul .badges span {
  font-size: 12px;
}
#order-summary-section ul li {
  padding: 10px;
}
#order-summary-section ul li .left,
#order-summary-section ul li .right {
  display: inline-block;
}
#order-summary-section ul li .left {
  width: 25%;
}
#order-summary-section ul li .left.product-image {
  position: relative;
}
#order-summary-section ul li .left.product-image .badges.FreeGift {
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/free-gift-icon.png) no-repeat;
  width: 18px;
  text-indent: -9999px;
  padding: 0;
  height: 20px;
  top: 0;
  position: absolute;
  right: 5px;
  z-index: 1;
}
#order-summary-section ul li .right {
  width: 70%;
  text-align: right;
  float: right;
}
#order-summary-section ul li .right span {
  display: block;
  padding: 3px 0;
}
#order-summary-section ul li .row-total {
  color: #389E2B;
}
#order-summary-section ul li:after {
  content: '';
  display: table;
  clear: both;
}

#order-total-section {
  padding: 20px;
  border: 1px solid #CCCCCC;
  background: #F4F4F4;
}
#order-total-section .order-totals {
  padding: 0 10px;
  background: white;
  border: 1px solid #CCCCCC;
}
#order-total-section #order-total-table {
  width: 100%;
}

/* review step */
#checkout-review-table .btn-remove img {
  display: none;
}
#checkout-review-table thead th:first-child {
  padding-left: 0;
}
#checkout-review-table thead th:last-child {
  padding-right: 0;
}
#checkout-review-table tbody > tr.first td {
  padding-top: 15px;
}
#checkout-review-table tbody > tr.first td.first:after {
  content: '';
  display: table;
  clear: both;
}
#checkout-review-table tbody > tr td {
  padding-bottom: 15px;
}
#checkout-review-table tbody > tr td.first {
  padding-left: 0;
}
#checkout-review-table tbody > tr td.last {
  padding-right: 0;
}
#checkout-review-table tbody > tr td .left,
#checkout-review-table tbody > tr td .right {
  float: left;
}
#checkout-review-table tbody > tr td .left {
  width: 50px;
  margin-right: 10px;
}
#checkout-review-table tbody > tr td .left.product-image {
  position: relative;
  width: 85px;
}
#checkout-review-table tbody > tr td .left.product-image .badges.FreeGift {
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/free-gift-icon.png) no-repeat;
  width: 18px;
  text-indent: -9999px;
  padding: 0;
  height: 20px;
  top: 0;
  position: absolute;
  right: -6px;
  z-index: 1;
  background-size: 65%;
}
#checkout-review-table tbody > tr td .left.product-image img {
  max-width: 100%;
  width: 100%;
}
#checkout-review-table tbody > tr td .right {
  width: calc(100% - 85px - 10px);
}
#checkout-review-table tbody > tr td .badges {
  position: absolute;
  right: 0;
  top: 10px;
  padding: 2px 5px 1px 15px;
  z-index: 1;
  background: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/badge.png") no-repeat;
  background-size: 100% 100%;
}
#checkout-review-table tbody > tr td .badges span {
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  #checkout-review-table tbody tr td:nth-child(n + 1) {
    display: block;
    padding: 10px 0 0;
  }
  #checkout-review-table tbody tr td:last-child {
    padding-bottom: 10px;
  }
  #checkout-review-table tfoot tr td.last {
    text-align: right;
  }
}

#checkout-review-table-wrapper {
  clear: both;
}
#checkout-review-table-wrapper h2 {
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  border-bottom: solid 1px #CCCCCC;
  padding-bottom: 10px;
}

@media only screen and (max-width: 599px) {
  .linearize-table-large.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  .linearize-table.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }
}
/* show/hide "change" link for progress step depend on complete status
 * should be placed in .css file */
.opc-block-progress dt.complete a,
.opc-block-progress dt.complete .separator {
  display: inline;
}

.opc-block-progress dt a,
.opc-block-progress dt .separator {
  display: none;
}

#checkout-step-review {
  padding: 0;
}
#checkout-step-review #checkout-review-load {
  margin-bottom: 15px;
}
#checkout-step-review tbody .old-price {
  text-decoration: line-through;
}

/* On small screens, the progress review content will be moved to the review step via JS. Styled via this CSS: */
#checkout-step-review .opc-block-progress {
  border-left: none;
  padding-left: 0;
}
#checkout-step-review .opc-block-progress .block-title {
  display: none;
}
#checkout-step-review .opc-block-progress .block-content {
  display: block !important;
  padding: 0;
}
#checkout-step-review .opc-block-progress .block-content > dl > div {
  float: left;
  width: 50%;
}
@media only screen and (max-width: 479px) {
  #checkout-step-review .opc-block-progress .block-content > dl > div {
    float: none;
    width: auto;
  }
}
#checkout-step-review .opc-block-progress .block-content .changelink {
  display: none;
}

@media only screen and (max-width: 479px) {
  #checkout-review-table thead > tr > th {
    display: none;
  }
  #checkout-review-table thead > tr > th:first-child {
    display: block;
  }

  #checkout-review-table thead > tr > th:first-child {
    display: block;
  }
}
#checkout-step-review .centinel > p {
  margin-bottom: 10px;
}
#checkout-step-review .centinel iframe {
  width: 100%;
  min-height: 400px;
}

/* Gift options */
.gift-messages-form .item {
  content: '';
  display: table;
  clear: both;
  margin-top: 30px;
}
.gift-messages-form .item h5 {
  font-weight: bold;
}
.gift-messages-form .item .product-img-box {
  width: auto;
  float: left;
  padding-right: 15px;
}
.gift-messages-form .item .details {
  float: left;
}

.gift-message-form .inner-box > div {
  content: '';
  display: table;
  clear: both;
  width: 100%;
  margin-top: 15px;
  display: block;
}
.gift-message-form .inner-box > div.extra-options-container p {
  margin-bottom: 15px;
}
.gift-message-form .gift-wrapping-form label {
  margin-right: 10px;
}
.gift-message-form .gift-wrapping-form img {
  float: left;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design {
  height: 75px;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design:after {
  content: '';
  display: table;
  clear: both;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design .image-box {
  margin-right: 5px;
}
.gift-message-form .gift-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #ECECEC;
}
.gift-message-form .gift-item:after {
  content: '';
  display: table;
  clear: both;
}
.gift-message-form .gift-item .product-img-box {
  width: 200px;
}
.gift-message-form .gift-item .product-img-box .product-image {
  width: 75px;
  margin-left: auto;
  margin-right: auto;
}
.gift-message-form .gift-item .product-img-box .product-name {
  display: block;
}
.gift-message-form .gift-item .fieldset {
  margin-left: 200px;
}

@media only screen and (max-width: 767px) {
  .gift-message-form .giftmessage-area {
    max-width: 100%;
  }
  .gift-message-form .gift-item .product-img-box {
    width: 100%;
    float: none;
  }
  .gift-message-form .gift-item .fieldset {
    margin-left: 0px;
  }
  .gift-message-form .gift-item .fieldset textarea {
    width: 100%;
  }
}
/* ============================================ *
 * Checkout - Success
 * ============================================ */
.checkout-onepage-success .col-main {
  padding: 0;
  text-align: center;
}
.checkout-onepage-success .buttons-set {
  margin: 10px 0;
  text-align: center;
}
.checkout-onepage-success .buttons-set button {
  float: none;
}

/* ============================================ *
 * Configurable Swatches
 * ============================================ */
/* Clears */
.clearfix:after,
.configurable-swatch-list:after,
.product-view .product-options .swatch-attr:after {
  content: '';
  display: table;
  clear: both;
}

/* General Swatch Styling */
.swatch-link,
.swatch-label {
  display: block;
  font-size: 14px;
  text-align: center;
  color: #636363;
  text-decoration: none;
  box-sizing: content-box;
}

.swatch-link {
  border: 1px solid #CCCCCC;
}
.swatch-link:hover {
  cursor: pointer;
  text-decoration: none;
}
.swatch-link .x {
  display: none;
  text-indent: -999em;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/bg_x.png) center no-repeat transparent;
  z-index: 10;
}
.swatch-link.has-image .swatch-label {
  position: relative;
}
.swatch-link.has-image img {
  position: absolute;
  top: 0;
  left: 0;
}

.swatch-label {
  border: 1px solid #fff;
  margin: 0;
  white-space: nowrap;
  background: #F4F4F4;
  padding: 3px 5px;
}

.configurable-swatch-list {
  margin-left: -10px;
  zoom: 1;
  clear: both;
  -webkit-transform: translateZ(0px);
}
.configurable-swatch-list li {
  float: left;
  zoom: 1;
  margin: 10px 0 0 10px;
}
.configurable-swatch-list > li:not(.hover):not(.selected) {
  border: 1px solid #fff;
}
.configurable-swatch-list.image-swatch .swatch-label, .configurable-swatch-list.image-swatch .wide-swatch .swatch-label {
  background: transparent;
  padding: 3px;
}
@media only screen and (max-width: 767px) {
  .configurable-swatch-list.image-swatch {
    width: auto;
    margin: 0 -5px;
  }
  .configurable-swatch-list.image-swatch li {
    width: 33.33%;
    margin: 0 0 10px 0;
    padding: 0 5px;
  }
  .configurable-swatch-list.image-swatch li .swatch-label img {
    width: 100%;
    height: auto;
  }
}
.products-grid .configurable-swatch-list li {
  display: inline-block;
  float: none;
  margin: 0;
  vertical-align: top;
}
.configurable-swatch-list .not-available .x {
  display: block;
}
.configurable-swatch-list .not-available .swatch-link {
  border-color: #EDEDED;
  position: relative;
}
.configurable-swatch-list .not-available .swatch-link.has-image img {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.configurable-swatch-list .not-available .swatch-label {
  color: #aaa;
  background: #fff;
}
.configurable-swatch-list .swatch-label,
.configurable-swatch-list .wide-swatch .swatch-label {
  padding: 0 6px;
}
.configurable-swatch-list .not-available a:focus {
  outline: 0;
}

#narrow-by-list dd .configurable-swatch-list li {
  margin: 0 0 0 3px;
  width: 47%;
}
#narrow-by-list dd .swatch-link {
  border: none;
  line-height: 25px;
  margin-right: 2px;
  text-align: left;
}
#narrow-by-list dd .swatch-link.has-image {
  line-height: inherit;
}
#narrow-by-list dd .swatch-link:hover .swatch-label {
  border-color: #CCCCCC;
}
#narrow-by-list dd .swatch-label {
  background: #F4F4F4;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0 5px 0 0;
  padding: 1px 5px;
  white-space: nowrap;
}
#narrow-by-list dd .swatch-label img {
  border: 1px solid #fff;
  border-radius: 3px;
  box-sizing: content-box;
}
#narrow-by-list dd .has-image .swatch-label {
  padding: 0;
}

@media only screen and (max-width: 767px) {
  #narrow-by-list dd .configurable-swatch-list li:nth-child(odd) {
    clear: left;
  }
}
.currently .swatch-current {
  position: relative;
}
.currently .swatch-current .btn-remove {
  margin-top: -10px;
  position: absolute;
  right: 0;
  top: 50%;
}
.currently .swatch-current span {
  display: block;
  float: left;
}
.currently .swatch-link {
  display: inline-block;
  margin: 0 0 0 3px;
}
.currently .swatch-link:hover {
  cursor: default;
  border-width: 2px;
  border-color: #292885;
}

/* Other Swatch States */
.configurable-swatch-list .hover .swatch-link,
.configurable-swatch-list .selected .swatch-link,
.swatch-link:hover {
  border-color: #292885;
  border-width: 2px;
}

.configurable-swatch-box {
  background: none !important;
}
.configurable-swatch-box select.swatch-select {
  display: none;
}
.configurable-swatch-box .validation-advice {
  margin: 0 0 5px;
  background: #DF280A;
  padding: 2px 5px !important;
  font-weight: bold;
  color: #fff !important;
  float: left;
  display: block;
  border-radius: 3px;
}

/* CUSTOM */
.availability.out-of-stock span {
  color: #A0A0A0;
}

.product-view .product-options .swatch-attr {
  float: none;
  display: block;
  clear: both;
  border: 0;
  margin-bottom: 0;
}
.product-view .product-options .swatch-attr label {
  display: block;
  line-height: 1.3;
  color: #929292;
  font-weight: normal;
}
.product-view .product-options .swatch-attr .select-label {
  display: inline;
  color: #636363;
  font-weight: bold;
  padding-left: 5px;
}
.product-view .product-options dd .input-box {
  width: auto;
  height: auto;
}
.product-view .product-options .select-label {
  display: none;
}
.product-view .product-options dl dt:not(:first-of-type) {
  padding-top: 5px;
}
.product-view .add-to-cart button.out-of-stock {
  background: #c8c8c8;
  background-size: 100% 100%;
  cursor: not-allowed;
  border-radius: 3px;
}

/* ============================================ *
 * Customer
 * ============================================ */
.customer-account-login .scaffold-form label:first-child {
  width: 115px;
}
.customer-account-login .col2-set .buttons-set {
  text-align: left;
  border-top: 0;
}
.customer-account-login .col2-set .buttons-set button,
.customer-account-login .col2-set .buttons-set .button {
  float: none;
  min-width: 50%;
  margin: 0;
}
.customer-account-login .col2-set .col-1 ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 20px 0;
}
@media only screen and (min-width: 480px) {
  .customer-account-login .col2-set .col-1,
  .customer-account-login .col2-set .col-2 {
    padding-top: 0;
    margin-top: 20px;
  }
  .customer-account-login .col2-set .col-1 {
    padding-right: 20px;
  }
  .customer-account-login .col2-set .col-2 {
    padding-left: 20px;
    border-left: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 767px) {
  .customer-account-login .col2-set .col-1 {
    padding-right: 0;
  }
  .customer-account-login .col2-set .col-2 {
    padding-left: 60px;
    border-left: 1px solid #EDEDED;
  }
}
@media only screen and (max-width: 479px) {
  .customer-account-login .col2-set .col-1 {
    padding-bottom: 30px;
  }
  .customer-account-login .col2-set .col-2 {
    padding-top: 30px;
    border-top: 1px solid #EDEDED;
  }
}
@media only screen and (max-width: 767px) {
  .customer-account-login .col2-set p.required {
    display: none;
  }
  .customer-account-login .col-main {
    padding: 0 15px;
  }
}

.customer-account-create .scaffold-form label:first-child {
  width: 140px;
}

.opc #opc-login p:not(.required) {
  font-style: italic;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  color: #A0A0A0;
}

.remember-me-box a.hide {
  display: none;
}
.remember-me-box .link-tip {
  font-size: 13px;
  padding-left: 10px;
}

.field.name-middlename,
.field.fax {
  display: none;
}

.remember-me-popup {
  display: none;
  border: 1px solid #CCCCCC;
  padding: 10px;
  position: relative;
}
.remember-me-popup.show {
  display: block;
}
.remember-me-popup p {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.remember-me-popup .remember-me-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 12px;
}
.remember-me-popup .remember-me-popup-close-button {
  display: none;
}

.customer-account-create .buttons-set {
  max-width: 455px;
}
.customer-account-create .fieldset .hidden {
  display: none;
}
.customer-account-create #remember-me-popup {
  max-width: 455px;
}
@media only screen and (max-width: 767px) {
  .customer-account-create .col-main {
    padding: 0 15px;
  }
}

.customer-account-forgotpassword .fieldset,
.customer-account-forgotpassword .buttons-set {
  margin-left: 30px;
  max-width: 400px;
}
@media only screen and (max-width: 479px) {
  .customer-account-forgotpassword .fieldset,
  .customer-account-forgotpassword .buttons-set {
    margin-left: 0;
  }
}
.customer-account-forgotpassword .fieldset .input-box input.input-text {
  width: 100%;
}

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
body.customer-account .main-container {
  padding-left: 10px;
  padding-right: 10px;
}
body.customer-account .col-left .block-title strong {
  font-size: 18px;
  text-transform: uppercase;
}
body.customer-account select {
  border: 1px solid #CCCCCC;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
body.customer-account .my-account .page-title h1 {
  border: 0;
  text-align: left;
}
body.customer-account .my-account .title-buttons {
  position: relative;
  text-align: right;
}
body.customer-account .my-account .title-buttons h1 {
  text-align: left;
}
body.customer-account .my-account .title-buttons .button {
  position: absolute;
  right: 0;
  top: 0;
}
body.customer-account .my-account .fieldset h2,
body.customer-account .my-account .addresses-list h2,
body.customer-account .my-account .order-details h2 {
  width: 100%;
  display: inline-block;
}
body.customer-account .my-account .addresses-list h3 {
  font-size: 14px;
  font-weight: 600;
}
body.customer-account .my-account .fieldset {
  margin-top: 30px;
  margin-bottom: 30px;
}
body.customer-account .my-account .my-wishlist .fieldset {
  margin-top: 15px;
  margin-bottom: 10px;
}
body.customer-account .data-table td a {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  font-style: normal;
  font-size: 13px;
}
body.customer-account .data-table span.nobr {
  white-space: normal;
}
body.customer-account .data-table span.nobr a {
  white-space: nowrap;
}
body.customer-account .data-table td.view a {
  display: block;
}
body.customer-account .data-table .separator {
  display: none;
}
body.customer-account .sidebar .block-account,
body.customer-account .sidebar .block-reorder {
  border-bottom: 1px solid #CCCCCC;
}
body.customer-account .sidebar .block ol#compare-items li {
  margin: 10px 0;
}
body.customer-account .sidebar .block .block-content p.block-subtitle {
  margin-bottom: 15px;
}
body.customer-account .sidebar ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
body.customer-account .sidebar ol#cart-sidebar-reorder p.product-name {
  display: inline-block;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-cart .summary {
  margin-bottom: 15px;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder p.product-name {
  display: inline;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-reorder .actions > * {
  float: none;
  display: block;
}
body.customer-account .sidebar .block-reorder .actions a {
  margin-bottom: 10px;
}
body.customer-account #product_addtocart_form .actions {
  padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  body.customer-account .main-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day {
  width: 40px;
  float: left;
  margin-right: 10px;
}
.form-list .customer-dob .dob-year {
  width: 80px;
  float: left;
}

/* ============================================ *
 * Dashboard
 * ============================================ */
.dashboard .welcome-msg {
  float: none;
  display: block;
}
.dashboard .box-head {
  margin-top: 30px;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 7px;
}
.dashboard .box-head h2 {
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0;
}
.dashboard .box-head a {
  padding: 10px;
}
.dashboard .box-title a,
.dashboard .box-head a {
  text-transform: uppercase;
  font-size: 12px;
}
.dashboard .box-account {
  padding-bottom: 40px;
  margin-bottom: 45px;
  clear: both;
}
.dashboard .box-account p,
.dashboard .box-account address {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-style: italic;
}
.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2 {
  padding-right: 12.09677%;
  padding-bottom: 0;
}
.dashboard .col2-set .col-1 .box-title,
.dashboard .col2-set .col-2 .box-title {
  position: relative;
  padding-bottom: 10px;
}
.dashboard .col2-set .col-1 .box-title h2,
.dashboard .col2-set .col-1 .box-title h3,
.dashboard .col2-set .col-2 .box-title h2,
.dashboard .col2-set .col-2 .box-title h3 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
}
.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a {
  line-height: 19.6px;
}
.dashboard .box-reviews.box-account {
  padding-bottom: 0;
}
.dashboard .box-reviews li {
  padding: 10px 0;
  border-top: 1px solid #EDEDED;
}
.dashboard .box-reviews li:first-child {
  border-top: 0;
}
.dashboard .box-reviews li .number {
  margin-right: -20px;
  float: left;
  line-height: 1.4;
  font-size: 13px;
}
.dashboard .box-reviews li .details {
  margin-left: 20px;
}
.dashboard .box-reviews li .details .ratings {
  content: '';
  display: table;
  clear: both;
  margin-bottom: 0;
}
.dashboard .box-reviews li .details .ratings strong {
  float: left;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  margin-right: 5px;
}
.dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0;
}

#reorder-validate-detail .actions {
  margin-top: 20px;
}
#reorder-validate-detail .actions .btn-cart {
  float: none;
}

/* ============================================ *
 * Address Book
 * ============================================ */
.my-account .addresses-list {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.my-account .addresses-list .col-1,
.my-account .addresses-list .col-2 {
  padding-bottom: 0;
}
.my-account .addresses-list .item {
  margin: 0 0 30px 0;
}
.my-account .addresses-list .item p {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .my-account .addresses-list .col-1,
  .my-account .addresses-list .col-2 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .my-account .addresses-list .col-1 li.empty,
  .my-account .addresses-list .col-2 li.empty {
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .my-account .addresses-list .addresses-additional p a {
    white-space: nowrap;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .customer-address-index .addresses-list .col-1 {
    width: 45%;
  }
  .customer-address-index .addresses-list .col-2 {
    width: 55%;
    padding-left: 0;
  }
}
/* ============================================ *
 * Order View
 * ============================================ */
.order-info {
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
  width: 100%;
  margin-bottom: 30px;
}
.order-info dt,
.order-info dd,
.order-info ul,
.order-info li {
  display: inline;
}
.order-info dt {
  margin-right: 20px;
}
.order-info li {
  margin: 0 0 0 20px;
}
.order-info li.current {
  font-weight: 600;
}
.order-info li:first-child {
  margin-left: 0;
}

.order-date {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

.order-info-box {
  margin-bottom: 40px;
  margin-top: 20px;
}
.order-info-box + .order-info-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #EDEDED;
}
.order-info-box .col-1 {
  padding-right: 0;
  width: 48%;
}
.order-info-box .col-2 {
  width: 52%;
}
.order-info-box .col-1,
.order-info-box .col-2 {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.order-info-box .box-title {
  width: 150px;
  padding-right: 10px;
  float: left;
}
.order-info-box .box-title h2 {
  font-size: 14px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
.order-info-box .box-title h2:after {
  content: ':';
}
.order-info-box .box-content {
  float: left;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.order-info-box .box-content td,
.order-info-box .box-content th {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 1.3;
}
.order-info-box .box-content th {
  padding-top: 10px;
}
.order-info-box .box-content td {
  padding-left: 15px;
}
.order-info-box .box-content strong {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}

.tracking-table {
  margin-bottom: 20px;
}

#my-orders-table .option-label {
  margin-left: 10px;
  font-weight: 600;
  font-style: italic;
}
#my-orders-table .option-value {
  margin-left: 20px;
}
#my-orders-table tr.bundle:not(:last-child) td {
  border-bottom: none;
  border-top: none;
}
@media only screen and (max-width: 767px) {
  #my-orders-table tfoot td.a-right {
    text-align: right;
  }
}

table[id^="my-shipment-table-"] {
  display: block;
  overflow-x: scroll;
}

ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
ol#cart-sidebar-reorder p.product-name {
  display: inline;
}

@media only screen and (max-width: 599px) {
  #my-orders-table .option-label {
    margin-left: 20px;
  }
  #my-orders-table .option-value {
    margin-left: 35px;
  }
  #my-orders-table td[data-rwd-label=Qty] .nobr br {
    display: none;
  }
  #my-orders-table td[data-rwd-label=Qty] .nobr strong {
    margin-right: 10px;
  }
  #my-orders-table tr.bundle {
    border-color: #EDEDED;
  }
  #my-orders-table tr.bundle.child td[data-rwd-label] {
    padding-left: 60px;
  }
  #my-orders-table tbody:last-child tr:last-child td {
    padding-bottom: 10px;
    border-bottom: 0;
  }
  #my-orders-table tbody:last-child tr:last-child td:last-child {
    padding-bottom: 15px;
  }
  #my-orders-table tfoot tr.shipping {
    margin-top: 0;
  }
}
.order-additional {
  margin: 40px 0;
}

.order-gift-message dd {
  margin-top: 10px;
}

@media only screen and (max-width: 1199px) {
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    padding-right: 30px;
    padding-bottom: 0;
  }

  body.customer-account .data-table#my-orders-table th {
    font-size: 12px;
    padding: 10px 5px;
  }
  body.customer-account .data-table#my-orders-table th span {
    white-space: nowrap;
  }
  body.customer-account .data-table#my-orders-table td {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  body.customer-account .my-account .page-title h1 {
    text-align: center;
    font-size: 20px;
  }
  body.customer-account .data-table.orders th.ship,
  body.customer-account .data-table.orders td.ship,
  body.customer-account .data-table.orders td.status,
  body.customer-account .data-table.orders th.status {
    display: none;
  }

  .order-info-box .box-content {
    clear: left;
  }

  .addresses-list .item {
    float: left;
    width: 50%;
    padding-right: 30px;
  }

  .order-info dt {
    display: none;
  }

  .dashboard .page-title {
    margin-top: 20px;
  }
  .dashboard .page-title h1 {
    margin-top: 0;
    font-size: 20px;
  }
  .dashboard .welcome-msg {
    font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  }
  .dashboard .welcome-msg .hello {
    font-style: italic;
  }
  .dashboard .box-account {
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    width: 48%;
    padding-right: 0;
    padding-left: 0;
  }
  .dashboard .col2-set .col-1 {
    float: left;
    margin-right: 4%;
  }
  .dashboard .col2-set .col-2 {
    float: right;
  }
}
@media only screen and (max-width: 599px) {
  body.customer-account .my-account .form-list .control {
    padding-left: 0;
  }
}
@media only screen and (max-width: 479px) {
  body.customer-account .my-account .title-buttons {
    text-align: center;
  }
  body.customer-account .my-account .title-buttons .button {
    width: 100%;
    position: static;
    margin-bottom: 15px;
  }
  body.customer-account .my-account .title-buttons .button + .button {
    margin-left: 0px;
  }
  body.customer-account .my-account .fieldset h2 {
    margin-bottom: 15px;
  }
  body.customer-account .my-account .order-details h2 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  body.customer-account .my-account .buttons-set {
    border-top: 0;
  }
  body.customer-account .my-account .addresses-list .item {
    margin-bottom: 15px;
    padding-right: 0;
    float: none;
    width: auto;
  }
  body.customer-account .my-account .addresses-list h2 {
    margin-bottom: 15px;
  }

  .order-info {
    margin-top: 15px;
  }

  .data-table.orders .link-reorder,
  .data-table.orders .date {
    display: none;
  }

  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    width: 100%;
    margin-top: 15px;
  }

  .order-info-box {
    margin: 0;
  }
  .order-info-box .col-1,
  .order-info-box .col-2 {
    width: 100%;
    border-bottom: 1px solid #EDEDED;
    padding: 15px 0;
  }
  .order-info-box + .order-info-box {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 30px;
  }

  #my-reviews-table .nobr {
    white-space: normal;
  }
}
/* ============================================ *
 * Newsletter Subscriptions
 * ============================================ */
body.newsletter-manage-index .my-account .fieldset {
  margin-bottom: 20px;
}
body.newsletter-manage-index .my-account .fieldset h2 {
  display: none;
}
body.newsletter-manage-index .my-account .form-list {
  border-top: 1px solid #EDEDED;
  padding-top: 10px;
}

/* ============================================ *
 * Contacts
 * ============================================ */
@media only screen and (min-width: 768px) {
  .contacts-index-index .main-container {
    max-width: 1019px;
    background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/page-row-bg.png) no-repeat;
    background-size: 100% auto;
    background-position: 0 35px;
  }
  .contacts-index-index .main-container .main {
    padding: 0 15px;
  }
  .contacts-index-index .main-container .col-left,
  .contacts-index-index .main-container .col-main {
    padding-top: 5px;
    margin-bottom: 0;
    margin-top: 20px;
  }
  .contacts-index-index .main-container .col-left:not(.col-left-first) {
    padding-top: 0;
  }
  .contacts-index-index .main-container .col-main {
    padding-right: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .contacts-index-index .main-container {
    background-position: 0 20px;
  }
}
.contacts-index-index .fieldset:after {
  content: '';
  display: table;
  clear: both;
}
.contacts-index-index label {
  font-weight: 500;
  color: black;
  font-size: 11px;
  display: block;
}
.contacts-index-index label[for="newsletter-subscription"] {
  color: #636363;
  font-weight: 400;
  font-size: 10px;
}
.contacts-index-index .buttons-set {
  border: none;
}
.contacts-index-index .buttons-set a {
  margin-right: 30px;
  font-size: 11px;
}
@media only screen and (max-width: 599px) {
  .contacts-index-index .buttons-set {
    margin: 0;
    padding: 0;
    text-align: left;
  }
  .contacts-index-index .buttons-set a {
    margin-right: 0;
  }
  .contacts-index-index .buttons-set button {
    float: left;
    margin-left: 0px;
  }
  .contacts-index-index .buttons-set p.required {
    float: right;
  }
}
.contacts-index-index .header-img img {
  width: 100%;
}
.contacts-index-index #contactForm {
  padding: 20px;
  background: #E8F4FA;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .contacts-index-index .left {
    width: calc(100% - 310px);
  }
  .contacts-index-index .right {
    width: 310px;
  }
  .contacts-index-index .form-list.left, .contacts-index-index .form-list.right {
    width: 100%;
    float: none;
    padding: 0;
  }
  .contacts-index-index textarea[name="comment"] {
    height: 115px;
  }
  .contacts-index-index #contact-us-content {
    float: none;
    clear: both;
  }
}
@media only screen and (min-width: 1025px) {
  .contacts-index-index .left {
    width: calc(100% - 360px);
  }
  .contacts-index-index .right {
    width: 360px;
  }
  .contacts-index-index .form-list.left {
    padding-right: 15px;
    width: 45%;
    float: left;
  }
  .contacts-index-index .form-list.right {
    padding-left: 15px;
    width: 55%;
    float: left;
  }
  .contacts-index-index #contact-us-content {
    width: calc(100% - 360px);
    padding-right: 10px;
    clear: none;
    float: left;
    margin-top: -200px;
  }
}
.contacts-index-index p {
  margin-bottom: 1.5em;
}
.contacts-index-index select {
  background-color: white;
}
.contacts-index-index ul.text-list {
  margin-left: 2em;
}
.contacts-index-index .newsletter-signup > * {
  display: inline;
}

/* ============================================ *
 * PayPal
 * ============================================ */
@media only screen and (max-width: 867px) and (min-width: 768px) {
  .paypal-review-order .col2-set .col-1,
  .paypal-review-order .col2-set .col-2 {
    padding: 0px;
  }
}

.paypal-review-order .info-set {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
}
.paypal-review-order .buttons-set {
  margin-top: 0px;
  padding-top: 0px;
  border: 0;
}
.paypal-review-order .buttons-set button {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .paypal-review-order .col-1 {
    padding-bottom: 0;
  }
  .paypal-review-order .field.inactive {
    display: none;
  }
}

.top-container .bml-ad {
  margin-top: 7px;
  margin-bottom: 7px;
  text-align: center;
}
.top-container .bml-ad span {
  display: inline-block;
}
.top-container .bml-ad span a {
  display: block;
}

.bml-ad {
  display: none;
  text-align: center;
  margin-bottom: 5px;
}
.bml-ad span {
  display: block;
  line-height: 0;
}
.bml-ad a {
  display: inline-block;
  max-width: 100%;
}
.bml-ad a:hover {
  opacity: 0.7;
}
.bml-ad img {
  height: auto !important;
  max-width: 100%;
}

.cart-totals-wrapper .bml-ad.large img {
  display: block;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .bml-ad.small {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .bml-ad.large {
    display: block;
  }
}
div.paypal-logo {
  text-align: center;
  margin: 15px 0;
  max-width: 100%;
}
div.paypal-logo span {
  display: block;
  width: 100%;
}
div.paypal-logo span a {
  display: inline-block;
  max-width: 100%;
}
div.paypal-logo span a img {
  max-width: 100%;
}
div.paypal-logo span > img {
  display: none;
}

.checkout-types div.paypal-logo {
  text-align: right;
}

.bml-checkout-type {
  list-style-type: none;
}

.sidebar .paypal-logo {
  text-align: center;
  line-height: 0;
}
.sidebar .paypal-logo > a {
  display: inline-block;
  max-width: 100%;
}
.sidebar .paypal-logo > a:hover {
  opacity: 0.8;
}
.sidebar .paypal-logo > a img {
  display: block;
}
.sidebar .paypal-logo .label {
  margin-top: 4px;
}
.sidebar .paypal-logo .label a {
  font-size: 12px;
  line-height: 1.5;
}

.paypal-express-review .page-title h1 {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 1.54rem;
  padding: 0;
  text-align: left;
  vertical-align: top;
  color: #292885;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  border: none;
}
.paypal-express-review .info-set h2 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  vertical-align: middle;
  font-size: 18px;
  font-weight: bold;
}
.paypal-express-review .info-set a, .paypal-express-review .info-set h3 {
  font-size: 1rem;
}
.paypal-express-review .col2-set .col-1 {
  padding-top: 10px;
}
.paypal-express-review select {
  -moz-appearance: tabpanel;
  border: 1px solid #c8c8c8;
}
.paypal-express-review #review-buttons-container {
  border-top: none;
}
@media only screen and (max-width: 767px) {
  .paypal-express-review #review-buttons-container {
    text-align: center;
  }
}
.paypal-express-review #review_button {
  float: none;
  height: 60px;
  max-width: 290px;
  width: 100%;
  background: linear-gradient(to bottom, #389f00 1%, #357c0c 100%);
  color: white;
  font-size: 20px;
  font-weight: bold;
  box-shadow: inset 0px 1px 0px #a4e87f;
  border: 1px solid #31591b;
  text-transform: uppercase;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  margin: 0;
}
.paypal-express-review #review_button:hover {
  background: #389f00;
}
.paypal-express-review #review_button span {
  color: #fff;
}
.paypal-express-review #review_button span img {
  max-width: 17px;
  display: inline;
  margin-right: 15px;
  position: relative;
  top: 1px;
}
@media only screen and (max-width: 1024px) {
  .paypal-express-review .col1-layout .col-main {
    margin: 0 auto;
    width: 95%;
  }
}
@media only screen and (max-width: 767px) {
  .paypal-express-review .col1-layout .col-main {
    margin: 0 auto;
    width: 95%;
  }
  .paypal-express-review .col-2 .box, .paypal-express-review .col-1 .box {
    margin-bottom: 15px;
  }
  .paypal-express-review .linearize-table tfoot td:nth-child(2n+1) {
    width: 70%;
  }
  .paypal-express-review .linearize-table tfoot td:nth-child(2n) {
    width: 30%;
    text-align: right;
  }
}
.paypal-express-review #details-reload {
  border: 1px solid #dbdbdb;
  padding: 0 10px;
  margin-top: 10px;
}
.paypal-express-review #details-reload .data-table {
  border: none;
}
.paypal-express-review #details-reload .data-table h3 {
  font-size: 0.8rem;
}
.paypal-express-review #details-reload .data-table .product-name {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .paypal-express-review #details-reload .data-table .product-name {
    font-size: 13px;
    font-weight: 500;
  }
}
.paypal-express-review #details-reload .data-table th {
  background: none;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .paypal-express-review #details-reload .data-table tbody tr {
    padding-bottom: 5px;
  }
  .paypal-express-review #details-reload .data-table tbody tr td {
    padding-left: 0;
  }
  .paypal-express-review #details-reload .data-table tbody td:not(.first) {
    clear: both;
  }
}
.paypal-express-review #details-reload .data-table tfoot tr {
  background: none;
}
@media only screen and (max-width: 767px) {
  .paypal-express-review #details-reload .data-table tfoot tr td:first-child {
    text-align: left;
    padding-left: 0;
  }
  .paypal-express-review #details-reload .data-table tfoot tr td:last-child {
    text-align: right;
    padding-right: 0;
  }
}
.paypal-express-review #details-reload .data-table tfoot tr.last {
  border-top: 1px solid #CCCCCC;
  font-size: 18px;
}
.paypal-express-review #details-reload .product-image {
  padding-right: 10px;
  width: 80px;
  float: left;
}
.paypal-express-review #details-reload .product-image img {
  width: 100%;
}

/* ============================================ *
 * Review - Customer
 * ============================================ */
#customer-reviews {
  width: auto;
  float: none;
}
#customer-reviews .review-heading {
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  padding: 10px 0 5px;
}
#customer-reviews .review-heading:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .review-heading h2 {
  float: left;
  display: block;
}
#customer-reviews .review-heading .pager {
  clear: none;
  float: right;
  width: auto;
}
#customer-reviews .review-heading .pager .count-container .limiter {
  margin-bottom: 0;
}
#customer-reviews .review-heading .pager .count-container .limiter label {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}
#customer-reviews .review-heading .pager .amount {
  display: none;
}
#customer-reviews h2 {
  color: #3399CC;
  font-size: 12px;
  text-transform: uppercase;
}
#customer-reviews h2 span {
  color: #636363;
}
#customer-reviews h3 {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}
#customer-reviews h3 span {
  color: #3399CC;
}
#customer-reviews .fieldset {
  padding-top: 25px;
  width: 470px;
}
#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #CCCCCC;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  padding-bottom: 5px;
  text-transform: uppercase;
}
#customer-reviews .fieldset h4 em {
  display: none;
}
#customer-reviews .fieldset .form-list {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: uppercase;
  width: 470px;
}
#customer-reviews .fieldset .form-list .inline-label:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .fieldset .form-list label {
  font-size: 12px;
  font-weight: normal;
}
#customer-reviews .fieldset .form-list textarea {
  border: 1px solid #CCCCCC;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
}
#customer-reviews .fieldset .form-list input {
  border: 1px solid #CCCCCC;
  border-radius: 0;
}
#customer-reviews .fieldset .form-list input[type="text"] {
  width: 100%;
}
#customer-reviews .buttons-set {
  border: none;
  margin: 0;
  width: 470px;
}
#customer-reviews dl {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 10px;
}
#customer-reviews dl dt {
  margin: 10px 0;
  text-transform: uppercase;
}
#customer-reviews dl dd {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  margin: 10px 0;
}
#customer-reviews dl dd .ratings-table {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  width: 100%;
}
#customer-reviews dl dd .ratings-table tr {
  margin-right: 15px;
}
#customer-reviews dl dd .ratings-table .review-label {
  width: 300px;
  max-width: 70%;
}
#customer-reviews dl dd table {
  margin: 15px 0;
}
#customer-reviews dl dd .review-meta {
  color: #3399CC;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

.review-summary-table {
  border-bottom: 1px solid #CCCCCC;
  margin: 0 0 10px;
}
.review-summary-table thead {
  background: transparent;
}
.review-summary-table thead th {
  background: transparent;
  border: none;
  padding: 15px 7px 10px 8px;
}
.review-summary-table tbody th {
  background: #FFFFFF;
  font-size: 12px;
}
.review-summary-table tbody td {
  border: none;
  text-align: center;
  padding: 0;
}
.review-summary-table tbody td label {
  width: 100%;
  display: block;
  padding: 11px 0;
}
.review-summary-table .rating-box .rating-number {
  display: none;
}
.review-summary-table .rating-box .rating-number:after {
  content: "";
  display: inline-block;
  background-position: 0px -599px;
  width: 13px;
  height: 14px;
  margin-left: 5px;
  position: relative;
  top: 2px;
}

/* ============================================ *
 * Ratings - Global
 * ============================================ */
.ratings-table {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.ratings-table th {
  padding-right: 10px;
}
.ratings-table .rating-box {
  background-position: 0 -615px;
  background-repeat: repeat-x;
  height: 13px;
  overflow: hidden;
  text-indent: -9999px;
  width: 65px;
}
.ratings-table .rating-box .rating {
  background-position: 0 -600px;
  background-repeat: repeat-x;
  float: left;
  height: 13px;
  text-indent: -9999px;
}

@media only screen and (max-width: 767px) {
  body.review-product-list .product-view .product-shop .price-info {
    padding-left: 0;
  }
  body.review-product-list .product-view .product-shop .extra-info {
    padding: 0;
    min-width: 84%;
  }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table {
    margin: 10px 0;
    width: 100%;
  }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 535px) {
  body.review-product-list .product-view .product-shop .extra-info {
    min-width: 0;
  }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
    float: none;
    margin-right: 0;
  }
}
@media only screen and (max-width: 520px) {
  #customer-reviews .fieldset {
    width: 100%;
  }
  #customer-reviews .fieldset .form-list {
    width: 100%;
  }
  #customer-reviews .fieldset .form-list .inline-label label,
  #customer-reviews .fieldset .form-list .inline-label .input-box {
    float: none;
  }
  #customer-reviews .buttons-set {
    width: 100%;
  }
  #customer-reviews .review-summary-table thead th {
    padding-left: 0px;
    padding-right: 0px;
  }
  #customer-reviews .review-summary-table tbody th {
    padding-left: 0px;
    padding-right: 0px;
  }
  #customer-reviews .review-summary-table tbody td {
    width: 20%;
    padding: 0px;
  }
  #customer-reviews .review-summary-table .rating-box {
    text-indent: 0px;
    text-align: center;
    background: none;
    height: 19.6px;
    width: 100%;
  }
  #customer-reviews .review-summary-table .rating-box .rating {
    display: none;
  }
  #customer-reviews .review-summary-table .rating-box .rating-number {
    display: inline-block;
  }
}
@media only screen and (max-width: 450px) {
  #customer-reviews dl dd .ratings-table tr {
    float: none;
  }
}
/* ============================================ *
 * Review View Page
 * ============================================ */
.review-product-view .product-review .product-details h2 {
  border-bottom: none;
}
.review-product-view .product-review .product-img-box {
  width: auto;
  max-width: 50%;
}
.review-product-view .product-review .product-img-box > a {
  width: 100%;
}
.review-product-view .product-review .product-img-box .product-image {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .review-product-view .product-review .product-img-box {
    max-width: 100%;
  }
}
/* ============================================ *
 * Slideshow
 * ============================================ */
.slideshow-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 10px 0;
  border: 1px solid #EDEDED;
}
.slideshow-container .slideshow {
  width: 100%;
  padding: 0;
  position: relative;
  margin: 0;
  border: 10px solid #FFFFFF;
}
.slideshow-container .slideshow > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  display: block;
  margin: 0;
}
.slideshow-container .slideshow > li:first-child {
  position: static;
  z-index: 100;
}
.slideshow-container .slideshow > li img {
  max-width: 100%;
  width: 100%;
}

.slideshow-pager {
  text-align: center;
  width: 100%;
  z-index: 115;
  position: absolute;
  bottom: 0px;
  top: auto;
  overflow: hidden;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.slideshow-pager span {
  font-family: arial;
  width: 44px;
  height: 44px;
  display: inline-block;
  color: #DDDDDD;
  cursor: pointer;
}
.slideshow-pager span:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 1px;
  background-color: #FFFFFF;
  position: relative;
}
.slideshow-pager span:hover:before {
  background-color: #fbd67d;
}
.slideshow-pager span.cycle-pager-active:before {
  background-color: #fbce64;
}
.slideshow-pager > * {
  cursor: pointer;
}

.slideshow-prev,
.slideshow-next {
  position: absolute;
  top: 0;
  width: 15%;
  max-width: 80px;
  height: 100%;
  opacity: 0.6;
  z-index: 110;
  cursor: pointer;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.slideshow-prev:before,
.slideshow-next:before {
  content: '';
  width: 0;
  height: 0;
  font-size: 0;
  position: absolute;
  border-style: solid;
  display: block;
  top: 50%;
  margin-top: -15px;
}
.slideshow-prev:hover,
.slideshow-next:hover {
  opacity: 1;
}
.slideshow-prev.disabled,
.slideshow-next.disabled {
  opacity: 0.5;
  -moz-opacity: 0.5;
  cursor: default;
}

.slideshow-prev {
  left: 8px;
}
.slideshow-prev:before {
  border-width: 15px 15px 15px 0;
  border-color: transparent #FFFFFF transparent transparent;
  top: 50%;
  left: 10px;
}
.slideshow-prev:hover:before {
  border-color: transparent #fbd67d transparent transparent;
}

.slideshow-next {
  right: 8px;
}
.slideshow-next:before {
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #FFFFFF;
  top: 50%;
  right: 10px;
}
.slideshow-next:hover:before {
  border-color: transparent transparent transparent #fbd67d;
}

.cycle-caption {
  position: absolute;
  color: white;
  bottom: 15px;
  right: 15px;
  z-index: 110;
}

.cycle-overlay {
  font-family: tahoma, arial;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 120;
  background: black;
  color: white;
  padding: 15px;
  opacity: .5;
}

/* ============================================ *
 * Wishlist
 * ============================================ */
#wishlist-table th {
  text-align: center;
}
#wishlist-table.clean-table {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  width: 100%;
}
#wishlist-table.clean-table th {
  border-bottom: 1px solid #C0C0C0;
}
#wishlist-table.clean-table td {
  padding: 15px;
  vertical-align: top;
}
#wishlist-table.clean-table thead th {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
#wishlist-table .product-name {
  font-size: 16px;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: bold;
}
#wishlist-table .product-name a:hover {
  text-decoration: none;
}
#wishlist-table .wishlist-sku {
  font-size: 11px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin: 5px 0;
}
#wishlist-table textarea {
  border: 1px solid #C0C0C0;
  width: 100%;
  height: 45px;
  font-size: 11px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
#wishlist-table textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea::-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-ms-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:focus {
  border: 1px solid #3399CC;
}
#wishlist-table .item-manage {
  text-align: right;
  max-width: 450px;
  padding-top: 5px;
}
#wishlist-table .item-manage .button {
  font-size: 11px;
  padding: 3px 5px;
}
#wishlist-table .cart-cell {
  text-align: center;
}
#wishlist-table .action-links {
  text-align: center;
}
#wishlist-table .action-links span {
  margin: 0 10px;
}
#wishlist-table td.customer-wishlist-item-image {
  width: 113px;
}
#wishlist-table td.customer-wishlist-item-quantity {
  width: 3em;
}
#wishlist-table td.customer-wishlist-item-price {
  width: 120px;
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-cart {
  width: 150px;
}
#wishlist-table td.customer-wishlist-item-cart .button {
  font-size: 12px;
  margin-bottom: 10px;
  padding: 5px;
  width: 100%;
}
#wishlist-table td.customer-wishlist-item-cart .truncated {
  margin-bottom: 10px;
}
#wishlist-table td.customer-wishlist-item-cart > p {
  margin-bottom: 0;
}
#wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-cart .btn-remove {
  vertical-align: top;
}
#wishlist-table td.customer-wishlist-item-remove {
  width: 20px;
}
#wishlist-table td .button,
#wishlist-table td button {
  white-space: normal;
}
#wishlist-table .price-box {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
}
#wishlist-table .price-box .price {
  color: #636363;
}
#wishlist-table .price-box .old-price,
#wishlist-table .price-box .special-price {
  float: left;
}
#wishlist-table .price-box .old-price {
  margin-right: 20px;
}
#wishlist-table .price-box:after {
  content: '';
  display: table;
  clear: both;
}
#wishlist-table .giftregisty-add {
  margin-top: 5px;
}
#wishlist-table .giftregisty-add .change {
  display: none;
}
#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #3399CC;
  margin-bottom: 3px;
}
#wishlist-table .truncated .details {
  background: none;
  color: #3399CC;
}
#wishlist-table td[data-rwd-label]:before {
  font-weight: 600;
}

@media only screen and (max-width: 1199px) {
  #wishlist-table.clean-table td {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  #wishlist-table.clean-table td {
    padding-left: 5px;
    padding-right: 5px;
  }
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 110px;
  }
  #wishlist-table .product-name {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  #wishlist-table:after {
    content: '';
    display: table;
    clear: both;
  }
  #wishlist-table .product-name {
    font-size: 16px;
  }
  #wishlist-table textarea {
    height: 68px;
    max-width: 100%;
  }
  #wishlist-table .item-manage {
    max-width: 100%;
  }
  #wishlist-table tr {
    position: relative;
  }
  #wishlist-table tr:after {
    content: '';
    display: table;
    clear: both;
  }
  #wishlist-table td.customer-wishlist-item-image {
    width: 70px;
  }
  #wishlist-table td.customer-wishlist-item-image img {
    width: 70px;
    height: 70px;
  }
  #wishlist-table td.customer-wishlist-item-cart p {
    margin-bottom: 0;
  }
  #wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
    margin-right: 0;
    padding-top: 4px;
  }
  #wishlist-table td.customer-wishlist-item-cart {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 599px) {
  #wishlist-table td.customer-wishlist-item-quantity {
    padding-left: 0;
  }
  #wishlist-table td.customer-wishlist-item-image,
  #wishlist-table th.customer-wishlist-item-image {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  #wishlist-table tr {
    position: relative;
  }
  #wishlist-table th.customer-wishlist-item-image {
    display: block;
  }
  #wishlist-table td.customer-wishlist-item-image, #wishlist-table td.customer-wishlist-item-info, #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price, #wishlist-table td.customer-wishlist-item-cart {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    empty-cells: hide;
  }
  #wishlist-table td.customer-wishlist-item-image {
    display: block;
    overflow: hidden;
  }
  #wishlist-table td.customer-wishlist-item-image a {
    float: left;
  }
  #wishlist-table td.customer-wishlist-item-image a img {
    width: 113px;
    height: 113px;
  }
  #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price {
    text-align: left;
  }
  #wishlist-table td.customer-wishlist-item-quantity:before, #wishlist-table td.customer-wishlist-item-price:before {
    float: left;
    margin-right: 15px;
  }
  #wishlist-table td.customer-wishlist-item-quantity .cart-cell, #wishlist-table td.customer-wishlist-item-price .cart-cell {
    text-align: left;
  }
  #wishlist-table td.customer-wishlist-item-quantity .price-box, #wishlist-table td.customer-wishlist-item-price .price-box {
    margin-top: 0;
  }
  #wishlist-table td.customer-wishlist-item-cart .cart-cell {
    float: left;
    width: 48%;
  }
  #wishlist-table td.customer-wishlist-item-cart > p {
    float: right;
    width: 48%;
  }
  #wishlist-table td.customer-wishlist-item-remove {
    position: absolute;
    top: 15px;
    right: 0px;
    display: block;
    padding: 0px;
    height: 20px;
  }
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 100%;
  }
}
/* ============================================ *
 * Wishlist Sidebar
 * ============================================ */
.block-wishlist .mini-products-list > li:not(:last-child) {
  padding-bottom: 5px;
}
.block-wishlist .product-details .product-name {
  padding-top: 0;
  margin-bottom: 5px;
}
.block-wishlist .price-box {
  float: left;
  margin: 0;
}
.block-wishlist .price-box,
.block-wishlist .price-box .price,
.block-wishlist .link-cart {
  font-size: 12px;
}
.block-wishlist .link-cart {
  float: left;
  text-transform: uppercase;
  margin-right: 7px;
  padding-right: 7px;
  border-right: 1px solid #EDEDED;
}

#wishlist-view-form .buttons-set button.button {
  float: none;
}
@media only screen and (max-width: 767px) {
  #wishlist-view-form .buttons-set button.button {
    margin-left: 0;
  }
}

/* ============================================ *
 * Checkout - Mini cart
 * ============================================ */
.header-minicart .block-title.no-items #openCart {
  display: none;
}
.header-minicart .minicart-message {
  display: block;
  padding: 10px;
}
.header-minicart .empty {
  padding: 10px;
  text-align: center;
}
.header-minicart .minicart-wrapper {
  clear: both;
  position: relative;
}
.header-minicart .minicart-wrapper:before, .header-minicart .minicart-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.header-minicart .minicart-wrapper:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.header-minicart .minicart-wrapper:after {
  background-image: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.header-minicart .minicart-wrapper.loading {
  position: relative;
}
.header-minicart .minicart-wrapper.loading:before, .header-minicart .minicart-wrapper.loading:after {
  display: block;
}
.header-minicart .block-cart {
  display: none;
}
.header-minicart .block-subtitle {
  color: #50A4CF;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.header-minicart .block-subtitle .close {
  width: 40px;
  float: right;
  display: block;
  color: #636363;
  text-decoration: none;
  font-weight: normal;
  font-size: 30px;
  position: absolute;
  top: -8px;
  right: -3px;
}
.header-minicart .mini-products-list {
  padding: 10px;
  padding-top: 0px;
}
.header-minicart .mini-products-list li {
  padding: 8px 5px 8px 11px;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
}
.header-minicart .mini-products-list li.last {
  border: none;
}
.header-minicart .mini-products-list li .product-details {
  position: relative;
}
.header-minicart .mini-products-list .product-image {
  float: left;
}
.header-minicart .product-details .product-name {
  padding-top: 0px;
  font-weight: bold;
}
.header-minicart .product-details .product-name a {
  color: #3399CC;
}
.header-minicart .info-wrapper {
  margin-bottom: 0.5em;
}
.header-minicart .info-wrapper th {
  text-transform: uppercase;
  padding-right: 10px;
}
.header-minicart .info-wrapper td {
  color: #3399CC;
  clear: right;
}
.header-minicart .info-wrapper .qty-wrapper td {
  height: 33px;
  line-height: 33px;
}
.header-minicart .info-wrapper .qty {
  padding-left: 4px;
  padding-right: 4px;
  margin-right: 2px;
  width: 3.2em;
  text-align: center;
  height: 30px;
}
.header-minicart .info-wrapper .quantity-button {
  opacity: 0;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 100ms;
  -o-transition-duration: 100ms;
  -webkit-transition-duration: 100ms;
  transition-duration: 100ms;
}
.header-minicart .info-wrapper .quantity-button[disabled] {
  cursor: default;
}
.header-minicart .info-wrapper .quantity-button.visible {
  opacity: 1;
}
.header-minicart .subtotal {
  background-color: #DDDDDD;
  text-align: center;
  line-height: 2em;
}
.header-minicart .subtotal .label {
  color: white;
  text-transform: uppercase;
}
.header-minicart .subtotal .price {
  color: #3399CC;
}
.header-minicart .minicart-actions {
  padding: 10px;
  margin-top: 0px;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.header-minicart .minicart-actions .checkout-button {
  min-width: 145px;
}
.header-minicart .minicart-actions .cart-link {
  height: 33px;
  line-height: 39px;
  text-transform: uppercase;
  font-size: 13px;
}
.header-minicart .minicart-actions .paypal-logo .paypal-or {
  line-height: 1.6;
}
.header-minicart #minicart-error-message {
  text-align: center;
  color: red;
  display: none;
}
.header-minicart #minicart-success-message {
  text-align: center;
  color: green;
  display: none;
}
.header-minicart .jcarousel-control-prev,
.header-minicart .jcarousel-control-next {
  display: none;
}
.header-minicart .action-links .paypal-logo img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .header-minicart .action-links > * {
    float: right;
    clear: both;
  }
  .header-minicart .action-links .paypal-logo,
  .header-minicart .action-links .paypal-or {
    text-align: right;
  }
}
@media only screen and (min-width: 768px) {
  .header-minicart {
    display: inline-block;
    float: right;
    position: absolute;
    background: #d6d6d6;
    background: -moz-linear-gradient(top, #d6d6d6 0%, white 100%);
    background: -webkit-linear-gradient(top, #d6d6d6 0%, white 100%);
    background: linear-gradient(to bottom, #d6d6d6 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6d6d6', endColorstr='#ffffff',GradientType=0 );
    border: 1px solid #c2c2c2;
    width: 130px;
    min-height: 30px;
    right: 10px;
    bottom: 0;
    padding: 0 16px 0 19px;
  }
  .header-minicart .product-details > h4 {
    width: calc(100% - 52px - 10px);
    float: left;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .header-minicart {
    width: auto;
    min-width: 130px;
    clear: both;
    margin-top: 10px;
    position: absolute;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header-minicart {
    display: block;
    right: 15px;
  }
  .header-minicart #cartHeader .icon {
    display: none !important;
  }
}

.header-minicart.skip-active .block-cart,
.block-cart.skip-active {
  display: block;
}

#cartHeader #openCart {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}

@media only screen and (min-width: 768px) {
  .checkout-types.minicart {
    float: none;
    text-align: center;
  }

  #ajax-cart #cartHeader .icon {
    display: block !important;
    float: right;
    margin-top: 6px;
    margin-left: 0;
  }
  #ajax-cart #cartHeader a {
    margin-left: 0 !important;
    position: relative;
    top: 1px;
  }
  #ajax-cart #cartHeader strong {
    font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  }
  #ajax-cart #topCartContent {
    width: 400px;
  }
  #ajax-cart #topCartContent .inner-wrapper {
    width: auto;
  }
  #ajax-cart #topCartContent .bottom {
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  #topCartContent {
    right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #topCartContent {
    top: 40px;
    right: 10px;
  }
}
@media only screen and (max-width: 479px) {
  .header-minicart a.skip-cart {
    z-index: 1;
  }
}
@media only screen and (max-width: 767px) {
  .header-minicart #topCartContent {
    position: initial !important;
    margin-top: 0;
  }
  .header-minicart #ajax-cart .inner-wrapper {
    width: 100%;
  }
  .header-minicart #ajax-cart .bottom {
    display: none;
  }
  .header-minicart #cartHeader {
    position: absolute;
    cursor: pointer;
    top: 90px;
    right: calc(25%/2);
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    line-height: 50px !important;
  }
  .header-minicart #cartHeader a:not(#openCart) {
    display: none;
  }
  .header-minicart #cartHeader #openCart {
    font-size: 14px !important;
    pointer-events: none;
  }
  .header-minicart .subtotal .label {
    color: #636363;
  }
  .header-minicart .minicart-wrapper:before {
    background-color: #EDEDED;
  }
  .header-minicart .quantity-button {
    float: none;
  }
  .header-minicart .header-minicart .block-cart {
    padding: 15px;
  }
  .header-minicart .header-minicart .block-subtitle {
    padding-top: 59px;
  }
  .header-minicart .minicart-actions {
    padding-bottom: 33px;
  }
  .header-minicart .minicart-actions .cart-link {
    bottom: 0;
    right: 10px;
    position: absolute;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li {
    display: inline-block;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo > a {
    display: inline;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .bml_button {
    display: inline-block;
    vertical-align: top;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    width: auto;
    float: none;
    display: inline;
    margin: 0 10px 5px 10px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 740px) {
  .header-minicart .minicart-actions .cart-link {
    right: auto;
    left: 0;
    text-align: center;
    width: 100%;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or,
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-button {
    width: 100%;
    display: block;
    margin-left: 0;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    line-height: 1.6;
  }
}
@media only screen and (max-width: 599px) {
  .header-minicart .minicart-actions .checkout-button {
    width: 100%;
  }
}
#ajax-cart .mini-products-list button {
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/dmf_checkout.png) repeat-x;
  border: 1px solid #26570c;
  color: #fff;
  font-weight: bold;
  padding: 12px 15px;
  width: 268px;
  border-radius: 3px;
  font-size: 24px;
}

.header-minicart {
  padding: 0;
}
.header-minicart #ajax-cart {
  padding: 0 14px;
}

/* ============================================ *
 * Search - Auto Suggest
 * ============================================ */
.search-autocomplete {
  left: 0 !important;
  overflow: visible !important;
  position: relative !important;
  top: 15px !important;
  width: 100% !important;
  z-index: 200;
}
.search-autocomplete ul {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #3399CC;
  left: 0;
  padding-left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.search-autocomplete ul li {
  border-bottom: 1px solid #F4F4F4;
  color: #3399CC;
  cursor: pointer;
  font-size: 12px;
  padding: 4px 6px;
  text-align: left;
}
.search-autocomplete ul li:hover {
  color: #2e8ab8;
}
.search-autocomplete ul li.selected {
  background-color: #3399CC;
  color: white;
}
.search-autocomplete ul li .amount {
  float: right;
  font-weight: bold;
}
.search-autocomplete ul li:last-child {
  border-bottom: none;
}
.search-autocomplete:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #3399CC;
  border-top: none;
  left: 50%;
  top: -7px;
}

/* ============================================ *
 * Search - Advanced
 * ============================================ */
.advanced-search {
  background: #F4F4F4;
  border: 1px solid #EDEDED;
  padding: 30px;
}
.advanced-search select.multiselect option {
  border-bottom: 1px solid #EDEDED;
  padding: 2px 5px;
}

@media only screen and (max-width: 479px) {
  .advanced-search {
    padding: 15px;
  }
}
/* ============================================ *
 * Account - Reviews
 * ============================================ */
.product-review .product-img-box p.label {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-top: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.product-review .product-img-box .rating-box {
  margin: 15px 0;
}
.product-review .product-details h2 {
  border-bottom: 1px solid #CCCCCC;
  color: #3399CC;
  font-size: 16px;
  font-weight: 600;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  padding-bottom: 10px;
}
.product-review .ratings-table {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.product-review .ratings-table th {
  padding-right: 10px;
}
.product-review .ratings-table tr {
  float: left;
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase;
}
.product-review .ratings-description dt {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-top: 20px;
  padding: 10px 0;
  text-transform: uppercase;
}
.product-review .ratings-description dd {
  color: #737373;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
}

@media only screen and (min-width: 768px) {
  .product-review .ratings-table tr {
    float: none;
  }
}
@media only screen and (min-width: 1126px) {
  .product-review .ratings-table tr {
    float: left;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 320px) {
  .product-review .ratings-table tr {
    float: none;
  }
}
/* ============================================ *
 * CMS Pages
 * ============================================ */
.cms-page-view,
.cms-no-route,
.contacts-index-index {
  font-style: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cms-page-view .page-title h1,
.cms-page-view .page-head h1,
.cms-no-route .page-title h1,
.cms-no-route .page-head h1,
.contacts-index-index .page-title h1,
.contacts-index-index .page-head h1 {
  font-size: 26px;
  font-weight: 300;
  color: #525252;
  text-transform: uppercase;
  padding: 10px 0;
  border: none;
}
.cms-page-view .std h1,
.cms-no-route .std h1,
.contacts-index-index .std h1 {
  color: #636363;
}
.cms-page-view .std img,
.cms-no-route .std img,
.contacts-index-index .std img {
  max-width: 100%;
}
.cms-page-view .std a,
.cms-no-route .std a,
.contacts-index-index .std a {
  color: #4C7F93;
}
.cms-page-view .std a:hover,
.cms-no-route .std a:hover,
.contacts-index-index .std a:hover {
  text-decoration: underline;
}
.cms-page-view .std p,
.cms-no-route .std p,
.contacts-index-index .std p {
  color: #636363;
  line-height: 24px;
  fon-size: 12px;
}
.cms-page-view .std li,
.cms-no-route .std li,
.contacts-index-index .std li {
  color: #636363;
  font-size: 14px;
  line-height: 24px;
}
.cms-page-view .col-left:after,
.cms-no-route .col-left:after,
.contacts-index-index .col-left:after {
  content: '';
  display: table;
  clear: both;
}
.cms-page-view .left,
.cms-page-view .right,
.cms-no-route .left,
.cms-no-route .right,
.contacts-index-index .left,
.contacts-index-index .right {
  float: left;
}
.cms-page-view .left,
.cms-no-route .left,
.contacts-index-index .left {
  clear: left;
  padding-right: 10px;
}
.cms-page-view .right,
.cms-no-route .right,
.contacts-index-index .right {
  clear: right;
  padding-left: 10px;
}
.cms-page-view .section:after,
.cms-no-route .section:after,
.contacts-index-index .section:after {
  content: '';
  display: table;
  clear: both;
}
.cms-page-view h3.title,
.cms-no-route h3.title,
.contacts-index-index h3.title {
  color: white;
  font-weight: 500;
  background: #292885;
  padding: 6px 10px;
  margin-top: 1px;
  margin-bottom: 20px;
}
.cms-page-view p,
.cms-no-route p,
.contacts-index-index p {
  text-align: justify;
}
.cms-page-view ul.text-list li,
.cms-no-route ul.text-list li,
.contacts-index-index ul.text-list li {
  margin-bottom: 15px;
  list-style-type: disc;
}
.cms-page-view ul.image-list li,
.cms-no-route ul.image-list li,
.contacts-index-index ul.image-list li {
  float: left;
  list-style-type: none;
}
.cms-page-view ul.image-list:after,
.cms-no-route ul.image-list:after,
.contacts-index-index ul.image-list:after {
  content: '';
  display: table;
  clear: both;
}
@media only screen and (max-width: 767px) {
  .cms-page-view .left,
  .cms-page-view .right,
  .cms-no-route .left,
  .cms-no-route .right,
  .contacts-index-index .left,
  .contacts-index-index .right {
    float: none;
  }
  .cms-page-view .left,
  .cms-no-route .left,
  .contacts-index-index .left {
    padding-right: 0;
  }
  .cms-page-view .right,
  .cms-no-route .right,
  .contacts-index-index .right {
    padding-left: 0;
  }
  .cms-page-view .col-main,
  .cms-no-route .col-main,
  .contacts-index-index .col-main {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.cms-no-route .std img {
  width: 100%;
}

.cms-page-view .std .messages,
.cms-home .std .messages,
.cms-no-route .std .messages {
  margin-bottom: 10px;
}
.cms-page-view .std .messages ul,
.cms-home .std .messages ul,
.cms-no-route .std .messages ul {
  margin-bottom: 0;
}
.cms-page-view .std .messages li,
.cms-home .std .messages li,
.cms-no-route .std .messages li {
  list-style: none;
  margin-left: 0;
  font-style: normal;
}

#accordion .toggle-tabs {
  display: none;
}
#accordion > dl > dt {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px 7px 24px;
  position: relative;
  background-color: #3399CC;
  color: white;
  font-size: 14px;
  cursor: pointer;
  display: block;
}
#accordion > dl > dt:after {
  left: 10px;
  font-size: 18px;
  line-height: 18px;
  position: absolute;
}
#accordion > dl > dt:not(.active):after {
  content: "+";
}
#accordion > dl > dt.active:after {
  content: "-";
}
#accordion > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #CCCCCC;
}
#accordion > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}
#accordion li {
  position: relative;
  overflow: hidden;
}
#accordion li .plusimage h2 {
  margin-right: 10px;
}

.page-sitemap .links {
  display: block;
  text-align: right;
  margin: 0 20px 0 0;
}
.page-sitemap .links a {
  position: relative;
}
.page-sitemap .sitemap {
  padding: 0 20px;
  margin: 15px 0;
  font-size: 12px;
}
.page-sitemap .sitemap li {
  margin: 3px 0;
}

.contacts-index-index h1 {
  border: none;
}

#contactForm:after {
  content: '';
  display: table;
  clear: both;
}
#contactForm .fieldset .legend + .required {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  #contactForm {
    padding-left: 0;
  }
}
.cms-two-column-right .page-title h1 {
  border-top: 2px solid #EAE6E6;
  border-bottom: 2px solid #EAE6E6;
}
.cms-two-column-right .col-main {
  width: 65%;
  margin-right: 5%;
}
.cms-two-column-right .col-right {
  width: 30%;
}
.cms-two-column-right section.blog {
  margin-bottom: 35px;
}
.cms-two-column-right section.blog .header {
  margin-bottom: 15px;
}
.cms-two-column-right section.blog .header .left,
.cms-two-column-right section.blog .header .right {
  display: inline-block;
  float: left;
}
.cms-two-column-right section.blog .header .left {
  margin-right: 15px;
}
.cms-two-column-right section.blog .header .left .date {
  height: 25px;
  line-height: 25px;
  background: #beb8b7;
  color: white;
  padding: 0 20px;
  display: block;
}
.cms-two-column-right section.blog .header .right h1 {
  margin-bottom: 10px;
  line-height: 25px;
  font-size: 18px;
}
.cms-two-column-right section.blog .header .right h1 a {
  color: #525252;
}
.cms-two-column-right section.blog .header .right .author i {
  color: #555;
}
.cms-two-column-right section.blog .header .right .author em {
  color: #BEB8B7;
}
.cms-two-column-right section.blog .header:after {
  content: '';
  display: table;
  clear: both;
}
.cms-two-column-right section.blog .content .image {
  margin-bottom: 15px;
}
.cms-two-column-right section.blog .content .image img {
  margin: auto;
  width: 100%;
  max-width: 555px;
}
.cms-two-column-right section.blog .content .summary {
  margin: auto;
  width: 100%;
  max-width: 555px;
}
.cms-two-column-right section.blog .content .read-more {
  text-align: right;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  color: #4C7F93;
}

.cms-discounted-trade-lighting-program .guide-body #header-box {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)) repeat scroll 0 0%, transparent url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/b2b-header.jpg") no-repeat center center;
  color: #fff;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
@media only screen and (min-width: 768px) {
  .cms-discounted-trade-lighting-program .guide-body #header-box {
    padding: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .cms-discounted-trade-lighting-program .guide-body #header-box {
    padding: 15px;
  }
}
.cms-discounted-trade-lighting-program .guide-body #header-box h1 {
  color: #fff;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}
.cms-discounted-trade-lighting-program .guide-body #header-box h1 span {
  font-size: 0.5em;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  display: block;
  line-height: 1.15;
  margin: 8px 0;
  position: relative;
}
.cms-discounted-trade-lighting-program .guide-body #header-box #discount-signup {
  display: block;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  height: 30px;
  line-height: 30px;
  outline: medium none;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  width: 180px;
  color: #fff;
}
.cms-discounted-trade-lighting-program .guide-body #header-box #discount-signup:after {
  content: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/full-down-arrow.png");
  display: inline-block;
  float: right;
}
.cms-discounted-trade-lighting-program .guide-body #header-box #discount-signup:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 479px) {
  .cms-discounted-trade-lighting-program .guide-body #header-box h1,
  .cms-discounted-trade-lighting-program .guide-body #header-box #discount-signup {
    font-size: 18px;
  }
}
.cms-discounted-trade-lighting-program .guide-body .main-content {
  margin: 32px auto;
  text-align: center;
}
.cms-discounted-trade-lighting-program .guide-body .main-content span.heading {
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
}
.cms-discounted-trade-lighting-program .guide-body .main-content span.heading:after {
  border-top: 2px solid #c0c0c0;
  content: "";
  display: block;
  margin: 12px auto;
  width: 15%;
}
.cms-discounted-trade-lighting-program .guide-body .main-content span.sub-heading, .cms-discounted-trade-lighting-program .guide-body .main-content h2 {
  color: #2b2d82;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 32px;
}
.cms-discounted-trade-lighting-program .guide-body .main-content ul {
  display: block;
  font-size: 16px;
  margin: 0 auto;
}
.cms-discounted-trade-lighting-program .guide-body .main-content ul li {
  display: block;
  line-height: 26px;
  margin-bottom: 4px;
  text-align: left;
  font-size: 15px;
}
@media only screen and (min-width: 1025px) {
  .cms-discounted-trade-lighting-program .guide-body .main-content ul li {
    text-indent: 120px;
  }
}
.cms-discounted-trade-lighting-program .guide-body .main-content ul li:before {
  content: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/single_arrow.png");
  padding-left: 2px;
  padding-right: 12px;
}
@media only screen and (max-width: 767px) {
  .cms-discounted-trade-lighting-program .guide-body .main-content ul li {
    margin-left: 0;
  }
}
.cms-discounted-trade-lighting-program .guide-body #form-view {
  display: block;
  margin: 32px auto;
  overflow: hidden;
  transition: all 0.25s ease 0s;
}
.cms-discounted-trade-lighting-program .guide-body #form-view em.required {
  color: #DF280A;
  font-size: 12px;
}
@media only screen and (min-width: 768px) {
  .cms-discounted-trade-lighting-program .guide-body #form-view {
    width: 76%;
  }
}
.cms-discounted-trade-lighting-program .guide-body #form-view #innerForm {
  display: block;
  height: 100%;
  position: relative;
  z-index: 1;
}
.cms-discounted-trade-lighting-program .guide-body #form-view #innerForm:after {
  content: '';
  display: table;
  clear: both;
}
.cms-discounted-trade-lighting-program .guide-body #form-view #innerForm.step-1 {
  margin-left: 0;
  transition: all 0.25s ease 0s;
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box {
  background-color: #f3f1f2;
  display: block;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 16px;
  height: 100%;
  padding: 30px 100px;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .cms-discounted-trade-lighting-program .guide-body #form-view .main-box {
    padding: 30px 80px;
  }
}
@media only screen and (max-width: 767px) {
  .cms-discounted-trade-lighting-program .guide-body #form-view .main-box {
    padding: 30px 15px;
  }
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box span.sub-heading {
  color: #606060;
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 300;
  display: block;
  margin-bottom: 20px;
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field {
  margin-bottom: 30px;
  text-align: left;
  position: relative;
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field .validation-advice {
  position: absolute;
  bottom: calc(100% + 10px);
  background: rgba(255, 0, 0, 0.5);
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
  max-width: 100%;
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field .validation-advice:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid #000000;
  border-bottom: none;
  top: 100%;
  left: 50%;
  border-top-color: rgba(255, 0, 0, 0.5);
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field #phone_number_extension + .validation-advice {
  right: 0;
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field #phone_number_extension + .validation-advice:after {
  right: calc(55px/2);
  left: initial;
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field.first {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field {
    margin-bottom: 15px;
  }
  .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field.first {
    margin-top: 15px;
  }
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field label {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  padding-right: 24px;
  text-align: right;
  vertical-align: middle;
  width: 155px;
  float: left;
  clear: left;
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field label em.required {
  position: relative;
  top: -5px;
}
@media only screen and (max-width: 767px) {
  .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field label {
    font-size: 14px;
    width: 110px;
    padding-right: 10px;
  }
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field input, .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field select, .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field textarea {
  height: 36px;
  outline: 1px solid #c8c8c8;
  border: medium;
  width: calc(100% - 155px);
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field input:focus, .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field input:focus, .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field input:focus, .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field select:focus, .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field select:focus, .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field select:focus, .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field textarea:focus, .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field textarea:focus, .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field textarea:focus {
  outline: 2px solid #c8c8c8;
  border: medium;
}
@media only screen and (max-width: 767px) {
  .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field input, .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field select, .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field textarea {
    width: calc(100% - 110px);
    max-width: initial;
  }
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field textarea {
  height: 72px;
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field select {
  -moz-appearance: tabpanel;
  background-color: #fff;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field #phone_number_extension {
  width: 55px;
}
@media only screen and (min-width: 401px) {
  .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field #phone {
    float: left;
    margin-right: 20px;
    width: calc(100% - 155px - 20px - 55px - 55px);
  }
}
@media only screen and (min-width: 401px) and (max-width: 767px) {
  .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field #phone {
    width: calc(100% - 110px - 20px - 34px - 55px);
  }
}
@media only screen and (min-width: 401px) {
  .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field label[for="phone_number_extension"] {
    clear: none;
    width: initial;
  }
}
@media only screen and (max-width: 400px) {
  .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field label[for="phone"],
  .cms-discounted-trade-lighting-program .guide-body #form-view .main-box .field #phone {
    margin-bottom: 15px;
  }
}
.cms-discounted-trade-lighting-program .guide-body #form-view .main-box .main-form-button {
  display: block;
  margin: 36px auto;
  position: relative;
  text-align: center;
}
.cms-discounted-trade-lighting-program .guide-body #form-view h3, .cms-discounted-trade-lighting-program .guide-body #form-view span.heading {
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: uppercase;
}
.cms-discounted-trade-lighting-program .guide-body #form-view h3:after, .cms-discounted-trade-lighting-program .guide-body #form-view span.heading:after {
  border-top: 2px solid #C0C0C0;
  box-sizing: border-box;
  content: "";
  display: block;
  margin: 12px auto;
  position: relative;
  width: 120px;
}
.cms-discounted-trade-lighting-program .guide-body #form-view .button {
  background-color: #2a2c83;
  box-sizing: border-box;
  display: block;
  height: 54px;
  margin: 0 auto;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s ease 0s;
  width: 300px;
}
.cms-discounted-trade-lighting-program .guide-body #form-view .button span {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .cms-discounted-trade-lighting-program .guide-body #form-view .button {
    width: 100%;
    height: initial;
  }
  .cms-discounted-trade-lighting-program .guide-body #form-view .button span {
    font-size: initial;
  }
}
.cms-discounted-trade-lighting-program .guide-body #call-box {
  display: block;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-bottom: 32px;
  position: relative;
  text-align: center;
  width: 100%;
}
.cms-discounted-trade-lighting-program .guide-body #call-box span {
  color: #606060;
  display: block;
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 300;
  margin: 12px auto;
  position: relative;
}
.cms-discounted-trade-lighting-program .guide-body #call-box .number {
  color: #606060;
  font-size: 1.25rem;
  font-weight: 700;
  outline: medium none;
  text-decoration: none;
  transition: all 0.25s ease 0s;
}
.cms-discounted-trade-lighting-program .guide-body #call-box .number:hover {
  color: #292885;
}

@media only screen and (min-width: 768px) {
  .cms-about-us .main-container {
    max-width: 1019px;
    background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/page-row-bg.png) no-repeat;
    background-size: 100% auto;
    background-position: 0 35px;
  }
  .cms-about-us .main-container .main {
    padding: 0 15px;
  }
  .cms-about-us .main-container .col-left,
  .cms-about-us .main-container .col-main {
    padding-top: 5px;
    margin-bottom: 0;
    margin-top: 20px;
  }
  .cms-about-us .main-container .col-left:not(.col-left-first) {
    padding-top: 0;
  }
  .cms-about-us .main-container .col-main {
    padding-right: 10px;
  }
}
.cms-about-us b {
  color: black;
}
.cms-about-us .section a {
  font-weight: bold;
}
.cms-about-us .section ul.image-list {
  display: table;
  width: 100%;
}
.cms-about-us .section ul.image-list li {
  display: table-cell;
  width: 25%;
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .cms-about-us .section ul.image-list li {
    width: initial;
  }
}
.cms-about-us .section ul.image-list li img {
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .cms-about-us .section ul.image-list li img {
    height: 85px;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 599px) {
  .cms-about-us .section ul.image-list li img {
    height: 60px;
  }
}
@media only screen and (max-width: 479px) {
  .cms-about-us .section ul.image-list li img {
    height: 35px;
  }
}
@media only screen and (min-width: 768px) {
  .cms-about-us .section > .left {
    width: calc(100% - 310px);
  }
  .cms-about-us .section > .right {
    width: 310px;
  }
}
@media only screen and (min-width: 1025px) {
  .cms-about-us .section > .left {
    width: calc(100% - 360px);
  }
  .cms-about-us .section > .right {
    width: 360px;
  }
}

@media only screen and (max-width: 1024px) {
  .header-img {
    display: none;
  }
}
#contact-info-block,
#social-media-block {
  background: #E8F4FA;
  margin-bottom: 20px;
  font-size: 12px;
  width: 100%;
}
#contact-info-block tr td,
#social-media-block tr td {
  padding: 0 10px 20px;
  vertical-align: top;
}
#contact-info-block tr td:first-child,
#social-media-block tr td:first-child {
  width: 52px;
}
#contact-info-block tr td:first-child a,
#social-media-block tr td:first-child a {
  display: block;
}
#contact-info-block tr td:first-child img,
#social-media-block tr td:first-child img {
  width: 100%;
  padding-top: 2px;
}
#contact-info-block tr td:last-child,
#social-media-block tr td:last-child {
  padding-left: 0;
}
#contact-info-block tr:first-child td,
#social-media-block tr:first-child td {
  padding-top: 20px;
}
@media only screen and (max-width: 479px) {
  #contact-info-block br,
  #social-media-block br {
    display: none;
  }
}

.cms-sitemap .section h3 {
  color: black;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .cms-sitemap .section .list > *:not(:nth-child(3n)) {
    margin-right: 2.02224% !important;
  }
  .cms-sitemap .section .list > *:nth-child(3n) {
    margin-right: 0 !important;
  }
  .cms-sitemap .section .list > * {
    width: 31.98517% !important;
    float: left !important;
    display: inline-block !important;
  }
}
@media only screen and (max-width: 767px) {
  .cms-sitemap .section .list ul {
    margin-bottom: 0;
  }
}
.cms-sitemap .section .list:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Pricing Conditions
 * ============================================ */
.price-box .minimal-price-link .label {
  color: #CF5050;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.map-info {
  white-space: nowrap;
}

.catalog-product-view .map-info {
  white-space: normal;
}
.catalog-product-view .map-info > span {
  float: right;
  margin-bottom: 5px;
}
.catalog-product-view .map-info .price-box.map-info > a {
  float: right;
  width: 100%;
}

/* ============================================ *
 * Cookies
 * ============================================ */
.notice-cookie .notice-inner {
  padding-bottom: 0;
}
.notice-cookie .notice-inner:after {
  content: '';
  display: table;
  clear: both;
}
.notice-cookie .notice-text {
  float: left;
  max-width: 90%;
  padding-top: 4px;
  text-align: left;
}
.notice-cookie .notice-text p {
  padding-bottom: 14.5px;
  line-height: 1.3;
}
.notice-cookie .actions {
  float: left;
  text-align: right;
  padding-bottom: 14.5px;
}

@media only screen and (max-width: 1024px) {
  .notice-cookie .notice-text {
    max-width: 86%;
  }
}
@media only screen and (max-width: 767px) {
  .notice-cookie {
    padding: 0 20px;
  }
  .notice-cookie .notice-text {
    max-width: 82%;
    padding-top: 0;
  }
}
@media only screen and (max-width: 620px) {
  .notice-cookie {
    padding: 0 20px;
  }
  .notice-cookie .notice-inner {
    background-position: left 10px;
  }
  .notice-cookie .notice-inner:after {
    content: '';
    display: table;
    clear: both;
  }
  .notice-cookie .notice-text {
    float: none;
    max-width: 100%;
    padding-top: 0;
  }
  .notice-cookie .actions {
    text-align: left;
  }
}
/* ============================================ *
 * Tags
 * ============================================ */
#addTagForm button {
  margin-top: 5px;
  margin-bottom: 10px;
}

#addTagForm .form-add {
  margin-top: 10px;
}

.product-tags {
  background-color: #F4F4F4;
  border: 1px solid #CCCCCC;
  float: left;
  margin-bottom: 10px;
  padding: 5px 1% 10px;
  width: 98%;
}

.product-tags li {
  float: left;
  margin-right: 15px;
}

.product-tags li.last {
  margin-right: 0px;
}

.tags-list {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

.tags-list > li {
  float: left;
  margin-right: 10px;
}

.block-tags .actions > a {
  font-size: 12px;
}

.my-tag-edit .button.btn-remove {
  padding: 0;
}
.my-tag-edit .button.btn-remove:after {
  color: white;
}

@media only screen and (max-width: 767px) {
  .tags-list > li,
  .tags-list {
    float: none;
  }
}
/* ============================================ *
 * Captcha
 * ============================================ */
.captcha-note {
  clear: left;
  padding-top: 5px;
}

.captcha-image {
  float: left;
  display: inline;
  max-width: 100%;
  position: relative;
  width: 258px;
  margin-bottom: 10px;
}

.captcha-image .captcha-img {
  border: 1px solid #b6b6b6;
  vertical-align: bottom;
  width: 100%;
}

.registered-users .captcha-image {
  margin: 0;
}

.captcha-reload {
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 2px;
}

.captcha-reload.refreshing {
  animation: rotate 1.5s infinite linear;
  -webkit-animation: rotate 1.5s infinite linear;
  -moz-animation: rotate 1.5s infinite linear;
}

.customer-account-create .scaffold-form .captcha-input-container label:first-child {
  width: 100%;
}

.captcha-reload {
  position: absolute;
  right: 4px;
  top: 4px;
}

.captcha-img {
  border: 20px solid #bbb;
}

.captcha-input-container {
  margin-bottom: 10px;
}

.control.newsletter-box, .captcha-input-container, .captcha-img-container {
  float: none;
  clear: both;
}
.control.newsletter-box:after, .captcha-input-container:after, .captcha-img-container:after {
  content: '';
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Checkout Billing Fix to place the Captcha properly
 * ============================================ */
#co-billing-form ul.form-list > .control {
  float: left;
  margin: 0 0 5px;
  width: 100%;
}

/* ============================================ *
 * Account - Orders, Invoices, Credit Memos.
 * ============================================ */
@media only screen and (max-width: 479px) {
  .sales-order-invoice .sub-title,
  .sales-order-creditmemo .sub-title,
  .sales-order-shipment .sub-title {
    float: left;
    font-size: 15px;
    text-align: center;
    width: 100%;
  }
  .sales-order-invoice .order-links,
  .sales-order-creditmemo .order-links,
  .sales-order-shipment .order-links {
    text-align: center;
    width: 100%;
  }
}
/* ============================================ *
 * Recurring Profiles
 * ============================================ */
#recurring_profile_list_view th {
  white-space: normal;
}
#recurring_profile_list_view th span {
  white-space: inherit;
}
@media only screen and (max-width: 479px) {
  #recurring_profile_list_view {
    font-size: 12px;
  }
  #recurring_profile_list_view a {
    font-size: inherit;
  }
  #recurring_profile_list_view th,
  #recurring_profile_list_view td {
    padding: 2px;
  }
}

.recurring-profiles-title {
  float: left;
}
.recurring-profiles-title h1 {
  margin-bottom: 7px;
}

body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
  float: right;
  text-align: right;
  margin-bottom: 30px;
}
@media only screen and (max-width: 479px) {
  body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
    text-align: center;
    float: none;
  }
}
body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons .button {
  position: static;
}

.recurring-profiles-messages:after {
  content: '';
  display: table;
  clear: both;
}

#recurring_start_date_trig {
  display: inline;
}

/* ============================================ *
 * Billing Agreements
 * ============================================ */
.billing-agreements .info-box {
  margin-bottom: 30px;
}
.billing-agreements .info-box:after {
  content: '';
  display: table;
  clear: both;
}
.billing-agreements .info-box .form-list {
  max-width: 400px;
  width: 100%;
}
.billing-agreements .info-box .box-title {
  margin-top: 20px;
  margin-bottom: 7px;
}
.billing-agreements .info-box .button {
  float: right;
  margin-top: 7px;
}
@media only screen and (max-width: 479px) {
  .billing-agreements .info-box .button {
    width: 100%;
    float: none;
  }
}
.billing-agreements #payment_method {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 7px;
}

.billing-agreement-view-header-wrapper .heading {
  max-width: 80%;
}
@media only screen and (max-width: 479px) {
  .billing-agreement-view-header-wrapper .heading {
    max-width: 100%;
  }
}

.billing-agreement-details td, .billing-agreement-details th {
  padding: 3.5px;
}

@media only screen and (max-width: 1024px) {
  .billing-agreements .data-table .created-at,
  .billing-agreements .data-table .updated-at {
    display: none;
  }
}
/* ============================================ *
 * Popular Search Terms Cloud
 * ============================================ */
.catalogsearch-term-popular .tags-list {
  float: left;
  width: 100%;
}

.catalogsearch-term-popular .tags-list > li {
  float: left;
  height: 40px;
  margin-right: 25px;
}

/* ============================================ *
 * Widgets
 * ============================================ */
/* -------------------------------------------- *
 * Add to cart by SKU
 */
.sidebar .widget-addbysku .sku-table .input-text:not(.qty) {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .sidebar .widget-addbysku .sku-table .input-text:not(.qty) {
    max-width: 100px;
  }
}

.widget {
  clear: both;
}

.widget .pager {
  float: none;
  width: 100%;
}

@media only screen and (min-width: 1199px) {
  .col2-left-layout .col-main .widget,
  .col2-right-layout .col-main .widget,
  .col3-layout .col-main .widget {
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
    width: 23.33333%;
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
    clear: left;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
    margin-right: 0;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
    width: 18.22222%;
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
    clear: left;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 767px) {
  .col1-layout .col-main .widget {
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
    width: 23.33333%;
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
    clear: left;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
    margin-right: 0;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
    width: 18.22222%;
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
    clear: left;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
    margin-right: 0;
  }
}
/* ============================================ *
 * Checkout - Multiple Addresses
 * ============================================ */
body[class*="checkout-multishipping-"] .checkout-progress {
  width: 100%;
  float: left;
  margin-bottom: 25px;
}
body[class*="checkout-multishipping-"] .checkout-progress > li {
  float: left;
  width: 20%;
  text-align: center;
  padding: 8px 1% 6px;
  background: #F4F4F4;
  text-transform: uppercase;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  margin-bottom: 10px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.active {
  background-color: #DDDDDD;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.last {
  border-right: 0px;
}
body[class*="checkout-multishipping-"] .page-title {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .page-title h1 {
  border: 0 none;
  float: left;
  margin-top: 2px;
  margin-right: 2%;
}
body[class*="checkout-multishipping-"] .page-title .button {
  float: right;
}
body[class*="checkout-multishipping-"] .multiple-checkout > h2 {
  text-transform: none;
  font-size: 17px;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .messages {
  float: left;
  width: 100%;
}
body[class*="checkout-multishipping-"] .col-2.col-wide {
  width: 66%;
}
body[class*="checkout-multishipping-"] .col-1.col-narrow {
  width: 30%;
}
body[class*="checkout-multishipping-"] .actions {
  margin-bottom: 10px;
}
body[class*="checkout-multishipping-"] .grand-total {
  text-align: right;
  font-size: 16px;
  font-weight: bold;
}
body[class*="checkout-multishipping-"] #checkout-review-submit {
  float: right;
}
body[class*="checkout-multishipping-"] #review-buttons-container {
  float: right;
  text-align: right;
}

.checkout-multishipping-addresses .btn-remove2 {
  text-indent: -5555px;
  display: block;
  width: 22px;
  height: 22px;
}

.checkout-multishipping-shipping .gift-messages {
  margin-top: 20px;
}
.checkout-multishipping-shipping .gift-messages-form {
  margin-top: 15px;
}
.checkout-multishipping-shipping .gift-messages-form h4 {
  margin-top: 15px;
  margin-bottom: 5px;
}
.checkout-multishipping-shipping .gift-messages-form .form-list {
  margin-top: 10px;
  margin-bottom: 25px;
}
.checkout-multishipping-shipping .gift-messages-form .item {
  margin-top: 15px;
}

.checkout-multishipping-shipping .col-1 .box-title h2, .checkout-multishipping-shipping .col-1 .box-title h3, .checkout-multishipping-shipping .col-1 .box-title h4, .checkout-multishipping-shipping .col-2 .box-title h2, .checkout-multishipping-shipping .col-2 .box-title h3, .checkout-multishipping-shipping .col-2 .box-title h4,
.checkout-multishipping-billing .col-1 .box-title h2,
.checkout-multishipping-billing .col-1 .box-title h3,
.checkout-multishipping-billing .col-1 .box-title h4,
.checkout-multishipping-billing .col-2 .box-title h2,
.checkout-multishipping-billing .col-2 .box-title h3,
.checkout-multishipping-billing .col-2 .box-title h4,
.checkout-multishipping-overview .col-1 .box-title h2,
.checkout-multishipping-overview .col-1 .box-title h3,
.checkout-multishipping-overview .col-1 .box-title h4,
.checkout-multishipping-overview .col-2 .box-title h2,
.checkout-multishipping-overview .col-2 .box-title h3,
.checkout-multishipping-overview .col-2 .box-title h4 {
  font-weight: normal;
  width: 100%;
  background: #F4F4F4;
  border-bottom: 1px solid #CCCCCC;
  padding: 10px;
  font-size: 14px;
}
.checkout-multishipping-shipping .col-1 > h4, .checkout-multishipping-shipping .col-2 > h4,
.checkout-multishipping-billing .col-1 > h4,
.checkout-multishipping-billing .col-2 > h4,
.checkout-multishipping-overview .col-1 > h4,
.checkout-multishipping-overview .col-2 > h4 {
  font-weight: normal;
  width: 100%;
  background: #F4F4F4;
  border-bottom: 1px solid #CCCCCC;
  padding: 10px;
  font-size: 14px;
}
.checkout-multishipping-shipping .col-1 .box-content, .checkout-multishipping-shipping .col-2 .box-content,
.checkout-multishipping-billing .col-1 .box-content,
.checkout-multishipping-billing .col-2 .box-content,
.checkout-multishipping-overview .col-1 .box-content,
.checkout-multishipping-overview .col-2 .box-content {
  margin-bottom: 25px;
  padding-left: 10px;
  margin-top: 10px;
}

.checkout-multishipping-billing .sp-methods dt {
  float: left;
  width: 100%;
}

#multiship-addresses-table > tbody > tr > td.a-center.last > a {
  background-image: none;
}

#review-order-form > div:nth-child(3) > div.divider {
  width: 100%;
  clear: both;
}

@media only screen and (max-width: 1024px) {
  body[class*="checkout-multishipping-"] .checkout-progress span {
    word-spacing: 300px;
  }

  #review-order-form .col-1,
  #review-order-form .col-2 {
    float: none;
    width: auto;
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  body[class*="checkout-multishipping-"] .checkout-progress span {
    width: 12px;
  }
  body[class*="checkout-multishipping-"] .checkout-progress li {
    width: 100%;
    margin: 0;
    text-align: left;
    padding-left: 3%;
    border-right: 0px;
  }
  body[class*="checkout-multishipping-"] .checkout-progress span {
    word-spacing: 1px;
    width: 12px;
  }
  body[class*="checkout-multishipping-"] .box-title {
    float: left;
    width: 100%;
  }
  body[class*="checkout-multishipping-"] .page-title .button {
    float: left;
    margin-bottom: 10px;
  }
  body[class*="checkout-multishipping-"] .linearize-table tfoot td {
    text-align: right;
  }
  body[class*="checkout-multishipping-"] .linearize-table select {
    width: 100%;
    min-width: 200px;
  }
  body[class*="checkout-multishipping-"] .col-1.col-narrow, body[class*="checkout-multishipping-"] .col-2.col-wide {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 599px) {
  .checkout-multishipping-addresses .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 10px;
    margin-top: 12px;
  }
}
@media only screen and (max-width: 479px) {
  body[class*="checkout-multishipping-"] .buttons-set .back-link {
    display: block;
  }
}
.iwd-blog .breadcrumbs {
  padding: 0;
  margin-bottom: 0;
}
.iwd-blog .main-container {
  padding: 15px 10px;
}
@media only screen and (min-width: 1025px) {
  .iwd-blog .main-container {
    max-width: 989px;
    width: 100%;
    margin: auto;
    text-align: justify;
  }
  .iwd-blog .main-container .col-main {
    width: calc(100% - 315px);
    float: left;
    padding-right: 35px;
    margin-top: 15px;
  }
  .iwd-blog .main-container .col-right {
    width: 315px;
    float: left;
    padding-left: 35px;
    margin-top: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .iwd-blog .main-container .col-main {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .iwd-blog .main-container {
    padding: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .iwd-blog .col-right.sidebar {
    margin: 20px 0 0 0;
  }
}
.iwd-blog .sidebar .mobile-stay-connected {
  display: none;
  clear: both;
}
@media only screen and (max-width: 1024px) {
  .iwd-blog .sidebar .mobile-stay-connected {
    display: block;
  }
}
.iwd-blog .sidebar .sidebar-left {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .iwd-blog .sidebar .sidebar-left .blog-sidebar.categories {
    margin-bottom: 0;
  }
  .iwd-blog .sidebar .sidebar-left .blog-sidebar.categories h3 {
    border-bottom: none;
  }
}
.iwd-blog .sidebar .sidebar-right {
  width: 100%;
  margin: 0 0 20px 0;
  background: #eae6e6;
  padding: 20px;
}
@media only screen and (max-width: 1024px) {
  .iwd-blog .sidebar .sidebar-right {
    display: none;
    margin-top: -31px;
    margin-bottom: 0;
  }
  .iwd-blog .sidebar .sidebar-right #footer-stay-connected .block-title {
    display: none;
  }
}
.iwd-blog .sidebar .sidebar-right .blog-sidebar {
  margin: 0;
}
.iwd-blog .sidebar .sidebar-right #footer-stay-connected {
  margin-bottom: 10px;
}
.iwd-blog .sidebar .sidebar-right #footer-stay-connected .block-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  font-family: "Open Sans", verdana, arial, sans-serif !important;
  padding: 0;
}
.iwd-blog .sidebar .sidebar-right #footer-stay-connected .content {
  text-align: center;
  font-size: 12px;
  font-family: "Open Sans", verdana, arial, sans-serif !important;
}
.iwd-blog .sidebar .sidebar-right .block-subscribe {
  margin: 0 0 10px 0;
}
@media only screen and (max-width: 1024px) {
  .iwd-blog .sidebar .sidebar-right .block-subscribe .block-content {
    padding: 0;
    border: none;
  }
}
.iwd-blog .sidebar .sidebar-right .block-subscribe .block-title {
  display: none;
}
.iwd-blog .sidebar .sidebar-right .block-subscribe .form-subscribe-header {
  display: none;
}
.iwd-blog .sidebar .sidebar-right .block-subscribe .input-box {
  text-align: center;
}
.iwd-blog .sidebar .sidebar-right .block-subscribe input {
  font-size: 12px;
  color: #525252;
  font-family: "Open Sans", verdana, arial, sans-serif !important;
}
.iwd-blog .sidebar .sidebar-right .block-subscribe button.button {
  width: 100%;
  color: #fff;
  background: #525252;
  font-family: "Open Sans", verdana, arial, sans-serif !important;
  padding: 12px;
  margin: 12px 0 0 0;
  -webkit-transition: all .25s linear;
  -moz-transition: all .25s linear;
  transition: all .25s linear;
}
.iwd-blog .sidebar .sidebar-right .block-subscribe button.button:hover {
  background-color: #888;
}
.iwd-blog .sidebar .sidebar-right > div > span:last-of-type {
  display: none;
}
.iwd-blog .sidebar .social-box {
  top: 64px;
  left: 6px;
  position: static;
  width: 100%;
}
.iwd-blog .sidebar .social-box .newsletter-social-box {
  text-align: center;
  word-spacing: -4px;
  margin: 0 -10px;
}
@media only screen and (max-width: 1024px) {
  .iwd-blog .sidebar .social-box .newsletter-social-box {
    word-spacing: 11px;
  }
}
.iwd-blog .sidebar .social-box .newsletter-social-box div {
  padding: 3px;
  display: inline-block;
}
.iwd-blog .sidebar .social-box img {
  background-color: #525252;
  border-radius: 50%;
  padding: 2px;
  -webkit-transition: all .25s linear;
  -moz-transition: all .25s linear;
  transition: all .25s linear;
}
.iwd-blog .sidebar .social-box .newsletter-social-box #n-facebook:hover img {
  background-color: #3b5998;
}
.iwd-blog .sidebar .social-box .newsletter-social-box #n-twitter:hover img {
  background-color: #00aced;
}
.iwd-blog .sidebar .social-box .newsletter-social-box #n-pinterest:hover img {
  background-color: #cb2027;
}
.iwd-blog .sidebar .social-box .newsletter-social-box #n-youtube:hover img {
  background-color: #b00;
}
.iwd-blog .sidebar .social-box .newsletter-social-box #n-googleplus:hover img {
  background-color: #dd4b39;
}
.iwd-blog .sidebar .social-box .newsletter-social-box #n-rss:hover img {
  background-color: #F60;
}
.iwd-blog #blog-top-menu {
  display: block !important;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .iwd-blog #blog-top-menu {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 479px) {
  .iwd-blog #blog-top-menu {
    margin-bottom: 0;
  }
}
.iwd-blog .page-title h1,
.iwd-blog .blog-sidebar h3 {
  font-weight: 300;
  color: #525252;
  text-transform: uppercase;
  border-top: 2px solid #EAE6E6;
  border-bottom: 2px solid #EAE6E6;
  display: block;
  font-family: "Open Sans", verdana, arial, sans-serif !important;
}
.iwd-blog .page-title h1 {
  padding: 10px 0;
  font-size: 26px;
}
.iwd-blog .page-title > div {
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  margin: 0 0 15px 0;
  font-weight: 300;
  color: #525252;
  text-transform: uppercase;
  border-top: 2px solid #EAE6E6;
  border-bottom: 2px solid #EAE6E6;
  display: block;
  font-family: "Open Sans", verdana, arial, sans-serif !important;
  padding: 10px 0;
  font-size: 26px;
}
.iwd-blog .blog-sidebar {
  margin-bottom: 30px;
  text-transform: initial;
}
.iwd-blog .blog-sidebar h3 {
  font-size: 24px;
  line-height: 40px;
}
.iwd-blog .blog-sidebar.categories:after {
  content: '';
  display: table;
  clear: both;
}
.iwd-blog .blog-sidebar.categories li {
  width: 50%;
  margin: 0 0 5px 0;
  float: left;
}
.iwd-blog .blog-sidebar.categories li a .category-name {
  font-weight: normal;
}
.iwd-blog .blog-sidebar.categories li.current-category a .category-name {
  font-weight: 700;
  font-family: Sans-serif;
}
.iwd-blog .blog-sidebar.categories li:before {
  content: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/single_arrow.png);
  float: left;
  margin-right: 3px;
}
@media only screen and (min-width: 1024px) {
  .iwd-blog .blog-sidebar.categories {
    display: block !important;
  }
}
@media only screen and (max-width: 1024px) {
  .iwd-blog .blog-sidebar.categories {
    display: block;
  }
  .iwd-blog .blog-sidebar.categories h3 {
    margin: 0;
    cursor: pointer;
  }
  .iwd-blog .blog-sidebar.categories h3::after {
    content: '+';
    display: inline-block;
    width: 15px;
    height: 15px;
    font-size: 24px;
    float: right;
    margin-right: 10px;
  }
  .iwd-blog .blog-sidebar.categories h3.expanded::after {
    content: '_';
    position: relative;
    top: -10px;
  }
  .iwd-blog .blog-sidebar.categories > ul {
    display: none;
  }
  .iwd-blog .blog-sidebar.categories li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #ccc;
  }
  .iwd-blog .blog-sidebar.categories li::before {
    display: none;
  }
  .iwd-blog .blog-sidebar.categories li a {
    font-size: 16px;
    padding: 10px 0;
  }
}
.iwd-blog .blog-sidebar.featured-posts li {
  height: initial;
}
.iwd-blog .blog-sidebar.featured-posts li a {
  display: block;
  color: #636363;
  text-transform: initial;
}
.iwd-blog .blog-sidebar.featured-posts li a:hover .post-title {
  text-decoration: underline;
}
.iwd-blog .blog-sidebar.featured-posts li a:after {
  content: '';
  display: table;
  clear: both;
}
.iwd-blog .blog-sidebar.featured-posts li .main-block {
  width: 100px;
  height: 100px;
  background-size: cover;
  position: initial;
  float: left;
}
.iwd-blog .blog-sidebar.featured-posts li .post-title {
  width: calc(100% - 100px);
  padding-left: 10px;
  display: block !important;
  text-align: initial;
  float: left;
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .iwd-blog .blog-sidebar.featured-posts ul > *:not(:nth-child(2n)) {
    margin-right: 2.02224% !important;
  }
  .iwd-blog .blog-sidebar.featured-posts ul > *:nth-child(2n) {
    margin-right: 0 !important;
  }
  .iwd-blog .blog-sidebar.featured-posts ul > * {
    width: 48.98888% !important;
    float: left !important;
    display: inline-block !important;
  }
}
.iwd-blog .blog-category-post {
  padding-bottom: 0;
  border: none;
}
.iwd-blog .blog-category-post .post-banner-image {
  width: 100%;
  margin: auto;
  margin-bottom: 15px;
}
.iwd-blog .blog-post-page {
  margin-bottom: 0;
  padding-bottom: 0;
}
.iwd-blog .blog-post-page .post-image {
  margin: 0;
}
.iwd-blog .blog-post-page .divider {
  display: block;
  color: black;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 26px;
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}
.iwd-blog .blog-post-page .header,
.iwd-blog .blog-category-post .header {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .iwd-blog .blog-post-page .header .left,
  .iwd-blog .blog-post-page .header .right,
  .iwd-blog .blog-category-post .header .left,
  .iwd-blog .blog-category-post .header .right {
    display: inline-block;
    float: left;
  }
  .iwd-blog .blog-post-page .header .left,
  .iwd-blog .blog-category-post .header .left {
    margin-right: 15px;
    width: 115px;
  }
  .iwd-blog .blog-post-page .header .right,
  .iwd-blog .blog-category-post .header .right {
    width: calc(100% - 130px);
  }
}
.iwd-blog .blog-post-page .header .left .post-date,
.iwd-blog .blog-post-page .header .left .post-date-top,
.iwd-blog .blog-category-post .header .left .post-date,
.iwd-blog .blog-category-post .header .left .post-date-top {
  width: 115px;
  height: 25px;
  line-height: 25px;
  margin-bottom: 15px;
  background: #beb8b7;
  color: white;
  text-align: center;
  display: block;
}
@media only screen and (max-width: 767px) {
  .iwd-blog .blog-post-page .header .left .post-date,
  .iwd-blog .blog-post-page .header .left .post-date-top,
  .iwd-blog .blog-category-post .header .left .post-date,
  .iwd-blog .blog-category-post .header .left .post-date-top {
    float: none;
  }
}
.iwd-blog .blog-post-page .header .right h2,
.iwd-blog .blog-category-post .header .right h2 {
  line-height: initial;
  font-size: initial;
}
.iwd-blog .blog-post-page .header .right .blog-name,
.iwd-blog .blog-category-post .header .right .blog-name {
  color: #525252;
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
  line-height: 25px;
  margin-bottom: 10px;
  text-transform: initial;
  font-family: "Open Sans", verdana, arial, sans-serif !important;
}
.iwd-blog .blog-post-page .header .right .author,
.iwd-blog .blog-category-post .header .right .author {
  font-style: italic;
}
.iwd-blog .blog-post-page .header .right .author em,
.iwd-blog .blog-category-post .header .right .author em {
  color: #BEB8B7;
}
.iwd-blog .blog-post-page .header:after,
.iwd-blog .blog-category-post .header:after {
  content: '';
  display: table;
  clear: both;
}
.iwd-blog .blog-post-page .content .post-banner-image,
.iwd-blog .blog-category-post .content .post-banner-image {
  margin-bottom: 15px;
}
.iwd-blog .blog-post-page .content img,
.iwd-blog .blog-category-post .content img {
  width: 100%;
  margin: auto;
}
.iwd-blog .blog-post-page .content .share-post-links-new a,
.iwd-blog .blog-category-post .content .share-post-links-new a {
  color: #8d8dbf;
}
.iwd-blog .blog-post-page .content .share-links,
.iwd-blog .blog-category-post .content .share-links {
  margin-right: 20px;
}
.iwd-blog .blog-post-page .content .share-links .label,
.iwd-blog .blog-category-post .content .share-links .label {
  margin-bottom: 5px;
}
.iwd-blog .blog-post-page .content .post-buttons-new,
.iwd-blog .blog-category-post .content .post-buttons-new {
  float: right;
  margin-bottom: 15px;
}
.iwd-blog .blog-post-page .content .post-buttons-new > *,
.iwd-blog .blog-category-post .content .post-buttons-new > * {
  display: inline-block;
  vertical-align: top;
}
.iwd-blog .blog-post-page .content .post-buttons-new:after,
.iwd-blog .blog-category-post .content .post-buttons-new:after {
  content: '';
  display: table;
  clear: both;
}
.iwd-blog .blog-post-page .content .post-content,
.iwd-blog .blog-category-post .content .post-content {
  margin: 15px 0 0;
  clear: both;
}
.iwd-blog .blog-post-page .content .post-content *,
.iwd-blog .blog-category-post .content .post-content * {
  font-family: "Open Sans", verdana, arial, sans-serif;
}
.iwd-blog .blog-post-page .content .post-content p,
.iwd-blog .blog-category-post .content .post-content p {
  margin-bottom: 15px;
  font-size: 14px;
}
.iwd-blog .blog-post-page .content .post-content h2,
.iwd-blog .blog-category-post .content .post-content h2 {
  padding: 10px 0;
  line-height: 1.15;
}
.iwd-blog .blog-post-page .content .post-content h3,
.iwd-blog .blog-category-post .content .post-content h3 {
  color: black;
  font-weight: 700;
  font-size: 15px;
  display: block;
  line-height: 30px;
  margin-top: 10px;
  font-family: Sans-serif;
}
.iwd-blog .blog-post-page .content .post-content ul, .iwd-blog .blog-post-page .content .post-content ol,
.iwd-blog .blog-category-post .content .post-content ul,
.iwd-blog .blog-category-post .content .post-content ol {
  padding-left: 0;
  list-style-position: inside;
}
.iwd-blog .blog-post-page .content .post-short-description,
.iwd-blog .blog-category-post .content .post-short-description {
  margin: 15px auto 0;
  padding-right: 0;
}
.iwd-blog .blog-post-page .content .read-more,
.iwd-blog .blog-category-post .content .read-more {
  text-align: right;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  color: #4C7F93;
  margin-top: 15px;
}
.iwd-blog .blog-post-page .content .post-banner-image {
  display: none;
}
.iwd-blog .category-post-navigation {
  border: none;
  margin: 0;
}
.iwd-blog .category-post-navigation a {
  font-size: 14px;
  line-height: 30px;
  font-weight: normal !important;
  text-transform: initial;
}
.iwd-blog #post-comments h4,
.iwd-blog #post-comments .required-login-message {
  font-size: 14px;
  text-transform: initial;
}

.hub-body ul.more-dots {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  columns: 2;
  -webkit-column-gap: 30px;
  -moz-column-gap: 0;
  column-gap: 30px;
  line-height: 2rem;
  list-style-type: disc;
  margin: 0 0 1.5rem .75rem;
}

.hub-body ul.more-dots li {
  margin-bottom: 0px;
}

#dimension-table {
  display: block;
  margin-bottom: 1rem;
}

#dimension-table table {
  border-collapse: collapse;
  width: 100%;
}

#dimension-table table th {
  text-align: left;
  line-height: 2.5rem;
  font-size: 1.25rem;
}

#dimension-table table td {
  border: 1px solid #c2c2c2;
  text-indent: 8px;
  line-height: 1.75rem;
}

a.link-block {
  display: inline-block;
  text-align: center;
  margin: 1rem auto;
  box-sizing: border-box;
  width: calc(50% - 15px);
}

@media only screen and (max-width: 1024px) {
  a.link-block {
    display: block;
    width: 100%;
    text-decoration: none;
  }
}
a.link-block:link,
a.link-block:visited {
  text-decoration: none;
}

a.link-block:link .blue-button,
a.link-block:visited .blue-button {
  display: inline-block;
  background-color: #fcde96;
  color: #2a2c83;
  line-height: 40px;
  margin: 1.5rem auto;
  padding: 0px 15px;
  font-size: 1rem;
  font-weight: 700;
  font-family: roboto, "helvetica neue", Verdana, Arial, sans-serif !important;
  box-sizing: border-box;
  width: calc(85%);
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  letter-spacing: 0.25px;
}
a.link-block:link .blue-button:hover,
a.link-block:visited .blue-button:hover {
  background-color: #fbd67d;
}
a.link-block:link .blue-button:after,
a.link-block:visited .blue-button:after {
  content: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/forward-arrow.png");
  padding-left: 11px;
  margin-bottom: 20px;
}

a.link-block:link .caption,
a.link-block:visited .caption {
  display: block;
  color: #525252;
  font-size: .55rem;
}

@media only screen and (max-width: 1024px) {
  a.link-block:link .caption,
  a.link-block:visited .caption {
    font-size: 1rem;
    text-decoration: none;
  }
}
a.link-block:link img,
a.link-block:visited img {
  box-sizing: border-box;
  width: calc(100% - 15px);
}

a.link-block:hover .blue-button {
  text-decoration: none;
}

a.link-block:hover .caption {
  text-decoration: none;
}

.blog-page-title a {
  color: #525252;
}

/* ============================================ *
 * Klevu Search Results
 * ============================================ */
.search-index-index .main-container {
  max-width: 1019px;
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/page-row-bg.png) no-repeat;
  background-size: 100% auto;
  background-position: 0 40px;
}
.search-index-index .main-container .col-main {
  padding-top: 10px;
}
.search-index-index .main-container .kuContainer {
  width: 99% !important;
}
.search-index-index .main-container .kuTotResults {
  font-size: 24px;
  font-weight: 600;
  color: #636363;
}
.search-index-index .main-container .kuPagination a {
  background: #EBEBEB;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  padding-top: 6px;
}
.search-index-index .main-container .kuPagination a.kuCurrent {
  background: #292885;
  color: #fff;
}
.search-index-index .main-container .kuSortHeader label {
  color: #636363;
  text-transform: uppercase;
  font-weight: 500;
}
.search-index-index .main-container .kuFilterHead {
  font-size: 18px;
  font-weight: 400;
  padding: 0 10px 3px;
  color: #636363;
}
.search-index-index .main-container .kuFilterHead:after {
  border-color: #cccccc;
  border-width: 0 2px 2px 0;
}
.search-index-index .main-container .kuFilterNames .kuFilterLabel, .search-index-index .main-container .kuFilterNames .kuFilterTotal {
  color: #636363;
  font-weight: 300;
}
.search-index-index .main-container .kuFilterNames .kuFilterLabel {
  width: 84%;
}
.search-index-index .main-container .kuFilterNames .kuFilterTotal {
  width: 16%;
}
.search-index-index .main-container .kuGridView ul li {
  border: none;
  width: 31.33%;
}
.search-index-index .main-container .kuGridView ul li .kuName {
  text-align: center;
}
.search-index-index .main-container .kuGridView ul li .kuName a {
  color: #666;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: .4px;
}
.search-index-index .main-container .kuGridView ul li .kuPrice {
  padding: 0;
  text-align: center;
}
.search-index-index .main-container .kuGridView ul li .kuPrice .kuSalePrice {
  font-size: 18px;
  color: #292885;
  font-weight: 700;
}
.search-index-index.mobile .kuGridView ul li {
  border: none;
  width: 47%;
}
.search-index-index.mobile .kuShowOpt {
  margin-bottom: 5px;
  margin-top: 5px;
}

/* ============================================ *
 * Calendar styles (restore styles from /js/calendar)
 * ============================================ */
div.calendar table {
  border-collapse: separate;
}
div.calendar table td.button {
  display: table-cell;
  background: inherit;
  color: inherit;
  text-transform: none;
}

/* ============================================ *
 * Homepage
 * ============================================ */
/* -------------------------------------------- *
 * Primary Banner
 */
body.cms-home .main-container {
  padding: 10px 10px 0;
}
@media only screen and (max-width: 767px) {
  body.cms-home .main-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
body.cms-home .slideshow-container {
  margin-top: 0;
}
body.cms-home .std p {
  margin: 0;
}
body.cms-home .block p {
  margin-bottom: 15px;
}
body.cms-home .home-title-box {
  text-align: center;
  margin: 0 auto 18px;
}
body.cms-home .home-title-box h1 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: #000;
  margin-bottom: 0;
}
body.cms-home .home-title-box h3 {
  color: #000;
  font-size: 16px;
  line-height: 1;
}
body.cms-home .fan-lights-links {
  margin-bottom: 35px;
  overflow: hidden;
}
body.cms-home .fan-lights-links .fan-links, body.cms-home .fan-lights-links .lighting-links {
  float: left;
  width: calc((100% - 18px)/2);
}
body.cms-home .fan-lights-links .fan-links .right, body.cms-home .fan-lights-links .lighting-links .right {
  position: relative;
  padding: 9px;
  background: #eaf3f8;
  float: left;
  width: 45%;
  min-height: 221px;
}
body.cms-home .fan-lights-links .fan-links .right .button, body.cms-home .fan-lights-links .lighting-links .right .button {
  bottom: 15px;
  padding: 10px 0;
  position: absolute;
  right: 12px;
  text-align: center;
  width: 259px;
  max-width: 100%;
}
body.cms-home .fan-lights-links .fan-links .right .button a, body.cms-home .fan-lights-links .lighting-links .right .button a {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.85rem;
}
body.cms-home .fan-lights-links .fan-links .right .button a:link, body.cms-home .fan-lights-links .fan-links .right .button a:visited, body.cms-home .fan-lights-links .lighting-links .right .button a:link, body.cms-home .fan-lights-links .lighting-links .right .button a:visited {
  color: #2a2c83;
}
body.cms-home .fan-lights-links .fan-links .right .button a:after, body.cms-home .fan-lights-links .lighting-links .right .button a:after {
  content: url("https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/forward-arrow.png");
  padding-left: 12px;
}
@media only screen and (max-width: 1024px) {
  body.cms-home .fan-lights-links .fan-links .right .button, body.cms-home .fan-lights-links .lighting-links .right .button {
    position: static;
    margin: 10px 0 0 0;
  }
}
@media only screen and (max-width: 1024px) {
  body.cms-home .fan-lights-links .fan-links .right, body.cms-home .fan-lights-links .lighting-links .right {
    width: 100%;
  }
}
body.cms-home .fan-lights-links .fan-links .left, body.cms-home .fan-lights-links .lighting-links .left {
  float: left;
  height: 100%;
  min-height: 220px;
  width: 55%;
}
body.cms-home .fan-lights-links .fan-links ul, body.cms-home .fan-lights-links .lighting-links ul {
  font-size: 0.9rem;
  line-height: 2;
  margin-bottom: 0;
}
body.cms-home .fan-lights-links .fan-links ul li, body.cms-home .fan-lights-links .lighting-links ul li {
  margin-left: 0;
  list-style-type: none;
}
body.cms-home .fan-lights-links .fan-links ul li a, body.cms-home .fan-lights-links .lighting-links ul li a {
  text-decoration: none;
}
body.cms-home .fan-lights-links .fan-links ul li a:link, body.cms-home .fan-lights-links .fan-links ul li a:visited, body.cms-home .fan-lights-links .lighting-links ul li a:link, body.cms-home .fan-lights-links .lighting-links ul li a:visited {
  border-bottom: 1px dotted #c2c2c2;
  color: #555;
}
body.cms-home .fan-lights-links .fan-links {
  margin-right: 18px;
}
@media only screen and (min-width: 1025px) {
  body.cms-home .fan-lights-links .fan-links .left,
  body.cms-home .fan-lights-links .lighting-links .left {
    height: 221px;
  }
  body.cms-home .fan-lights-links .fan-links .left img.tablet,
  body.cms-home .fan-lights-links .lighting-links .left img.tablet {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  body.cms-home .fan-lights-links .fan-links .left,
  body.cms-home .fan-lights-links .lighting-links .left {
    min-height: initial;
    width: 100%;
  }
  body.cms-home .fan-lights-links .fan-links .left img,
  body.cms-home .fan-lights-links .lighting-links .left img {
    width: 100%;
  }
  body.cms-home .fan-lights-links .fan-links .left img.desktop,
  body.cms-home .fan-lights-links .lighting-links .left img.desktop {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  body.cms-home .fan-lights-links .fan-links .left,
  body.cms-home .fan-lights-links .lighting-links .left {
    display: none;
  }
}
body.cms-home .season-promo-section .box {
  border-top: 2px solid #c2c2c2;
  text-align: center;
  position: relative;
}
body.cms-home .season-promo-section .box h2 {
  background-color: #fff;
  color: #525252;
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0 2px;
  position: relative;
  top: -13px;
}
@media only screen and (max-width: 767px) {
  body.cms-home .season-promo-section .box h2 {
    font-size: 15px;
  }
}
body.cms-home .season-promo-section #holiday-promo-2016 .hero-image {
  cursor: pointer;
  float: none;
  margin: 5px 0;
}
@media only screen and (min-width: 768px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .hero-image {
    background: #ff6f57 url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/snowflakes.png) no-repeat center center;
    height: 180px;
  }
}
body.cms-home .season-promo-section #holiday-promo-2016 .hero-image .promo-toggle {
  text-align: center;
}
body.cms-home .season-promo-section #holiday-promo-2016 .hero-image .promo-toggle label {
  color: #fff;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .hero-image .promo-toggle label {
    color: #636363;
  }
}
body.cms-home .season-promo-section #holiday-promo-2016 .hero-image h3 {
  color: #fff;
  font-size: 3.45rem;
  font-weight: 700;
  padding-top: 4px;
  text-shadow: 0 2px 2px #d75a56;
  text-transform: uppercase;
  margin-bottom: 0;
  display: block;
}
body.cms-home .season-promo-section #holiday-promo-2016 .hero-image h3:nth-of-type(2n) {
  background-color: #c4d6da;
  box-sizing: border-box;
  color: #6a787b;
  display: block;
  font-size: 1.1rem;
  font-weight: 100;
  height: 46px;
  line-height: 46px;
  margin: 0 auto;
  padding-top: 0;
  position: relative;
  text-shadow: none;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .hero-image h3:nth-of-type(2n) {
    width: 60%;
  }
}
body.cms-home .season-promo-section #holiday-promo-2016 .hero-image h3:nth-of-type(2n) em {
  font-size: 1.25rem;
  font-weight: bold;
  font-style: normal;
}
@media only screen and (max-width: 875px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .hero-image h3:nth-of-type(2n) em {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 875px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .hero-image h3:nth-of-type(2n) {
    font-size: 0.9rem;
  }
}
body.cms-home .season-promo-section #holiday-promo-2016 .hero-image h3:nth-of-type(2n):before {
  border-bottom: 23px solid transparent;
  border-left: 20px solid #ff6f57;
  border-top: 23px solid transparent;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  width: 0;
}
@media only screen and (max-width: 767px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .hero-image h3:nth-of-type(2n):before {
    border-left-color: white;
  }
}
body.cms-home .season-promo-section #holiday-promo-2016 .hero-image h3:nth-of-type(2n):after {
  border-bottom: 23px solid transparent;
  border-right: 20px solid #ff6f57;
  border-top: 23px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: 0;
  width: 0;
}
@media only screen and (max-width: 767px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .hero-image h3:nth-of-type(2n):after {
    border-right-color: white;
  }
}
body.cms-home .season-promo-section #holiday-promo-2016 .promo-toggle {
  color: #000;
  text-align: right;
}
body.cms-home .season-promo-section #holiday-promo-2016 .promo-toggle.hidden {
  display: block;
}
body.cms-home .season-promo-section #holiday-promo-2016 .promo-toggle label {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0 12px 12px;
  font-size: 1rem;
}
body.cms-home .season-promo-section #holiday-promo-2016 .promo-toggle label:before {
  vertical-align: top;
  margin-right: 12px;
}
body.cms-home .season-promo-section #holiday-promo-2016 .promo-toggle img.promo-arrow {
  cursor: pointer;
  position: relative;
  transition: all 0.25s linear 0s;
  display: inline;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container {
  clear: both;
  display: block;
  position: relative;
  margin-bottom: 5px;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box {
  float: left;
  margin: 47px 47px 0;
  text-align: center;
  text-transform: uppercase;
  width: 23.4%;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box {
    width: calc(100%/3 - 47px * 2);
  }
}
@media only screen and (max-width: 767px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box {
    width: calc(100%/2 - 10px - 10px);
    margin: 0 10px 30px;
  }
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box {
  border-left: 1px solid #a9a9a9;
  border-right: 1px solid #a9a9a9;
  border-top: 1px solid #a9a9a9;
  width: 100%;
  display: block;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo {
  display: block;
  height: 80px;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo img.holiday-logo {
  margin: 0 auto;
  width: 100%;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo span.loaded {
  background: url(/media/wysiwyg/images/brand-logos.png);
  width: 124px;
  height: 60px;
  display: block;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .sprite {
  margin: 0 auto;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Casablanca {
  background-position: 0 0 !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Craftmade {
  background-position: -240px 0 !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Wind-River {
  background-position: -480px 0 !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Emerson {
  background-position: -720px 0 !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Fanimation {
  background-position: 0 -118px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Hunter {
  background-position: -240px -118px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Kichler {
  background-position: -480px -118px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Matthews {
  background-position: -720px -118px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Minka-Aire {
  background-position: 0 -240px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Modern {
  background-position: -240px -240px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Monte {
  background-position: -480px -240px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Period {
  background-position: -720px -240px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Dimond {
  background-position: -475px -1325px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Quorum {
  background-position: 0 -360px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Savoy {
  background-position: -240px -360px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Seagull {
  background-position: -480px -360px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Modern-Forms {
  background-position: -720px -360px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .WAC {
  background-position: -721px -1319px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Westinghouse {
  background-position: 0 -480px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Corbett {
  background-position: -240px -480px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Crystorama {
  background-position: -480px -480px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Elk {
  background-position: -720px -480px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .ET2 {
  background-position: 0 -600px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Capital-Lighting {
  background-position: -240px -600px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Feiss {
  background-position: -480px -600px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .FineArt {
  background-position: -720px -600px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .FredrickRamond {
  background-position: 0 -720px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .GamaSonic {
  background-position: -240px -720px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Kovacs {
  background-position: -480px -720px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .GreatOutdoors {
  background-position: -720px -720px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Hinkley {
  background-position: 0 -840px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Hudson {
  background-position: -240px -840px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Oxygen {
  background-position: -480px -840px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Juno {
  background-position: -720px -840px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Justice {
  background-position: 0 -960px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Kalco {
  background-position: -240px -960px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .LBL {
  background-position: -468px -960px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Lithonia {
  background-position: -720px -960px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Lutron {
  background-position: 0 -1080px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Maxim {
  background-position: -240px -1080px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Metropolitan {
  background-position: -480px -1080px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .MinkaLavery {
  background-position: -720px -1080px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Sonneman {
  background-position: 0 -1200px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Tech {
  background-position: -240px -1200px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Tiella {
  background-position: -480px -1200px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Troy {
  background-position: -720px -1200px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .WPT {
  background-position: 0 -1320px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Quoizel {
  background-position: -240px -1320px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Innovations {
  background-position: 0 -1440px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .BAF {
  background-position: -240px -1440px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Eurofase {
  background-position: -480px -1440px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Elan {
  background-position: -720px -1440px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .Schaefer {
  background-position: 0px -1560px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-logo .HomePlace {
  background-position: -240px -1560px !important;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-image {
  display: block;
  height: 160px;
}
@media only screen and (min-width: 768px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-image img.product.fan {
    clip: rect(0px, 240px, 150px, 0px);
    position: absolute;
    right: -20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-image img.product.fan {
    clip: rect(0px, 220px, 150px, 0px);
    position: absolute;
    right: -40px;
  }
}
@media only screen and (max-width: 767px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-image {
    width: calc(100% + 20px);
    overflow: hidden;
    position: relative;
    right: 20px;
    height: 215px;
  }
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-image img.product.fan,
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-image img.product.lighting {
    width: calc(100% + 20px);
  }
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-image img.product.lighting {
    width: auto;
    height: 100%;
    position: relative;
    right: -10px;
  }
}
@media only screen and (max-width: 599px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-image {
    height: 160px;
  }
}
@media only screen and (max-width: 479px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-image {
    height: 105px;
  }
}
@media only screen and (max-width: 320px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-image {
    height: 90px;
  }
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-image img.lighting.product {
  margin: 0 auto;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-details {
  color: #ff6e58;
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 8px auto;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-details {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-details {
    font-size: 14px;
  }
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-date-details {
  color: #646464;
  display: block;
  font-weight: 300;
  padding-bottom: 18px;
}
@media only screen and (max-width: 1024px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-date-details {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box .detail-box span.promo-date-details {
    font-size: 11px;
    padding: 10px 2.5px;
  }
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box a.promo-link {
  background-color: #ff6e58;
  color: #fff;
  display: block;
  font-weight: 700;
  height: 46px;
  line-height: 46px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: all 0.25s ease 0s;
  vertical-align: middle;
  width: 100%;
  font-size: 1rem;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box a.promo-link:after {
  content: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/fff-arrow-right.png);
  position: absolute;
  right: 48px;
}
body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box a.promo-link:hover {
  background-color: #d16554;
}
@media only screen and (max-width: 767px) {
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box a.promo-link {
    font-size: 14px;
  }
  body.cms-home .season-promo-section #holiday-promo-2016 .holiday-promo-container .home-promo-box a.promo-link:after {
    right: 10px;
  }
}
body.cms-home .season-promo-section .promo-toggle.duplicate label:before {
  content: attr(data-show);
}
body.cms-home .season-promo-section .promo-toggle.duplicate label img {
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
body.cms-home .season-promo-section .promo-toggle.duplicate.expanded label:before {
  content: attr(data-hide);
}
body.cms-home .season-promo-section .promo-toggle.duplicate.expanded label img {
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media only screen and (max-width: 767px) {
  body.cms-home {
    width: 100%;
  }
  body.cms-home #home-secondary-title {
    font-size: 12px;
  }
  body.cms-home .fan-lights-links .fan-links,
  body.cms-home .fan-lights-links .lighting-links {
    float: none;
    width: 100%;
    margin-right: 0;
    margin: auto;
  }
  body.cms-home .fan-lights-links .fan-links .left,
  body.cms-home .fan-lights-links .fan-links .right,
  body.cms-home .fan-lights-links .lighting-links .left,
  body.cms-home .fan-lights-links .lighting-links .right {
    float: none;
    width: 100%;
    text-align: center;
  }
  body.cms-home .fan-lights-links .fan-links .left,
  body.cms-home .fan-lights-links .lighting-links .left {
    background-size: cover;
  }
  body.cms-home .fan-lights-links .fan-links .right .button,
  body.cms-home .fan-lights-links .lighting-links .right .button {
    position: initial;
    margin-top: 10px;
  }
  body.cms-home .fan-lights-links .fan-links {
    margin-bottom: 15px;
  }
  body.cms-home .hero-image > h3:first-child {
    background: #ff6f57 url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/snowflakes.png) no-repeat;
    font-size: 28px !important;
    height: 70px;
    line-height: 70px;
    background-size: cover;
  }
  body.cms-home .hero-image > h3:nth-child(2) {
    position: relative;
  }
  body.cms-home .hero-image > h3:nth-child(2) span {
    line-height: 1.25;
    font-size: 14px !important;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    width: 70%;
  }
  body.cms-home .hero-image > h3:nth-child(2) em {
    font-size: 14px !important;
  }
}

.slideshow .banner-msg {
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  top: 30%;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.slideshow .banner-msg h2 {
  color: #fff;
  font-size: 24px;
  text-shadow: 1px 1px 3px #555555;
}

.slideshow .banner-msg h2 strong {
  font-weight: bold;
  display: block;
  font-size: 36px;
}

@media only screen and (max-width: 767px) {
  .slideshow .banner-msg h2 {
    font-size: 20px;
  }

  .slideshow .banner-msg h2 strong {
    font-size: 24px;
  }
}
@media only screen and (max-width: 479px) {
  .slideshow .banner-msg {
    top: 20%;
  }

  .slideshow .banner-msg h2 {
    font-size: 14px;
  }

  .slideshow .banner-msg h2 strong {
    font-size: 16px;
  }
}
/* -------------------------------------------- *
 * Promotion Banner Section
 */
.promos {
  margin: 0 0 10px 0;
  padding: 0;
  width: 100%;
}

.promos:after {
  content: '';
  display: table;
  clear: both;
}

/* Specifying the body only in order to override the .std ul li styling */
body .promos > li {
  margin: 0 0 10px 0;
  list-style: none;
  text-align: center;
  position: relative;
  border: 1px solid #CCCCCC;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.promos > li:last-child {
  margin-bottom: 0;
}

.promos img {
  max-width: 100%;
  width: 100%;
}

.promos a:hover {
  opacity: 0.8;
  -moz-opacity: 0.8;
  display: block;
}

.promos span {
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  display: block;
  width: 100%;
  top: 10%;
  font-weight: 500;
  font-size: 20px;
  font-family: "Roboto", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-shadow: 1px 1px 3px #555555;
}

.promos strong {
  font-weight: 600;
  font-size: 26px;
  display: block;
}

@media only screen and (min-width: 768px) {
  .promos span {
    font-size: 16px;
  }

  .promos strong {
    font-size: 17px;
  }

  /* Config: Three columns + flexible gutter */
  body .promos > li {
    float: left;
    width: 31.74603%;
    margin-right: 2.38095%;
  }

  .promos > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 880px) {
  .promos span {
    font-size: 18px;
  }

  .promos strong {
    font-size: 24px;
  }
}
/* -------------------------------------------- *
 * New Products Section
 */
/* Hiding the reviews content via CSS because we can't modify the template, */
/* since it may be used in other places where those elements are needed */
.cms-index-index .products-grid .ratings,
.cms-index-index .products-grid .actions,
.cms-index-noroute .products-grid .ratings,
.cms-index-noroute .products-grid .actions {
  display: none;
}

.cms-index-index h2.subtitle {
  padding: 6px 0;
  text-align: center;
  color: #3399CC;
  font-weight: 600;
  border-bottom: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
}

.cms-index-noroute h2.subtitle {
  display: none;
}

.cms-home .widget-static-block:after {
  content: '';
  display: table;
  clear: both;
}

@media only screen and (min-width: 768px) {
  #brands {
    margin-top: 20px;
  }
}
#brands .block-title {
  color: #525252;
  font-weight: 700;
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  #brands .block-title {
    float: left;
    margin-bottom: 20px;
  }
  #brands .block-title + hr {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #brands .block-title {
    font-size: 15px;
    margin-bottom: 10px;
    position: relative;
    display: inline;
    z-index: 1;
    background: white;
  }
  #brands .block-title + hr {
    display: none;
  }
}
#brands .brands {
        /*
        @include bp-range(max-width, $bp-tablet-width, min-width,$bp-medium + 1){
            .Casablanca{
                background-position:0 0!important;
            }

            .Craftmade{
                background-position:-120px 0!important;
            }

            .Wind-River{
                background-position:-240px 0!important;
            }

            .Emerson{
                background-position:-360px 0!important;
            }

            .Fanimation{
                background-position:0 -59px!important;
            }

            .Hunter{
                background-position:-120px -60px!important;
            }

            .Kichler{
                background-position:-240px -59px!important;
            }

            .Matthews{
                background-position:-360px -59px!important;
            }

            .Minka-Aire{
                background-position:0 -120px!important;
            }

            .Modern{
                background-position:-120px -120px!important;
            }

            .Monte{
                background-position:-240px -120px!important;
            }

            .Period{
                background-position:-360px -120px!important;
            }
			.Dimond{
                background-position:-475px -1325px!important;
            }
            .Quorum{
                background-position:0 -180px!important;
            }

            .Savoy{
                background-position:-120px -180px!important;
            }

            .Seagull{
                background-position:-240px -180px!important;
            }

            .Modern-Forms {
                background-position:-360px -180px!important;
            }
			
			.WAC{
				background-position:-721px -1319px!important;
			}

            .Westinghouse{
                background-position:0 -240px!important;
            }

            .Corbett{
                background-position:-120px -240px!important;
            }

            .Crystorama{
                background-position:-240px -240px!important;
            }

            .Elk{
                background-position:-360px -240px!important;
            }

            .ET2{
                background-position:0 -300px!important;
            }

            .Capital-Lighting{
                background-position:-120px -300px!important;
            }

            .Feiss{
                background-position:-240px -300px!important;
            }

            .FineArt{
                background-position:-360px -300px!important;
            }

            .FredrickRamond{
                background-position:0 -360px!important;
            }

            .GamaSonic{
                background-position:-120px -360px!important;
            }
            .Kovacs{
                background-position:-240px -360px!important;
            }

            .GreatOutdoors{
                background-position:-360px -360px!important;
            }

            .Hinkley{
                background-position:0 -420px!important;
            }

            .Hudson{
                background-position:-120px -420px!important;
            }

            .Oxygen{
                background-position:-240px -420px!important;
            }

            .Juno{
                background-position:-360px -420px!important;
            }

            .Justice{
                background-position:0 -480px!important;
            }

            .Kalco{
                background-position:-120px -480px!important;
            }

            .LBL{
                background-position:-234px -480px!important;
            }

            .Lithonia{
                background-position:-360px -480px!important;
            }

            .Lutron{
                background-position:0 -540px!important;
            }

            .Maxim{
                background-position:-120px -540px!important;
            }

            .Metropolitan{
                background-position:-240px -540px!important;
            }

            .MinkaLavery{
                background-position:-360px -540px!important;
            }

            .Sonneman{
                background-position:0 -600px!important;
            }

            .Tech{
                background-position:-120px -600px!important;
            }

            .Tiella{
                background-position:-240px -600px!important;
            }

            .Troy{
                background-position:-360px -600px!important;
            }

            .WPT{
                background-position:0 -660px!important;
            }

            .Quoizel{
                background-position:-120px -660px!important;
            }

			.Innovations{
				background-position:0 -720px!important;
			}
			
			.BAF{
				background-position:-120px -720px!important;
			}
			
			.Eurofase{
				background-position:-240px -720px!important;
			}

			.Elan{
				background-position:-720px -1440px!important;
			}
			
			.Schaefer{
				background-position:0px -1560px!important;
			}
			
			.HomePlace{
				background-position:-240px -1560px!important;
			}
			
        }*/
}
#brands .brands.toggle-content {
  border-top: 2px solid #c2c2c2;
  text-align: center;
  margin-top: 35px;
}
#brands .brands.toggle-content h2 {
  padding: 0;
  float: none;
  display: inline-block;
  position: relative;
  top: -13px;
  background: #ffffff;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #brands .brands.toggle-content h2 {
    top: -12px;
  }
}
@media only screen and (max-width: 767px) {
  #brands .brands {
    margin: 20px 0 0;
    text-align: center;
  }
  #brands .brands .toggler {
    float: none;
    text-align: center;
    margin-bottom: 15px;
  }
}
#brands .brands ul {
  margin-bottom: 0;
  clear: both;
}
#brands .brands ul li {
  list-style: none;
  float: left;
  margin-left: 0;
  margin-bottom: 32px;
}
#brands .brands ul li span.loaded {
  background: url(/media/wysiwyg/images/brand-logos.png);
  width: 124px;
  height: 60px;
  display: block;
  /*@include bp-range(max-width, $bp-tablet-width,min-width,$bp-medium + 1){
      background-size: 480px 960px;
      width:90px;
  }*/
}
#brands .brands ul li a:hover {
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  #brands .brands ul li:not(:nth-child(6n)) {
    margin-right: calc((100% - 124px * 6) / 5);
  }
}
@media only screen and (max-width: 767px) {
  #brands .brands ul li {
    width: 33.33333%;
  }
  #brands .brands ul li a {
    display: block;
    width: 100%;
    margin: auto;
  }
  #brands .brands ul li a span {
    margin: auto;
  }
}
@media only screen and (max-width: 1024px) {
  #brands .brands ul li {
    zoom: 0.85;
  }
}
@media only screen and (max-width: 479px) {
  #brands .brands ul li {
    zoom: 0.65;
  }
}
#brands .brands ul:after {
  content: '';
  display: table;
  clear: both;
}
#brands .brands .Casablanca {
  background-position: 0 0 !important;
}
#brands .brands .Craftmade {
  background-position: -240px 0 !important;
}
#brands .brands .Wind-River {
  background-position: -480px 0 !important;
}
#brands .brands .Emerson {
  background-position: -720px 0 !important;
}
#brands .brands .Fanimation {
  background-position: 0 -118px !important;
}
#brands .brands .Hunter {
  background-position: -240px -118px !important;
}
#brands .brands .Kichler {
  background-position: -480px -118px !important;
}
#brands .brands .Matthews {
  background-position: -720px -118px !important;
}
#brands .brands .Minka-Aire {
  background-position: 0 -240px !important;
}
#brands .brands .Modern {
  background-position: -240px -240px !important;
}
#brands .brands .Monte {
  background-position: -480px -240px !important;
}
#brands .brands .Period {
  background-position: -720px -240px !important;
}
#brands .brands .Dimond {
  background-position: -475px -1325px !important;
}
#brands .brands .Quorum {
  background-position: 0 -360px !important;
}
#brands .brands .Savoy {
  background-position: -240px -360px !important;
}
#brands .brands .Seagull {
  background-position: -480px -360px !important;
}
#brands .brands .Modern-Forms {
  background-position: -720px -360px !important;
}
#brands .brands .WAC {
  background-position: -721px -1319px !important;
}
#brands .brands .Westinghouse {
  background-position: 0 -480px !important;
}
#brands .brands .Corbett {
  background-position: -240px -480px !important;
}
#brands .brands .Crystorama {
  background-position: -480px -480px !important;
}
#brands .brands .Elk {
  background-position: -720px -480px !important;
}
#brands .brands .ET2 {
  background-position: 0 -600px !important;
}
#brands .brands .Capital-Lighting {
  background-position: -240px -600px !important;
}
#brands .brands .Feiss {
  background-position: -480px -600px !important;
}
#brands .brands .FineArt {
  background-position: -720px -600px !important;
}
#brands .brands .FredrickRamond {
  background-position: 0 -720px !important;
}
#brands .brands .GamaSonic {
  background-position: -240px -720px !important;
}
#brands .brands .Kovacs {
  background-position: -480px -720px !important;
}
#brands .brands .GreatOutdoors {
  background-position: -720px -720px !important;
}
#brands .brands .Hinkley {
  background-position: 0 -840px !important;
}
#brands .brands .Hudson {
  background-position: -240px -840px !important;
}
#brands .brands .Oxygen {
  background-position: -480px -840px !important;
}
#brands .brands .Juno {
  background-position: -720px -840px !important;
}
#brands .brands .Justice {
  background-position: 0 -960px !important;
}
#brands .brands .Kalco {
  background-position: -240px -960px !important;
}
#brands .brands .LBL {
  background-position: -468px -960px !important;
}
#brands .brands .Lithonia {
  background-position: -720px -960px !important;
}
#brands .brands .Lutron {
  background-position: 0 -1080px !important;
}
#brands .brands .Maxim {
  background-position: -240px -1080px !important;
}
#brands .brands .Metropolitan {
  background-position: -480px -1080px !important;
}
#brands .brands .MinkaLavery {
  background-position: -720px -1080px !important;
}
#brands .brands .Sonneman {
  background-position: 0 -1200px !important;
}
#brands .brands .Tech {
  background-position: -240px -1200px !important;
}
#brands .brands .Tiella {
  background-position: -480px -1200px !important;
}
#brands .brands .Troy {
  background-position: -720px -1200px !important;
}
#brands .brands .WPT {
  background-position: 0 -1320px !important;
}
#brands .brands .Quoizel {
  background-position: -240px -1320px !important;
}
#brands .brands .Innovations {
  background-position: 0 -1440px !important;
}
#brands .brands .BAF {
  background-position: -240px -1440px !important;
}
#brands .brands .Eurofase {
  background-position: -480px -1440px !important;
}
#brands .brands .Elan {
  background-position: -720px -1440px !important;
}
#brands .brands .Schaefer {
  background-position: 0px -1560px !important;
}
#brands .brands .HomePlace {
  background-position: -240px -1560px !important;
}

@media only screen and (min-width: 768px) {
  .cms-home .left.group,
  .cms-home .right.group {
    float: left;
    margin-top: 34px;
  }
  .cms-home .left.group:after,
  .cms-home .right.group:after {
    content: '';
    display: table;
    clear: both;
  }
}
.cms-home .left.group {
  width: 70%;
  padding-right: 24px;
}
.cms-home .left.group .toggler {
  margin-top: 0;
}
.cms-home .left.group .widget-static-block {
  margin-bottom: 20px;
}
.cms-home .left.group .block .block-title {
  font-weight: 700;
  font-size: 18px;
  color: black;
  margin-bottom: 15px;
}
.cms-home .left.group .block .content {
  color: #525252;
  font-size: 14px;
  line-height: 18px;
}
.cms-home .left.group .block .content a,
.cms-home .left.group .block .content .video-toggler {
  color: #4C7F93;
  font-weight: 600;
  border-bottom: 1px dotted #c2c2c2;
}
.cms-home .left.group .block .content .video-toggler {
  border: none;
  cursor: pointer;
}
.cms-home .left.group .youtube-container {
  margin-bottom: 20px;
}
.cms-home .left.group .youtube-container .youtube-player {
  position: relative;
  width: 474px;
  height: 265px;
  margin: auto;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
}
.cms-home .left.group .youtube-container .youtube-player img {
  margin-top: -46px;
}
.cms-home .left.group .youtube-container #youtube-iframe {
  width: 100%;
  height: 100%;
}
.cms-home .left.group .youtube-container .play-button {
  height: 72px;
  width: 72px;
  left: 50%;
  top: 50%;
  margin-left: -36px;
  margin-top: -36px;
  position: absolute;
  z-index: 1;
  background: url("https://i.imgur.com/TxzC70f.png") no-repeat;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.cms-home .left.group .youtube-container .play-button:hover {
  opacity: 0.2;
}
.cms-home .left.group .youtube-container:after {
  content: '';
  display: table;
  clear: both;
}
.cms-home .right.group {
  width: 30%;
}
.cms-home .right.group .widget-static-block {
  margin-bottom: 25px;
}
.cms-home .right.group .block-title {
  color: #525252;
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
}
.cms-home .right.group .block {
  margin-bottom: 0;
}
.cms-home .right.group a.button {
  width: 100%;
  text-transform: uppercase;
  height: 40px;
  line-height: 40px;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.cms-home .right.group a.button img {
  display: initial;
  padding-left: 12px;
}
.cms-home .right.group a.button:hover {
  color: #2a2c83;
  background: #F7EACD;
}
.cms-home .right.group #testimonials.loaded {
  background-image: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/media/testimonial.jpg);
}
.cms-home .right.group #education-center.loaded {
  background-image: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/media/educate.jpg);
}
.cms-home .right.group .block {
  padding: 18px;
  background-size: cover;
  position: relative;
}
.cms-home .right.group .block .content {
  font-size: 13px;
  line-height: 16px;
  max-width: 190px;
  margin: 15px 0 35px;
}
.cms-home .right.group .block .content span {
  display: block;
  margin-top: 8px;
}
@media only screen and (max-width: 767px) {
  .cms-home .left.group,
  .cms-home .right.group {
    width: 100%;
  }
  .cms-home .left.group {
    margin-top: 20px;
    padding-right: 0;
  }
  .cms-home .left.group .youtube-container .youtube-player {
    width: 100%;
    height: auto;
  }
  .cms-home .left.group .youtube-container .youtube-player img {
    width: 100%;
    margin-top: -20px;
  }
}

#ltkmodal-contentarea input.textbox {
  padding: 0px !important;
}

@media only screen and (max-width: 480px) {
  body #ltkmodal-container {
    margin-left: 0px !important;
    width: 100% !important;
    left: 0px !important;
    padding: 0 20px !important;
    top: 10% !important;
  }

  body #ltkmodal-wrapper {
    width: 100% !important;
  }
  body #ltkmodal-wrapper #close-button {
    right: 20px !important;
  }

  #ltkmodal-contentarea .fanImage {
    width: 100% !important;
  }
  #ltkmodal-contentarea h1 {
    font-size: 30px !important;
  }
  #ltkmodal-contentarea input.textbox {
    padding: 0px !important;
  }
}
/* ============================================ *
 * Category Landing Pages
 * ============================================ */
.category-image {
  position: relative;
}

.categorylandingMainblock {
  border: 1px solid #E2E2E2;
  padding: 7px;
}

.catblocks {
  float: left;
  padding: 0 0 20px 0;
  width: 100%;
}

.catblocks li {
  position: relative;
  float: left !important;
  width: 23% !important;
  margin-right: 2.66667% !important;
  margin-bottom: 10px;
  border: 1px solid #CCCCCC;
  padding: 10px;
}

.catblocks li:hover {
  border-color: #3399CC;
}

@media only screen and (max-width: 767px) {
  .catblocks li {
    width: 49% !important;
    margin-right: 2% !important;
  }

  .catblocks li:nth-child(even) {
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 479px) {
  .catblocks li {
    width: 100% !important;
    margin-right: 0 !important;
    float: none;
  }
}
.catblocks li:last-child {
  margin-right: 0 !important;
}

.catblocks li img {
  width: 100%;
  max-width: 100%;
}

.catblocks li a span {
  color: #FFFFFF;
  position: absolute;
  background-color: #7B7C7B;
  font-family: raleway;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 5px 10px;
  margin-right: 10px;
}

.catblocklinks a {
  color: #FFFFFF;
  text-decoration: none;
}

.catlandingbottomPromoblock {
  float: left;
  width: 100%;
  border: 1px solid #E2E2E2;
  margin-bottom: 100px;
}

@media only screen and (min-width: 768px) {
  .catalog-category-view .main-container {
    max-width: 1019px;
    background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/page-row-bg.png) no-repeat;
    background-size: 100% auto;
    background-position: 0 35px;
  }
  .catalog-category-view .main-container .main {
    padding: 0 15px;
  }
  .catalog-category-view .main-container .col-left,
  .catalog-category-view .main-container .col-main {
    padding-top: 5px;
    margin-bottom: 0;
    margin-top: 20px;
  }
  .catalog-category-view .main-container .col-left:not(.col-left-first) {
    padding-top: 0;
  }
  .catalog-category-view .main-container .col-main {
    padding-right: 10px;
  }
}

.catalog-category-view div.categoryland-caption {
  display: block;
  margin: 0;
  position: absolute;
  color: #000000;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
}

.catalog-category-view div.categoryland-caption span.blue-big-text {
  color: #3399CC;
  font-size: 50px;
  font-weight: 800;
  padding: 0 0 0 8px;
}

.catalog-category-view div.categoryland-caption span.blue-big-text {
  padding: 0 !important;
}

.catalog-category-view div.categoryland-caption span.three-dots {
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/bg_threeDots.png) no-repeat center center;
  display: block;
  height: 20px;
}

.catalog-category-view div.categoryland-caption p.desc {
  font: italic 18px/28px Georgia, "Times New Roman", Times, serif;
  color: #656565;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption a.link:hover,
.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption span.link:hover {
  text-decoration: underline;
  color: #1189C5;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption span.blue-big-text,
.catalog-category-view div.categoryland-caption span.blue-big-text {
  color: #3399CC;
  font-size: 50px;
  font-weight: 800;
  padding: 0 0 0 8px;
}

.catalog-category-view div.categoryland-caption span.blue-big-text {
  padding: 0 !important;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption span.three-dots,
.catalog-category-view div.categoryland-caption span.three-dots {
  background: url(https://www.delmarfans.com/skin/frontend/perficient/delmarfans/images/bg_threeDots.png) no-repeat center center;
  display: block;
  height: 20px;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption p.desc,
.catalog-category-view div.categoryland-caption p.desc {
  font: italic 18px/28px Georgia, "Times New Roman", Times, serif;
  color: #656565;
}

.catalog-category-view .hub-category,
.catalog-category-view .hub-category .category-list {
  margin-bottom: 10px;
}

.catalog-category-view .col-main {
  display: table;
}

.catalog-category-view .col-main .gen-page-content {
  display: table-footer-group;
}

/*# sourceMappingURL=styles.css.map */

