@charset "UTF-8";
/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

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

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

/* Address styling not present in IE 8/9. */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
html {
  font-family: "Open Sans", Arial, sans-serif;
  /* 1 */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.5em;
  color: #3e3e3e;
}

/* Remove default margin. */
body {
  margin: 0;
  padding: 0;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
a {
  text-decoration: none;
}

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

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

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
p,
pre {
  margin: 1.5em 0;
}

blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

h3 {
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}

h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

h5 {
  font-size: 0.83em;
  line-height: 1.80723em;
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}

h6 {
  font-size: 0.67em;
  line-height: 2.23881em;
  margin-top: 2.23881em;
  margin-bottom: 2.23881em;
}

h1, h2, h3 {
  font-family: "Roboto Condensed", sans-serif;
  color: #101010;
}

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

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

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

/* Address differences between Firefox and other browsers. */
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

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

/* Correct font family set oddly in Safari 5 and Chrome. */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}

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

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

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

/* Prevent `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;
}

/**
 * Lists
 */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

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

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

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-width: 0.0625em;
  border-top-style: solid;
  padding-top: 0.4625em;
  border-bottom-width: 0.0625em;
  border-bottom-style: solid;
  padding-bottom: 0.9125em;
  border-left-width: 0.0625em;
  border-left-style: solid;
  padding-left: 0.9125em;
  border-right-width: 0.0625em;
  border-right-style: solid;
  padding-right: 0.9125em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

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

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
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],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `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;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove 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;
}

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

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

/* Drupal-style form labels. */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  width: 100%;
  /* Add vertical rhythm margins. */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* Layout rules */
/**
 * @file
 * Positioning for a responsive layout.
 *
 * Define CSS classes to create a fluid grid layout with optional sidebars
 * depending on whether blocks are placed in the left or right sidebars.
 *
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
 */
/**
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 1070px;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
.node-webform,
.page-inner,
.body-center-column,
.utility,
#header,
#navigation,
#footer {
  padding-left: 50px;
  padding-right: 50px;
}

.node-webform,
.body-center-column,
.page-inner {
  max-width: 970px;
  margin: 0 auto;
}

/* Containers for grid items and flow items. */
.node-webform:before, .node-webform:after,
.common-questions:before,
.common-questions:after,
.body-center-column:before,
.body-center-column:after,
#header:before,
#header:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
.node-webform:after,
.common-questions:after,
.body-center-column:after,
#header:after,
#main:after,
#footer:after {
  clear: both;
}

/**
 * Use 12 grid columns for larger screens.
 */
.body-center-column,
.page-inner,
#navigation,
#footer {
  padding-left: 30px;
  padding-right: 30px;
}

.utility {
  float: right;
  width: 100%;
  margin-right: 0%;
  margin-left: -100%;
  padding-right: 0;
  padding-left: 0;
}
.utility .block-menu {
  float: right;
}
.utility .block-wiz-wpn-locale-selector {
  float: right;
}

#header {
  clear: right;
  padding: 0;
}
#header .block-menu {
  margin-left: 150px;
}
#header .block-apachesolr-panels, #header .block-search {
  position: absolute;
  top: -62px;
  right: 0;
  width: 200px;
}

.panel-homepage .body-centermain {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
}
.panel-homepage .body-centerleft {
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
  clear: left;
}
.panel-homepage .body-centerright {
  float: left;
  width: 50%;
  margin-left: 50%;
  margin-right: -100%;
}

.common-questions .question-info {
  float: left;
  width: 16.66667%;
  margin-left: 0%;
  margin-right: -16.66667%;
}
.common-questions .see-all-faq {
  float: left;
  width: 16.66667%;
  margin-left: 0%;
  margin-right: -16.66667%;
  clear: left;
}
.common-questions .questions {
  float: left;
  width: 83.33333%;
  margin-left: 16.66667%;
  margin-right: -100%;
}

#footer .block-menu-block {
  float: left;
  width: 50%;
  margin-left: 25%;
  margin-right: -75%;
}
#footer .footer-logo {
  float: left;
  width: 25%;
  margin-left: 0%;
  margin-right: -25%;
}
#footer .footer-security {
  float: left;
  width: 25%;
  margin-left: 75%;
  margin-right: -100%;
}
#footer .copyright {
  clear: left;
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
}

/**
 * Special Queries for tablet styling
 */
@media all and (max-width: 960px) {
  #header .block-apachesolr-panels, #header .block-search {
    width: 20%;
  }
}
@media all and (max-width: 800px) {
  /* Apply the shared properties of grid items in a single, efficient ruleset. */
  #header {
    padding: 0;
  }
  #header #logo {
    left: 0;
    right: 0;
  }
  #header .block-apachesolr-panels, #header .block-search {
    display: none;
  }
  #header .block-menu li {
    width: 100%;
    height: auto;
  }

  .panel-homepage .top-img-container {
    width: 100% !important;
    float: none !important;
  }
  .panel-homepage img {
    width: 100%;
    height: auto;
    float: none;
  }
  .panel-homepage .body-centermain {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }
  .panel-homepage .body-centerleft,
  .panel-homepage .body-centerright {
    padding-bottom: 10px !important;
  }
  .panel-homepage .body-centerleft {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }
  .panel-homepage .body-centerright {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }

  .common-questions .question-info {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }
  .common-questions .see-all-faq {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    clear: left;
  }
  .common-questions .questions {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }
  .common-questions .questions ul li a {
    padding: 15px !important;
  }

  #footer div.branding-center {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }
  #footer div.branding-left {
    clear: left;
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
  }
  #footer div.branding-right {
    float: left;
    width: 25%;
    margin-left: 25%;
    margin-right: -50%;
  }
  #footer .copyright {
    clear: left;
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }
}
/* Form rules */
/**
 * @file
 * Forms Mang
 */
.page-node #page .webform-confirmation {
  background: #f6f6f6;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 40px 30px;
  position: relative;
  z-index: 100;
  max-width: 970px;
  margin: 0 auto;
}
.page-node #page .webform-confirmation h1 {
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.page-node #page .webform-confirmation + .links {
  background: #f6f6f6;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 40px 30px;
  position: relative;
  z-index: 100;
  max-width: 970px;
  margin: 0 auto;
}

/* FORM RESET */
form.webform-client-form {
  margin-left: 0;
  /* REVIEW EVENT */
  /* SCHEDULE EVENT */
  /* WEBFORM DATES LAYOUT */
  /* restrict to forms */
}
form.webform-client-form .form-item {
  margin: 0;
}
form.webform-client-form #edit-submitted-schedule-event-review > label {
  float: left;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 42px;
  text-transform: uppercase;
}
form.webform-client-form #edit-submitted-schedule-event-review fieldset .form-item.webform-component {
  height: 40px;
  line-height: 40px;
  border-bottom: solid #ccc 1px;
}
form.webform-client-form #edit-submitted-schedule-event-review fieldset .form-item.webform-component#webform-component-schedule-event-event-information--schedule-event-pairing-method {
  border-bottom: none;
}
form.webform-client-form #edit-submitted-schedule-event-review fieldset legend {
  padding-left: 0;
}
form.webform-client-form #edit-submitted-schedule-event-review fieldset em {
  display: none;
}
form.webform-client-form #edit-submitted-schedule-event-review fieldset#webform-component-schedule-event-select-game {
  width: 50%;
  float: right;
  clear: none;
}
form.webform-client-form #edit-submitted-schedule-event-review fieldset#webform-component-schedule-event-select-game legend {
  display: none;
}
form.webform-client-form #edit-submitted-schedule-event-review fieldset#webform-component-schedule-event-select-game .form-item.webform-component {
  background: #fff;
  border: solid #ccc 1px;
  border-radius: 4px;
  padding: 20px;
  width: 92%;
}
form.webform-client-form #edit-submitted-schedule-event-review fieldset#webform-component-schedule-event-event-information {
  float: left;
  clear: right;
  width: 46%;
  margin-right: 4%;
}
form.webform-client-form #edit-submitted-schedule-event-review fieldset#webform-component-schedule-event-your-information {
  float: left;
  clear: none;
  width: 50%;
}
form.webform-client-form fieldset#webform-component-schedule-event-select-game .fieldset-wrapper .webform-component-radios > label,
form.webform-client-form fieldset#webform-component-schedule-event-select-game--2 .fieldset-wrapper .webform-component-radios > label {
  display: none;
}
form.webform-client-form fieldset#webform-component-schedule-event-select-game .fieldset-wrapper .webform-component-radios #edit-submitted-schedule-event-select-game-schedule-event-select-game-select:after,
form.webform-client-form fieldset#webform-component-schedule-event-select-game--2 .fieldset-wrapper .webform-component-radios #edit-submitted-schedule-event-select-game-schedule-event-select-game-select:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
form.webform-client-form fieldset#webform-component-schedule-event-select-game .fieldset-wrapper .webform-component-radios .form-item,
form.webform-client-form fieldset#webform-component-schedule-event-select-game--2 .fieldset-wrapper .webform-component-radios .form-item {
  margin-top: 20px;
  float: left;
  clear: none;
  height: auto;
}
form.webform-client-form fieldset#webform-component-schedule-event-select-game .fieldset-wrapper .webform-component-radios .form-item input[type="radio"],
form.webform-client-form fieldset#webform-component-schedule-event-select-game--2 .fieldset-wrapper .webform-component-radios .form-item input[type="radio"] {
  display: none;
}
form.webform-client-form fieldset#webform-component-schedule-event-select-game .fieldset-wrapper .webform-component-radios .form-item input[type="radio"] + label,
form.webform-client-form fieldset#webform-component-schedule-event-select-game--2 .fieldset-wrapper .webform-component-radios .form-item input[type="radio"] + label {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  border: solid #ccc 1px;
  text-indent: -55555px;
  width: 280px;
  margin-right: 10px !important;
}
form.webform-client-form fieldset#webform-component-schedule-event-select-game .fieldset-wrapper .webform-component-radios .form-item input[type="radio"]:checked + label,
form.webform-client-form fieldset#webform-component-schedule-event-select-game--2 .fieldset-wrapper .webform-component-radios .form-item input[type="radio"]:checked + label {
  border: solid #d0123e 1px !important;
}
form.webform-client-form fieldset#webform-component-schedule-event-select-game .fieldset-wrapper .webform-component-radios .form-item input[type="radio"]#edit-submitted-schedule-event-select-game-schedule-event-select-game-select-1 + label,
form.webform-client-form fieldset#webform-component-schedule-event-select-game--2 .fieldset-wrapper .webform-component-radios .form-item input[type="radio"]#edit-submitted-schedule-event-select-game-schedule-event-select-game-select-1 + label {
  background: url(../images/game-logos/magic-the-gathering.png) center center no-repeat #fff;
  border-radius: 4px;
  height: 190px;
}
form.webform-client-form fieldset#webform-component-schedule-event-select-game .fieldset-wrapper .webform-component-radios .form-item input[type="radio"]#edit-submitted-schedule-event-select-game-schedule-event-select-game-select-2 + label,
form.webform-client-form fieldset#webform-component-schedule-event-select-game--2 .fieldset-wrapper .webform-component-radios .form-item input[type="radio"]#edit-submitted-schedule-event-select-game-schedule-event-select-game-select-2 + label {
  background: url(../images/game-logos/dungeons-and-dragons.png) center center no-repeat #fff;
  border-radius: 4px;
  height: 190px;
}
form.webform-client-form fieldset#webform-component-schedule-event-select-game .fieldset-wrapper .webform-component-radios .form-item input[type="radio"]#edit-submitted-schedule-event-select-game-schedule-event-select-game-select-3 + label,
form.webform-client-form fieldset#webform-component-schedule-event-select-game--2 .fieldset-wrapper .webform-component-radios .form-item input[type="radio"]#edit-submitted-schedule-event-select-game-schedule-event-select-game-select-3 + label {
  background: url(../images/game-logos/kaijudo.png) center center no-repeat #fff;
  border-radius: 4px;
  height: 190px;
}
form.webform-client-form fieldset#webform-component-schedule-event-select-game #edit-submitted-schedule-event-select-game-schedule-event-select-game-select,
form.webform-client-form fieldset#webform-component-schedule-event-select-game--2 #edit-submitted-schedule-event-select-game-schedule-event-select-game-select {
  margin: 0;
}
form.webform-client-form fieldset#webform-component-schedule-event-event-information--2,
form.webform-client-form fieldset#webform-component-schedule-event-event-information, form.webform-client-form fieldset#webform-component-schedule-event-your-information {
  width: 50%;
  float: left;
  clear: none;
  margin: 10px 0;
}
form.webform-client-form fieldset#webform-component-schedule-event-event-information--2 input, form.webform-client-form fieldset#webform-component-schedule-event-event-information--2 select, form.webform-client-form fieldset#webform-component-schedule-event-event-information--2 .webform-datepicker, form.webform-client-form fieldset#webform-component-schedule-event-event-information--2 .chzn-container-single, form.webform-client-form fieldset#webform-component-schedule-event-event-information--2 .form-textarea-wrapper,
form.webform-client-form fieldset#webform-component-schedule-event-event-information input,
form.webform-client-form fieldset#webform-component-schedule-event-event-information select,
form.webform-client-form fieldset#webform-component-schedule-event-event-information .webform-datepicker,
form.webform-client-form fieldset#webform-component-schedule-event-event-information .chzn-container-single,
form.webform-client-form fieldset#webform-component-schedule-event-event-information .form-textarea-wrapper, form.webform-client-form fieldset#webform-component-schedule-event-your-information input, form.webform-client-form fieldset#webform-component-schedule-event-your-information select, form.webform-client-form fieldset#webform-component-schedule-event-your-information .webform-datepicker, form.webform-client-form fieldset#webform-component-schedule-event-your-information .chzn-container-single, form.webform-client-form fieldset#webform-component-schedule-event-your-information .form-textarea-wrapper {
  width: 62% !important;
}
form.webform-client-form fieldset#webform-component-schedule-event-event-information--2 .webform-datepicker .form-type-select,
form.webform-client-form fieldset#webform-component-schedule-event-event-information .webform-datepicker .form-type-select, form.webform-client-form fieldset#webform-component-schedule-event-your-information .webform-datepicker .form-type-select {
  width: 96px !important;
  margin-right: 6px;
}
form.webform-client-form fieldset#webform-component-schedule-event-event-information--2 .webform-datepicker .form-type-select .chzn-container-single,
form.webform-client-form fieldset#webform-component-schedule-event-event-information .webform-datepicker .form-type-select .chzn-container-single, form.webform-client-form fieldset#webform-component-schedule-event-your-information .webform-datepicker .form-type-select .chzn-container-single {
  width: 100% !important;
}
form.webform-client-form fieldset#webform-component-schedule-event-event-information--2 .webform-datepicker .form-type-select:last-child, form.webform-client-form fieldset#webform-component-schedule-event-event-information--2 .webform-datepicker .form-type-select.form-item-submitted-schedule-event-event-information-schedule-event-start-date-year, form.webform-client-form fieldset#webform-component-schedule-event-event-information--2 .webform-datepicker .form-type-select.form-item-submitted-schedule-event-event-information-schedule-event-end-date-year,
form.webform-client-form fieldset#webform-component-schedule-event-event-information .webform-datepicker .form-type-select:last-child,
form.webform-client-form fieldset#webform-component-schedule-event-event-information .webform-datepicker .form-type-select.form-item-submitted-schedule-event-event-information-schedule-event-start-date-year,
form.webform-client-form fieldset#webform-component-schedule-event-event-information .webform-datepicker .form-type-select.form-item-submitted-schedule-event-event-information-schedule-event-end-date-year, form.webform-client-form fieldset#webform-component-schedule-event-your-information .webform-datepicker .form-type-select:last-child, form.webform-client-form fieldset#webform-component-schedule-event-your-information .webform-datepicker .form-type-select.form-item-submitted-schedule-event-event-information-schedule-event-start-date-year, form.webform-client-form fieldset#webform-component-schedule-event-your-information .webform-datepicker .form-type-select.form-item-submitted-schedule-event-event-information-schedule-event-end-date-year {
  margin-right: 0;
}
form.webform-client-form fieldset#webform-component-schedule-event-event-information--2 .chzn-search,
form.webform-client-form fieldset#webform-component-schedule-event-event-information .chzn-search, form.webform-client-form fieldset#webform-component-schedule-event-your-information .chzn-search {
  /*display: block !important;*/
}
form.webform-client-form fieldset#webform-component-schedule-event-event-information--2 .chzn-search input,
form.webform-client-form fieldset#webform-component-schedule-event-event-information .chzn-search input, form.webform-client-form fieldset#webform-component-schedule-event-your-information .chzn-search input {
  width: 100% !important;
  float: none;
}
form.webform-client-form #edit-submitted-add-event-location-dci-fieldset-add-event-location--1:checked + label,
form.webform-client-form #edit-submitted-add-event-organizer-dci-number-fieldset-add-event-organizer-dci-number-1:checked + label,
form.webform-client-form #edit-submitted-update-person-roles-dci-number-fieldset-update-person-roles-dci-number-1:checked + label,
form.webform-client-form #edit-submitted-update-personal-information-dci-number-fieldset-update-personal-information-dci-number-1:checked + label,
form.webform-client-form #edit-submitted-update-store-dci-fieldset-update-store-dci-1:checked + label,
form.webform-client-form #edit-submitted-join-wpn-dci-fieldset-join-wpn-dci-1:checked + label {
  margin-bottom: 80px;
}
form.webform-client-form #webform-component-add-event-location-dci-fieldset--dci-number,
form.webform-client-form #webform-component-add-event-organizer-dci-number-fieldset--event-organizer-dci-number-val,
form.webform-client-form #webform-component-update-person-roles-dci-number-fieldset--upr-dci-number-value,
form.webform-client-form #webform-component-update-personal-information-dci-number-fieldset--upi-dci-number-value,
form.webform-client-form #webform-component-update-store-dci-fieldset--usi-dci-number-value,
form.webform-client-form #webform-component-join-wpn-dci-fieldset--join-wpn-use-dci-number-value {
  margin-top: -130px;
  margin-left: 50px;
  width: auto;
}
form.webform-client-form #webform-component-add-event-location-dci-fieldset--dci-number label,
form.webform-client-form #webform-component-add-event-organizer-dci-number-fieldset--event-organizer-dci-number-val label,
form.webform-client-form #webform-component-update-person-roles-dci-number-fieldset--upr-dci-number-value label,
form.webform-client-form #webform-component-update-personal-information-dci-number-fieldset--upi-dci-number-value label,
form.webform-client-form #webform-component-update-store-dci-fieldset--usi-dci-number-value label,
form.webform-client-form #webform-component-join-wpn-dci-fieldset--join-wpn-use-dci-number-value label {
  display: none;
}
form.webform-client-form #webform-component-add-event-location-dci-fieldset--dci-number input,
form.webform-client-form #webform-component-add-event-organizer-dci-number-fieldset--event-organizer-dci-number-val input,
form.webform-client-form #webform-component-update-person-roles-dci-number-fieldset--upr-dci-number-value input,
form.webform-client-form #webform-component-update-personal-information-dci-number-fieldset--upi-dci-number-value input,
form.webform-client-form #webform-component-update-store-dci-fieldset--usi-dci-number-value input,
form.webform-client-form #webform-component-join-wpn-dci-fieldset--join-wpn-use-dci-number-value input {
  width: 30%;
}
form.webform-client-form .webform-component-fieldset {
  border: none;
  clear: both;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  width: 100%;
  /* DESCRIPTIONS */
  /* GENERIC ALL LABELS IN FORM */
  /* GENERIC INPUT AND SELECT FORM STUFF */
  /* RADIO and CHECKBOXES LAYOUT */
  /* WEBFORM COMPONENTS LAYOUT */
}
form.webform-client-form .webform-component-fieldset legend {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  min-height: 44px;
  padding-left: 50px;
  position: relative;
}
form.webform-client-form .webform-component-fieldset legend em {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 34px;
  text-align: center;
  border-radius: 40px;
  border-top: solid #777777 2px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: normal;
  background: #4b4b4b;
  /* Old browsers */
  background: -moz-linear-gradient(top, #4b4b4b 0%, #353535 98%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4b4b4b), color-stop(98%, #353535));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #4b4b4b 0%, #353535 98%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #4b4b4b 0%, #353535 98%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #4b4b4b 0%, #353535 98%);
  /* IE10+ */
  background: linear-gradient(to bottom, #4b4b4b 0%, #353535 98%);
  /* W3C */
}
form.webform-client-form .webform-component-fieldset .fieldset-description {
  margin-bottom: 20px;
  font-size: 14px;
  padding-left: 50px;
}
form.webform-client-form .webform-component-fieldset label {
  font-weight: normal;
  font-size: 13px;
  margin-right: 0 !important;
}
form.webform-client-form .webform-component-fieldset input, form.webform-client-form .webform-component-fieldset select {
  height: 40px;
  border: solid #ccc 1px;
  width: 83.5%;
  float: left;
  padding: 0 10px;
  font-size: 13px;
  color: #333;
}
form.webform-client-form .webform-component-fieldset input.webform-calendar, form.webform-client-form .webform-component-fieldset select.webform-calendar {
  width: auto;
  display: none;
}
form.webform-client-form .webform-component-fieldset .form-textarea-wrapper textarea {
  border: solid #ccc 1px;
}
form.webform-client-form .webform-component-fieldset #webform-component-update-person-roles-dci-number-fieldset--upr-dci-number-value input {
  width: auto;
}
form.webform-client-form .webform-component-fieldset .form-radios, form.webform-client-form .webform-component-fieldset .form-checkboxes {
  margin: 0 0 0 48px;
  width: auto;
  float: left;
}
form.webform-client-form .webform-component-fieldset .form-radios .form-type-radio, form.webform-client-form .webform-component-fieldset .form-radios .form-type-checkbox, form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-radio, form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-checkbox {
  clear: both;
  margin-bottom: 10px;
  height: 19px;
}
form.webform-client-form .webform-component-fieldset .form-radios .form-type-radio input[type="radio"], form.webform-client-form .webform-component-fieldset .form-radios .form-type-radio input[type="checkbox"], form.webform-client-form .webform-component-fieldset .form-radios .form-type-checkbox input[type="radio"], form.webform-client-form .webform-component-fieldset .form-radios .form-type-checkbox input[type="checkbox"], form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-radio input[type="radio"], form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-radio input[type="checkbox"], form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-checkbox input[type="radio"], form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-checkbox input[type="checkbox"] {
  display: none;
}
form.webform-client-form .webform-component-fieldset .form-radios .form-type-radio input[type="radio"] + label, form.webform-client-form .webform-component-fieldset .form-radios .form-type-radio input[type="checkbox"] + label, form.webform-client-form .webform-component-fieldset .form-radios .form-type-checkbox input[type="radio"] + label, form.webform-client-form .webform-component-fieldset .form-radios .form-type-checkbox input[type="checkbox"] + label, form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-radio input[type="radio"] + label, form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-radio input[type="checkbox"] + label, form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-checkbox input[type="radio"] + label, form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-checkbox input[type="checkbox"] + label {
  display: inline-block;
  float: left;
  height: 19px;
  width: 19px;
  margin-right: 10px;
  width: auto;
  background: url(../images/bg-checkboxes.png) 0 0 no-repeat;
  padding-left: 30px;
  min-height: 0 !important;
}
form.webform-client-form .webform-component-fieldset .form-radios .form-type-radio input[type="checkbox"] + label, form.webform-client-form .webform-component-fieldset .form-radios .form-type-checkbox input[type="checkbox"] + label, form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-radio input[type="checkbox"] + label, form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-checkbox input[type="checkbox"] + label {
  background-image: url(../images/bg-real-checkboxes.png);
}
form.webform-client-form .webform-component-fieldset .form-radios .form-type-radio input[type="radio"]:checked + label, form.webform-client-form .webform-component-fieldset .form-radios .form-type-radio input[type="checkbox"]:checked + label, form.webform-client-form .webform-component-fieldset .form-radios .form-type-checkbox input[type="radio"]:checked + label, form.webform-client-form .webform-component-fieldset .form-radios .form-type-checkbox input[type="checkbox"]:checked + label, form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-radio input[type="radio"]:checked + label, form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-radio input[type="checkbox"]:checked + label, form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-checkbox input[type="radio"]:checked + label, form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-checkbox input[type="checkbox"]:checked + label {
  background-position: 0 -19px;
}
form.webform-client-form .webform-component-fieldset .form-radios .form-type-radio label, form.webform-client-form .webform-component-fieldset .form-radios .form-type-checkbox label, form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-radio label, form.webform-client-form .webform-component-fieldset .form-checkboxes .form-type-checkbox label {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  width: auto;
  height: 19px;
  line-height: 19px;
}
form.webform-client-form .webform-component-fieldset .webform-component {
  clear: both;
  margin: 0 0 10px 0;
  width: 100%;
  float: left;
}
form.webform-client-form .webform-component-fieldset .webform-component label {
  font-weight: 600;
  float: left;
  min-height: 40px;
  line-height: 40px;
  width: 160px;
  word-break: break-word;
  line-height: 1.3;
  margin-top: 10px;
}
form.webform-client-form .webform-component-fieldset .webform-component label.option {
  height: 40px;
}
form.webform-client-form .webform-component-fieldset .webform-component .form-textarea-wrapper {
  width: 83.5%;
  float: left;
}
form.webform-client-form .webform-component-fieldset .webform-component .chzn-container-single {
  width: 83.5% !important;
  padding: 0;
}
form.webform-client-form .webform-component-fieldset .webform-component .chzn-container-single span {
  padding: 0 3px;
}
form.webform-client-form .webform-component-fieldset .webform-component-checkboxes label {
  height: 19px;
  line-height: 19px;
}
form.webform-client-form .webform-component-fieldset .webform-component-checkboxes .form-checkboxes {
  margin-left: 0;
}
form.webform-client-form .webform-datepicker {
  float: left;
  width: 83.5%;
}
form.webform-client-form .webform-datepicker label {
  display: none;
}
form.webform-client-form .webform-datepicker .form-type-select {
  width: 100%;
  float: left;
  margin-right: 6px;
}
form.webform-client-form .webform-datepicker .form-type-select:last-child, form.webform-client-form .webform-datepicker .form-type-select.form-item-submitted-update-store-personal-information-usi-personal-information-layout-usi-personal-information-right-update-store-date-of-birth-year, form.webform-client-form .webform-datepicker .form-type-select.form-item-submitted-add-event-location-personal-information-ael-personal-information-layout-ael-personal-information-right-add-event-location-date-of-birth-year, form.webform-client-form .webform-datepicker .form-type-select.form-item-submitted-add-event-organizer-personal-information-aeo-personal-information-layout-aeo-personal-information-right-add-event-organizer-date-of-birth-year, form.webform-client-form .webform-datepicker .form-type-select.form-item-submitted-update-personal-information-personal-information-upi-personal-information-layout-upi-personal-information-left-update-personal-information-date-of-birth-year, form.webform-client-form .webform-datepicker .form-type-select.form-item-submitted-update-person-roles-personal-information-upr-personal-information-layout-upr-personal-information-right-update-person-roles-date-of-birth-year, form.webform-client-form .webform-datepicker .form-type-select.form-item-submitted-personal-information-join-wpn-personal-information-layout-personal-information-right-join-wpn-birthdate-year {
  margin-right: 0 !important;
}
form.webform-client-form .webform-datepicker .form-type-select .chzn-container-single {
  width: 100% !important;
}
form.webform-client-form .chzn-container {
  width: 100%;
}
form.webform-client-form .form-actions {
  border-top: solid #ccc 1px;
  padding: 20px 0;
  clear: both;
}
form.webform-client-form .form-actions .form-submit {
  background: url(../images/button-forms.png) top left no-repeat;
  padding-left: 42px;
  padding-right: 10px;
  border: none;
  color: #fff;
  text-transform: uppercase;
  width: auto;
  float: right;
  margin-bottom: 40px;
  margin-left: 10px;
  font-size: 16px;
  height: 30px;
  line-height: 30px;
}
form.webform-client-form .form-actions .form-submit:hover {
  background: url(../images/button-forms.png) 0 -93px no-repeat;
}
form.webform-client-form .chzn-container {
  width: 180px;
}
form.webform-client-form .chzn-container .chzn-search input {
  float: none !important;
}

/* CHOZEN */
.chzn-container .chzn-drop {
  border: solid #ccc 1px;
}

.chzn-container-single .chzn-single {
  border-radius: 0;
  height: 40px;
  line-height: 40px;
  border: solid #ccc 1px;
  box-shadow: none;
  background: #fff !important;
}
.chzn-container-single .chzn-single div {
  width: 40px;
  height: 40px;
  background: url(../images/bg-drop-arrow.png) center center no-repeat #fff !important;
  display: block;
  width: 40px;
  height: 40px;
  border-left: solid #ccc 1px;
}
.chzn-container-single .chzn-search {
  /*display: block !important;*/
}
.chzn-container-single .chzn-search input {
  width: 100% !important;
  float: none;
}

.chzn-container-active .chzn-single {
  box-shadow: none;
}

.chzn-rtl .chzn-search input,
.chzn-container-single .chzn-single abbr,
.chzn-container-single .chzn-single div b,
.chzn-container-single .chzn-search input,
.chzn-container-multi .chzn-choices .search-choice
.search-choice-close, .chzn-container .chzn-results-scroll-down span,
.chzn-container .chzn-results-scroll-up span {
  background: none !important;
}

/* WEBFORM PANEL LAYOUT */
.node-type-webform .full-width-header {
  padding: 40px 0 0;
  background: #101010;
  padding-bottom: 84px;
}
.node-type-webform .full-width-header .pane-node-body * {
  color: white !important;
}
@media screen and (max-width: 480px) {
  .node-type-webform .full-width-header {
    padding-bottom: 0;
  }
}
.node-type-webform .pane-node-title {
  max-width: 970px;
  color: #dddddd;
  margin: 0 auto;
  font-family: "Georgia", serif;
  font-style: italic;
  padding-top: 0;
}
.node-type-webform .pane-node-title h1 {
  margin: 0 0 0 0;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 64px;
  color: #ffffff;
  font-style: normal;
  line-height: 72px;
}
.node-type-webform .pane-node-body p {
  margin: 0 0 0 0;
  color: #fff;
  font-family: "Georgia", serif;
  font-style: italic;
}

/* GLOBAL FORMS */
#webform-component-schedule-event-your-information,
#webform-component-schedule-event-event-information,
#webform-component-update-store-store-information,
#webform-component-add-event-organizer-my-store-information,
#webform-component-update-personal-information-personal-information,
#webform-component-update-person-roles-store-information,
#webform-component-personal-information,
#webform-component-join-wpn-store-information {
  clear: left;
}
#webform-component-schedule-event-your-information .form-wrapper.webform-component-fieldset,
#webform-component-schedule-event-event-information .form-wrapper.webform-component-fieldset,
#webform-component-update-store-store-information .form-wrapper.webform-component-fieldset,
#webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset,
#webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset,
#webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset,
#webform-component-personal-information .form-wrapper.webform-component-fieldset,
#webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset {
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
  clear: none;
  margin: 0;
}
#webform-component-schedule-event-your-information .form-wrapper.webform-component-fieldset legend,
#webform-component-schedule-event-event-information .form-wrapper.webform-component-fieldset legend,
#webform-component-update-store-store-information .form-wrapper.webform-component-fieldset legend,
#webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset legend,
#webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset legend,
#webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset legend,
#webform-component-personal-information .form-wrapper.webform-component-fieldset legend,
#webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset legend {
  display: none;
}
#webform-component-schedule-event-your-information .form-wrapper.webform-component-fieldset input, #webform-component-schedule-event-your-information .form-wrapper.webform-component-fieldset select, #webform-component-schedule-event-your-information .form-wrapper.webform-component-fieldset .webform-datepicker, #webform-component-schedule-event-your-information .form-wrapper.webform-component-fieldset .chzn-container-single, #webform-component-schedule-event-your-information .form-wrapper.webform-component-fieldset .form-textarea-wrapper,
#webform-component-schedule-event-event-information .form-wrapper.webform-component-fieldset input,
#webform-component-schedule-event-event-information .form-wrapper.webform-component-fieldset select,
#webform-component-schedule-event-event-information .form-wrapper.webform-component-fieldset .webform-datepicker,
#webform-component-schedule-event-event-information .form-wrapper.webform-component-fieldset .chzn-container-single,
#webform-component-schedule-event-event-information .form-wrapper.webform-component-fieldset .form-textarea-wrapper,
#webform-component-update-store-store-information .form-wrapper.webform-component-fieldset input,
#webform-component-update-store-store-information .form-wrapper.webform-component-fieldset select,
#webform-component-update-store-store-information .form-wrapper.webform-component-fieldset .webform-datepicker,
#webform-component-update-store-store-information .form-wrapper.webform-component-fieldset .chzn-container-single,
#webform-component-update-store-store-information .form-wrapper.webform-component-fieldset .form-textarea-wrapper,
#webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset input,
#webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset select,
#webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset .webform-datepicker,
#webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset .chzn-container-single,
#webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset .form-textarea-wrapper,
#webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset input,
#webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset select,
#webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset .webform-datepicker,
#webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset .chzn-container-single,
#webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset .form-textarea-wrapper,
#webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset input,
#webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset select,
#webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset .webform-datepicker,
#webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset .chzn-container-single,
#webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset .form-textarea-wrapper,
#webform-component-personal-information .form-wrapper.webform-component-fieldset input,
#webform-component-personal-information .form-wrapper.webform-component-fieldset select,
#webform-component-personal-information .form-wrapper.webform-component-fieldset .webform-datepicker,
#webform-component-personal-information .form-wrapper.webform-component-fieldset .chzn-container-single,
#webform-component-personal-information .form-wrapper.webform-component-fieldset .form-textarea-wrapper,
#webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset input,
#webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset select,
#webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset .webform-datepicker,
#webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset .chzn-container-single,
#webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset .form-textarea-wrapper {
  width: 64% !important;
}
#webform-component-schedule-event-your-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select,
#webform-component-schedule-event-event-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select,
#webform-component-update-store-store-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select,
#webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select,
#webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select,
#webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select,
#webform-component-personal-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select,
#webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select {
  width: 99px !important;
}
#webform-component-schedule-event-your-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select .chzn-container-single,
#webform-component-schedule-event-event-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select .chzn-container-single,
#webform-component-update-store-store-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select .chzn-container-single,
#webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select .chzn-container-single,
#webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select .chzn-container-single,
#webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select .chzn-container-single,
#webform-component-personal-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select .chzn-container-single,
#webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select .chzn-container-single {
  width: 100% !important;
}
#webform-component-schedule-event-your-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select:last-child,
#webform-component-schedule-event-event-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select:last-child,
#webform-component-update-store-store-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select:last-child,
#webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select:last-child,
#webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select:last-child,
#webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select:last-child,
#webform-component-personal-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select:last-child,
#webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset .webform-datepicker .form-type-select:last-child {
  margin-right: 0;
}
#webform-component-schedule-event-your-information .form-wrapper.webform-component-fieldset .chzn-search,
#webform-component-schedule-event-event-information .form-wrapper.webform-component-fieldset .chzn-search,
#webform-component-update-store-store-information .form-wrapper.webform-component-fieldset .chzn-search,
#webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset .chzn-search,
#webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset .chzn-search,
#webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset .chzn-search,
#webform-component-personal-information .form-wrapper.webform-component-fieldset .chzn-search,
#webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset .chzn-search {
  /*display: block !important;*/
}
#webform-component-schedule-event-your-information .form-wrapper.webform-component-fieldset .chzn-search input,
#webform-component-schedule-event-event-information .form-wrapper.webform-component-fieldset .chzn-search input,
#webform-component-update-store-store-information .form-wrapper.webform-component-fieldset .chzn-search input,
#webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset .chzn-search input,
#webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset .chzn-search input,
#webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset .chzn-search input,
#webform-component-personal-information .form-wrapper.webform-component-fieldset .chzn-search input,
#webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset .chzn-search input {
  width: 100% !important;
  float: none;
}

.equal.webform-layout-box {
  clear: left;
}
.equal.webform-layout-box .vert.webform-layout-box:first-child {
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
}
.equal.webform-layout-box .vert.webform-layout-box {
  clear: right;
  float: right;
  width: 50%;
  margin-right: 0%;
  margin-left: -50%;
}
.equal.webform-layout-box .vert.webform-layout-box input, .equal.webform-layout-box .vert.webform-layout-box select, .equal.webform-layout-box .vert.webform-layout-box .webform-datepicker, .equal.webform-layout-box .vert.webform-layout-box .chzn-container-single, .equal.webform-layout-box .vert.webform-layout-box .form-textarea-wrapper {
  width: 64% !important;
}
.equal.webform-layout-box .vert.webform-layout-box .webform-datepicker .form-type-select {
  width: 99px !important;
}
.equal.webform-layout-box .vert.webform-layout-box .webform-datepicker .form-type-select .chzn-container-single {
  width: 100% !important;
}
.equal.webform-layout-box .vert.webform-layout-box .webform-datepicker .form-type-select:last-child {
  margin-right: 0;
}
.equal.webform-layout-box .vert.webform-layout-box .chzn-search {
  /*display: block !important;*/
}
.equal.webform-layout-box .vert.webform-layout-box .chzn-search input {
  width: 100% !important;
  float: none;
}

.chzn-search {
  display: none;
}

.lt-ie9 .node-type-webform form.webform-client-form .webform-component-fieldset .form-radios .form-type-radio input[type="radio"] {
  display: block;
  border: none;
  width: 30px;
}
.lt-ie9 .node-type-webform form.webform-client-form #webform-component-update-store-dci-fieldset--usi-dci-number-value input {
  width: 175px;
}
.lt-ie9 .node-type-webform form.webform-client-form #webform-component-update-store-dci-fieldset--usi-dci-number-value {
  width: 200px;
}
.lt-ie9 .node-type-webform form.webform-client-form .webform-component-fieldset .form-radios .form-type-radio input[type="radio"] + label {
  background: none;
  width: 200px;
  float: left;
  margin-top: -32px;
  margin-left: 10px;
}
.lt-ie9 .node-type-webform form.webform-client-form .webform-component-fieldset .form-radios .form-type-radio {
  margin-bottom: 20px;
}
.lt-ie9 .node-type-webform form.webform-client-form #webform-component-update-store-dci-fieldset--usi-dci-number-value {
  margin-top: -130px;
  margin-left: 350px;
}

@media all and (max-width: 768px) {
  .page-node #page .webform-confirmation h1 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1em;
  }

  form.webform-client-form #edit-submitted-schedule-event-review > label {
    float: none;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  form.webform-client-form #edit-submitted-schedule-event-review fieldset .form-item.webform-component {
    height: auto;
    line-height: 1.5em;
  }
  form.webform-client-form #edit-submitted-schedule-event-review fieldset#webform-component-schedule-event-select-game {
    width: 100%;
    float: none;
    clear: both;
  }
  form.webform-client-form #edit-submitted-schedule-event-review #webform-component-schedule-event-your-information--schedule-event-url {
    border-bottom: none;
  }

  fieldset#webform-component-schedule-event-select-game .fieldset-wrapper #edit-submitted-schedule-event-select-game-schedule-event-select-game-select {
    float: none;
  }
  fieldset#webform-component-schedule-event-select-game .fieldset-wrapper .webform-component-radios {
    float: none;
  }
  fieldset#webform-component-schedule-event-select-game .fieldset-wrapper .webform-component-radios .form-item {
    float: none !important;
    clear: both;
    height: auto;
  }
  fieldset#webform-component-schedule-event-select-game .fieldset-wrapper .webform-component-radios .form-item input[type="radio"] {
    display: none;
  }
  fieldset#webform-component-schedule-event-select-game .fieldset-wrapper .webform-component-radios .form-item input[type="radio"] + label {
    width: 100% !important;
    margin-right: 0 !important;
    float: none !important;
    padding: 0 !important;
  }

  form.webform-client-form fieldset#webform-component-schedule-event-event-information,
  form.webform-client-form fieldset#webform-component-schedule-event-your-information {
    clear: both;
    width: 100% !important;
  }
  form.webform-client-form fieldset#webform-component-schedule-event-event-information input, form.webform-client-form fieldset#webform-component-schedule-event-event-information select, form.webform-client-form fieldset#webform-component-schedule-event-event-information .webform-datepicker, form.webform-client-form fieldset#webform-component-schedule-event-event-information .chzn-container-single, form.webform-client-form fieldset#webform-component-schedule-event-event-information .form-textarea-wrapper,
  form.webform-client-form fieldset#webform-component-schedule-event-your-information input,
  form.webform-client-form fieldset#webform-component-schedule-event-your-information select,
  form.webform-client-form fieldset#webform-component-schedule-event-your-information .webform-datepicker,
  form.webform-client-form fieldset#webform-component-schedule-event-your-information .chzn-container-single,
  form.webform-client-form fieldset#webform-component-schedule-event-your-information .form-textarea-wrapper {
    width: 100% !important;
  }

  #webform-component-update-store-store-information .form-wrapper.webform-component-fieldset,
  #webform-component-add-event-location-my-store-information .form-wrapper.webform-component-fieldset,
  #webform-component-add-event-location .form-wrapper.webform-component-fieldset,
  #webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset,
  #webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset,
  #webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset,
  #webform-component-personal-information .form-wrapper.webform-component-fieldset,
  #webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset {
    clear: both;
    width: 100% !important;
  }
  #webform-component-update-store-store-information .form-wrapper.webform-component-fieldset input, #webform-component-update-store-store-information .form-wrapper.webform-component-fieldset select, #webform-component-update-store-store-information .form-wrapper.webform-component-fieldset .webform-datepicker, #webform-component-update-store-store-information .form-wrapper.webform-component-fieldset .chzn-container-single, #webform-component-update-store-store-information .form-wrapper.webform-component-fieldset .form-textarea-wrapper,
  #webform-component-add-event-location-my-store-information .form-wrapper.webform-component-fieldset input,
  #webform-component-add-event-location-my-store-information .form-wrapper.webform-component-fieldset select,
  #webform-component-add-event-location-my-store-information .form-wrapper.webform-component-fieldset .webform-datepicker,
  #webform-component-add-event-location-my-store-information .form-wrapper.webform-component-fieldset .chzn-container-single,
  #webform-component-add-event-location-my-store-information .form-wrapper.webform-component-fieldset .form-textarea-wrapper,
  #webform-component-add-event-location .form-wrapper.webform-component-fieldset input,
  #webform-component-add-event-location .form-wrapper.webform-component-fieldset select,
  #webform-component-add-event-location .form-wrapper.webform-component-fieldset .webform-datepicker,
  #webform-component-add-event-location .form-wrapper.webform-component-fieldset .chzn-container-single,
  #webform-component-add-event-location .form-wrapper.webform-component-fieldset .form-textarea-wrapper,
  #webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset input,
  #webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset select,
  #webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset .webform-datepicker,
  #webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset .chzn-container-single,
  #webform-component-add-event-organizer-my-store-information .form-wrapper.webform-component-fieldset .form-textarea-wrapper,
  #webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset input,
  #webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset select,
  #webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset .webform-datepicker,
  #webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset .chzn-container-single,
  #webform-component-update-personal-information-personal-information .form-wrapper.webform-component-fieldset .form-textarea-wrapper,
  #webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset input,
  #webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset select,
  #webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset .webform-datepicker,
  #webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset .chzn-container-single,
  #webform-component-update-person-roles-store-information .form-wrapper.webform-component-fieldset .form-textarea-wrapper,
  #webform-component-personal-information .form-wrapper.webform-component-fieldset input,
  #webform-component-personal-information .form-wrapper.webform-component-fieldset select,
  #webform-component-personal-information .form-wrapper.webform-component-fieldset .webform-datepicker,
  #webform-component-personal-information .form-wrapper.webform-component-fieldset .chzn-container-single,
  #webform-component-personal-information .form-wrapper.webform-component-fieldset .form-textarea-wrapper,
  #webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset input,
  #webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset select,
  #webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset .webform-datepicker,
  #webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset .chzn-container-single,
  #webform-component-join-wpn-store-information .form-wrapper.webform-component-fieldset .form-textarea-wrapper {
    width: 100% !important;
  }

  .equal.webform-layout-box .vert.webform-layout-box:first-child {
    clear: both;
    width: 100% !important;
  }
  .equal.webform-layout-box .vert.webform-layout-box {
    clear: both;
    width: 100% !important;
  }
  .equal.webform-layout-box .vert.webform-layout-box input, .equal.webform-layout-box .vert.webform-layout-box select, .equal.webform-layout-box .vert.webform-layout-box .webform-datepicker, .equal.webform-layout-box .vert.webform-layout-box .chzn-container-single, .equal.webform-layout-box .vert.webform-layout-box .form-textarea-wrapper {
    width: 100% !important;
  }

  form.webform-client-form .webform-component-fieldset input,
  form.webform-client-form .webform-component-fieldset select {
    width: 100% !important;
  }

  form.webform-client-form .webform-component-fieldset .webform-component .chzn-container-single {
    width: 100% !important;
  }

  form.webform-client-form .webform-component-fieldset legend {
    margin-bottom: 20px;
  }

  form.webform-client-form .webform-component-fieldset .form-radios .form-type-radio label {
    font-size: 13px;
  }

  #webform-component-add-event-location-dci-fieldset--dci-number input,
  #webform-component-add-event-organizer-dci-number-fieldset--event-organizer-dci-number-val input,
  #webform-component-update-person-roles-dci-number-fieldset--upr-dci-number-value input,
  #webform-component-update-personal-information-dci-number-fieldset--upi-dci-number-value input,
  #webform-component-update-store-dci-fieldset--usi-dci-number-value input,
  #webform-component-join-wpn-dci-fieldset--join-wpn-use-dci-number-value input {
    width: 200px !important;
  }

  .node-webform {
    padding-left: 30px;
    padding-right: 30px;
  }

  /* WEBFORM PANEL LAYOUT */
  .node-type-webform .full-width-header {
    padding: 40px 0 100px;
    background: #101010;
  }
  .node-type-webform .pane-node-title {
    text-align: center;
  }
  .node-type-webform .pane-node-title h1 {
    font-size: 2em;
    line-height: 1.1;
    margin-bottom: 1em;
  }
  .node-type-webform .pane-node-body {
    text-align: center;
  }
}
@media all and (max-width: 320px) {
  #webform-component-personal-information.webform-component-fieldset.form-wrapper .webform-component-date .webform-datepicker .form-type-select,
  #webform-component-add-event-location-personal-information.form-wrapper .webform-component-date .webform-datepicker .form-type-select {
    width: 82px !important;
  }
  #webform-component-personal-information.webform-component-fieldset.form-wrapper .webform-component-date .webform-datepicker .form-type-select .chzn-container-single .chzn-single,
  #webform-component-add-event-location-personal-information.form-wrapper .webform-component-date .webform-datepicker .form-type-select .chzn-container-single .chzn-single {
    width: 80px;
    padding-left: 4px;
    margin-right: 0;
  }
  #webform-component-personal-information.webform-component-fieldset.form-wrapper .webform-component-date .webform-datepicker .form-type-select .chzn-container-single .chzn-single span,
  #webform-component-add-event-location-personal-information.form-wrapper .webform-component-date .webform-datepicker .form-type-select .chzn-container-single .chzn-single span {
    margin-right: 0;
  }
  #webform-component-personal-information.webform-component-fieldset.form-wrapper .webform-component-date .webform-datepicker .form-type-select .chzn-container-single .chzn-single div,
  #webform-component-add-event-location-personal-information.form-wrapper .webform-component-date .webform-datepicker .form-type-select .chzn-container-single .chzn-single div {
    width: 28px;
  }
}
.webform-component {
  position: relative;
}
.webform-component .description {
  font-size: 10px !important;
  position: absolute !important;
  right: 0 !important;
  bottom: -1em !important;
  left: 160px !important;
  clear: both !important;
}
@media (max-width: 950px) {
  .webform-component .description {
    left: 0 !important;
    bottom: -2em !important;
  }
}
@media (max-width: 768px) {
  .webform-component .description {
    font-size: 12px !important;
    position: static !important;
  }
}
.webform-component .description a {
  word-wrap: normal !important;
}
@media (max-width: 1030px) {
  .webform-component:not(.webform-component--update-store-personal-information--usi-personal-information-layout--usi-personal-information-left--wizards-account-login-id) .description {
    left: 0 !important;
    bottom: -2em !important;
  }
}

.webform-component--join-wpn-store-information--store-information-layout--join-wpn-store-information-layout--join-wpn-store-information-left--store-information-left--street-address-2 label.element-invisible,
.webform-component--update-store-store-information--usi-store-information-layout--usi-store-information-left--blank label.element-invisible,
.webform-component--update-store-store-information--usi-store-information-layout--usi-store-information-left--nbsp label.element-invisible,
.webform-component--add-event-location-my-store-information--store-information-layout--store-information-left--street-address label.element-invisible,
.webform-component--add-event-location-my-store-information--store-information-layout--store-information-left--street-address-2 label.element-invisible,
.webform-component--add-event-location--ael-event-location-layout--ael-event-location-left--street-address label.element-invisible,
.webform-component--add-event-location--ael-event-location-layout--ael-event-location-left--street-address-3 label.element-invisible {
  position: static !important;
  visibility: hidden !important;
}
@media (max-width: 950px) {
  .webform-component--join-wpn-store-information--store-information-layout--join-wpn-store-information-layout--join-wpn-store-information-left--store-information-left--street-address-2 label.element-invisible,
  .webform-component--update-store-store-information--usi-store-information-layout--usi-store-information-left--blank label.element-invisible,
  .webform-component--update-store-store-information--usi-store-information-layout--usi-store-information-left--nbsp label.element-invisible,
  .webform-component--add-event-location-my-store-information--store-information-layout--store-information-left--street-address label.element-invisible,
  .webform-component--add-event-location-my-store-information--store-information-layout--store-information-left--street-address-2 label.element-invisible,
  .webform-component--add-event-location--ael-event-location-layout--ael-event-location-left--street-address label.element-invisible,
  .webform-component--add-event-location--ael-event-location-layout--ael-event-location-left--street-address-3 label.element-invisible {
    display: none !important;
  }
}

/* Slideshow rules */
/**
 * @file
 * Slideshow Homeslice
 */
/* SLIDESSHOW REQUIRED STYLES */
#banner {
  background: #000;
}
#banner img.mobile-banner, #banner .mobile-hero-image-field img {
  display: none;
}

#slideshow {
  position: relative;
  clear: both;
  background: #000;
}
#slideshow .slides-container {
  display: none;
}
#slideshow .scrollable {
  *zoom: 1;
  position: relative;
  top: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}
#slideshow .scrollable:after {
  content: "";
  display: table;
  clear: both;
}
#slideshow img.mobile-banner, #slideshow .field-name-field-mobile-hero-image img {
  display: none;
}
#slideshow .time-to-read {
  color: white;
  font-size: .9rem;
  line-height: 1.2em;
}
#slideshow .time-to-read .field-content {
  color: inherit;
  font-size: inherit !important;
  line-height: inherit !important;
}
#slideshow .time-to-read .field-content .time-to-read-icon {
  margin-top: .5em;
  display: block;
}
#slideshow .time-to-read .field-content .time-to-read-icon:before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 5px;
  background: url('../images/clock-white.png?1599154334') 50% 50%/100% 100% no-repeat;
  display: inline-block;
  position: relative;
  top: .15em;
}

.slides-navigation {
  display: none;
  margin: 0 auto;
  position: absolute;
  z-index: 3;
  top: 46%;
  width: 100%;
}
.slides-navigation a {
  position: absolute;
  display: block;
}
.slides-navigation a.prev {
  left: 0;
}
.slides-navigation a.next {
  right: 0;
}

.slides-pagination {
  position: relative;
  z-index: 3;
  bottom: 80px;
  text-align: left;
  width: 970px;
  padding: 0 30px;
  margin: 0 auto;
}
.slides-pagination a {
  border: 2px solid #fff;
  border-radius: 15px;
  width: 10px;
  height: 10px;
  display: inline-block;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGP6zwAAAgcBApocMXEAAAAASUVORK5CYII=");
  margin: 2px;
  overflow: hidden;
  text-indent: -100%;
}
.slides-pagination a.current {
  background: #fff;
}

.panel-homepage.full-width-header h2.pane-title {
  display: none;
}

/* SLIDESHOW */
.view-id-wizards_wpn_homepage_slideshow {
  height: 560px;
}
.view-id-wizards_wpn_homepage_slideshow .slides-pagination {
  bottom: 120px !important;
}

.view-wiz-wpn-events-landing-associated-content {
  height: 340px;
}
.view-wiz-wpn-events-landing-associated-content .page-inner {
  height: auto;
}

.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-1 li.views-row {
  position: relative;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-1 li.views-row:before {
  content: "";
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-1 .view-id-wizards_wpn_event_detail_banner_revision_view {
  height: 500px;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-1 .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner {
  height: 500px;
}

.view-id-wizards_wpn_homepage_slideshow, .view-id-wizards_wpn_event_detail_banner_revision_view, .view-wiz-wpn-events-landing-associated-content {
  position: relative;
}
.view-id-wizards_wpn_homepage_slideshow ul, .view-id-wizards_wpn_event_detail_banner_revision_view ul, .view-wiz-wpn-events-landing-associated-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.view-id-wizards_wpn_homepage_slideshow ul li, .view-id-wizards_wpn_event_detail_banner_revision_view ul li, .view-wiz-wpn-events-landing-associated-content ul li {
  list-style: none;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner, .view-wiz-wpn-events-landing-associated-content .page-inner {
  padding-top: 40px;
  position: relative;
  /*** EVENT BANNER ***/
}
.view-id-wizards_wpn_homepage_slideshow .page-inner .button-detail, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner .button-detail, .view-wiz-wpn-events-landing-associated-content .page-inner .button-detail {
  display: inline-block;
  background: url(../images/button-forms.png) 0 -30px no-repeat;
  height: 30px;
  line-height: 30px;
  padding-left: 42px;
  padding-right: 10px;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  margin: 10px 0;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner .button-detail:hover, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner .button-detail:hover, .view-wiz-wpn-events-landing-associated-content .page-inner .button-detail:hover {
  background-position: 0 0;
  color: #fff;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner h2, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner h2, .view-wiz-wpn-events-landing-associated-content .page-inner h2 {
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 4em;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 0;
  line-height: 1em;
  display: block;
  width: 80%;
  text-shadow: #333 1px 1px 1px;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner h2 a, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner h2 a, .view-wiz-wpn-events-landing-associated-content .page-inner h2 a {
  color: #fff;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner .field-content, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner .field-content, .view-wiz-wpn-events-landing-associated-content .page-inner .field-content {
  text-shadow: #333 1px 1px 1px;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner .field-content a, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner .field-content a, .view-wiz-wpn-events-landing-associated-content .page-inner .field-content a {
  display: inline-block;
  background: url(../images/button-forms.png) 0 -30px no-repeat;
  height: 30px;
  line-height: 30px;
  padding-left: 42px;
  padding-right: 10px;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  margin: 20px 0;
  text-shadow: none;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner .field-content a:hover, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner .field-content a:hover, .view-wiz-wpn-events-landing-associated-content .page-inner .field-content a:hover {
  background-position: 0 0;
  color: #fff;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner.hero-title div, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.hero-title div, .view-wiz-wpn-events-landing-associated-content .page-inner.hero-title div {
  color: #fff;
  font-family: Georgia;
  font-style: italic;
  font-size: 20px;
  width: 60%;
  text-shadow: #333 1px 1px 1px;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner .event-countdown, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner .event-countdown, .view-wiz-wpn-events-landing-associated-content .page-inner .event-countdown {
  text-shadow: #333 1px 1px 1px;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner .event-date, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner .event-date, .view-wiz-wpn-events-landing-associated-content .page-inner .event-date {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  background: #000;
  color: #ccc;
  opacity: 0.8;
  padding: 10px 0 96px 0;
  bottom: 0;
  left: 0;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner .event-date strong, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner .event-date strong, .view-wiz-wpn-events-landing-associated-content .page-inner .event-date strong {
  margin-bottom: 0;
  font-weight: normal;
  color: #fff;
  margin: 0 30px;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner .event-date .field-content, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner .event-date .field-content, .view-wiz-wpn-events-landing-associated-content .page-inner .event-date .field-content {
  font-family: "Open Sans", Arial, sans-serif !important;
  border: none;
  font-style: normal !important;
  border: none;
  height: auto;
  line-height: auto;
  padding: 0 0 !important;
  margin: 0 30px;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner.event-details > .field-content, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details > .field-content, .view-wiz-wpn-events-landing-associated-content .page-inner.event-details > .field-content {
  font-family: Georgia;
  font-style: italic;
  color: #fff;
  padding: 0 10px;
  height: 20px;
  line-height: 20px;
  display: inline-block;
  float: left;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner.event-details > .field-content:first-child, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details > .field-content:first-child, .view-wiz-wpn-events-landing-associated-content .page-inner.event-details > .field-content:first-child {
  border-left: none;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner.event-details > .field-content a, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details > .field-content a, .view-wiz-wpn-events-landing-associated-content .page-inner.event-details > .field-content a {
  background: none;
  display: inline;
  line-height: 20px;
  padding: 0;
  text-transform: none;
  margin: auto;
  color: #ccc;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-schedule-close, .view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-schedule-open, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-schedule-close, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-schedule-open, .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-schedule-close, .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-schedule-open {
  text-shadow: #333 1px 1px 1px;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-info, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-info, .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-info {
  margin-top: 30px;
  float: left;
  clear: left;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-info .sprite-event-level, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-info .sprite-event-level, .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-info .sprite-event-level {
  margin: 0 10px;
  float: left;
  width: 240px;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-info .sprite-event-level li, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-info .sprite-event-level li, .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-info .sprite-event-level li {
  color: #bbb;
  margin-bottom: 6px;
  text-shadow: #333 1px 1px 1px;
  width: 35%;
  text-align: left;
}
.view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-info .sprite-event-level li.active, .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-info .sprite-event-level li.active, .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-info .sprite-event-level li.active {
  color: #fff;
}

.event-schedule-close, .event-schedule-open {
  float: left;
  width: 104px;
  margin: 0 9px 0 !important;
}
.event-schedule-close .global-calendar, .event-schedule-open .global-calendar {
  padding-left: 20px;
  padding-bottom: 6px;
  line-height: 16px;
  color: #fff;
  font-size: 11px;
  font-style: italic;
  font-family: 'Georgia', Sans-Serif;
  border-bottom: dashed #ccc 1px;
  width: 94px;
  display: block;
  margin-bottom: 10px;
  height: auto;
  background: url(../images/global/calendar.png) 0 0 no-repeat;
}
.event-schedule-close div, .event-schedule-open div {
  clear: both;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  position: relative;
  height: 50px;
}
.event-schedule-close div span, .event-schedule-open div span {
  color: #fff;
}
.event-schedule-close div span.month, .event-schedule-open div span.month {
  position: absolute;
  font-family: 'Georgia', Sans-Serif;
  font-weight: normal;
  font-style: italic;
  font-size: 18px;
  top: 0;
  left: 0;
  text-align: center;
  width: 60px;
}
.event-schedule-close div span.year, .event-schedule-open div span.year {
  font-family: 'Georgia', Sans-Serif;
  font-weight: normal;
  font-style: italic;
  font-size: 13px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 60px;
}
.event-schedule-close div span.day, .event-schedule-open div span.day {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 42px;
  line-height: 48px;
  width: 50px;
  text-align: center;
}

@media all and (max-width: 1045px) {
  .body-center-column {
    margin-top: 0 !important;
  }
}
/* MOBILE */
@media all and (max-width: 768px) {
  .pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-1 .view-id-wizards_wpn_event_detail_banner_revision_view {
    height: 560px;
  }
  .pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-1 .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner {
    height: 560px;
  }

  .view-id-wizards_wpn_homepage_slideshow ul li:after,
  .view-id-wizards_wpn_event_detail_banner_revision_view ul li:after,
  .view-wiz-wpn-events-landing-associated-content ul li:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.58);
    z-index: -1;
  }
  .view-id-wizards_wpn_homepage_slideshow .page-inner,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner,
  .view-wiz-wpn-events-landing-associated-content .page-inner {
    text-align: center;
  }
  .view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-date,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-date,
  .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-date {
    float: left;
    position: relative;
    width: 100%;
    background: none;
    opacity: 1;
  }
  .view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-date strong,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-date strong,
  .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-date strong {
    font-weight: bold;
    color: #3e3e3e !important;
    text-shadow: none;
  }
  .view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-date strong, .view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-date .field-content,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-date strong,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-date .field-content,
  .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-date strong,
  .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-date .field-content {
    color: #3e3e3e !important;
    margin: 0;
    text-shadow: none;
  }
  .view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-countdown span.days-left,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-countdown span.days-left,
  .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-countdown span.days-left {
    color: #3e3e3e !important;
    text-shadow: none;
  }
  .view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-info,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-info,
  .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-info {
    margin: 100px -30px 0 -30px;
    padding: 30px;
    width: 100%;
    height: 100%;
    float: left;
    background: #f6f6f6;
  }
  .view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-info .sprite-event-level,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-info .sprite-event-level,
  .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-info .sprite-event-level {
    margin: 20px 0 0 0;
  }
  .view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-info .sprite-event-level li,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-info .sprite-event-level li,
  .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-info .sprite-event-level li {
    float: left;
    margin-right: 6px;
    color: #3e3e3e !important;
    text-shadow: none;
    font-size: 13px;
  }
  .view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-schedule-close, .view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-schedule-open,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-schedule-close,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-schedule-open,
  .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-schedule-close,
  .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-schedule-open {
    margin: 0 !important;
    margin-right: 10px !important;
  }
  .view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-schedule-close .global-calendar, .view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-schedule-open .global-calendar,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-schedule-close .global-calendar,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-schedule-open .global-calendar,
  .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-schedule-close .global-calendar,
  .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-schedule-open .global-calendar {
    color: #3e3e3e !important;
    text-shadow: none;
  }
  .view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-schedule-close div span, .view-id-wizards_wpn_homepage_slideshow .page-inner.event-details .event-schedule-open div span,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-schedule-close div span,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details .event-schedule-open div span,
  .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-schedule-close div span,
  .view-wiz-wpn-events-landing-associated-content .page-inner.event-details .event-schedule-open div span {
    color: #3e3e3e !important;
    text-shadow: none;
  }
  .view-id-wizards_wpn_homepage_slideshow .page-inner h2,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner h2,
  .view-wiz-wpn-events-landing-associated-content .page-inner h2 {
    display: block;
    width: 100%;
    font-size: 2em;
    text-align: center;
  }
  .view-id-wizards_wpn_homepage_slideshow .page-inner h2 a,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner h2 a,
  .view-wiz-wpn-events-landing-associated-content .page-inner h2 a {
    display: block;
    text-align: center;
  }
  .view-id-wizards_wpn_homepage_slideshow .page-inner.hero-title div,
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.hero-title div,
  .view-wiz-wpn-events-landing-associated-content .page-inner.hero-title div {
    text-align: center;
    width: auto;
  }
  .view-id-wizards_wpn_homepage_slideshow .slides-pagination,
  .view-id-wizards_wpn_event_detail_banner_revision_view .slides-pagination,
  .view-wiz-wpn-events-landing-associated-content .slides-pagination {
    width: 100%;
    padding: 0;
    position: absolute;
    text-align: center;
  }

  .node-webform, .body-center-column {
    margin-top: 0 !important;
  }
}
@media all and (max-width: 618px) {
  .page-inner .event-info .sprite-event-level {
    float: none;
    clear: both;
    border-top: dashed #ccc 1px;
    padding-top: 10px;
  }

  /* SLIDESHOW */
  .view-id-wizards_wpn_homepage_slideshow {
    height: 360px;
  }
  .view-id-wizards_wpn_homepage_slideshow .page-inner {
    height: 360px;
  }
  .view-id-wizards_wpn_homepage_slideshow .slides-pagination {
    bottom: 10px !important;
  }

  .view-id-wizards_wpn_event_detail_banner_revision_view {
    height: 320px;
  }
  .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner {
    height: 320px;
  }
  .view-id-wizards_wpn_event_detail_banner_revision_view .slides-pagination {
    bottom: 120px !important;
  }

  #slideshow img.mobile-banner, #slideshow .field-name-field-mobile-hero-image img {
    display: block;
  }

  #banner img.mobile-banner, #banner .mobile-hero-image-field img {
    display: block;
  }
}
/* Sprite rules */
/**
 * @file
 * Sprite Jigga
 */
/* EVENT LEVEL */
.sprite-event-level .gateway, .sprite-event-level .core, .sprite-event-level .advanced, .sprite-event-level .advanced\+ {
  background-image: url(../images/sprite-event-levels.png);
  background-repeat: no-repeat;
  display: block;
  height: 28px;
  padding-left: 30px;
  float: left;
  width: 88px;
}
.sprite-event-level .gateway {
  background-position: 0 -35px;
}
.sprite-event-level .gateway.active {
  background-position: 0 0;
}
.sprite-event-level .core {
  background-position: 0 -105px;
}
.sprite-event-level .core.active {
  background-position: 0 -70px;
}
.sprite-event-level .advanced {
  background-position: 0 -175px;
}
.sprite-event-level .advanced.active {
  background-position: 0 -140px;
}
.sprite-event-level .advanced\+ {
  background-position: 0 -245px;
}
.sprite-event-level .advanced\+.active {
  background-position: 0 -210px;
}

/* MASTER ICONS */
.master-icons-sprite, .master-icons-add-location, .master-icons-application, .master-icons-become-part-of-network, .master-icons-deck-checklist, .master-icons-direct-sales, .master-icons-event-rules, .master-icons-find-distributors, .master-icons-folder, .master-icons-grow-gaming-community, .master-icons-invite-event-organizer, .master-icons-marketing-materials, .master-icons-notebook, .master-icons-phone, .master-icons-product-barcode, .master-icons-product, .master-icons-products, .master-icons-program-instructions, .master-icons-retail-location, .master-icons-retailer, .master-icons-store-audit-organized-play, .master-icons-store-audit-presentation, .master-icons-store-audit-retail, .master-icons-trade-show-icon-120_0, .master-icons-tradeshow, .master-icons-update-store-information, .master-icons-user-info, .master-icons-wizard-calendar {
  background-image: url('../images/master-icons-sbbee3aa6f8.png');
  background-repeat: no-repeat;
}

.master-icons-add-location {
  background-position: 0 0;
  height: 96px;
  width: 88px;
}

.master-icons-application {
  background-position: 0 -106px;
  height: 98px;
  width: 86px;
}

.master-icons-become-part-of-network {
  background-position: 0 -214px;
  height: 109px;
  width: 210px;
}

.master-icons-deck-checklist {
  background-position: 0 -333px;
  height: 98px;
  width: 86px;
}

.master-icons-direct-sales {
  background-position: 0 -441px;
  height: 101px;
  width: 119px;
}

.master-icons-event-rules {
  background-position: 0 -552px;
  height: 106px;
  width: 87px;
}

.master-icons-find-distributors {
  background-position: 0 -668px;
  height: 117px;
  width: 130px;
}

.master-icons-folder {
  background-position: 0 -795px;
  height: 97px;
  width: 166px;
}

.master-icons-grow-gaming-community {
  background-position: 0 -902px;
  height: 101px;
  width: 216px;
}

.master-icons-invite-event-organizer {
  background-position: 0 -1013px;
  height: 86px;
  width: 88px;
}

.master-icons-marketing-materials {
  background-position: 0 -1109px;
  height: 114px;
  width: 106px;
}

.master-icons-notebook {
  background-position: 0 -1233px;
  height: 80px;
  width: 73px;
}

.master-icons-phone {
  background-position: 0 -1323px;
  height: 95px;
  width: 112px;
}

.master-icons-product-barcode {
  background-position: 0 -1428px;
  height: 113px;
  width: 80px;
}

.master-icons-product {
  background-position: 0 -1551px;
  height: 85px;
  width: 129px;
}

.master-icons-products {
  background-position: 0 -1646px;
  height: 114px;
  width: 84px;
}

.master-icons-program-instructions {
  background-position: 0 -1770px;
  height: 105px;
  width: 126px;
}

.master-icons-retail-location {
  background-position: 0 -1885px;
  height: 87px;
  width: 109px;
}

.master-icons-retailer {
  background-position: 0 -1982px;
  height: 116px;
  width: 94px;
}

.master-icons-store-audit-organized-play {
  background-position: 0 -2108px;
  height: 110px;
  width: 87px;
}

.master-icons-store-audit-presentation {
  background-position: 0 -2228px;
  height: 110px;
  width: 155px;
}

.master-icons-store-audit-retail {
  background-position: 0 -2348px;
  height: 110px;
  width: 138px;
}

.master-icons-trade-show-icon-120_0 {
  background-position: 0 -2468px;
  height: 120px;
  width: 120px;
}

.master-icons-tradeshow {
  background-position: 0 -2598px;
  height: 118px;
  width: 94px;
}

.master-icons-update-store-information {
  background-position: 0 -2726px;
  height: 87px;
  width: 131px;
}

.master-icons-user-info {
  background-position: 0 -2823px;
  height: 80px;
  width: 114px;
}

.master-icons-wizard-calendar {
  background-position: 0 -2913px;
  height: 118px;
  width: 185px;
}

/* ATTENDEES ICONS */
.attendees-sprite, .attendees-eight-events, .attendees-fifteen-players, .attendees-fifty-players, .attendees-fifty-players2, .attendees-forty-eight_above, .attendees-four-above, .attendees-fraudinfraction, .attendees-hundred-players, .attendees-onboarding, .attendees-one-above, .attendees-onetwenty-events, .attendees-onetwentyfive-events, .attendees-qualityagreement_final, .attendees-six-above, .attendees-ten-delinquency, .attendees-thirty-above, .attendees-thirtytwo-players, .attendees-three-players, .attendees-twelve-above, .attendees-twenty-above, .attendees-twenty-events, .attendees-twenty-events2, .attendees-twenty-four_above, .attendees-twenty-players, .attendees-twofifty-players, .attendees-zero-delinquency {
  background-image: url('../images/attendees-s9e30ea156c.png');
  background-repeat: no-repeat;
}

.attendees-eight-events {
  background-position: 0 0;
  height: 80px;
  width: 203px;
}

.attendees-fifteen-players {
  background-position: -213px 0;
  height: 78px;
  width: 192px;
}

.attendees-fifty-players {
  background-position: -415px 0;
  height: 80px;
  width: 207px;
}

.attendees-fifty-players2 {
  background-position: -632px 0;
  height: 81px;
  width: 230px;
}

.attendees-forty-eight_above {
  background-position: -872px 0;
  height: 81px;
  width: 214px;
}

.attendees-four-above {
  background-position: -1096px 0;
  height: 81px;
  width: 179px;
}

.attendees-fraudinfraction {
  background-position: -1285px 0;
  height: 81px;
  width: 230px;
}

.attendees-hundred-players {
  background-position: -1525px 0;
  height: 78px;
  width: 227px;
}

.attendees-onboarding {
  background-position: -1762px 0;
  height: 81px;
  width: 214px;
}

.attendees-one-above {
  background-position: -1986px 0;
  height: 81px;
  width: 179px;
}

.attendees-onetwenty-events {
  background-position: -2175px 0;
  height: 81px;
  width: 214px;
}

.attendees-onetwentyfive-events {
  background-position: -2399px 0;
  height: 81px;
  width: 214px;
}

.attendees-qualityagreement_final {
  background-position: -2623px 0;
  height: 81px;
  width: 230px;
}

.attendees-six-above {
  background-position: -2863px 0;
  height: 81px;
  width: 195px;
}

.attendees-ten-delinquency {
  background-position: -3068px 0;
  height: 66px;
  width: 194px;
}

.attendees-thirty-above {
  background-position: -3272px 0;
  height: 78px;
  width: 192px;
}

.attendees-thirtytwo-players {
  background-position: -3474px 0;
  height: 80px;
  width: 207px;
}

.attendees-three-players {
  background-position: -3691px 0;
  height: 81px;
  width: 230px;
}

.attendees-twelve-above {
  background-position: -3931px 0;
  height: 80px;
  width: 203px;
}

.attendees-twenty-above {
  background-position: -4144px 0;
  height: 66px;
  width: 194px;
}

.attendees-twenty-events {
  background-position: -4348px 0;
  height: 81px;
  width: 193px;
}

.attendees-twenty-events2 {
  background-position: -4551px 0;
  height: 81px;
  width: 214px;
}

.attendees-twenty-four_above {
  background-position: -4775px 0;
  height: 81px;
  width: 214px;
}

.attendees-twenty-players {
  background-position: -4999px 0;
  height: 81px;
  width: 230px;
}

.attendees-twofifty-players {
  background-position: -5239px 0;
  height: 78px;
  width: 227px;
}

.attendees-zero-delinquency {
  background-position: -5476px 0;
  height: 66px;
  width: 194px;
}

/* COUNTER ICONS */
.counter-sprite, .counter-fifty, .counter-full, .counter-seventyfive, .counter-twentyfive, .counter-zero, .calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .counter-zero, .calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .counter-fifty, .calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .counter-seventyfive, .calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .counter-full, .calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .counter-twentyfive {
  background-image: url('../images/counter-sa79108bb80.png');
  background-repeat: no-repeat;
}

.counter-fifty {
  background-position: 0 0;
  height: 108px;
  width: 141px;
}

.counter-full {
  background-position: -151px 0;
  height: 108px;
  width: 142px;
}

.counter-seventyfive {
  background-position: -303px 0;
  height: 108px;
  width: 141px;
}

.counter-twentyfive {
  background-position: -454px 0;
  height: 108px;
  width: 141px;
}

.counter-zero {
  background-position: -605px 0;
  height: 108px;
  width: 141px;
}

/* COUNTER ICONS */
.global-sprite, .global-calendar, .global-download-white, .global-download, .global-download2, .global-headphones, .global-icon-find-a-judge, .global-languages, .global-red-quote, .global-search, .page-resources-common-questions .view-wizards-wpn-faq-listing .views-row .views-field-title, .pane-wizards-wpn-product-detail-product-files-panel-pane-1 .views-row .file, .node-type-document .pane-node-field-attachments .field-item .file {
  background-image: url('../images/global-sa6e456f0a8.png');
  background-repeat: no-repeat;
}

.global-calendar {
  background-position: 0 0;
  height: 16px;
  width: 13px;
}

.global-download-white {
  background-position: 0 -26px;
  height: 20px;
  width: 20px;
}

.global-download {
  background-position: 0 -56px;
  height: 32px;
  width: 32px;
}

.global-download2 {
  background-position: 0 -98px;
  height: 40px;
  width: 43px;
}

.global-headphones {
  background-position: 0 -148px;
  height: 32px;
  width: 33px;
}

.global-icon-find-a-judge {
  background-position: 0 -190px;
  height: 20px;
  width: 20px;
}

.global-languages {
  background-position: 0 -220px;
  height: 21px;
  width: 21px;
}

.global-red-quote {
  background-position: 0 -251px;
  height: 29px;
  width: 29px;
}

.global-search {
  background-position: 0 -290px;
  height: 19px;
  width: 19px;
}

/* COUNTER ICONS */
.related-articles-sprite, .related-articles-calendar, .related-articles-document, .related-articles-email, .related-articles-media, .related-articles-phone, .related-articles-product {
  background-image: url('../images/related-articles-s7472234c65.png');
  background-repeat: no-repeat;
}

.related-articles-calendar {
  background-position: 0 0;
  height: 32px;
  width: 33px;
}

.related-articles-document {
  background-position: 0 -42px;
  height: 32px;
  width: 33px;
}

.related-articles-email {
  background-position: 0 -84px;
  height: 29px;
  width: 30px;
}

.related-articles-media {
  background-position: 0 -123px;
  height: 32px;
  width: 32px;
}

.related-articles-phone {
  background-position: 0 -165px;
  height: 30px;
  width: 29px;
}

.related-articles-product {
  background-position: 0 -205px;
  height: 26px;
  width: 32px;
}

.master-sprites div {
  display: inline-block;
  margin: 100px 20px;
  border: solid #ccc 1px;
  position: relative;
}
.master-sprites div span {
  display: block;
  position: absolute;
  bottom: -100%;
  left: 0;
  height: auto;
  line-height: 16px;
  width: 100%;
  text-align: center;
  background: #000;
  color: #fff;
  opacity: 0.4;
  padding: 10px;
}

/* Sprite rules */
.view-event-calendar {
  padding-top: 60px;
  position: relative;
}
.view-event-calendar .view-filters {
  position: absolute;
  top: 0;
  left: 0;
}
.view-event-calendar .event-calendar-header {
  padding: 10px 0;
}
.view-event-calendar .event-calendar-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.view-event-calendar .event-calendar-header ul li {
  list-style: none;
  display: inline-block;
  margin-right: 6px;
}
.view-event-calendar .event-calendar-header ul li span {
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 50px;
  background: #ccc;
  margin-right: 6px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.view-event-calendar .date-nav-wrapper {
  height: 55px;
  background: #881228;
  width: 99.9%;
}
.view-event-calendar .date-nav-wrapper .date-nav {
  margin: 0;
  padding: 0;
  position: relative;
}
.view-event-calendar .date-nav-wrapper .date-nav .date-heading {
  top: 10px;
}
.view-event-calendar .date-nav-wrapper .date-nav .date-heading h3 {
  line-height: 55px;
  height: 55px;
  display: block;
  font-weight: normal;
  color: #fff;
}
.view-event-calendar .date-nav-wrapper .date-nav .pager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  margin: 0;
}
.view-event-calendar .date-nav-wrapper .date-nav .pager li {
  list-style: none;
  background: none;
  position: absolute;
  left: auto;
  right: auto;
  width: 75px;
  height: 55px;
  margin: 0;
  padding: 0;
}
.view-event-calendar .date-nav-wrapper .date-nav .pager li a {
  position: absolute;
  line-height: 55px;
  padding: 0;
  margin: 0;
  text-indent: -55555px;
  width: 75px;
  height: 55px;
  display: inline-block;
  text-align: left;
}
.view-event-calendar .date-nav-wrapper .date-nav .pager li.date-prev {
  left: 10px;
}
.view-event-calendar .date-nav-wrapper .date-nav .pager li.date-prev a {
  left: 0;
  background: url(../images/arrow-left.png) left no-repeat;
}
.view-event-calendar .date-nav-wrapper .date-nav .pager li.date-next {
  right: 10px;
}
.view-event-calendar .date-nav-wrapper .date-nav .pager li.date-next a {
  right: 0;
  background: url(../images/arrow-right.png) right no-repeat;
}

.calendar-calendar .month-view table.full {
  border: none;
}
.calendar-calendar .month-view table.full th {
  background: #c9183a;
  font-weight: normal;
  color: #fff;
}
.calendar-calendar .month-view table.full th.days {
  border: none;
  height: 37px;
  line-height: 37px;
}
.calendar-calendar .month-view table.full th:first-child {
  border-left: none;
}
.calendar-calendar .month-view table.full th:last-child {
  border-right: none;
}
.calendar-calendar .month-view table.full tr.multi-day {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.calendar-calendar .month-view table.full td {
  border: solid #fff 3px;
  background: #e9e9e9;
  text-align: left;
  vertical-align: bottom;
}
.calendar-calendar .month-view table.full td div.day {
  float: none;
  width: auto;
  text-align: left;
  position: relative;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-month {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: none;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup {
  width: 300px;
  border: solid #333 3px;
  display: none;
  z-index: 9999999;
  position: absolute;
  border-radius: 3px;
  background: #fff;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup.pop-to-right {
  margin-left: 11px;
  left: 100%;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup.pop-to-left {
  margin-right: 11px;
  right: 100%;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup.pop-to-bottom {
  top: -32px;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup.pop-to-top {
  bottom: -32px;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup:before {
  content: "";
  width: 18px;
  height: 30px;
  border-width: 15px 0;
  border-style: solid;
  border-color: transparent;
  position: absolute;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup.pop-to-right:before {
  border-right-width: 18px;
  border-right-color: #333;
  left: -18px;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup.pop-to-left:before {
  border-left-width: 18px;
  border-left-color: #333;
  right: -18px;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup.pop-to-bottom:before {
  top: 28px;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup.pop-to-top:before {
  bottom: 28px;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .nav {
  background: #333;
  color: #e9e9e9;
  height: 30px;
  font-size: 13px;
  position: relative;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .nav .close {
  position: absolute;
  right: 0;
  width: 30px;
  height: 30px;
  top: 0;
  text-align: center;
  line-height: 30px;
  background: url(../images/close.png) center center no-repeat;
  text-indent: -5555px;
  cursor: pointer;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .nav .back {
  width: 45px;
  height: 30px;
  line-height: 30px;
  position: absolute;
  left: 10px;
  top: 0;
  display: none;
  cursor: pointer;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .nav .date {
  width: auto;
  height: 30px;
  line-height: 30px;
  position: absolute;
  left: 10px;
  top: 0;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content {
  padding: 10px;
  text-align: center;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content > div {
  color: #333;
  display: none;
  font-family: "Georgia", serif;
  font-style: italic;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content > div h3 {
  font-style: normal;
  margin-top: 0;
  display: block;
  font-size: 23px;
  padding: 6px 0;
  border-bottom: dashed #ccc 1px !important;
  text-align: center;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content > div p {
  font-family: "Open Sans", Arial, sans-serif;
  font-style: normal;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .sprite-event-level {
  padding-bottom: 62px;
  margin-bottom: 10px;
  border-bottom: dashed 1px #ccc;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .sprite-event-level ul {
  margin: 0;
  padding: 0;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .sprite-event-level ul li {
  display: inline-block;
  font-size: 12px;
  font-style: normal;
  font-family: "Open Sans", Arial, sans-serif;
  text-align: left;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .event-countdown {
  width: 50%;
  font-style: normal;
  margin-bottom: 20px;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .event-countdown span.day {
  font-family: "Roboto Condensed", sans-serif;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .event-countdown span.days-left {
  color: #777;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .counter-zero {
  background-position: -605px 0;
  height: 108px;
  width: 141px;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .counter-fifty {
  background-position: 0 0;
  height: 108px;
  width: 141px;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .counter-seventyfive {
  background-position: -303px 0;
  height: 108px;
  width: 141px;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .counter-full {
  background-position: -151px 0;
  height: 108px;
  width: 142px;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .counter-twentyfive {
  background-position: -454px 0;
  height: 108px;
  width: 141px;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .event-schedule-close, .calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .event-schedule-open {
  font-style: normal;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .event-schedule-close div span, .calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .event-schedule-open div span {
  color: #777;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .event-schedule-close .global-calendar, .calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .event-schedule-open .global-calendar {
  color: #777;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .event-schedule-close {
  float: right;
  padding-top: 20px;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .event-schedule-open {
  float: left;
  padding-top: 20px;
  margin-left: 0 !important;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .event-calendar-popup-event-details {
  margin: 10px 0;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .event-calendar-popup-event-details a {
  background: url(../images/button-forms.png) 0 -62px no-repeat;
  height: 30px;
  line-height: 30px;
  padding-left: 40px;
  padding-right: 10px;
  display: inline-block;
  font-weight: 400;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-family: "Open Sans", Arial, sans-serif;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-content .event-calendar-popup-event-details a:hover {
  text-decoration: none;
  background-position: 0 0;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-event-list {
  height: 100%;
  margin: -30px 0 0 !important;
  list-style: none;
  padding: 40px 10px 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-event-list li {
  font-size: 13px;
  border-bottom: solid #ccc 1px;
  line-height: 24px;
  line-height: 17px;
  padding: 6px 0;
  color: #c9183a;
  cursor: pointer;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-event-list li span {
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 50px;
  background: #ccc;
  margin-right: 6px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.calendar-calendar .month-view table.full td div.day .custom-calendar-popup .arrow-down {
  position: absolute;
  bottom: -29px;
  background: url(../images/arrow-down.png) bottom center no-repeat;
  width: 100%;
  height: 29px;
  display: none;
}
.calendar-calendar .month-view table.full td .custom-calendar-month-single-day {
  height: 100%;
  cursor: pointer;
}
.calendar-calendar .month-view table.full td .custom-calendar-month-single-day .item {
  background: #ccc;
  overflow: hidden;
  height: 10px;
  width: 10px;
  border-radius: 50px;
  float: left;
  margin: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.calendar-calendar .month-view table.full td .custom-calendar-month-single-day .item .monthview {
  display: none;
}
.calendar-calendar .month-view table.full td.date-box.today {
  border-color: #fff;
  border-top: solid 3px #fff;
}
.calendar-calendar .month-view table.full td.date-box.today, .calendar-calendar .month-view table.full td.single-day.today {
  background: #aaa;
}
.calendar-calendar .month-view table.full td.date-box.active {
  color: #fff;
}
.calendar-calendar .month-view table.full td.date-box.empty, .calendar-calendar .month-view table.full td.empty {
  color: #ccc;
}
.calendar-calendar .month-view table.full td:first-child {
  border-left: none;
}
.calendar-calendar .month-view table.full td:last-child {
  border-right: none;
}

.calendar-calendar tr.single-day {
  max-height: 400px !important;
  height: 100px !important;
}

td.single-day, td.date-box {
  cursor: pointer;
}

td.single-day.active, td.date-box.active {
  background: #881228 !important;
}
td.single-day.active .custom-calendar-month-single-day .item, td.date-box.active .custom-calendar-month-single-day .item {
  -moz-box-shadow: 0 0 2px 1px black;
  -webkit-box-shadow: 0 0 2px 1px black;
  box-shadow: 0 0 2px 1px black;
}

.calendar-calendar td .inner div, .calendar-calendar td .inner div a {
  background: none;
}

/* !-- Calendar Events Icons -- */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
@media all {
  .event-calendar-event-type-0 span,
  div.event-calendar-event-type-0 {
    border: 3px solid #a20002;
    background: #fff !important;
  }

  .event-calendar-event-type-1 span,
  div.event-calendar-event-type-1 {
    background: #a20002 !important;
  }

  .event-calendar-event-type-2 span,
  div.event-calendar-event-type-2 {
    background: #a20002 !important;
    border-radius: 0 !important;
  }

  .event-calendar-event-type-3 span,
  div.event-calendar-event-type-3 {
    background: #ff7b0f !important;
  }

  .event-calendar-event-type-4 span,
  div.event-calendar-event-type-4 {
    background: #ff7b0f !important;
    border-radius: 0 !important;
  }

  .event-calendar-event-type-5 span,
  div.event-calendar-event-type-5 {
    border: 3px solid #ff7b0f;
    background: #000 !important;
  }

  .event-calendar-event-type-6 span,
  div.event-calendar-event-type-6 {
    border: 3px solid #ff7b0f;
    background: #fff !important;
  }

  .event-calendar-event-type-7 span,
  div.event-calendar-event-type-7 {
    border: 3px solid #ffa600;
    background: #000 !important;
  }

  .event-calendar-event-type-8 span,
  div.event-calendar-event-type-8 {
    border: 3px solid #ffa600;
    background: #fff !important;
  }

  .event-calendar-event-type-9 span,
  div.event-calendar-event-type-9 {
    background: #36168f !important;
  }

  .event-calendar-event-type-10 span,
  div.event-calendar-event-type-10 {
    background: #7e23eb !important;
  }

  .event-calendar-event-type-11 span,
  div.event-calendar-event-type-11 {
    background: #a800ff !important;
  }
}
/* MOBILE */
@media all and (max-width: 768px) {
  .calendar-calendar tr.single-day {
    max-height: 200px !important;
    height: 60px !important;
  }

  .section-landing-page .body-upper-center-column {
    text-align: center;
  }

  .section-landing-page .landing-page-center-wrapper {
    width: 100%;
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .view-event-calendar .view-filters {
    width: 100%;
  }

  .view-event-calendar {
    padding-top: 160px;
  }

  .calendar-calendar .month-view table.full td div.day {
    position: static;
  }
  .calendar-calendar .month-view table.full td div.day .custom-calendar-popup {
    width: auto;
    height: auto;
    margin: 0 !important;
    border-radius: 0;
    position: fixed;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    							/*
    bottom: auto;
    							left: 50%;
    							margin-left: -155px;
    							top: 580px;
    */
  }
  .calendar-calendar .month-view table.full td div.day .custom-calendar-popup:before {
    display: none;
  }
  .calendar-calendar .month-view table.full td div.day .custom-calendar-popup .custom-calendar-event-list {
    overflow: auto;
  }
  .calendar-calendar .month-view table.full td div.day .custom-calendar-month {
    width: auto;
  }
  .calendar-calendar .month-view table.full td div.day .arrow-down {
    display: none;
  }

  .view-event-calendar .event-calendar-header ul li {
    display: block;
  }
}
.popdown {
  bottom: 0 !important;
  top: 5em;
}
.popdown .arrow-down {
  -webkit-transform: rotate(180deg);
  bottom: 1px !important;
}

/* Sprite rules */
#edit_language_chzn,
#edit_country_chzn {
  display: block !important;
}

.page-products .full-width-header {
  background: #101010;
}
.page-products .pane-product-landing {
  max-width: 970px;
  color: #dddddd;
  margin: 0 auto;
  min-height: 180px;
  font-family: "Georgia", serif;
  font-style: italic;
  padding: 40px 30px;
}
.page-products .pane-product-landing .pane-title {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 64px;
  color: #ffffff;
  font-style: normal;
  line-height: 72px;
}
.page-products .pane-common-questions-header {
  max-width: 970px;
  margin: auto;
}
.page-products .pane-common-questions-header .pane-title {
  left: 0 !important;
}
.page-products .chzn-container-single {
  display: none !important;
}
.page-products .ui-tabs .ui-tabs-nav li.ui-tabs-selected {
  padding-bottom: 0;
}
.page-products .ui-widget-content {
  border: none;
  background: none;
}
.page-products .ui-widget-content .item-list {
  border: none;
  background: none;
}
.page-products .ui-widget-content .item-list .ui-widget-header {
  background: none;
  border: none;
  padding: 0;
}
.page-products .ui-widget-content .item-list .ui-widget-header li.ui-state-default.ui-tabs-selected {
  background: #3e3e3e;
}
.page-products .ui-widget-content .item-list .ui-widget-header li.ui-state-default.ui-tabs-selected:after {
  background: url("../images/arrow-grey-active.png") no-repeat center bottom transparent;
  content: '';
  width: 40px;
  height: 30px;
  position: absolute;
  bottom: -35px;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.page-products .ui-widget-content .item-list .ui-widget-header li.ui-state-default {
  background: #8e8e8e;
  border-radius: 0;
  border: none;
  position: relative;
  margin-right: 10px;
}
.page-products .ui-widget-content .item-list .ui-widget-header li.ui-state-default a {
  color: #fff;
  float: none;
  display: block;
  height: 30px;
  line-height: 30px;
}
.page-products .ui-widget-content .item-list .ui-widget-header li.ui-state-default:hover, .page-products .ui-widget-content .item-list .ui-widget-header li.ui-state-default.ui-state-active {
  background: #3e3e3e;
}
.page-products .ui-widget-content .item-list .pager-load-more {
  margin: 0;
  padding: 0;
}
.page-products .ui-widget-content .item-list .pager-load-more li {
  float: none;
  width: 100%;
  padding: 0;
}
.page-products .ui-widget-content .item-list .pager-load-more a {
  background: #d0123e;
  height: 40px;
  display: block;
  color: #fff;
  text-transform: uppercase;
  line-height: 40px;
}
.page-products .ui-widget-content .ui-tabs-panel {
  padding: 40px 0 !important;
}

.view-wizards-wpn-product-landing-product-by-category {
  margin-bottom: 30px;
  width: 100%;
  float: left;
}
.view-wizards-wpn-product-landing-product-by-category .view-content {
  width: 100%;
  float: left;
  margin-bottom: 30px;
}
.view-wizards-wpn-product-landing-product-by-category .views-row {
  float: left;
  width: 31.64%;
  margin-left: 2%;
  margin-bottom: 30px;
}
.view-wizards-wpn-product-landing-product-by-category .views-row .views-field-field-additional-images {
  position: relative;
  margin-bottom: 6px;
}
.view-wizards-wpn-product-landing-product-by-category .views-row .views-field-field-additional-images img {
  float: none;
  display: block;
}
.view-wizards-wpn-product-landing-product-by-category .views-row .views-field-title .field-content {
  font-size: 18px;
  font-weight: bold;
  display: block;
  word-wrap: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .view-wizards-wpn-product-landing-product-by-category .views-row .views-field-title .field-content {
    white-space: normal;
    overflow: visible;
  }
}
.view-wizards-wpn-product-landing-product-by-category .views-row .views-field-field-brand {
  font-family: Georgia;
  font-style: italic;
  color: #3e3e3e;
  min-height: 25px;
  border-bottom: dashed #ccc 1px;
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.view-wizards-wpn-product-landing-product-by-category .views-row .views-field-field-release-date {
  color: #3e3e3e;
}
.view-wizards-wpn-product-landing-product-by-category .views-row .views-field-field-release-date div {
  display: inline;
}
.view-wizards-wpn-product-landing-product-by-category .views-row .views-field-view-node a {
  color: #d0123e;
  background: url(../images/small-arrow-red.png) left no-repeat;
  padding-left: 16px;
  display: inline-block;
}
.view-wizards-wpn-product-landing-product-by-category .views-row.views-row:nth-child(3n+1) {
  margin-left: 0;
  clear: left;
}
.view-wizards-wpn-product-landing-product-by-category .views-row-first {
  margin-left: 0;
  clear: left;
}

@media all and (max-width: 768px) {
  .page-products .pane-common-questions-header .pane-title {
    left: 0 !important;
    text-align: center;
  }
  .page-products .pane-product-landing {
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    min-height: 250px;
  }
  .page-products .pane-product-landing .pane-title {
    font-size: 42px;
    line-height: 48px;
  }
  .page-products .chzn-container-single {
    display: block !important;
  }
  .page-products ul.mobile-switch {
    display: none !important;
  }

  .view-wizards-wpn-product-landing-product-by-category .views-row .views-field-field-release-date {
    font-family: "Georgia", serif;
    font-style: italic;
    font-weight: bold;
  }
  .view-wizards-wpn-product-landing-product-by-category .views-row .views-field-field-release-date span.date-display-single {
    font-weight: normal !important;
  }

  .view-wizards-wpn-product-landing-product-by-category .views-row {
    float: none;
    display: block;
    width: 100%;
    margin: 0;
  }
  .view-wizards-wpn-product-landing-product-by-category .views-row .views-field-view-node {
    margin-bottom: 20px;
  }

  .ui-tabs .chzn-container {
    display: table !important;
  }

  .ui-tabs .item-list {
    margin-bottom: 0;
  }
  .ui-tabs .item-list .chzn-container {
    width: 100% !important;
    border: 1px solid #ccc;
  }
  .ui-tabs .item-list .chzn-container .chzn-single {
    border-radius: 0;
    height: 40px;
    line-height: 40px;
    border: none;
    box-shadow: none;
    background: #ffffff !important;
  }
  .ui-tabs .item-list .chzn-container .chzn-single div {
    background: url(../images/bg-drop-arrow.png) center center no-repeat white !important;
    display: block;
    width: 40px;
    height: 40px;
    border-left: solid #ccc 1px;
  }
  .ui-tabs .item-list .chzn-container .chzn-single div b {
    background: none !important;
  }
  .ui-tabs .ui-tabs .ui-tabs-panel {
    clear: left;
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }

  .view-wizards-wpn-product-landing-product-by-category .views-row .views-field-field-additional-images {
    text-align: center;
  }
  .view-wizards-wpn-product-landing-product-by-category .views-row .views-field-field-additional-images img {
    display: inline-block;
    width: 100%;
  }
}
/* Sprite rules */
.page-resources-common-questions .full-width-header {
  background: #101010;
}
.page-resources-common-questions #main .chzn-container-single {
  display: none !important;
}
.page-resources-common-questions .pane-common-questions-header {
  max-width: 970px;
  color: #dddddd;
  margin: 0 auto;
  min-height: 180px;
  font-family: "Georgia", serif;
  font-style: italic;
  padding: 40px 30px;
}
.page-resources-common-questions .pane-common-questions-header .pane-title {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 64px;
  color: #ffffff;
  font-style: normal;
  line-height: 72px;
}
.page-resources-common-questions.page-resources .body-center-column .faq-wrap {
  background-color: transparent !important;
}
.page-resources-common-questions.page-resources .body-center-column .pane-wiz-quicktabs-common-questions-search-form {
  width: auto;
  margin: 0;
  float: none;
}
.page-resources-common-questions.page-resources .body-center-column .pane-wiz-quicktabs-common-questions-search-form form {
  width: auto;
}
.page-resources-common-questions #quicktabs-common_questions {
  float: left;
  width: 100%;
}
.page-resources-common-questions #quicktabs-common_questions h2 {
  margin: 0 0 10px 0;
  text-transform: uppercase;
  font-size: 43px;
  line-height: 1em;
}
.page-resources-common-questions #quicktabs-common_questions h2 + p {
  color: #3e3e3e;
  margin: 0 0 20px 0;
  line-height: 1em;
  font-family: "Georgia", serif;
  font-style: italic;
}
.page-resources-common-questions #quicktabs-common_questions .item-list .quicktabs-style-navlist {
  border: solid #ccc 1px;
  border-bottom: none;
  padding: 0;
  width: 30%;
}
.page-resources-common-questions #quicktabs-common_questions .item-list .quicktabs-style-navlist li {
  border-bottom: solid #ccc 1px;
}
.page-resources-common-questions #quicktabs-common_questions .item-list .quicktabs-style-navlist li.first.active, .page-resources-common-questions #quicktabs-common_questions .item-list .quicktabs-style-navlist li.first {
  background: #3e3e3e;
}
.page-resources-common-questions #quicktabs-common_questions .item-list .quicktabs-style-navlist li.first.active span, .page-resources-common-questions #quicktabs-common_questions .item-list .quicktabs-style-navlist li.first span {
  font-size: 18px;
  color: #dddddd;
  padding: 15px 10px;
  display: block;
}
.page-resources-common-questions #quicktabs-common_questions .item-list .quicktabs-style-navlist li.first.active a, .page-resources-common-questions #quicktabs-common_questions .item-list .quicktabs-style-navlist li.first a {
  color: #dddddd;
  border: none;
  font-size: 16px;
}
.page-resources-common-questions #quicktabs-common_questions .item-list .quicktabs-style-navlist li.first.active:after, .page-resources-common-questions #quicktabs-common_questions .item-list .quicktabs-style-navlist li.first:after {
  border: none;
}
.page-resources-common-questions #quicktabs-common_questions .item-list .quicktabs-style-navlist li.active {
  border-top: none;
  background: #dddddd;
  position: relative;
}
.page-resources-common-questions #quicktabs-common_questions .item-list .quicktabs-style-navlist li.active a {
  color: #3e3e3e;
  border-left: solid #d0123e 3px;
}
.page-resources-common-questions #quicktabs-common_questions .item-list .quicktabs-style-navlist li.active:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #dddddd;
  border-width: 10px;
  margin-top: -10px;
}
.page-resources-common-questions #quicktabs-common_questions .item-list .quicktabs-style-navlist li a {
  padding: 10px;
  text-align: left;
  font-weight: 400;
  font-size: 13px;
}
.page-resources-common-questions #quicktabs-container-common_questions {
  padding: 0 0 0 30px;
  width: 64%;
  min-height: 400px;
  background: none;
  border: none;
}
.page-resources-common-questions #quicktabs-container-common_questions p, .page-resources-common-questions #quicktabs-container-common_questions li {
  font-size: 13px;
}
.page-resources-common-questions #quicktabs-container-common_questions a {
  color: #d0123e;
}
.page-resources-common-questions .view-wizards-wpn-faq-listing .views-row {
  border-top: solid #efefef 1px;
  border-bottom: solid #dddddd 1px;
  padding: 10px 0;
}
.page-resources-common-questions .view-wizards-wpn-faq-listing .views-row .views-field-title {
  padding-left: 40px;
  background-position: 0 -251px;
  height: 29px;
  width: 29px;
  display: block;
  width: 100%;
  height: auto;
  min-height: 29px;
  font-weight: 600;
  margin-left: 10px;
  background: none;
  position: relative;
}
.page-resources-common-questions .view-wizards-wpn-faq-listing .views-row .views-field-title:before {
  content: "";
  width: 29px;
  height: 29px;
  background: url(../images/global-s0f5d3da606.png) 0 -92px no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.page-resources-common-questions .view-wizards-wpn-faq-listing .views-row .views-field-title a {
  color: #d0123e;
}
.page-resources-common-questions .view-wizards-wpn-faq-listing .views-row.views-row-first {
  border-top: none;
  padding-top: 0;
}
.page-resources-common-questions .view-wizards-wpn-faq-listing .views-row .views-field-body {
  padding-left: 50px;
  display: none;
}
.page-resources-common-questions .view-wizards-wpn-faq-listing .views-row .views-field-body p {
  margin: 0;
  margin-bottom: 10px;
}

@media all and (max-width: 768px) {
  .page-resources-common-questions {
    width: 100%;
    margin: 0 auto;
  }
  .page-resources-common-questions .pane-common-questions-header {
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    min-height: 250px;
  }
  .page-resources-common-questions .pane-common-questions-header .pane-title {
    font-size: 42px;
    line-height: 48px;
  }
  .page-resources-common-questions .chzn-container-single {
    display: block !important;
    width: 100% !important;
    margin-bottom: 20px;
  }
  .page-resources-common-questions ul.mobile-switch {
    display: none !important;
  }
  .page-resources-common-questions #quicktabs-common_questions {
    padding: 0 0;
    float: none;
    width: auto;
  }
  .page-resources-common-questions #quicktabs-container-common_questions {
    float: none;
    width: 100%;
    padding: 0;
  }
  .page-resources-common-questions .view-wizards-wpn-faq-listing .views-row .views-field-title {
    width: auto;
  }
}
/* Sprite rules */
.page-resources .sub-title {
  padding-top: 50px;
}
.page-resources .sub-title.buy-title {
  width: auto !important;
  margin-left: -30px !important;
  margin-right: -30px !important;
  padding-left: 30px;
  padding-right: 30px;
  background: #fff !important;
  float: none !important;
  clear: both !important;
}
.page-resources .generic-content-panel.right-img-display {
  padding: 40px 0;
}
.page-resources .generic-content-panel.right-img-display .content {
  padding-right: 25%;
  background-repeat: no-repeat;
  background-position: 95% 50%;
}
.page-resources .generic-content-panel.right-img-display .content p {
  margin: 0;
  padding: 0;
  font-family: Georgia;
  font-style: italic;
}
.page-resources .generic-content-panel.right-img-display .content a {
  margin: 10px 0 0;
}
.page-resources .generic-content-panel.right-img-display h2 {
  margin: 0 0 10px 0;
  line-height: 1em;
  text-transform: uppercase;
  font-size: 43px !important;
  font-style: normal;
  color: #000;
}
@media all and (max-width: 767px) {
  .page-resources .generic-content-panel.right-img-display {
    text-align: center;
  }
  .page-resources .generic-content-panel.right-img-display .content {
    padding-right: 0;
    padding-bottom: 150px;
    background-position: 50% 100%;
  }
}
.page-resources .body-center-column .pane-common-questions-header {
  float: left;
  width: 66.66667%;
  margin-left: 0%;
  margin-right: -66.66667%;
}
.page-resources .pane-wiz-quicktabs-common-questions-search-form {
  clear: left;
  float: left;
  width: 66.66667%;
  margin-left: 0%;
  margin-right: -66.66667%;
}
.page-resources .body-center-column .pane-wiz-quicktabs-common-questions-resources-page {
  clear: left;
  float: left;
  width: 66.66667%;
  margin-left: 0%;
  margin-right: -66.66667%;
}
.page-resources .body-center-column .pane-wiz-quicktabs-common-questions-resources-page a:hover, .page-resources .body-center-column .pane-wiz-quicktabs-common-questions-resources-page a:focus {
  text-decoration: underline;
}
.page-resources .pane-resources-section-contact-us {
  float: right;
  width: 29.16667%;
  margin-right: 0%;
  margin-left: -29.16667%;
}
.page-resources .pane-resources-section-bottom-upper {
  clear: left;
}
.page-resources .full-width-header {
  background: #101010;
}
.page-resources .full-width-header .pane-common-questions-header {
  max-width: 970px;
  color: #dddddd;
  margin: 0 auto;
  min-height: 180px;
  font-family: "Georgia", serif;
  font-style: italic;
  padding: 40px 30px;
}
.page-resources .full-width-header .pane-common-questions-header .pane-title {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 64px;
  color: #ffffff;
  font-style: normal;
  line-height: 72px;
}
.page-resources .body-center-column .pane-common-questions-header {
  font-family: Georgia;
  font-style: italic;
  color: #3e3e3e;
}
.page-resources .body-center-column .pane-common-questions-header .pane-title {
  margin: 0 0 10px 0;
  line-height: 1em;
  text-transform: uppercase;
  font-size: 43px !important;
  font-style: normal;
  color: #000;
}
.page-resources .body-center-column .pane-resources-section-contact-us {
  border: solid #ccc 1px;
  margin-bottom: 30px;
  margin-top: -175px;
}
.page-resources .body-center-column .pane-resources-section-contact-us h2 {
  margin: 0;
  background: #3e3e3e;
  display: block;
  color: #dddddd;
  font-weight: 400;
  padding: 10px;
  line-height: 1em;
}
.page-resources .body-center-column .pane-resources-section-contact-us p {
  margin: 0 0 0 0;
  font-size: 13px;
}
.page-resources .body-center-column .pane-resources-section-contact-us #contact-phone {
  padding: 10px 10px 10px 50px;
  background: url(../images/related-articles/phone.png) 10px 16px no-repeat;
}
.page-resources .body-center-column .pane-resources-section-contact-us #contact-email {
  padding: 10px 10px 10px 50px;
  background: url(../images/related-articles/email.png) 10px 7px no-repeat;
  border-top: solid #ccc 1px;
}
.page-resources .body-center-column .pane-resources-section-contact-us #contact-email a {
  color: #d0123e;
}
.page-resources .body-center-column .pane-wiz-quicktabs-common-questions-search-form {
  padding: 0 0 40px 0;
}
.page-resources .body-center-column .pane-wiz-quicktabs-common-questions-search-form form {
  position: relative;
  height: 40px;
  width: 97%;
}
.page-resources .body-center-column .pane-wiz-quicktabs-common-questions-search-form form input#edit-submit {
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/global/search.png) center center no-repeat;
  display: block;
  width: 40px;
  height: 40px;
  border: none;
  text-indent: -5555px;
}
.page-resources .body-center-column .pane-wiz-quicktabs-common-questions-search-form form .form-text {
  position: absolute;
  top: 0;
  left: 0;
  border: solid #ccc 1px;
  height: 40px;
  width: 100%;
  line-height: 40px;
  padding: 3px;
  color: #3e3e3e;
}
.page-resources .body-center-column .pane-wiz-quicktabs-common-questions-resources-page {
  margin-bottom: 40px;
}
.page-resources .body-center-column .pane-wiz-quicktabs-common-questions-resources-page .contextual-links-processed a {
  padding: 0;
  width: auto;
  text-indent: -5555px;
  display: inline-block;
  width: 30px;
  border-bottom: none;
  background: none;
}
.page-resources .body-center-column .pane-wiz-quicktabs-common-questions-resources-page a {
  color: #d0123e;
  display: inline-block;
  border-bottom: dashed #ccc 1px;
  padding: 6px 10px 6px 20px;
  width: 41.58%;
  margin-right: 3%;
  background: url(../images/small-arrow-red.png) left no-repeat;
}
.page-resources .body-center-column .pane-resources-section-bottom-upper, .page-resources .body-center-column .pane-resources-section-bottom-lower {
  width: 100%;
  padding: 40px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.page-resources .body-center-column .pane-resources-section-bottom-upper > div, .page-resources .body-center-column .pane-resources-section-bottom-lower > div {
  text-align: center;
  padding: 0 10px;
  border-left: 1px dashed #ccc;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 1px;
  flex-basis: 1px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.page-resources .body-center-column .pane-resources-section-bottom-upper > div, .page-resources .body-center-column .pane-resources-section-bottom-upper > div *, .page-resources .body-center-column .pane-resources-section-bottom-lower > div, .page-resources .body-center-column .pane-resources-section-bottom-lower > div * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.page-resources .body-center-column .pane-resources-section-bottom-upper > div:nth-child(3n+1), .page-resources .body-center-column .pane-resources-section-bottom-lower > div:nth-child(3n+1) {
  border: 0;
}
.page-resources .body-center-column .pane-resources-section-bottom-upper > div h3, .page-resources .body-center-column .pane-resources-section-bottom-lower > div h3 {
  line-height: 1em;
  margin: 0 0 10px 0;
}
.page-resources .body-center-column .pane-resources-section-bottom-upper > div h3 a, .page-resources .body-center-column .pane-resources-section-bottom-lower > div h3 a {
  color: #d0123e;
  padding-top: 140px;
  display: block;
}
.page-resources .body-center-column .pane-resources-section-bottom-upper > div p, .page-resources .body-center-column .pane-resources-section-bottom-lower > div p {
  margin: 0;
}
.page-resources .body-center-column .pane-resources-section-bottom-upper > div p a, .page-resources .body-center-column .pane-resources-section-bottom-lower > div p a {
  margin: 10px 0 0 0;
}
.page-resources .body-center-column .pane-resources-section-bottom-upper #products, .page-resources .body-center-column .pane-resources-section-bottom-lower #products {
  background: url(../images/master-icons/products.png) center top no-repeat;
}
.page-resources .body-center-column .pane-resources-section-bottom-upper #marketing-materials, .page-resources .body-center-column .pane-resources-section-bottom-lower #marketing-materials {
  background: url(../images/master-icons/marketing-materials.png) center top no-repeat;
}
.page-resources .body-center-column .pane-resources-section-bottom-upper #rules-and-docs, .page-resources .body-center-column .pane-resources-section-bottom-lower #rules-and-docs {
  background: url(../images/master-icons/event-rules.png) center top no-repeat;
}
.page-resources .body-center-column .pane-resources-section-bottom-upper #distributors, .page-resources .body-center-column .pane-resources-section-bottom-lower #distributors {
  background: url(../images/master-icons/find-distributors.png) center top no-repeat;
}
.page-resources .body-center-column .pane-resources-section-bottom-upper #direct-sales, .page-resources .body-center-column .pane-resources-section-bottom-lower #direct-sales {
  background: url(../images/master-icons/direct-sales.png) center top no-repeat;
}
.page-resources .body-center-column .pane-resources-section-bottom-upper #retailer-program, .page-resources .body-center-column .pane-resources-section-bottom-lower #retailer-program {
  background: url(../images/master-icons/retailer.png) center top no-repeat;
}
.page-resources .body-center-column .pane-resources-section-bottom-upper #meet-us, .page-resources .body-center-column .pane-resources-section-bottom-lower #meet-us {
  background: url(../images/master-icons/trade-show-icon-120_0.png) center top no-repeat;
}
.page-resources .body-center-column .pane-resources-section-bottom-lower {
  margin-right: -30px;
  margin-left: -30px;
  padding-left: 30px;
  padding-right: 30px;
  background: #fff !important;
}
.page-resources .body-center-column .faq-wrap {
  margin-right: -30px;
  margin-left: -30px;
  padding-left: 30px;
  padding-right: 30px;
}

@media all and (max-width: 768px) {
  .page-resources .full-width-header .pane-common-questions-header {
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    min-height: 120px;
  }
  .page-resources .full-width-header .pane-common-questions-header .pane-title {
    font-size: 42px;
    line-height: 48px;
  }
  .page-resources .panel-headbodyfooter.body-center-column .pane-common-questions-header {
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }
  .page-resources .panel-headbodyfooter.body-center-column .pane-resources-section-bottom-upper, .page-resources .panel-headbodyfooter.body-center-column .pane-resources-section-bottom-lower {
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 0;
  }
  .page-resources .panel-headbodyfooter.body-center-column .pane-resources-section-bottom-upper > div, .page-resources .panel-headbodyfooter.body-center-column .pane-resources-section-bottom-lower > div {
    border: 0;
    margin: 0 auto 80px;
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .page-resources .panel-headbodyfooter.body-center-column .pane-wiz-quicktabs-common-questions-resources-page {
    clear: left;
    margin: 0 auto 40px;
    width: 100%;
  }
  .page-resources .panel-headbodyfooter.body-center-column .pane-wiz-quicktabs-common-questions-resources-page a {
    display: block;
    margin: 0;
    float: none;
    width: auto;
  }
  .page-resources .panel-headbodyfooter.body-center-column .pane-wiz-quicktabs-common-questions-search-form {
    margin: 0 auto;
    width: 100%;
  }
  .page-resources .panel-headbodyfooter.body-center-column .pane-wiz-quicktabs-common-questions-search-form form {
    width: 100%;
  }
  .page-resources .panel-headbodyfooter.body-center-column .pane-resources-section-contact-us {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    margin-top: 0;
  }
}
/* Sprite rules */
.page-resources-marketing-materials .full-width-header .content-page-header {
  height: 230px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.page-resources-marketing-materials .full-width-header .content-page-header h2 {
  color: #fff;
  font-size: 64px;
  line-height: 1em;
  text-transform: uppercase;
  max-width: 970px;
  margin: 0 auto;
  padding: 54px 30px 0;
  position: relative;
  z-index: 2;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.page-resources-marketing-materials .full-width-header .content-page-header img {
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.page-resources-marketing-materials .body-center-column {
  margin-top: -70px !important;
  padding-top: 10px !important;
}
.page-resources-marketing-materials .body-center-column a:hover,
.page-resources-marketing-materials .body-center-column a:focus {
  text-decoration: underline;
}
.page-resources-marketing-materials .ark-tabs {
  border: 1px solid #ccc;
  margin-bottom: 30px;
  background: #eee;
}
.page-resources-marketing-materials .ark-tabs *, .page-resources-marketing-materials .ark-tabs *:before, .page-resources-marketing-materials .ark-tabs *:after {
  outline: none !important;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-nav:after {
  content: "";
  height: 0;
  display: block;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-nav a {
  color: #a5a5a5;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  width: 33%;
  padding: 30px 30px 30px;
  border-width: 0 0 1px 1px;
  border-style: solid;
  border-color: #ccc;
  height: 260px;
  background: #eee;
  float: left;
  display: block;
  position: relative;
  z-index: 2;
  -moz-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
  -webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-nav a:first-child {
  width: 34%;
  border-left: 0;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-nav a:after {
  content: "";
  width: 16px;
  height: 16px;
  margin: 0 0 0 -8px;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #ccc;
  background: #eee;
  -moz-transform: rotate(45deg) scale(0, 0);
  -ms-transform: rotate(45deg) scale(0, 0);
  -webkit-transform: rotate(45deg) scale(0, 0);
  transform: rotate(45deg) scale(0, 0);
  position: absolute;
  left: 50%;
  bottom: -8px;
  z-index: 3;
  -moz-transition: background-color 0.25s ease-in-out, -moz-transform 0.25s ease-in-out;
  -o-transition: background-color 0.25s ease-in-out, -o-transform 0.25s ease-in-out;
  -webkit-transition: background-color 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out, transform 0.25s ease-in-out;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-nav a p {
  margin: 0;
  padding: 0;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-nav a p.property {
  text-align: left;
  text-indent: -999px;
  height: 100px;
  margin: 0 auto 25px;
  background: 50% 0 no-repeat;
  background-size: auto 200%;
  overflow: hidden;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-nav a:hover, .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a:focus, .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a.current {
  color: #3e3e3e;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-nav a:hover p.property, .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a:focus p.property, .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a.current p.property {
  background-position: 50% 100%;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-nav a.current, .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a.current:after {
  background: #fff;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-nav a.current:after {
  -moz-transform: rotate(45deg) scale(1, 1);
  -ms-transform: rotate(45deg) scale(1, 1);
  -webkit-transform: rotate(45deg) scale(1, 1);
  transform: rotate(45deg) scale(1, 1);
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-nav a.magic p.property {
  background-image: url(../images/marketing-tab-magic_en.png);
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-nav a.dungeons p.property {
  background-image: url(../images/marketing-tab-dnd_en.png);
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-nav a.wizards p.property {
  background-image: url(../images/marketing-tab-wizards_en.png);
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-nav.ark-tabs-count-2 a {
  width: 50%;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-nav.ark-tabs-count-1 a {
  width: 100%;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content {
  padding: 0 30px;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element {
  height: 0;
  opacity: 0;
  overflow: hidden;
  -moz-transition: opacity 0.25s ease-out;
  -o-transition: opacity 0.25s ease-out;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element.current {
  height: auto;
  opacity: 1;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl {
  margin: 0;
  padding: 0;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dt {
  font: bold 20px "Roboto Condensed", sans-serif;
  margin: 0;
  padding: .6em 34px .6em 0;
  border-top: 1px dashed #ccc;
  position: relative;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dt:first-child {
  border: 0;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd {
  margin: 0;
  padding: 0;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd p {
  margin: .8em 0 0;
  padding: 0;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd ul {
  margin: .5em 0 .8em;
  padding: 0;
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd ul li {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 25%;
  padding: 0 5px 20px 5px;
}
@media all and (max-width: 920px) {
  .page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd ul li {
    width: 33.33%;
  }
}
@media all and (max-width: 700px) {
  .page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd ul li {
    width: 50%;
  }
}
@media all and (max-width: 440px) {
  .page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd ul li {
    width: 100%;
    padding: 0 0 10px 0;
  }
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd ul li a {
  padding: 0 20px;
  margin-bottom: 5px;
  display: inline-block;
  position: relative;
  width: 100%;
  text-align: center;
}
@media all and (max-width: 440px) {
  .page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd ul li a {
    font-size: 14px;
  }
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd ul li a:after {
  content: "";
  width: 22px;
  height: 23px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd ul li a.download:after {
  background-image: url(../images/icon-download.svg);
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd ul li a.external:after {
  /*background-image: url(../images/icon-external.svg);*/
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd ul li a.print:after {
  background-image: url(../images/icon-print-on-demand.svg);
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd ul li a.image {
  margin-bottom: 5px;
  height: 200px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd ul li a span.size {
  color: #3e3e3e;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd.opened {
  height: auto !important;
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dt:after {
  content: "";
  width: 15px;
  height: 15px;
  margin-top: -10px;
  display: block;
  border-bottom: 4px solid #514f8c;
  border-right: 4px solid #514f8c;
  position: absolute;
  right: 10px;
  top: 50%;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dt.opened:after {
  margin-top: -7px;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd.hidden, .page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dd.closed {
  overflow: hidden;
  height: 0;
}

@media all and (max-width: 1283px) {
  .page-resources-marketing-materials .full-width-header .content-page-header img {
    width: auto !important;
    height: 100% !important;
    min-height: 0 !important;
    margin-left: -641px !important;
    left: 50%;
  }
}
@media all and (max-width: 1045px) {
  .page-resources-marketing-materials .full-width-header .content-page-header h2 {
    font-size: 32px;
    text-align: center;
    padding-top: 38px;
  }
  .page-resources-marketing-materials .body-center-column {
    margin-top: -122px !important;
  }
}
@media all and (max-width: 920px) {
  .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a {
    height: 180px;
  }
  .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a p.property {
    height: 50px;
    margin-bottom: 10px;
  }
  .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a.magic p.property {
    width: 109px;
    background-position: 0 0;
  }
  .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a.dungeons p.property {
    width: 110px;
    background-position: -110px 0;
  }
  .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a.wizards p.property {
    width: 78px;
    background-position: -220px 0;
  }
  .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a:hover.magic p.property, .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a:focus.magic p.property, .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a.current.magic p.property {
    background-position: 0 100%;
  }
  .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a:hover.dungeons p.property, .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a:focus.dungeons p.property, .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a.current.dungeons p.property {
    background-position: -110px 100%;
  }
  .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a:hover.wizards p.property, .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a:focus.wizards p.property, .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a.current.wizards p.property {
    background-position: -220px 100%;
  }
  .page-resources-marketing-materials .ark-tabs .ark-tabs-content .ark-tabs-element dl dt {
    text-align: center;
    padding: .6em 34px;
  }
}
@media all and (max-width: 800px) {
  .page-resources-marketing-materials .full-width-header, .page-resources-marketing-materials .full-width-header .content-page-header {
    height: 408px;
  }
  .page-resources-marketing-materials .full-width-header .content-page-header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
  }
  .page-resources-marketing-materials .full-width-header .content-page-header h2 {
    padding-top: 340px;
  }
  .page-resources-marketing-materials .full-width-header .content-page-header img {
    margin-left: -1138px !important;
  }
  .page-resources-marketing-materials .body-center-column {
    margin-top: 0 !important;
  }
}
@media all and (max-width: 768px) {
  .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a {
    width: auto !important;
    height: auto;
    padding: 5px;
    border-width: 0 0 1px;
    background-color: #ddd;
    float: none;
  }
  .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a:after {
    display: none;
  }
  .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a p {
    display: none;
  }
  .page-resources-marketing-materials .ark-tabs .ark-tabs-nav a p.property {
    margin: 0 auto;
    display: block;
  }
  .page-resources-marketing-materials .full-width-header {
    height: auto;
  }
  .page-resources-marketing-materials .full-width-header .content-page-header {
    height: 108px;
    position: relative;
    left: auto;
    right: auto;
    z-index: 1;
  }
  .page-resources-marketing-materials .full-width-header .content-page-header h2 {
    padding-top: 38px;
  }
  .page-resources-marketing-materials .full-width-header .content-page-header img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin-left: 0 !important;
    left: 0 !important;
  }
}
@media all and (max-width: 602px) {
  .page-resources-marketing-materials .full-width-header .content-page-header img {
    width: auto !important;
    height: 100% !important;
    margin-left: -301px !important;
    left: 50% !important;
  }
}
/* Sprite rules */
.page-grow-your-store .views-label-created {
  display: none;
}
.page-grow-your-store .panel-homepage .chzn-container {
  display: none !important;
}
.page-grow-your-store .node-webform, .page-grow-your-store .body-center-column {
  background: #efefef;
}
.page-grow-your-store .full-width-header {
  background: #101010;
}
.page-grow-your-store .ui-tabs .ui-tabs-nav li.ui-tabs-selected {
  padding-bottom: 0;
}
.page-grow-your-store .ui-widget-content {
  border: none;
  background: none;
  padding: 0 0;
}
.page-grow-your-store .ui-widget-content .item-list {
  border: none;
  background: none;
}
.page-grow-your-store .ui-widget-content .item-list .ui-widget-header {
  background: none;
  border: none;
  padding: 0;
  position: relative;
  z-index: 1;
}
.page-grow-your-store .ui-widget-content .item-list .ui-widget-header li.ui-state-default.ui-state-active {
  margin-bottom: 0;
  padding-bottom: 0;
  background: #3e3e3e;
}
.page-grow-your-store .ui-widget-content .item-list .ui-widget-header li.ui-state-default.ui-state-active:after {
  background: url("../images/arrow-grey-active.png") no-repeat center bottom transparent;
  content: '';
  width: 40px;
  height: 10px;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}
.page-grow-your-store .ui-widget-content .item-list .ui-widget-header li.ui-state-default {
  background: #8e8e8e;
  border-radius: 0;
  border: none;
  position: relative;
  margin-right: 1px;
  margin-bottom: 16px;
}
.page-grow-your-store .ui-widget-content .item-list .ui-widget-header li.ui-state-default a {
  color: #fff;
  font-size: 13px;
  float: left;
  display: block;
  padding: 5px 10px;
  line-height: 30px;
  outline: 0 !important;
}
.page-grow-your-store .ui-widget-content .item-list .ui-widget-header li.ui-state-default:hover {
  background: #3e3e3e;
}
.page-grow-your-store .ui-widget-content .item-list .pager-load-more {
  background: #d0123e;
  height: 40px;
}
.page-grow-your-store .ui-widget-content .item-list .pager-load-more li {
  float: left;
  width: 100%;
}
.page-grow-your-store .ui-widget-content .item-list .pager-load-more a {
  display: block;
  color: #fff;
  text-transform: uppercase;
  line-height: 40px;
}
.page-grow-your-store .ui-widget-content .ui-tabs-panel {
  padding: 30px 0 !important;
}

.view-wizards-wpn-grow-your-store-articles {
  margin-bottom: 0;
  width: 100%;
  float: left;
}
.view-wizards-wpn-grow-your-store-articles .view-content {
  float: left;
  margin-bottom: 30px;
  width: 100%;
}
.view-wizards-wpn-grow-your-store-articles .views-row {
  float: left;
  width: 29.93%;
  padding: 0 2%;
  border-left: dashed #ccc 1px;
  margin-bottom: 30px;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-additional-images {
  background: #dddddd;
  min-height: 190px;
  position: relative;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-additional-images img {
  float: left;
  width: 100%;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-title {
  font-size: 18px;
  font-weight: bold;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-brand {
  font-family: Georgia;
  font-style: italic;
  color: #3e3e3e;
  min-height: 25px;
  border-bottom: dashed #ccc 1px;
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-release-date {
  color: #3e3e3e;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-release-date div {
  display: inline;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-view-node a {
  color: #d0123e;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-image img {
  width: 100%;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-article-video iframe, .view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-article-video img {
  width: 100%;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-time-to-read {
  color: #8e8e8e;
  padding-left: 15px;
  position: relative;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-time-to-read:before {
  content: "";
  width: 12px;
  height: 12px;
  background: url('../images/clock.png?1599154334') 50% 50%/100% 100% no-repeat;
  position: absolute;
  top: .35em;
  left: 0;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-time-to-read .field-content {
  color: inherit;
  font-size: inherit !important;
  line-height: inherit !important;
}
.view-wizards-wpn-grow-your-store-articles .views-row-first {
  margin-left: 0;
  border-left: none;
  padding-left: 0;
  clear: left;
}

.pane-grow-your-store-featured-store {
  background: #f6f6f6;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  position: relative;
  z-index: 100;
  max-width: 970px;
  padding: 30px;
}
.pane-grow-your-store-featured-store h1 {
  margin: 0 0 10px 0;
  line-height: 1em;
  text-transform: uppercase;
}
.pane-grow-your-store-featured-store .subheading {
  font-family: Georgia;
  font-style: italic;
  color: #3e3e3e;
}

@media all and (max-width: 768px) {
  .page-grow-your-store .chzn-results {
    margin: 4px;
    padding: 0;
  }
  .page-grow-your-store .panel-homepage .chzn-container {
    display: block !important;
  }
  .page-grow-your-store ul.mobile-switch {
    display: none !important;
  }

  .view-wizards-wpn-grow-your-store-articles .views-row {
    float: none;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-bottom: dashed #ccc 1px;
  }
  .view-wizards-wpn-grow-your-store-articles .views-row .views-field-view-node {
    margin-bottom: 20px;
  }
  .view-wizards-wpn-grow-your-store-articles .views-row-last {
    border: none;
  }
}
/* Sprite rules */
.wpntabs-wrapper:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.wpntabs-wrapper > ul {
  border: solid #cccccc 1px;
  border-bottom: none;
  padding: 0;
  width: 30%;
  list-style: none;
  float: left;
  margin: 0;
  margin-right: 3%;
}
.wpntabs-wrapper > ul h3 {
  display: block;
  margin: 0 !important;
  background: #3e3e3e;
  height: 40px;
  line-height: 40px !important;
  color: #fff;
  font-weight: normal;
  padding: 0 10px;
}
.wpntabs-wrapper > ul li {
  border-bottom: solid #cccccc 1px;
}
.wpntabs-wrapper > ul li a {
  color: #3e3e3e;
  border: none;
  font-size: 16px;
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  background: #dddddd;
}
.wpntabs-wrapper > ul li.active {
  border-left: solid #d0123e 3px;
  position: relative;
}
.wpntabs-wrapper > ul li.active:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #dddddd;
  border-width: 10px;
  margin-top: -10px;
}
.wpntabs-wrapper .wpntabs-main {
  float: left;
  width: 66.75%;
  position: relative;
}
.wpntabs-wrapper .wpntabs-main div {
  display: none;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.wpntabs-wrapper .wpntabs-main div.active {
  display: block;
  position: relative;
}

.wpn-table {
  border: 1px solid #ccc;
  color: #101010;
}
.wpn-table a.button-download {
  background: url(../images/button-forms.png) 0 0;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  color: #fff;
  padding-right: 10px;
  padding-left: 40px;
  text-align: left;
}
.wpn-table thead {
  background: #dddddd;
}
.wpn-table thead tr {
  border-bottom: 1px solid #ccc;
}
.wpn-table thead th {
  padding: 20px 0;
  text-align: center;
}
.wpn-table tbody tr td {
  padding: 10px 64px;
  text-align: center;
  border-right: 1px solid #ccc;
}
.wpn-table tbody tr td.active {
  background: inherit;
}
.wpn-table tbody tr.odd {
  background-color: #e9e9e9;
  border-top: 1px solid #ffffff;
}

.page-wer {
  /*.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
    padding-bottom: 0;
  }*/
}
.page-wer a {
  color: #ca1b1d;
}
.page-wer .node-webform, .page-wer .body-center-column {
  background: #efefef;
  padding-bottom: 30px;
}
.page-wer .full-width-header {
  background: #101010;
}
.page-wer .full-width-header > .panel-pane.pane-generic-html-pane {
  max-width: 970px;
  color: #dddddd;
  margin: 0 auto;
  margin-top: 0;
  min-height: 362px;
  font-family: "Georgia", serif;
  font-style: italic;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
}
.page-wer .full-width-header > .panel-pane.pane-generic-html-pane .pane-title {
  margin: 20px 0;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 64px;
  color: #ffffff;
  font-style: normal;
  line-height: 72px;
}
.page-wer .full-width-header > .panel-pane.pane-generic-html-pane a.ctools-use-modal {
  background: url(../images/button-forms.png) 0 0 no-repeat;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding-left: 40px;
  padding-right: 10px;
  text-align: left;
  color: #fff;
  font-style: normal;
  font-family: "Open Sans", Arial, sans-serif;
  text-transform: uppercase;
  margin-right: 10px;
}
.page-wer .full-width-header > .panel-pane.pane-generic-html-pane a.ctools-use-modal:hover {
  background-position: 0 -32px;
  color: #000;
}
.page-wer .full-width-header > .panel-pane.pane-generic-html-pane p {
  display: inline-block;
  margin-bottom: 10px;
}
.page-wer .ui-tabs .ui-tabs-nav li.ui-tabs-selected {
  padding-bottom: 0;
}
.page-wer .ui-widget-content {
  padding: 0 0 40px;
  border: none;
  background: none;
}
.page-wer .ui-widget-content .item-list {
  border: none;
  background: none;
}
.page-wer .ui-widget-content .item-list .ui-widget-header {
  margin: 0;
  padding: 0;
  border-top: none;
  border-right: none;
  border-left: none;
  border-color: #dddddd;
  background: none;
}
.page-wer .ui-widget-content .item-list .ui-widget-header a {
  outline: none;
}
.page-wer .ui-widget-content .item-list .ui-widget-header li.ui-state-default {
  margin-right: 3px;
  border-width: 1px 1px 0;
  border-style: solid;
  border-color: #ccc;
  border-adius: 3px;
  overflow: hidden;
}
.page-wer .ui-widget-content .item-list .ui-widget-header li.ui-state-default a {
  color: #3e3e3e;
  line-height: 27px;
  background: #fff;
  position: relative;
  outline: none;
}
.page-wer .ui-widget-content .item-list .ui-widget-header li.ui-state-default a:hover, .page-wer .ui-widget-content .item-list .ui-widget-header li.ui-state-default a:focus {
  color: #d0123e;
}
.page-wer .ui-widget-content .item-list .ui-widget-header li.ui-state-default.ui-tabs-active a {
  color: #3e3e3e;
  cursor: default;
  pointer-events: none;
}
.page-wer .ui-widget-content .item-list .ui-widget-header li.ui-state-default.ui-tabs-active a:before {
  content: "";
  height: 3px;
  background: #d0123e;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.page-wer .ui-widget-content {
  border: none;
  background: none;
  padding: 0 0 40px;
}
.page-wer .ui-widget-content .item-list {
  border: none;
  background: none;
}
.page-wer .ui-widget-content .item-list .ui-widget-header {
  margin: 0;
  padding: 0;
  border-top: none;
  border-right: none;
  border-left: none;
  border-color: #dddddd;
  background: none;
}
.page-wer .ui-widget-content .item-list .ui-widget-header a {
  outline: none;
}
.page-wer .ui-widget-content .item-list .ui-widget-header li.ui-state-default {
  margin-right: 3px;
  border-width: 1px 1px 0;
  border-style: solid;
  border-color: #ccc;
  border-adius: 3px;
  overflow: hidden;
}
.page-wer .ui-widget-content .item-list .ui-widget-header li.ui-state-default a {
  color: #3e3e3e;
  line-height: 27px;
  background: #fff;
  position: relative;
  outline: none;
}
.page-wer .ui-widget-content .item-list .ui-widget-header li.ui-state-default a:hover, .page-wer .ui-widget-content .item-list .ui-widget-header li.ui-state-default a:focus {
  color: #d0123e;
}
.page-wer .ui-widget-content .item-list .ui-widget-header li.ui-state-default.ui-tabs-active a {
  color: #3e3e3e;
  cursor: default;
  pointer-events: none;
}
.page-wer .ui-widget-content .item-list .ui-widget-header li.ui-state-default.ui-tabs-active a:before {
  content: "";
  height: 3px;
  background: #d0123e;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.page-wer .ui-widget-content .item-list .pager-load-more {
  background: #d0123e;
  height: 40px;
}
.page-wer .ui-widget-content .item-list .pager-load-more li {
  float: left;
  width: 100%;
}
.page-wer .ui-widget-content .item-list .pager-load-more a {
  display: block;
  color: #fff;
  text-transform: uppercase;
  line-height: 40px;
}
.page-wer .ui-widget-content .ui-tabs-panel {
  background: #fff;
  padding: 40px !important;
  border: solid #ccc 1px;
  border-top: none;
  margin-bottom: 30px;
}
.page-wer .ui-widget-content .ui-tabs-panel h1, .page-wer .ui-widget-content .ui-tabs-panel h2, .page-wer .ui-widget-content .ui-tabs-panel h3 {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1em;
}
.page-wer .ui-widget-content .ui-tabs-panel h3 {
  clear: left;
}
.page-wer .ui-widget-content .ui-tabs-panel ul:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.page-wer .ui-widget-content .ui-tabs-panel .wpntabs-main ul {
  list-style: none;
  line-height: 2em;
}
.page-wer .ui-widget-content .ui-tabs-panel .wpntabs-main ul li:before {
  content: "•";
  color: #ca1b1d;
  font-size: 20px;
}
.page-wer .ui-widget-content .ui-tabs-panel #left, .page-wer .ui-widget-content .ui-tabs-panel #right {
  float: left;
  width: 50%;
  margin-bottom: 20px;
}
.page-wer .ui-widget-content .ui-tabs-panel #left li, .page-wer .ui-widget-content .ui-tabs-panel #right li {
  border-bottom: 1px dotted #dddddd;
  background: url("../images/red-checkbox.png") no-repeat left 5px;
  padding-left: 20px;
  padding-bottom: 10px;
  margin: 10px 5% 10px 0;
  border-bottom: 1px dashed #dddddd;
  list-style: none;
}
.page-wer .ui-widget-content .ui-tabs-panel #left li:last-child, .page-wer .ui-widget-content .ui-tabs-panel #right li:last-child {
  border: none;
}
.page-wer .ui-widget-content .ui-tabs-panel #sysreq-windows {
  background: url("../images/windows-icon.png") no-repeat top left;
  padding-left: 25px;
}
.page-wer .ui-widget-content .ui-tabs-panel p {
  margin-bottom: 20px;
}
.page-wer .ui-widget-content #tabs-0-body-1 ul {
  padding: 0;
  margin: 0;
}
.page-wer .ui-widget-content #tabs-0-body-1 h3 {
  font-size: 30px;
  color: #3e3e3e;
}
.page-wer .ui-tabs-panel {
  background: #fff;
  padding: 40px !important;
  border: solid #ccc 1px;
  border-top: none;
}
.page-wer .ui-tabs-panel h1, .page-wer .ui-tabs-panel h2, .page-wer .ui-tabs-panel h3 {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1em;
}
.page-wer .ui-tabs-panel p {
  margin-bottom: 20px;
}
.page-wer .ui-tabs .chzn-container {
  display: none !important;
}
.page-wer .ui-tabs .chzn-container .chzn-drop {
  border: 1px solid #ccc;
}

.view-wizards-wpn-grow-your-store-articles {
  margin-bottom: 30px;
  width: 100%;
  float: left;
}
.view-wizards-wpn-grow-your-store-articles .view-content {
  float: left;
  margin-bottom: 0;
  width: 100%;
}
.view-wizards-wpn-grow-your-store-articles .views-row {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 33.32%;
  padding: 0 2%;
  border-left: dashed #ccc 1px;
}
.view-wizards-wpn-grow-your-store-articles .views-row:nth-child(3n+1) {
  border-left-color: transparent;
  clear: left;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-additional-images {
  background: #dddddd;
  min-height: 190px;
  position: relative;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-additional-images img {
  float: left;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-title {
  font-size: 18px;
  font-weight: bold;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-title a {
  color: #101010;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-title a:hover {
  color: #d0123e;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-brand {
  font-family: Georgia;
  font-style: italic;
  color: #3e3e3e;
  min-height: 25px;
  border-bottom: dashed #ccc 1px;
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-release-date {
  color: #3e3e3e;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-release-date div {
  display: inline;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-view-node a {
  color: #101010;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-view-node a:hover {
  color: #d0123e;
}
.view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-article-video iframe, .view-wizards-wpn-grow-your-store-articles .views-row .views-field-field-article-video img {
  width: 100%;
}

.pane-grow-your-store-featured-store {
  background: #f6f6f6;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  position: relative;
  z-index: 100;
  max-width: 970px;
  padding: 30px;
}
.pane-grow-your-store-featured-store h1 {
  margin: 0 0 10px 0;
  line-height: 1em;
  text-transform: uppercase;
}
.pane-grow-your-store-featured-store .subheading {
  font-family: Georgia;
  font-style: italic;
  color: #3e3e3e;
}

@media all and (max-width: 768px) {
  .page-wer .full-width-header > .pane-generic-html-pane {
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    min-height: 250px;
  }
  .page-wer .full-width-header > .pane-generic-html-pane .pane-title {
    font-size: 2em !important;
    line-height: 1em !important;
  }
  .page-wer .body-center-column {
    padding: 30px 0;
  }
  .page-wer .ui-widget-content .ui-tabs-panel {
    padding: 20px !important;
  }
  .page-wer .ui-widget-content .ui-tabs-panel #left, .page-wer .ui-widget-content .ui-tabs-panel #right {
    width: 100%;
    margin-bottom: 0;
  }
  .page-wer .ui-widget-content .ui-tabs-panel #left li:last-child {
    border-bottom: 1px dashed #dddddd;
  }
  .page-wer .ui-widget-content .ui-tabs-panel #right {
    margin-bottom: 20px;
  }
  .page-wer .ui-tabs .ui-tabs-nav li a {
    padding: 0.5em 10px;
  }
  .page-wer .wpntabs-wrapper > ul {
    width: 100%;
    margin-bottom: 20px;
  }
  .page-wer .wpntabs-wrapper .wpntabs-main {
    width: 100%;
  }
  .page-wer .wpntabs-wrapper > ul li.active:after {
    border: none;
  }

  .view-wizards-wpn-grow-your-store-articles .views-row {
    float: none;
    width: 100%;
    border: none;
    padding: 0;
    margin-bottom: 20px;
    border-bottom: dashed #ccc 1px;
  }
  .view-wizards-wpn-grow-your-store-articles .views-row iframe {
    width: 100%;
  }
}
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
#skip-link {
  margin: 0;
}
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/**
 * Branding header.
 */
/* Wrapping link for logo. */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

/* Logo image. */
.header__logo-image {
  vertical-align: bottom;
}

/* Wrapper for website name and slogan. */
.header__name-and-slogan {
  float: left;
}

/* The name of the website. */
.header__site-name {
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}

/* The link around the name of the website. */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Causing problems with Zen Grids so commented out for now */
/* Wrapper for any blocks placed in the header region. */
/*.header__region {*/
/* Clear the logo. */
/*  clear: both;
}*/
/**
 * Navigation bar.
 */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
#navigation .block {
  margin-bottom: 0;
}
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

/**
 * Breadcrumb navigation.
 */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * Messages.
 */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=');
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

.messages--warning {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');
  border-color: #ed5;
}

.messages--error {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');
  border-color: #ed541d;
}

.messages__list {
  margin: 0;
}

.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
.messages--error p.error {
  color: #333;
}

/* System status report. */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
.tabs-primary, .tabs-secondary {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYmJiYmJiIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: linear-gradient(to top, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbb \0/ie;
  margin: 1.5em 0;
  padding: 0 2px;
  white-space: nowrap;
}

.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

/* Primary tabs. */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 #fff;
  border: 1px solid #bbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

.tabs-primary__tab.is-active {
  border-bottom-color: #fff;
}

a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -o-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/* Secondary tabs. */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -moz-border-radius: 0.75em;
  -webkit-border-radius: 0.75em;
  border-radius: 0.75em;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 #fff;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
.inline {
  display: inline;
  padding: 0;
}
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
.more-link {
  text-align: right;
  /* LTR */
}

.more-help-link {
  text-align: right;
  /* LTR */
}

.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Pager.
 */
/* A list of page numbers when more than 1 page of content is available. */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis, .pager-current {
  display: inline;
  padding: 0 0.5em;
  list-style-type: none;
  background-image: none;
}

.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis {
  /* A concatenation of several list items using an ellipsis. */
}

/* The current page's list item. */
.pager-current {
  font-weight: bold;
}

/**
 * Blocks.
 */
/* Block wrapper. */
/*.block {
  margin-bottom: rhythm(1);
}*/
/**
 * Menus.
 */
.menu__item.is-leaf {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
  list-style-type: square;
}

.menu__item.is-expanded {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  list-style-type: circle;
}

.menu__item.is-collapsed {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  list-style-type: disc;
}

/* The active item in a Drupal menu. */
.menu a.active {
  color: #000;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
.new,
.update {
  color: #c00;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
.comments {
  margin: 1.5em 0;
}

/* Preview of the comment before submitting new or updated comment. */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
.comment {
  /* Comment's permalink wrapper. */
}
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
.form-item {
  margin: 1.5em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
.form-item .description {
  font-size: 0.85em;
}

.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* The part of the label that indicates a required field. */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
label.option {
  display: inline;
  font-weight: normal;
}

/* Buttons used by contrib modules like Media. */
a.button {
  -moz-appearance: button;
  -webkit-appearance: button;
}

/* Password confirmation. */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
#user-login-form {
  text-align: left;
  /* LTR */
}

/**
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
/* OpenID creates a new ul above the login form's links. */
.openid-links {
  /* Position OpenID's ul next to the rest of the links. */
  margin-bottom: 0;
}

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* Un-do some of the padding on the ul list. */
  margin-left: -20px;
  /* LTR */
}

#user-login ul {
  margin: 1.5em 0;
}

/**
 * Drupal admin tables.
 */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
form tbody {
  border-top: 1px solid #ccc;
}
form table ul {
  margin: 0;
}

tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
html.js .collapsible .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}
html.js .collapsed .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
tr.drag {
  background-color: #fffff0;
}

tr.drag-previous {
  background-color: #ffd;
}

.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
.progress {
  font-weight: bold;
}
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1599154334');
}

/**
 * Cookie popup
 */
#sliding-popup {
  padding: 0;
  margin-bottom: -82px;
  border-top: 2px solid #dfdfdf;
  position: fixed;
  top: auto !important;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.95) !important;
  z-index: 999;
}
#sliding-popup .popup-content {
  max-width: none;
}
#sliding-popup .popup-content:after {
  content: "";
  height: 0;
  display: block;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
#sliding-popup .popup-content #popup-text {
  padding: 8px 20px;
  max-width: 50%;
}
#sliding-popup .popup-content #popup-buttons {
  padding: 8px 20px;
  margin-bottom: .5em;
}
#sliding-popup .popup-content #popup-buttons button {
  margin: .5em 0 0;
}

@media (max-width: 767px) {
  #sliding-popup {
    padding: 0;
    border-top: 2px solid #dfdfdf;
    position: fixed;
    top: auto !important;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(51, 51, 51, 0.95) !important;
  }
  #sliding-popup .popup-content #popup-text,
  #sliding-popup .popup-content #popup-buttons {
    max-width: none;
    float: none;
  }
  #sliding-popup .popup-content #popup-buttons {
    text-align: center;
  }
  #sliding-popup .popup-content #popup-buttons button {
    margin: .5em 0;
  }
}
#modalBackdrop {
  width: auto !important;
  height: auto !important;
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
}

#modalContent {
  position: fixed !important;
  width: 340px !important;
  height: 300px;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
#modalContent .ctools-modal-content {
  width: auto !important;
  height: 85% !important;
}
#modalContent #modal-content {
  width: auto !important;
  height: 100% !important;
  overflow: hidden;
}
#modalContent #modal-content .chzn-results {
  max-height: 132px;
}
#modalContent #modal-content .form-checkbox {
  float: left;
  margin-top: 5px;
}
#modalContent * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.node-type-webform #modalContent #modal-content {
  overflow: scroll;
}

@media screen and (max-width: 480px) {
  #modal-title {
    display: block;
    font-size: 100%;
  }

  a.close {
    max-width: 30px;
    max-height: 20px;
    overflow: hidden;
  }
  a.close:after {
    display: none !important;
  }
  a.close:before {
    display: block !important;
  }
}
.section-webform-confirmation .full-width-header,
.page-products .full-width-header,
.page-resources .full-width-header,
.page-my-store .full-width-header,
.page-resources-distributors .full-width-header,
.page-resources-rules-documents .full-width-header,
.page-resources-common-questions .full-width-header {
  background: none !important;
}
.section-webform-confirmation .full-width-header *,
.page-products .full-width-header *,
.page-resources .full-width-header *,
.page-my-store .full-width-header *,
.page-resources-distributors .full-width-header *,
.page-resources-rules-documents .full-width-header *,
.page-resources-common-questions .full-width-header * {
  box-sizing: border-box;
}
.section-webform-confirmation .full-width-header .pane-1,
.page-products .full-width-header .pane-1,
.page-resources .full-width-header .pane-1,
.page-my-store .full-width-header .pane-1,
.page-resources-distributors .full-width-header .pane-1,
.page-resources-rules-documents .full-width-header .pane-1,
.page-resources-common-questions .full-width-header .pane-1 {
  position: relative;
}
.section-webform-confirmation .full-width-header p,
.section-webform-confirmation .full-width-header .top-img-container,
.page-products .full-width-header p,
.page-products .full-width-header .top-img-container,
.page-resources .full-width-header p,
.page-resources .full-width-header .top-img-container,
.page-my-store .full-width-header p,
.page-my-store .full-width-header .top-img-container,
.page-resources-distributors .full-width-header p,
.page-resources-distributors .full-width-header .top-img-container,
.page-resources-rules-documents .full-width-header p,
.page-resources-rules-documents .full-width-header .top-img-container,
.page-resources-common-questions .full-width-header p,
.page-resources-common-questions .full-width-header .top-img-container {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  line-height: 0;
  z-index: -1;
}
.section-webform-confirmation .full-width-header .pane-common-questions-header,
.page-products .full-width-header .pane-common-questions-header,
.page-resources .full-width-header .pane-common-questions-header,
.page-my-store .full-width-header .pane-common-questions-header,
.page-resources-distributors .full-width-header .pane-common-questions-header,
.page-resources-rules-documents .full-width-header .pane-common-questions-header,
.page-resources-common-questions .full-width-header .pane-common-questions-header {
  max-width: 970px;
  color: #dddddd;
  margin: 0 auto;
  min-height: 180px;
  font-family: "Georgia", serif;
  font-style: italic;
  padding: 40px 30px;
  padding: 50px 0 80px !important;
  min-height: 200px;
}
@media screen and (max-width: 1045px) {
  .section-webform-confirmation .full-width-header .pane-common-questions-header,
  .page-products .full-width-header .pane-common-questions-header,
  .page-resources .full-width-header .pane-common-questions-header,
  .page-my-store .full-width-header .pane-common-questions-header,
  .page-resources-distributors .full-width-header .pane-common-questions-header,
  .page-resources-rules-documents .full-width-header .pane-common-questions-header,
  .page-resources-common-questions .full-width-header .pane-common-questions-header {
    padding: 30px 0 !important;
    min-height: initial !important;
  }
}
.section-webform-confirmation .full-width-header .pane-common-questions-header .pane-title,
.page-products .full-width-header .pane-common-questions-header .pane-title,
.page-resources .full-width-header .pane-common-questions-header .pane-title,
.page-my-store .full-width-header .pane-common-questions-header .pane-title,
.page-resources-distributors .full-width-header .pane-common-questions-header .pane-title,
.page-resources-rules-documents .full-width-header .pane-common-questions-header .pane-title,
.page-resources-common-questions .full-width-header .pane-common-questions-header .pane-title {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 64px;
  color: #ffffff;
  font-style: normal;
  line-height: 72px;
  position: relative;
  color: white;
  top: initial !important;
}
@media screen and (max-width: 1045px) {
  .section-webform-confirmation .full-width-header .pane-common-questions-header .pane-title,
  .page-products .full-width-header .pane-common-questions-header .pane-title,
  .page-resources .full-width-header .pane-common-questions-header .pane-title,
  .page-my-store .full-width-header .pane-common-questions-header .pane-title,
  .page-resources-distributors .full-width-header .pane-common-questions-header .pane-title,
  .page-resources-rules-documents .full-width-header .pane-common-questions-header .pane-title,
  .page-resources-common-questions .full-width-header .pane-common-questions-header .pane-title {
    text-align: center;
    font-size: 32px !important;
    line-height: 48px;
  }
}
.section-webform-confirmation .full-width-header img,
.page-products .full-width-header img,
.page-resources .full-width-header img,
.page-my-store .full-width-header img,
.page-resources-distributors .full-width-header img,
.page-resources-rules-documents .full-width-header img,
.page-resources-common-questions .full-width-header img {
  margin: 0 !important;
  min-height: 230px;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .section-webform-confirmation .full-width-header img,
  .page-products .full-width-header img,
  .page-resources .full-width-header img,
  .page-my-store .full-width-header img,
  .page-resources-distributors .full-width-header img,
  .page-resources-rules-documents .full-width-header img,
  .page-resources-common-questions .full-width-header img {
    min-height: initial;
  }
}
.section-webform-confirmation .full-width-header h3,
.page-products .full-width-header h3,
.page-resources .full-width-header h3,
.page-my-store .full-width-header h3,
.page-resources-distributors .full-width-header h3,
.page-resources-rules-documents .full-width-header h3,
.page-resources-common-questions .full-width-header h3 {
  position: relative;
  top: 12px;
  color: white;
  margin: 0;
}
@media screen and (max-width: 1045px) {
  .section-webform-confirmation .full-width-header h3,
  .page-products .full-width-header h3,
  .page-resources .full-width-header h3,
  .page-my-store .full-width-header h3,
  .page-resources-distributors .full-width-header h3,
  .page-resources-rules-documents .full-width-header h3,
  .page-resources-common-questions .full-width-header h3 {
    text-align: center;
  }
}

@font-face {
  font-family: 'fontello';
  src: url("../font/fontello.eot?3077287");
  src: url("../font/fontello.eot?3077287#iefix") format("embedded-opentype"), url("../font/fontello.woff?3077287") format("woff"), url("../font/fontello.ttf?3077287") format("truetype"), url("../font/fontello.svg?3077287#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?3077287#fontello') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-menu:before {
  content: '\e800';
}

/* '' */
.webform-component-date .chzn-container-single .chzn-single div {
  width: 30px;
}

.webform-component-date .chzn-container-single .chzn-single span {
  margin-right: 30px !important;
}

.webform-component-date .webform-datepicker div:last-of-type {
  margin-right: 0;
}

.pane-quicktabs-contact-us article .links {
  display: none;
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* SMACSS theme rules */
.master-icons-sprite, .master-icons-add-location, .master-icons-application, .master-icons-become-part-of-network, .master-icons-deck-checklist, .master-icons-direct-sales, .master-icons-event-rules, .master-icons-find-distributors, .master-icons-folder, .master-icons-grow-gaming-community, .master-icons-invite-event-organizer, .master-icons-marketing-materials, .master-icons-notebook, .master-icons-phone, .master-icons-product-barcode, .master-icons-product, .master-icons-products, .master-icons-program-instructions, .master-icons-retail-location, .master-icons-retailer, .master-icons-store-audit-organized-play, .master-icons-store-audit-presentation, .master-icons-store-audit-retail, .master-icons-trade-show-icon-120_0, .master-icons-tradeshow, .master-icons-update-store-information, .master-icons-user-info, .master-icons-wizard-calendar {
  background-image: url('../images/master-icons-sbbee3aa6f8.png');
  background-repeat: no-repeat;
}

/*
* Events layouts
*/
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-2 .view-content {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-3 {
  clear: both;
}

.node-type-event .pane-node-body {
  clear: left;
  float: left;
  width: 66.66667%;
  margin-left: 0%;
  margin-right: -66.66667%;
}
.node-type-event .pane-node-field-tradekit {
  float: left;
  width: 66.66667%;
  margin-left: 0%;
  margin-right: -66.66667%;
}

.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .rules {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
}

/*
* Rules and Documents Section
*/
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 {
  padding: 0 0;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 h2.pane-title {
  line-height: inherit;
  text-transform: none;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .view-wizards-wpn-event-detail-banner-revision-view .view-content {
  margin-bottom: 30px;
  float: left;
  width: 100%;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .view-wizards-wpn-event-detail-banner-revision-view .view-content .views-row a {
  display: block;
  padding: 10px 0;
  color: #3e3e3e;
  font-weight: bold;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .view-wizards-wpn-event-detail-banner-revision-view .view-content .views-row .rules-documents {
  text-align: left;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .view-wizards-wpn-event-detail-banner-revision-view .view-content .views-row .rules-documents a {
  padding: 0;
  display: inline-block;
  margin: 0 auto;
  float: none;
  text-indent: -9999px;
  width: 150px;
  height: 150px;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .view-wizards-wpn-event-detail-banner-revision-view .view-content .views-row .rules-documents a.checklist {
  background: url("../images/master-icons/deck-checklist.png") no-repeat center center;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .view-wizards-wpn-event-detail-banner-revision-view .view-content .views-row .rules-documents a.rules {
  background: url("../images/master-icons/event-rules.png") no-repeat center center;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .view-wizards-wpn-event-detail-banner-revision-view .view-content .views-row .rules-documents a.instructions {
  background: url("../images/master-icons/program-instructions.png") no-repeat center center;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .view-wizards-wpn-event-detail-banner-revision-view .view-content .views-row.views-row-last {
  border: none;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .view-wizards-wpn-event-detail-banner-revision-view.view-display-id-panel_pane_4 .view-content {
  background: #ffffff;
  padding: 12px 10px 12px 30px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .view-wizards-wpn-event-detail-banner-revision-view.view-display-id-panel_pane_4 .view-content .rules-documents {
  padding: 5px 0;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .view-wizards-wpn-event-detail-banner-revision-view.view-display-id-panel_pane_4 .view-content .rules-documents a {
  position: relative;
  text-indent: 0;
  width: auto;
  height: auto;
  font-weight: normal;
  color: #d0123e;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .view-wizards-wpn-event-detail-banner-revision-view.view-display-id-panel_pane_4 .view-content .rules-documents a.checklist, .pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .view-wizards-wpn-event-detail-banner-revision-view.view-display-id-panel_pane_4 .view-content .rules-documents a.rules, .pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .view-wizards-wpn-event-detail-banner-revision-view.view-display-id-panel_pane_4 .view-content .rules-documents a.instructions {
  background: none;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .view-wizards-wpn-event-detail-banner-revision-view.view-display-id-panel_pane_4 .view-content .rules-documents a:before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  background-color: #000;
  border-radius: 10px;
  position: absolute;
  left: -10px;
  top: 10px;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .pane-title {
  display: block;
  text-transform: uppercase;
  color: #101010;
  font-size: 48px;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1em;
  float: none;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .see-more {
  margin-top: -90px;
  float: right;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .see-more .arrow-link {
  background: url("../images/arrow-right.png") no-repeat center center #3e3e3e;
  display: block;
  float: left;
  padding: 20px;
  margin-right: 2px;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .see-more a {
  color: #ffffff;
  background: #3e3e3e;
  padding: 8px 15px;
  float: left;
}

/*
* Associated Products Section
*/
.pane-node-field-tradekit {
  padding: 30px 0;
}
.pane-node-field-tradekit .pane-title {
  text-transform: uppercase;
  color: #101010;
  font-size: 40px;
  margin-bottom: 14px;
  margin-top: 0;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1em;
}
.pane-node-field-tradekit .field-name-field-tradekit h2 {
  margin: 0;
  color: #101010;
  font-size: 18px;
  font-weight: normal;
}
.pane-node-field-tradekit .field-name-field-legal {
  color: #000;
  margin-bottom: 20px;
}
.pane-node-field-tradekit > .field-items {
  margin-bottom: 20px;
}
.pane-node-field-tradekit .collapsible {
  border: none !important;
  padding: 0;
  height: auto !important;
  margin-bottom: 20px;
  margin-top: 20px;
}
.pane-node-field-tradekit .collapsible legend {
  display: block;
  margin-bottom: 20px;
}
.pane-node-field-tradekit .collapsible .fieldset-legend {
  background: url(../images/global/download2.png) 0 0 no-repeat !important;
  display: block;
  padding-left: 48px !important;
  min-height: 40px;
}
.pane-node-field-tradekit .collapsible .fieldset-legend .summary {
  display: block;
  height: auto;
}
.pane-node-field-tradekit .collapsible .fieldset-legend .field-type-text-long {
  padding-left: 0;
  color: #3e3e3e;
}
.pane-node-field-tradekit .collapsible .fieldset-legend .field-type-text-long .field-items {
  padding-left: 0;
}
.pane-node-field-tradekit .collapsible .fieldset-legend .field-type-file {
  padding: 3px 0;
}
.pane-node-field-tradekit .group-tk-web-graphics .field-items,
.pane-node-field-tradekit .group-tk-product-shots .field-items,
.pane-node-field-tradekit .group-tk-flyers-and-posters .field-items,
.pane-node-field-tradekit .group-tk-download-all .field-items {
  padding-left: 48px;
  font-size: 14px;
}

.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-3 {
  background: #ffffff;
  margin: 0 -30px;
  padding: 30px;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-3 .pane-title {
  text-transform: uppercase;
  color: #101010;
  font-size: 40px;
  margin-bottom: 20px;
  margin-top: 0;
  font-family: "Roboto Condensed", sans-serif;
  float: left;
  line-height: 1em;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-3 .event-product {
  clear: left;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-3 .event-product .title {
  margin-bottom: 10px;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-3 .event-product .title a {
  color: #000;
  font-size: 18.72px;
  font-weight: 600;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-3 .event-product .body {
  margin-bottom: 10px;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-3 .event-product .body p {
  margin: 0;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-3 .event-product .see-more a {
  color: #d0123e;
  font-size: 14px;
  background: url("../images/small-arrow-red.png") no-repeat right 5px;
  padding-right: 15px;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-3 .product-img {
  float: right;
  margin: 10px 0;
  margin-left: 10px;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-3 .product-img img {
  height: 240px;
}

/*
* Related Products Section
*/
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-2,
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 {
  margin-bottom: 3em;
  float: right;
  width: 30%;
}
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-2 .pane-title,
.pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 .pane-title {
  background: #3e3e3e;
  color: #ffffff;
  font-family: "Open Sans", Arial, sans-serif;
  padding: 6px 30px;
  margin: 30px 0 0;
  font-weight: normal;
  font-size: 16px;
}

.related, .rules-documents {
  background: #ffffff;
  padding: 30px;
}
.related .title a, .rules-documents .title a {
  color: #d0123e;
  font-weight: bold;
  font-size: 20px;
  display: block;
  margin-bottom: 6px;
}
.related .subheading, .rules-documents .subheading {
  font-family: "Georgia", serif;
  font-style: italic;
  line-height: 1em;
  margin-bottom: 2em;
}
.related .event-countdown .days-left, .rules-documents .event-countdown .days-left {
  color: #3e3e3e;
}
.related .event-schedule-close .global-calendar, .related .event-schedule-open .global-calendar, .rules-documents .event-schedule-close .global-calendar, .rules-documents .event-schedule-open .global-calendar {
  color: #3e3e3e;
}
.related .event-schedule-close .month, .related .event-schedule-close .year, .related .event-schedule-close .day, .related .event-schedule-open .month, .related .event-schedule-open .year, .related .event-schedule-open .day, .rules-documents .event-schedule-close .month, .rules-documents .event-schedule-close .year, .rules-documents .event-schedule-close .day, .rules-documents .event-schedule-open .month, .rules-documents .event-schedule-open .year, .rules-documents .event-schedule-open .day {
  color: #3e3e3e;
}
.related .event-schedule-open, .rules-documents .event-schedule-open {
  float: right;
}
.related .details, .rules-documents .details {
  padding-top: 20px;
  clear: both;
}
.related .details .arrow-link a, .rules-documents .details .arrow-link a {
  display: inline-block;
  background: #3e3e3e;
  color: #fff;
  height: 30px;
  line-height: 30px;
  padding-left: 40px;
  padding-right: 10px;
  background: url(../images/button-forms.png) 0 -62px no-repeat;
  text-transform: uppercase;
}
.related .details .arrow-link a:hover, .rules-documents .details .arrow-link a:hover {
  background-position: 0 0;
}
.related .sprite-event-level, .rules-documents .sprite-event-level {
  float: left;
  margin-top: 0;
}
.related .sprite-event-level li, .rules-documents .sprite-event-level li {
  font-size: 12px;
  margin-bottom: 3px;
  color: #dddddd;
}
.related .sprite-event-level li.active, .rules-documents .sprite-event-level li.active {
  color: #3e3e3e;
}

/* Event Details */
.node-type-event .pane-node-body {
  margin-top: 30px;
  padding-bottom: 30px;
  margin-right: 20px;
}
.node-type-event .pane-node-body p, .node-type-event .pane-node-body ul {
  margin-top: 0;
  margin-bottom: 30px;
  color: #3e3e3e;
}
.node-type-event .pane-node-body a {
  color: #d0123e;
}
.node-type-event .pane-node-body subhead {
  text-transform: uppercase;
  color: #101010;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 0;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1em;
}
.node-type-event .pane-node-body .field-type-text-with-summary {
  padding: 0;
}

/*
* Mobile Layouts
*/
@media all and (max-width: 768px) {
  .pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-2,
  .pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-4 {
    width: 100%;
  }

  .node-type-event .pane-node-body {
    width: 100%;
  }

  .node-type-event .pane-node-field-tradekit {
    width: 100%;
    float: none;
  }

  .pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-3 .pane-title {
    text-align: center;
    float: none;
  }
  .pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-3 .product-img {
    float: none;
  }
  .pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-3 .product-img img {
    display: block;
    width: 100%;
    height: auto;
  }

  .pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-1 .view-id-wizards_wpn_event_detail_banner_revision_view .page-inner.event-details > .field-content {
    float: none;
    display: inline-block;
    border: none;
    padding: 0;
  }

  .pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-1 .view-id-wizards_wpn_event_detail_banner_revision_view {
    margin-bottom: 210px;
  }
  .pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-1 .view-id-wizards_wpn_event_detail_banner_revision_view #banner {
    height: 800px !important;
  }
  .pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-1 .view-id-wizards_wpn_event_detail_banner_revision_view #banner .event-info {
    position: relative;
    margin-top: 0;
    bottom: -300px;
  }

  .pane-wizards-wpn-event-detail-banner-revision-view-panel-pane-2 .view-id-wizards_wpn_event_detail_banner_revision_view {
    height: auto !important;
  }

  .related {
    padding: 20px;
  }
}
/* Event Details Page */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
body.node-type-event #audience-help-text {
  background-color: white;
}
body.node-type-event #audience-help-text h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  font-size: 28px;
  color: white;
  margin: 0;
  padding: 7px 20px;
  background-color: #504e8c;
}
@media (max-width: 768px) {
  body.node-type-event #audience-help-text h3 {
    text-align: center;
  }
}
body.node-type-event #audience-help-text ul {
  list-style-type: none;
  margin: 0;
  padding: 30px 10px;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 768px) {
  body.node-type-event #audience-help-text ul {
    flex-direction: column;
    justify-content: flex-start;
  }
}
body.node-type-event #audience-help-text ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  padding: 15px;
  text-align: center;
}
@media (max-width: 768px) {
  body.node-type-event #audience-help-text ul li {
    width: auto;
  }
}
body.node-type-event #audience-help-text ul li p {
  margin: 0 0 10px;
}
body.node-type-event #audience-help-text ul li p.title {
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 14px;
  margin: 10px 0 15px;
}
body.node-type-event #audience-help-text ul li img {
  max-width: 220px;
}
body.node-type-event .fancybox-wrap .fancybox-close.close-audience-helper-text {
  top: 14px;
  right: 20px;
  background-image: url("../images/close.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto auto;
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  body.node-type-event .top-header .wrapper-banner .event-info {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 15px;
    background-color: white;
  }
  body.node-type-event .top-header .wrapper-banner .event-info .event-schedule-close, body.node-type-event .top-header .wrapper-banner .event-info .event-schedule-open {
    width: 110px;
  }
  body.node-type-event .top-header .wrapper-banner .event-info .event-schedule-close .global-calendar, body.node-type-event .top-header .wrapper-banner .event-info .event-schedule-open .global-calendar {
    color: #454441;
    border-bottom: none;
  }
  body.node-type-event .top-header .wrapper-banner .event-info .event-schedule-close div span, body.node-type-event .top-header .wrapper-banner .event-info .event-schedule-open div span {
    color: #454441;
  }
  body.node-type-event .top-header .wrapper-banner .event-info .event-schedule-close div span.day, body.node-type-event .top-header .wrapper-banner .event-info .event-schedule-open div span.day {
    font-size: 50px;
    width: auto;
    right: auto;
    margin-left: 5px;
  }
}
body.node-type-event .body-center-column {
  margin-top: -110px;
}
body.node-type-event .body-center-column .pane-event-description {
  margin: -40px -30px 0 -30px;
  background-color: white;
}
body.node-type-event .body-center-column .pane-event-description .event-bar {
  background-color: #1b1b1b;
  color: white;
  padding: 10px 25px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  body.node-type-event .body-center-column .pane-event-description .event-bar {
    flex-direction: column;
    padding: 0;
  }
}
@media (max-width: 768px) {
  body.node-type-event .body-center-column .pane-event-description .event-bar .event-bar-text {
    padding: 15px 25px 0;
  }
}
body.node-type-event .body-center-column .pane-event-description .event-bar .event-bar-text .event-title {
  display: block;
  font-size: 11px;
  font-style: italic;
  font-family: georgia, serif;
}
body.node-type-event .body-center-column .pane-event-description .event-bar .event-bar-text .event-dates {
  font-size: 20px;
  font-weight: 500;
}
body.node-type-event .body-center-column .pane-event-description .event-bar .sprite-event-level {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  body.node-type-event .body-center-column .pane-event-description .event-bar .sprite-event-level {
    padding: 10px 25px;
  }
}
body.node-type-event .body-center-column .pane-event-description .event-bar .sprite-event-level ul {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  font-size: 13px;
}
@media (max-width: 768px) {
  body.node-type-event .body-center-column .pane-event-description .event-bar .sprite-event-level ul {
    padding-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }
}
body.node-type-event .body-center-column .pane-event-description .event-bar .sprite-event-level ul li {
  height: auto;
  width: auto;
  margin-left: 30px;
}
@media (max-width: 768px) {
  body.node-type-event .body-center-column .pane-event-description .event-bar .sprite-event-level ul li {
    width: calc(50% - 30px);
    margin: 10px 0;
  }
}
body.node-type-event .body-center-column .pane-event-description .event-content {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px 20px 30px;
}
@media (max-width: 768px) {
  body.node-type-event .body-center-column .pane-event-description .event-content {
    flex-direction: column;
    padding-left: 20px;
  }
}
body.node-type-event .body-center-column .pane-event-description .event-content .content {
  padding: 30px 30px 0 0;
  flex-grow: 1;
  max-width: 710px;
}
@media (max-width: 768px) {
  body.node-type-event .body-center-column .pane-event-description .event-content .content {
    padding: 0;
  }
}
body.node-type-event .body-center-column .pane-event-description .event-content .content h2 {
  margin: 0 0 10px;
}
body.node-type-event .body-center-column .pane-event-description .event-content .audience-type {
  min-width: 240px;
  width: 240px;
  position: relative;
}
@media (max-width: 768px) {
  body.node-type-event .body-center-column .pane-event-description .event-content .audience-type {
    width: 563px;
    display: flex;
    align-self: center;
  }
  body.node-type-event .body-center-column .pane-event-description .event-content .audience-type > div {
    width: 50%;
  }
  body.node-type-event .body-center-column .pane-event-description .event-content .audience-type > div:first-of-type {
    margin-right: 3px;
  }
}
@media (max-width: 599px) {
  body.node-type-event .body-center-column .pane-event-description .event-content .audience-type {
    width: 280px;
    display: block;
  }
  body.node-type-event .body-center-column .pane-event-description .event-content .audience-type > div {
    width: auto;
    margin-right: 0;
  }
}
body.node-type-event .body-center-column .pane-event-description .event-content .audience-type .field-content {
  position: absolute;
  right: 0;
  top: 35px;
  border-radius: 50%;
  background-color: #504e8c;
  width: 35px;
  height: 35px;
  text-align: center;
}
body.node-type-event .body-center-column .pane-event-description .event-content .audience-type .field-content a {
  color: white;
  font-size: 26px;
  font-weight: bold;
  line-height: 35px;
  display: inline-block;
  width: 100%;
}
body.node-type-event .body-center-column .pane-event-description .event-content .audience-type h2 {
  margin: 0;
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  background-color: #504e8c;
  display: inline-block;
  width: 100%;
  line-height: 26px;
  position: relative;
}
body.node-type-event .body-center-column .pane-event-description .event-content .audience-type h2:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 120px 0 120px;
  border-color: #504e8c transparent transparent transparent;
  position: absolute;
  left: 0;
  bottom: -22px;
}
@media all and (max-width: 768px) {
  body.node-type-event .body-center-column .pane-event-description .event-content .audience-type h2:after {
    border-width: 26px 140px 0 140px;
    bottom: -26px;
  }
}
body.node-type-event .body-center-column .pane-event-description .event-content .audience-type ul {
  list-style-type: none;
  margin: 0;
  padding: 35px 0 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
}
body.node-type-event .body-center-column .pane-event-description .event-content .audience-type ul li {
  text-align: center;
}
body.node-type-event .body-center-column .pane-event-description .event-content .audience-type ul li img {
  max-width: 100px;
}
body.node-type-event .body-center-column .pane-event-description .event-content .audience-type ul li .panel-item-title {
  font-size: 14px;
}
body.node-type-event .body-center-column .pane-event-icon-block,
body.node-type-event .body-center-column .pane-event-more-information-block {
  margin: 0;
}
body.node-type-event .body-center-column .pane-event-icon-block:nth-child(even) .audit-requirements-panel,
body.node-type-event .body-center-column .pane-event-icon-block:nth-child(even) .icon-block-panel,
body.node-type-event .body-center-column .pane-event-icon-block:nth-child(even) .more-information-block-panel,
body.node-type-event .body-center-column .pane-event-more-information-block:nth-child(even) .audit-requirements-panel,
body.node-type-event .body-center-column .pane-event-more-information-block:nth-child(even) .icon-block-panel,
body.node-type-event .body-center-column .pane-event-more-information-block:nth-child(even) .more-information-block-panel {
  background-color: #f6f6f6;
}
body.node-type-event .body-center-column .pane-event-icon-block:nth-child(odd) .audit-requirements-panel,
body.node-type-event .body-center-column .pane-event-icon-block:nth-child(odd) .icon-block-panel,
body.node-type-event .body-center-column .pane-event-icon-block:nth-child(odd) .more-information-block-panel,
body.node-type-event .body-center-column .pane-event-more-information-block:nth-child(odd) .audit-requirements-panel,
body.node-type-event .body-center-column .pane-event-more-information-block:nth-child(odd) .icon-block-panel,
body.node-type-event .body-center-column .pane-event-more-information-block:nth-child(odd) .more-information-block-panel {
  background-color: white;
}
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content h2,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content h2,
body.node-type-event .body-center-column .pane-event-icon-block .more-information-block-panel .content h2,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content h2,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content h2,
body.node-type-event .body-center-column .pane-event-more-information-block .more-information-block-panel .content h2 {
  font-size: 24px !important;
  text-transform: none;
  margin: 0;
}
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul {
  margin: 0;
  display: flex;
  justify-content: flex-start;
}
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li {
  width: calc(33.33% - 25px);
  margin: 50px 12px 0;
  border: none;
  text-align: center;
}
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li:nth-of-type(1), body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li:nth-of-type(2), body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li:nth-of-type(3),
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li:nth-of-type(1),
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li:nth-of-type(2),
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li:nth-of-type(3),
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li:nth-of-type(1),
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li:nth-of-type(2),
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li:nth-of-type(3),
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li:nth-of-type(1),
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li:nth-of-type(2),
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li:nth-of-type(3) {
  margin-top: 0 !important;
}
@media (max-width: 768px) {
  body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li,
  body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li,
  body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li,
  body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li {
    width: calc(50% - 25px);
    margin-top: 30px !important;
  }
  body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li:nth-of-type(1), body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li:nth-of-type(2),
  body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li:nth-of-type(1),
  body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li:nth-of-type(2),
  body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li:nth-of-type(1),
  body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li:nth-of-type(2),
  body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li:nth-of-type(1),
  body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li:nth-of-type(2) {
    margin-top: 0 !important;
  }
  body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li:nth-of-type(3),
  body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li:nth-of-type(3),
  body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li:nth-of-type(3),
  body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li:nth-of-type(3) {
    margin-top: 30px !important;
  }
}
@media (max-width: 480px) {
  body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li,
  body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li,
  body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li,
  body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li {
    width: 100% !important;
  }
}
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li > a,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li > a,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li > a,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li > a {
  padding: 0;
}
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li > a .panel-item-icon,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li > a .panel-item-icon,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li > a .panel-item-icon,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li > a .panel-item-icon {
  position: relative;
}
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li > a .panel-item-title,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li > a .panel-item-title,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li > a .panel-item-title,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li > a .panel-item-title {
  color: #3e3e3e;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 15px;
}
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li > a .panel-item-text,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li > a .panel-item-text,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li > a .panel-item-text,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li > a .panel-item-text {
  color: #3e3e3e;
  font-size: 14px;
  text-align: left;
}
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li > a .panel-item-text p,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li > a .panel-item-text p,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li > a .panel-item-text p,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li > a .panel-item-text p {
  margin: 0;
}
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li p,
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li ul,
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li ol,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li p,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li ul,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li ol,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li p,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li ul,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li ol,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li p,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li ul,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li ol {
  margin: 0 0 1em 0;
}
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li ul,
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li ol,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li ul,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li ol,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li ul,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li ol,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li ul,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li ol {
  margin-left: 2em;
  padding: 0;
  display: block;
}
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li ul li,
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li ol li,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li ul li,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li ol li,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li ul li,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li ol li,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li ul li,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li ol li {
  text-align: left;
  width: auto;
  margin: .25em 0 0 0 !important;
  padding: 0 !important;
  border: 0;
}
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li ul li:first-of-type,
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li ol li:first-of-type,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li ul li:first-of-type,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li ol li:first-of-type,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li ul li:first-of-type,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li ol li:first-of-type,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li ul li:first-of-type,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li ol li:first-of-type {
  margin-top: 0;
}
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li ul,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li ul,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li ul,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li ul {
  list-style: disc;
}
body.node-type-event .body-center-column .pane-event-icon-block .audit-requirements-panel .content > ul > li ol,
body.node-type-event .body-center-column .pane-event-icon-block .icon-block-panel .content > ul > li ol,
body.node-type-event .body-center-column .pane-event-more-information-block .audit-requirements-panel .content > ul > li ol,
body.node-type-event .body-center-column .pane-event-more-information-block .icon-block-panel .content > ul > li ol {
  list-style: decimal;
}
body.node-type-event .body-center-column .pane-event-icon-block .more-information-block-panel img,
body.node-type-event .body-center-column .pane-event-more-information-block .more-information-block-panel img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
}

/* !-- Event/Format Type Details -- */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
body.node-type-event-type .body-center-column,
body.node-type-format-type .body-center-column {
  position: relative;
}
body.node-type-event-type .body-center-column, body.node-type-event-type .body-center-column:before, body.node-type-event-type .body-center-column:after,
body.node-type-event-type .body-center-column *, body.node-type-event-type .body-center-column *:before, body.node-type-event-type .body-center-column *:after,
body.node-type-format-type .body-center-column,
body.node-type-format-type .body-center-column:before,
body.node-type-format-type .body-center-column:after,
body.node-type-format-type .body-center-column *,
body.node-type-format-type .body-center-column *:before,
body.node-type-format-type .body-center-column *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body.node-type-event-type .body-center-column .panel-pane:first-child .event-type-details,
body.node-type-event-type .body-center-column .panel-pane:first-child .format-type-details,
body.node-type-event-type .body-center-column .panel-pane:first-child .panel-first,
body.node-type-format-type .body-center-column .panel-pane:first-child .event-type-details,
body.node-type-format-type .body-center-column .panel-pane:first-child .format-type-details,
body.node-type-format-type .body-center-column .panel-pane:first-child .panel-first {
  margin-top: -42px;
}
body.node-type-event-type .body-center-column .panel-pane .panel-even,
body.node-type-format-type .body-center-column .panel-pane .panel-even {
  margin-right: -30px;
  margin-left: -30px;
  padding-right: 30px;
  padding-left: 30px;
  background: white;
}
body.node-type-event-type .body-center-column .panel-pane h2,
body.node-type-format-type .body-center-column .panel-pane h2 {
  font-size: 2.6875em;
  line-height: 1em;
  text-transform: uppercase;
  margin: 0 0 .3em;
}
@media (max-width: 768px) {
  body.node-type-event-type .body-center-column .panel-pane h2,
  body.node-type-format-type .body-center-column .panel-pane h2 {
    text-align: center;
  }
}
body.node-type-event-type .body-center-column .panel-pane p,
body.node-type-format-type .body-center-column .panel-pane p {
  margin: 0 0 1.3em;
  padding: 0;
}
@media (max-width: 768px) {
  body.node-type-event-type .body-center-column .panel-pane p,
  body.node-type-event-type .body-center-column .panel-pane li,
  body.node-type-format-type .body-center-column .panel-pane p,
  body.node-type-format-type .body-center-column .panel-pane li {
    text-align: justify;
  }
}
body.node-type-event-type .next-event-panel,
body.node-type-format-type .next-event-panel {
  color: white;
  font-size: 1em;
  height: 75px;
  width: 100%;
  padding: 5px 30px;
  background: #333;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: -75px;
  right: 0;
  left: 0;
}
body.node-type-event-type .next-event-panel *,
body.node-type-format-type .next-event-panel * {
  color: white;
  line-height: 1.2em;
}
body.node-type-event-type .next-event-panel .next-event-panel-wrapper,
body.node-type-format-type .next-event-panel .next-event-panel-wrapper {
  width: 100%;
  height: 100%;
  display: table;
}
body.node-type-event-type .next-event-panel .next-event-date,
body.node-type-event-type .next-event-panel .next-event-levels,
body.node-type-format-type .next-event-panel .next-event-date,
body.node-type-format-type .next-event-panel .next-event-levels {
  width: 50%;
  vertical-align: middle;
  display: table-cell;
}
body.node-type-event-type .next-event-panel .next-event-date,
body.node-type-format-type .next-event-panel .next-event-date {
  padding-right: 15px;
}
body.node-type-event-type .next-event-panel .next-event-date h3,
body.node-type-format-type .next-event-panel .next-event-date h3 {
  font-size: 1em;
  margin: 0;
}
body.node-type-event-type .next-event-panel .next-event-date p,
body.node-type-format-type .next-event-panel .next-event-date p {
  text-align: inherit !important;
  margin: .2em 0 0 !important;
}
body.node-type-event-type .next-event-panel .next-event-date a,
body.node-type-format-type .next-event-panel .next-event-date a {
  color: #888;
  text-decoration: underline;
  -moz-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  -webkit-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
body.node-type-event-type .next-event-panel .next-event-date a:hover, body.node-type-event-type .next-event-panel .next-event-date a:focus,
body.node-type-format-type .next-event-panel .next-event-date a:hover,
body.node-type-format-type .next-event-panel .next-event-date a:focus {
  color: white;
}
body.node-type-event-type .next-event-panel .next-event-levels,
body.node-type-format-type .next-event-panel .next-event-levels {
  padding-left: 15px;
}
body.node-type-event-type .next-event-panel .next-event-levels ul,
body.node-type-event-type .next-event-panel .next-event-levels li,
body.node-type-format-type .next-event-panel .next-event-levels ul,
body.node-type-format-type .next-event-panel .next-event-levels li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
body.node-type-event-type .next-event-panel .next-event-levels ul:after,
body.node-type-format-type .next-event-panel .next-event-levels ul:after {
  content: "";
  height: 0;
  display: block;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
body.node-type-event-type .next-event-panel .next-event-levels ul li,
body.node-type-format-type .next-event-panel .next-event-levels ul li {
  width: 50%;
  padding: 5px 10px 5px 30px;
  float: left;
}
@media (max-width: 768px) {
  body.node-type-event-type .next-event-panel,
  body.node-type-format-type .next-event-panel {
    text-align: center !important;
    width: auto;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: -40px -30px 30px;
    background: #333;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
  body.node-type-event-type .next-event-panel .next-event-panel-wrapper,
  body.node-type-event-type .next-event-panel .next-event-date,
  body.node-type-event-type .next-event-panel .next-event-levels,
  body.node-type-format-type .next-event-panel .next-event-panel-wrapper,
  body.node-type-format-type .next-event-panel .next-event-date,
  body.node-type-format-type .next-event-panel .next-event-levels {
    width: auto;
    display: block;
  }
  body.node-type-event-type .next-event-panel .next-event-date,
  body.node-type-event-type .next-event-panel .next-event-levels,
  body.node-type-format-type .next-event-panel .next-event-date,
  body.node-type-format-type .next-event-panel .next-event-levels {
    padding: 0;
  }
  body.node-type-event-type .next-event-panel .next-event-levels,
  body.node-type-format-type .next-event-panel .next-event-levels {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  body.node-type-event-type .next-event-panel .next-event-levels ul li,
  body.node-type-format-type .next-event-panel .next-event-levels ul li {
    width: auto;
    float: none;
  }
}
body.node-type-event-type .panel-even,
body.node-type-event-type .panel-odd,
body.node-type-event-type .pane-event-rules,
body.node-type-format-type .panel-even,
body.node-type-format-type .panel-odd,
body.node-type-format-type .pane-event-rules {
  padding: 42px 0 22px 0;
}
body.node-type-event-type .panel-even:after,
body.node-type-event-type .panel-odd:after,
body.node-type-event-type .pane-event-rules:after,
body.node-type-format-type .panel-even:after,
body.node-type-format-type .panel-odd:after,
body.node-type-format-type .pane-event-rules:after {
  content: "";
  height: 0;
  display: block;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
body.node-type-event-type .panel-even .content,
body.node-type-event-type .panel-odd .content,
body.node-type-format-type .panel-even .content,
body.node-type-format-type .panel-odd .content {
  width: 65%;
  padding-right: 45px;
  float: left;
}
body.node-type-event-type .panel-even .content .red-cta,
body.node-type-event-type .panel-odd .content .red-cta,
body.node-type-format-type .panel-even .content .red-cta,
body.node-type-format-type .panel-odd .content .red-cta {
  margin-left: 0;
}
@media (max-width: 768px) {
  body.node-type-event-type .panel-even .content,
  body.node-type-event-type .panel-odd .content,
  body.node-type-format-type .panel-even .content,
  body.node-type-format-type .panel-odd .content {
    width: auto;
    padding-right: 0;
    float: none;
  }
}
body.node-type-event-type .panel-even .aside,
body.node-type-event-type .panel-odd .aside,
body.node-type-format-type .panel-even .aside,
body.node-type-format-type .panel-odd .aside {
  text-align: center;
  width: 35%;
  float: left;
}
body.node-type-event-type .panel-even .aside img,
body.node-type-event-type .panel-odd .aside img,
body.node-type-format-type .panel-even .aside img,
body.node-type-format-type .panel-odd .aside img {
  display: inline-block;
}
@media (max-width: 768px) {
  body.node-type-event-type .panel-even .aside,
  body.node-type-event-type .panel-odd .aside,
  body.node-type-format-type .panel-even .aside,
  body.node-type-format-type .panel-odd .aside {
    width: auto;
    padding-top: 2em;
    float: none;
  }
}
body.node-type-event-type .panel-even .view-event-calendar,
body.node-type-event-type .panel-odd .view-event-calendar,
body.node-type-format-type .panel-even .view-event-calendar,
body.node-type-format-type .panel-odd .view-event-calendar {
  font-size: 0.875em;
  padding: 0;
}
body.node-type-event-type .panel-even .view-event-calendar .view-header .date-heading,
body.node-type-event-type .panel-odd .view-event-calendar .view-header .date-heading,
body.node-type-format-type .panel-even .view-event-calendar .view-header .date-heading,
body.node-type-format-type .panel-odd .view-event-calendar .view-header .date-heading {
  top: auto;
  width: 100%;
  height: 100%;
  display: table;
}
body.node-type-event-type .panel-even .view-event-calendar .view-header .date-heading h3,
body.node-type-event-type .panel-odd .view-event-calendar .view-header .date-heading h3,
body.node-type-format-type .panel-even .view-event-calendar .view-header .date-heading h3,
body.node-type-format-type .panel-odd .view-event-calendar .view-header .date-heading h3 {
  font-size: 1.14286em;
  line-height: 1.1em;
  vertical-align: middle;
  padding: 0 35px;
  display: table-cell;
}
body.node-type-event-type .panel-even .view-event-calendar .calendar-calendar .month-view .full td,
body.node-type-event-type .panel-odd .view-event-calendar .calendar-calendar .month-view .full td,
body.node-type-format-type .panel-even .view-event-calendar .calendar-calendar .month-view .full td,
body.node-type-format-type .panel-odd .view-event-calendar .calendar-calendar .month-view .full td {
  border-color: #f6f6f6;
}
body.node-type-event-type .panel-even .view-event-calendar .calendar-calendar .month-view .full tr.single-day,
body.node-type-event-type .panel-odd .view-event-calendar .calendar-calendar .month-view .full tr.single-day,
body.node-type-format-type .panel-even .view-event-calendar .calendar-calendar .month-view .full tr.single-day,
body.node-type-format-type .panel-odd .view-event-calendar .calendar-calendar .month-view .full tr.single-day {
  height: 20px !important;
}
body.node-type-event-type .panel-even .view-event-calendar .calendar-calendar .month-view .full tr.single-day td,
body.node-type-event-type .panel-odd .view-event-calendar .calendar-calendar .month-view .full tr.single-day td,
body.node-type-format-type .panel-even .view-event-calendar .calendar-calendar .month-view .full tr.single-day td,
body.node-type-format-type .panel-odd .view-event-calendar .calendar-calendar .month-view .full tr.single-day td {
  text-align: center;
}
body.node-type-event-type .panel-even .view-event-calendar .calendar-calendar .month-view .full tr.single-day td, body.node-type-event-type .panel-even .view-event-calendar .calendar-calendar .month-view .full tr.single-day td *,
body.node-type-event-type .panel-odd .view-event-calendar .calendar-calendar .month-view .full tr.single-day td,
body.node-type-event-type .panel-odd .view-event-calendar .calendar-calendar .month-view .full tr.single-day td *,
body.node-type-format-type .panel-even .view-event-calendar .calendar-calendar .month-view .full tr.single-day td,
body.node-type-format-type .panel-even .view-event-calendar .calendar-calendar .month-view .full tr.single-day td *,
body.node-type-format-type .panel-odd .view-event-calendar .calendar-calendar .month-view .full tr.single-day td,
body.node-type-format-type .panel-odd .view-event-calendar .calendar-calendar .month-view .full tr.single-day td * {
  line-height: 1em !important;
  height: auto !important;
}
body.node-type-event-type .panel-even .view-event-calendar .calendar-calendar .month-view .full tr.single-day td .item,
body.node-type-event-type .panel-odd .view-event-calendar .calendar-calendar .month-view .full tr.single-day td .item,
body.node-type-format-type .panel-even .view-event-calendar .calendar-calendar .month-view .full tr.single-day td .item,
body.node-type-format-type .panel-odd .view-event-calendar .calendar-calendar .month-view .full tr.single-day td .item {
  width: 10px !important;
  height: 10px !important;
  margin: 0 0 5px;
  display: inline-block;
  float: none !important;
}
body.node-type-event-type .pane-event-rules .content,
body.node-type-format-type .pane-event-rules .content {
  float: none;
}
body.node-type-event-type .pane-event-rules .aside,
body.node-type-format-type .pane-event-rules .aside {
  width: auto;
  margin: 0 -30px;
  float: none;
  position: relative;
}
body.node-type-event-type .pane-event-rules .aside:after, body.node-type-event-type .pane-event-rules .aside:before,
body.node-type-format-type .pane-event-rules .aside:after,
body.node-type-format-type .pane-event-rules .aside:before {
  content: "";
  width: 30px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body.node-type-event-type .pane-event-rules .aside:before,
body.node-type-format-type .pane-event-rules .aside:before {
  right: auto;
}
body.node-type-event-type .pane-event-rules .aside:after,
body.node-type-format-type .pane-event-rules .aside:after {
  left: auto;
}
body.node-type-event-type .pane-event-rules .aside .view-wizards-wpn-documents-listing,
body.node-type-format-type .pane-event-rules .aside .view-wizards-wpn-documents-listing {
  overflow: auto;
}
body.node-type-event-type .pane-event-rules .aside .view-wizards-wpn-documents-listing .view-content,
body.node-type-format-type .pane-event-rules .aside .view-wizards-wpn-documents-listing .view-content {
  display: table;
  padding-left: 30px;
  padding-right: 30px;
}
body.node-type-event-type .pane-event-rules .view-filters,
body.node-type-format-type .pane-event-rules .view-filters {
  display: none;
}
body.node-type-event-type .pane-event-rules .views-table th,
body.node-type-event-type .pane-event-rules .views-table td,
body.node-type-format-type .pane-event-rules .views-table th,
body.node-type-format-type .pane-event-rules .views-table td {
  text-align: center;
  padding: 15px 25px;
  border: 1px solid #ccc;
}
body.node-type-event-type .pane-event-rules .views-table thead th,
body.node-type-event-type .pane-event-rules .views-table thead td,
body.node-type-format-type .pane-event-rules .views-table thead th,
body.node-type-format-type .pane-event-rules .views-table thead td {
  padding-top: 10px;
  padding-bottom: 10px;
  background: #ddd;
}
body.node-type-event-type .pane-event-rules .views-table tbody .views-field-field-brand-logo img,
body.node-type-format-type .pane-event-rules .views-table tbody .views-field-field-brand-logo img {
  min-width: 150px;
}
body.node-type-event-type .pane-event-rules .views-table tbody .item-list ul,
body.node-type-event-type .pane-event-rules .views-table tbody .item-list li,
body.node-type-format-type .pane-event-rules .views-table tbody .item-list ul,
body.node-type-format-type .pane-event-rules .views-table tbody .item-list li {
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
body.node-type-event-type .pane-event-rules .views-table tbody .item-list .file img,
body.node-type-format-type .pane-event-rules .views-table tbody .item-list .file img {
  display: none;
}
body.node-type-event-type .pane-event-rules .views-table tbody .item-list .file .file-size,
body.node-type-format-type .pane-event-rules .views-table tbody .item-list .file .file-size {
  display: none;
}
body.node-type-event-type .pane-event-rules .views-table tbody .item-list .file a,
body.node-type-format-type .pane-event-rules .views-table tbody .item-list .file a {
  text-indent: -999px;
  width: 30px;
  height: 30px;
  display: inline-block;
  outline: none;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
body.node-type-event-type .pane-event-rules .views-table tbody .item-list .file a:before,
body.node-type-format-type .pane-event-rules .views-table tbody .item-list .file a:before {
  content: "";
  background: url(../images/global/download.png) 50% 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body.node-type-event-type .pane-event-rules .pager-load-more a,
body.node-type-format-type .pane-event-rules .pager-load-more a {
  color: white !important;
}
body.node-type-event-type .pane-event-rules .panel-even .aside:before,
body.node-type-format-type .pane-event-rules .panel-even .aside:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0idnNnZyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjAlIj48c3RvcCBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjEiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMCIgb2Zmc2V0PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI3ZzZ2cpIiAvPjwvc3ZnPg==);
  background-image: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
body.node-type-event-type .pane-event-rules .panel-even .aside:after,
body.node-type-format-type .pane-event-rules .panel-even .aside:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0idnNnZyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjAlIj48c3RvcCBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIgb2Zmc2V0PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI3ZzZ2cpIiAvPjwvc3ZnPg==);
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
body.node-type-event-type .pane-event-rules .panel-odd .aside:before,
body.node-type-format-type .pane-event-rules .panel-odd .aside:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0idnNnZyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjAlIj48c3RvcCBzdG9wLWNvbG9yPSIjZjZmNmY2IiBzdG9wLW9wYWNpdHk9IjEiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiNmNmY2ZjYiIHN0b3Atb3BhY2l0eT0iMCIgb2Zmc2V0PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI3ZzZ2cpIiAvPjwvc3ZnPg==);
  background-image: -webkit-linear-gradient(left, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
  background-image: linear-gradient(to right, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
}
body.node-type-event-type .pane-event-rules .panel-odd .aside:after,
body.node-type-format-type .pane-event-rules .panel-odd .aside:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0idnNnZyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjAlIj48c3RvcCBzdG9wLWNvbG9yPSIjZjZmNmY2IiBzdG9wLW9wYWNpdHk9IjAiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiNmNmY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIgb2Zmc2V0PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI3ZzZ2cpIiAvPjwvc3ZnPg==);
  background-image: -webkit-linear-gradient(left, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
  background-image: linear-gradient(to right, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
}

a.surrounding-link {
  display: block;
  cursor: pointer;
}
a.surrounding-link:after {
  content: "";
  height: 0;
  display: block;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.panel-homepage.full-width-header .small-header {
  height: 230px;
  margin-bottom: -30px;
  background-size: cover;
}
@media (max-width: 768px) {
  .panel-homepage.full-width-header .small-header {
    height: 160px;
    margin-bottom: 0;
  }
}
.panel-homepage.full-width-header .small-header .header-pane.page-inner {
  padding-top: 60px;
}
@media (max-width: 768px) {
  .panel-homepage.full-width-header .small-header .header-pane.page-inner {
    padding-top: 50px;
  }
}
.panel-homepage.full-width-header .small-header .header-pane-header {
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 4em;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 0;
  line-height: 1em;
  display: block;
  width: 80%;
  text-shadow: #333 1px 1px 1px;
}
@media (max-width: 768px) {
  .panel-homepage.full-width-header .small-header .header-pane-header {
    width: 100%;
    font-size: 30px;
    text-shadow: none;
    text-align: center;
  }
}

.associated-articles {
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .associated-articles {
    padding: 0 25px 20px;
  }
}
.associated-articles ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .associated-articles ul {
    flex-direction: column;
  }
}
.associated-articles ul.items-1 li {
  width: calc(33.33% - 20px);
}
@media (max-width: 767px) {
  .associated-articles ul.items-1 li {
    width: 100%;
  }
}
.associated-articles ul.items-2 li {
  width: calc(50% - 20px);
}
@media (max-width: 767px) {
  .associated-articles ul.items-2 li {
    width: 100%;
  }
}
.associated-articles ul.items-3 li {
  width: calc(33.33%);
}
@media (max-width: 767px) {
  .associated-articles ul.items-3 li {
    width: 100%;
  }
}
.associated-articles ul.items-4 li {
  width: calc(25% - 10px);
}
@media (max-width: 767px) {
  .associated-articles ul.items-4 li {
    width: 100%;
  }
}
.associated-articles ul li {
  margin-left: 20px;
  padding-right: 20px;
  position: relative;
}
.associated-articles ul li:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-right: 1px dashed gray;
}
.associated-articles ul li h3 {
  margin: 15px 0 10px;
}
.associated-articles ul li p {
  margin: 0;
}
.associated-articles ul li a {
  color: black;
}
.associated-articles ul li a .read-time {
  padding: 0 0 0 17px;
  display: inline-block;
  color: #9d9d9d;
  position: relative;
}
.associated-articles ul li a .read-time:before {
  content: "";
  width: 13px;
  height: 13px;
  display: block;
  background: url(../images/clock.png) 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 5px;
}
.associated-articles ul li img {
  height: auto;
  width: 100%;
}
@media (max-width: 767px) {
  .associated-articles ul li {
    margin: 0;
    padding: 0;
  }
  .associated-articles ul li:after {
    display: none;
  }
}
.associated-articles ul li:last-child {
  padding: 0;
}
.associated-articles ul li:last-child:after {
  border: none;
}
.associated-articles ul li:first-child {
  margin: 0;
}

.associated-product {
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .associated-product {
    padding: 0 25px 20px;
  }
}
.associated-product ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .associated-product ul {
    flex-direction: column;
  }
}
.associated-product ul.items-1 li {
  width: calc(33.33% - 10px);
}
@media (max-width: 767px) {
  .associated-product ul.items-1 li {
    width: 100%;
  }
}
.associated-product ul.items-2 li {
  width: calc(50% - 10px);
}
@media (max-width: 767px) {
  .associated-product ul.items-2 li {
    width: 100%;
  }
}
.associated-product ul.items-3 li {
  width: calc(33.33% - 10px);
}
@media (max-width: 767px) {
  .associated-product ul.items-3 li {
    width: 100%;
  }
}
.associated-product ul.items-4 li {
  width: calc(25% - 10px);
}
@media (max-width: 767px) {
  .associated-product ul.items-4 li {
    width: 100%;
  }
}
.associated-product ul li {
  position: relative;
}
.associated-product ul li h3 {
  margin: 15px 0 10px;
}
.associated-product ul li p {
  margin: 0;
}
.associated-product ul li a {
  color: black;
}
.associated-product ul li a .read-time {
  padding: 0 0 0 17px;
  display: inline-block;
  color: #9d9d9d;
  position: relative;
}
.associated-product ul li a .read-time:before {
  content: "";
  width: 13px;
  height: 13px;
  display: block;
  background: url(../images/clock.png) 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 5px;
}
.associated-product ul li img {
  height: auto;
  width: 100%;
}
@media (max-width: 767px) {
  .associated-product ul li {
    margin: 0;
    padding: 0;
  }
  .associated-product ul li:after {
    display: none;
  }
}
.associated-product ul li:last-child {
  padding: 0;
}
.associated-product ul li:last-child:after {
  border: none;
}
.associated-product ul li:first-child {
  margin: 0;
}

.related-articles-sprite, .related-articles-calendar, .related-articles-document, .related-articles-email, .related-articles-media, .related-articles-phone, .related-articles-product {
  background-image: url('../images/related-articles-s7472234c65.png');
  background-repeat: no-repeat;
}

.node-type-article {
  /* related content block */
}
.node-type-article .panel-2col-stacked {
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding-top: 30px;
}
.node-type-article iframe {
  width: 100%;
}
.node-type-article #content {
  background: #f6f6f6;
  border-top: 1px solid #ddd;
}
.node-type-article .view-banner-revisions-view {
  margin-bottom: 20px;
}
.node-type-article .view-banner-revisions-view .views-field-title {
  display: none;
}
.node-type-article .view-wiz-wpn-article-details {
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}
.node-type-article .view-wiz-wpn-article-details h1 {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 42px;
  line-height: 48px;
  color: #3e3e3e;
  margin: 0 0 10px;
}
.node-type-article .view-wiz-wpn-article-details .views-field-created, .node-type-article .view-wiz-wpn-article-details .views-field-name {
  font-family: "Georgia", serif;
  color: #3e3e3e;
  font-style: italic;
  font-size: 16px;
}
.node-type-article .view-wiz-wpn-article-details .views-field-field-time-to-read {
  color: #8e8e8e;
  padding-left: 15px;
  position: relative;
}
.node-type-article .view-wiz-wpn-article-details .views-field-field-time-to-read:before {
  content: "";
  width: 12px;
  height: 12px;
  background: url('../images/clock.png?1599154334') 50% 50%/100% 100% no-repeat;
  position: absolute;
  top: .35em;
  left: 0;
}
.node-type-article .view-wiz-wpn-article-details .views-field-field-time-to-read .field-content {
  color: inherit;
  font-size: inherit !important;
  line-height: inherit !important;
}
.node-type-article .view-wiz-wpn-article-details .views-field-name a {
  color: #d0123e;
}
.node-type-article .pane-node-body {
  margin-bottom: 30px;
  /* styling for large arrow style links */
}
.node-type-article .pane-node-body h2, .node-type-article .pane-node-body h3, .node-type-article .pane-node-body h4 {
  color: #3e3e3e;
  font-family: "Open Sans", Arial, sans-serif;
}
.node-type-article .pane-node-body a {
  color: #d0123e;
}
.node-type-article .pane-node-body .fancy-link {
  margin-bottom: 20px;
}
.node-type-article .pane-node-body .fancy-link .arrow {
  background: url("../images/arrow-right.png") no-repeat center center #d0123e;
  display: block;
  float: left;
  padding: 4px 14px;
  margin-right: 2px;
}
.node-type-article .pane-node-body .fancy-link a {
  color: #ffffff;
  background: #d0123e;
  padding: 4px 15px;
  float: left;
}
.node-type-article .pane-node-body .fancy-link:after {
  content: " ";
  display: block;
  visibility: hidden;
  clear: both;
}
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 {
  /* RELATED CONTENT */
}
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .pane-title {
  background: #3e3e3e;
  color: #ffffff;
  font-family: "Open Sans", Arial, sans-serif;
  padding: 6px 30px;
  margin: 0;
  font-weight: normal;
  font-size: 16px;
}
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view {
  background: #ffffff;
  padding: 0 10px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  display: inline-block;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field {
  border-bottom: 1px solid #dddddd;
  margin-right: -10px;
  margin-left: -10px;
  padding: 30px 10px;
  position: relative;
}
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-events-revision-id a,
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-products-revision-id a,
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-documents-revision-id a,
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-articles-revision-id a {
  display: block;
  padding-left: 40px;
  margin-bottom: 2rem;
  min-height: 33px;
  color: #d0123e;
}
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-events-revision-id a:last-child,
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-products-revision-id a:last-child,
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-documents-revision-id a:last-child,
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-articles-revision-id a:last-child {
  margin-bottom: 0;
}
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-events-revision-id span,
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-products-revision-id span,
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-documents-revision-id span,
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-articles-revision-id span {
  display: none;
}
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-events-revision-id a {
  background: url("../images/related-articles/calendar.png") no-repeat left top;
}
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-products-revision-id a {
  background: url("../images/related-articles/product.png") no-repeat left top;
}
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-documents-revision-id a {
  background: url("../images/related-articles/document.png") no-repeat left top;
}
.node-type-article .pane-wiz-wpn-associated-content-view-panel-pane-1 .view-wiz-wpn-associated-content-view .views-field-field-associated-articles-revision-id a {
  background: url("../images/related-articles/document.png") no-repeat left top;
}
.node-type-article .pane-node-links .links li {
  display: none;
}
.node-type-article .pane-node-links .links li.print_html, .node-type-article .pane-node-links .links li.print_pdf {
  display: inline-block;
  margin-left: 0;
}
.node-type-article .pane-node-links .links li.print_html a, .node-type-article .pane-node-links .links li.print_pdf a {
  color: #d0123e;
}

@media all and (max-width: 768px) {
  .node-type-article .pane-node-body {
    margin-bottom: 30px;
  }
  .node-type-article .pane-node-body h2, .node-type-article .pane-node-body h3, .node-type-article .pane-node-body h4 {
    line-height: 1.2;
  }
  .node-type-article .view-wiz-wpn-associated-content-view {
    margin-bottom: 30px;
  }
}
/*
 * Events Landing Page
 */
/* layout */
.view-event-landing .event-landing-image,
.view-event-landing .format-landing-image,
.view-event-types .event-landing-image,
.view-event-types .format-landing-image,
.view-format-landing .event-landing-image,
.view-format-landing .format-landing-image,
.view-format-types .event-landing-image,
.view-format-types .format-landing-image {
  float: left;
  width: 27.5%;
  margin-left: 0%;
  margin-right: -27.5%;
}
.view-event-landing .event-info-left,
.view-event-landing .format-info-left,
.view-event-types .event-info-left,
.view-event-types .format-info-left,
.view-format-landing .event-info-left,
.view-format-landing .format-info-left,
.view-format-types .event-info-left,
.view-format-types .format-info-left {
  float: left;
  width: 30%;
  margin-left: 30%;
  margin-right: -60%;
}
.view-event-landing .event-info-left.wide,
.view-event-landing .format-info-left.wide,
.view-event-types .event-info-left.wide,
.view-event-types .format-info-left.wide,
.view-format-landing .event-info-left.wide,
.view-format-landing .format-info-left.wide,
.view-format-types .event-info-left.wide,
.view-format-types .format-info-left.wide {
  float: left;
  width: 70%;
  margin-left: 30%;
  margin-right: -100%;
}
.view-event-landing .event-info-left .event-date .date-display-range,
.view-event-landing .format-info-left .event-date .date-display-range,
.view-event-types .event-info-left .event-date .date-display-range,
.view-event-types .format-info-left .event-date .date-display-range,
.view-format-landing .event-info-left .event-date .date-display-range,
.view-format-landing .format-info-left .event-date .date-display-range,
.view-format-types .event-info-left .event-date .date-display-range,
.view-format-types .format-info-left .event-date .date-display-range {
  display: inline-block;
}
.view-event-landing .event-info-left .event-levels .event-audiences ul,
.view-event-landing .format-info-left .event-levels .event-audiences ul,
.view-event-types .event-info-left .event-levels .event-audiences ul,
.view-event-types .format-info-left .event-levels .event-audiences ul,
.view-format-landing .event-info-left .event-levels .event-audiences ul,
.view-format-landing .format-info-left .event-levels .event-audiences ul,
.view-format-types .event-info-left .event-levels .event-audiences ul,
.view-format-types .format-info-left .event-levels .event-audiences ul {
  height: 80px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.view-event-landing .event-info-left .event-levels .event-audiences ul li,
.view-event-landing .format-info-left .event-levels .event-audiences ul li,
.view-event-types .event-info-left .event-levels .event-audiences ul li,
.view-event-types .format-info-left .event-levels .event-audiences ul li,
.view-format-landing .event-info-left .event-levels .event-audiences ul li,
.view-format-landing .format-info-left .event-levels .event-audiences ul li,
.view-format-types .event-info-left .event-levels .event-audiences ul li,
.view-format-types .format-info-left .event-levels .event-audiences ul li {
  margin: 0;
  padding: 0;
}
.view-event-landing .event-info-left .event-levels .event-audiences ul li.primary-audience,
.view-event-landing .format-info-left .event-levels .event-audiences ul li.primary-audience,
.view-event-types .event-info-left .event-levels .event-audiences ul li.primary-audience,
.view-event-types .format-info-left .event-levels .event-audiences ul li.primary-audience,
.view-format-landing .event-info-left .event-levels .event-audiences ul li.primary-audience,
.view-format-landing .format-info-left .event-levels .event-audiences ul li.primary-audience,
.view-format-types .event-info-left .event-levels .event-audiences ul li.primary-audience,
.view-format-types .format-info-left .event-levels .event-audiences ul li.primary-audience {
  width: 50%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.view-event-landing .event-info-left .event-levels .event-audiences ul li.primary-audience .audience-icon,
.view-event-landing .format-info-left .event-levels .event-audiences ul li.primary-audience .audience-icon,
.view-event-types .event-info-left .event-levels .event-audiences ul li.primary-audience .audience-icon,
.view-event-types .format-info-left .event-levels .event-audiences ul li.primary-audience .audience-icon,
.view-format-landing .event-info-left .event-levels .event-audiences ul li.primary-audience .audience-icon,
.view-format-landing .format-info-left .event-levels .event-audiences ul li.primary-audience .audience-icon,
.view-format-types .event-info-left .event-levels .event-audiences ul li.primary-audience .audience-icon,
.view-format-types .format-info-left .event-levels .event-audiences ul li.primary-audience .audience-icon {
  max-width: 47px;
  height: 48px;
  margin: 0 5px 0 0;
}
.view-event-landing .event-info-left .event-levels .event-audiences ul li.secondary-audience,
.view-event-landing .format-info-left .event-levels .event-audiences ul li.secondary-audience,
.view-event-types .event-info-left .event-levels .event-audiences ul li.secondary-audience,
.view-event-types .format-info-left .event-levels .event-audiences ul li.secondary-audience,
.view-format-landing .event-info-left .event-levels .event-audiences ul li.secondary-audience,
.view-format-landing .format-info-left .event-levels .event-audiences ul li.secondary-audience,
.view-format-types .event-info-left .event-levels .event-audiences ul li.secondary-audience,
.view-format-types .format-info-left .event-levels .event-audiences ul li.secondary-audience {
  width: 50%;
  height: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.view-event-landing .event-info-left .event-levels .event-audiences ul li.secondary-audience .audience-icon,
.view-event-landing .format-info-left .event-levels .event-audiences ul li.secondary-audience .audience-icon,
.view-event-types .event-info-left .event-levels .event-audiences ul li.secondary-audience .audience-icon,
.view-event-types .format-info-left .event-levels .event-audiences ul li.secondary-audience .audience-icon,
.view-format-landing .event-info-left .event-levels .event-audiences ul li.secondary-audience .audience-icon,
.view-format-landing .format-info-left .event-levels .event-audiences ul li.secondary-audience .audience-icon,
.view-format-types .event-info-left .event-levels .event-audiences ul li.secondary-audience .audience-icon,
.view-format-types .format-info-left .event-levels .event-audiences ul li.secondary-audience .audience-icon {
  max-width: 28px;
  height: 29px;
  margin: 0 5px 0 0;
}
.view-event-landing .event-info-left .event-levels .event-audiences ul li .audience-title,
.view-event-landing .format-info-left .event-levels .event-audiences ul li .audience-title,
.view-event-types .event-info-left .event-levels .event-audiences ul li .audience-title,
.view-event-types .format-info-left .event-levels .event-audiences ul li .audience-title,
.view-format-landing .event-info-left .event-levels .event-audiences ul li .audience-title,
.view-format-landing .format-info-left .event-levels .event-audiences ul li .audience-title,
.view-format-types .event-info-left .event-levels .event-audiences ul li .audience-title,
.view-format-types .format-info-left .event-levels .event-audiences ul li .audience-title {
  color: #3e3e3e;
}
.view-event-landing .event-info-right,
.view-event-landing .format-info-right,
.view-event-types .event-info-right,
.view-event-types .format-info-right,
.view-format-landing .event-info-right,
.view-format-landing .format-info-right,
.view-format-types .event-info-right,
.view-format-types .format-info-right {
  float: left;
  width: 40%;
  margin-left: 60%;
  margin-right: -100%;
}
.view-event-landing .event-info-right .event-date.scheduling-closed,
.view-event-landing .format-info-right .event-date.scheduling-closed,
.view-event-types .event-info-right .event-date.scheduling-closed,
.view-event-types .format-info-right .event-date.scheduling-closed,
.view-format-landing .event-info-right .event-date.scheduling-closed,
.view-format-landing .format-info-right .event-date.scheduling-closed,
.view-format-types .event-info-right .event-date.scheduling-closed,
.view-format-types .format-info-right .event-date.scheduling-closed {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.view-event-landing .event-info-right .event-date.scheduling-closed .wrapper-date,
.view-event-landing .format-info-right .event-date.scheduling-closed .wrapper-date,
.view-event-types .event-info-right .event-date.scheduling-closed .wrapper-date,
.view-event-types .format-info-right .event-date.scheduling-closed .wrapper-date,
.view-format-landing .event-info-right .event-date.scheduling-closed .wrapper-date,
.view-format-landing .format-info-right .event-date.scheduling-closed .wrapper-date,
.view-format-types .event-info-right .event-date.scheduling-closed .wrapper-date,
.view-format-types .format-info-right .event-date.scheduling-closed .wrapper-date {
  width: 270px;
  margin: 10px 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.view-event-landing .event-info-right .event-date.scheduling-closed .wrapper-date div,
.view-event-landing .format-info-right .event-date.scheduling-closed .wrapper-date div,
.view-event-types .event-info-right .event-date.scheduling-closed .wrapper-date div,
.view-event-types .format-info-right .event-date.scheduling-closed .wrapper-date div,
.view-format-landing .event-info-right .event-date.scheduling-closed .wrapper-date div,
.view-format-landing .format-info-right .event-date.scheduling-closed .wrapper-date div,
.view-format-types .event-info-right .event-date.scheduling-closed .wrapper-date div,
.view-format-types .format-info-right .event-date.scheduling-closed .wrapper-date div {
  width: 130px;
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  position: relative;
  height: 50px;
}
.view-event-landing .event-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator,
.view-event-landing .format-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator,
.view-event-types .event-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator,
.view-event-types .format-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator,
.view-format-landing .event-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator,
.view-format-landing .format-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator,
.view-format-types .event-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator,
.view-format-types .format-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator {
  width: 10px !important;
  height: 50px;
  text-align: center;
  position: relative;
}
.view-event-landing .event-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator:before,
.view-event-landing .format-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator:before,
.view-event-types .event-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator:before,
.view-event-types .format-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator:before,
.view-format-landing .event-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator:before,
.view-format-landing .format-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator:before,
.view-format-types .event-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator:before,
.view-format-types .format-info-right .event-date.scheduling-closed .wrapper-date div.event-date-separator:before {
  content: "";
  width: 10px;
  height: 4px;
  display: block;
  margin-top: -2px;
  background-color: #3e3e3e;
  position: absolute;
  top: 50%;
  left: 0;
}
.view-event-landing .event-info-right .event-date.scheduling-closed .wrapper-date div .month,
.view-event-landing .format-info-right .event-date.scheduling-closed .wrapper-date div .month,
.view-event-types .event-info-right .event-date.scheduling-closed .wrapper-date div .month,
.view-event-types .format-info-right .event-date.scheduling-closed .wrapper-date div .month,
.view-format-landing .event-info-right .event-date.scheduling-closed .wrapper-date div .month,
.view-format-landing .format-info-right .event-date.scheduling-closed .wrapper-date div .month,
.view-format-types .event-info-right .event-date.scheduling-closed .wrapper-date div .month,
.view-format-types .format-info-right .event-date.scheduling-closed .wrapper-date div .month {
  position: absolute;
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 25px;
  top: 0;
  left: 5px;
  text-align: center;
  width: 60px;
  color: #3e3e3e;
  display: block;
}
.view-event-landing .event-info-right .event-date.scheduling-closed .wrapper-date div .year,
.view-event-landing .format-info-right .event-date.scheduling-closed .wrapper-date div .year,
.view-event-types .event-info-right .event-date.scheduling-closed .wrapper-date div .year,
.view-event-types .format-info-right .event-date.scheduling-closed .wrapper-date div .year,
.view-format-landing .event-info-right .event-date.scheduling-closed .wrapper-date div .year,
.view-format-landing .format-info-right .event-date.scheduling-closed .wrapper-date div .year,
.view-format-types .event-info-right .event-date.scheduling-closed .wrapper-date div .year,
.view-format-types .format-info-right .event-date.scheduling-closed .wrapper-date div .year {
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 14px;
  position: absolute;
  bottom: 0;
  left: 5px;
  text-align: center;
  width: 60px;
  color: #3e3e3e;
  display: block;
}
.view-event-landing .event-info-right .event-date.scheduling-closed .wrapper-date div .day,
.view-event-landing .format-info-right .event-date.scheduling-closed .wrapper-date div .day,
.view-event-types .event-info-right .event-date.scheduling-closed .wrapper-date div .day,
.view-event-types .format-info-right .event-date.scheduling-closed .wrapper-date div .day,
.view-format-landing .event-info-right .event-date.scheduling-closed .wrapper-date div .day,
.view-format-landing .format-info-right .event-date.scheduling-closed .wrapper-date div .day,
.view-format-types .event-info-right .event-date.scheduling-closed .wrapper-date div .day,
.view-format-types .format-info-right .event-date.scheduling-closed .wrapper-date div .day {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 64px;
  line-height: 48px;
  width: 70px;
  text-align: center;
  color: #3e3e3e;
  display: block;
}
.view-event-landing .event-info-right .event-date.scheduling-closed .global-calendar,
.view-event-landing .format-info-right .event-date.scheduling-closed .global-calendar,
.view-event-types .event-info-right .event-date.scheduling-closed .global-calendar,
.view-event-types .format-info-right .event-date.scheduling-closed .global-calendar,
.view-format-landing .event-info-right .event-date.scheduling-closed .global-calendar,
.view-format-landing .format-info-right .event-date.scheduling-closed .global-calendar,
.view-format-types .event-info-right .event-date.scheduling-closed .global-calendar,
.view-format-types .format-info-right .event-date.scheduling-closed .global-calendar {
  min-width: 160px;
  padding-right: 20px;
  padding-bottom: 6px;
  line-height: 16px;
  text-align: right;
  color: #3e3e3e;
  font-size: 12px;
  font-style: italic;
  font-family: "Georgia", serif;
  border-bottom: dashed #ccc 1px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.node-type-landing-page .body-lower-center-column .pane-generic-html-pane {
  background: #ffffff;
}
.node-type-landing-page .body-lower-center-column .pane-generic-html-pane .premier-play {
  width: 100%;
  clear: both;
  float: left;
  padding-bottom: 40px;
}
.node-type-landing-page .body-lower-center-column .pane-generic-html-pane .premier-play h2 {
  font-size: 35px;
  line-height: 35px;
  margin: 0;
  text-transform: uppercase;
}
.node-type-landing-page .body-lower-center-column .pane-generic-html-pane .premier-play h3 {
  margin: 10px 0 0;
  font-family: Georgia;
  font-style: italic;
  font-weight: normal;
  color: #666;
  font-size: 16px;
}
.node-type-landing-page .body-lower-center-column .pane-generic-html-pane .premier-play p {
  font-size: 14px;
  margin-bottom: 0;
}
.node-type-landing-page .body-lower-center-column .pane-generic-html-pane .premier-play .left {
  float: left;
  width: 50%;
}
.node-type-landing-page .body-lower-center-column .pane-generic-html-pane .premier-play .left .inner {
  padding: 0 10px;
}
.node-type-landing-page .body-lower-center-column .pane-generic-html-pane .premier-play .left a {
  display: inline-block;
  background: url(../images/button-forms.png) 0 0 no-repeat;
  height: 30px;
  line-height: 30px;
  padding-left: 42px;
  padding-right: 10px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  margin: 20px 0;
}
.node-type-landing-page .body-lower-center-column .pane-generic-html-pane .premier-play .right {
  float: left;
  width: 50%;
}
.node-type-landing-page .body-lower-center-column .pane-generic-html-pane .premier-play .right img {
  max-width: 400px;
}
.node-type-landing-page .body-lower-center-column .pane-generic-html-pane .premier-play .right .inner {
  padding: 0 10px;
}
.node-type-landing-page #panels-ipe-regionid-bodylower {
  margin-left: -30px;
  margin-right: -30px;
  background: #fff;
  padding: 30px 30px 0;
}
.node-type-landing-page #panels-ipe-regionid-bodylower h2.pane-title {
  margin-bottom: 20px;
}
.node-type-landing-page #panels-ipe-regionid-bodylower em.subheading {
  margin-top: -20px;
  display: block;
  font-family: Georgia;
  font-style: italic;
  color: #3e3e3e;
}
.node-type-landing-page #panels-ipe-regionid-bodylower .pane-node-body {
  clear: both;
  margin-left: -30px;
  margin-right: -30px;
  background: #f6f6f6;
  padding: 30px;
}
.node-type-landing-page .body-center-column {
  margin-top: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
}
.node-type-landing-page .landing-page-center-wrapper {
  max-width: 970px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  background: #f6f6f6;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 100;
  margin-top: -42px;
}
.node-type-landing-page .landing-page-center-wrapper .ui-tabs .ui-tabs-nav li.ui-tabs-selected {
  padding-bottom: 0;
}
.node-type-landing-page .landing-page-center-wrapper .ui-widget-content {
  border: none;
  background: none;
  padding: 40px 0;
}
.node-type-landing-page .landing-page-center-wrapper .ui-widget-content .item-list {
  border: none;
  background: none;
}
.node-type-landing-page .landing-page-center-wrapper .ui-widget-content .item-list .ui-widget-header {
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  border-color: #dddddd;
  background: none;
  padding: 0;
  margin: 0;
}
.node-type-landing-page .landing-page-center-wrapper .ui-widget-content .item-list .ui-widget-header li.ui-state-default {
  margin-right: 3px;
  border-width: 1px 1px 0;
  border-style: solid;
  border-color: #ccc;
  border-adius: 3px;
  overflow: hidden;
}
.node-type-landing-page .landing-page-center-wrapper .ui-widget-content .item-list .ui-widget-header li.ui-state-default a {
  color: #3e3e3e;
  line-height: 27px;
  background: #fff;
  position: relative;
  outline: none;
}
.node-type-landing-page .landing-page-center-wrapper .ui-widget-content .item-list .ui-widget-header li.ui-state-default a:hover, .node-type-landing-page .landing-page-center-wrapper .ui-widget-content .item-list .ui-widget-header li.ui-state-default a:focus {
  color: #d0123e;
}
.node-type-landing-page .landing-page-center-wrapper .ui-widget-content .item-list .ui-widget-header li.ui-state-default.ui-tabs-active a {
  color: #3e3e3e;
  cursor: default;
  pointer-events: none;
}
.node-type-landing-page .landing-page-center-wrapper .ui-widget-content .item-list .ui-widget-header li.ui-state-default.ui-tabs-active a:before {
  content: "";
  height: 3px;
  background: #d0123e;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.node-type-landing-page .landing-page-center-wrapper .ui-widget-content .item-list .pager-load-more {
  background: #d0123e;
  height: 40px;
}
.node-type-landing-page .landing-page-center-wrapper .ui-widget-content .item-list .pager-load-more li {
  float: none;
  width: 100%;
  padding: 0;
}
.node-type-landing-page .landing-page-center-wrapper .ui-widget-content .item-list .pager-load-more a {
  display: block;
  color: #fff;
  text-transform: uppercase;
  line-height: 40px;
  padding: 0;
}
.node-type-landing-page .landing-page-center-wrapper .ui-widget-content .ui-tabs-panel {
  background: #fff;
  padding: 40px !important;
  border: solid #ccc 1px;
  border-top: none;
}
.node-type-landing-page .landing-page-center-wrapper .ui-widget-content .ui-tabs-panel h1, .node-type-landing-page .landing-page-center-wrapper .ui-widget-content .ui-tabs-panel h2, .node-type-landing-page .landing-page-center-wrapper .ui-widget-content .ui-tabs-panel h3 {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1em;
}
.node-type-landing-page .landing-page-center-wrapper .ui-widget-content .ui-tabs-panel p {
  margin-bottom: 20px;
}
.node-type-landing-page .landing-page-center-wrapper label {
  display: none;
}
.node-type-landing-page .body-upper-center-column {
  padding-top: 40px;
}
.node-type-landing-page .body-upper-center-column .pane-node-title-field {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 48px;
  color: #101010;
  margin: 0 0 20px 0;
  font-weight: bold;
  line-height: 1em;
}
.node-type-landing-page .body-upper-center-column .pane-node-field-subheading {
  padding: 1em 0;
  font-style: italic;
  font-family: "Georgia", serif;
  color: #3e3e3e;
  font-size: 20px;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
.node-type-landing-page .pager-load-more a {
  color: #ffffff;
  text-transform: uppercase;
  background: #d0123e;
  color: #ffffff;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  padding: .5em 0;
  display: block;
}
.node-type-landing-page .view-event-landing,
.node-type-landing-page .view-event-types,
.node-type-landing-page .view-format-landing,
.node-type-landing-page .view-format-types {
  font-family: "Open Sans", Arial, sans-serif;
}
.node-type-landing-page .view-event-landing .view-filters,
.node-type-landing-page .view-event-types .view-filters,
.node-type-landing-page .view-format-landing .view-filters,
.node-type-landing-page .view-format-types .view-filters {
  margin-bottom: 2em;
}
.node-type-landing-page .view-event-landing .views-row,
.node-type-landing-page .view-event-types .views-row,
.node-type-landing-page .view-format-landing .views-row,
.node-type-landing-page .view-format-types .views-row {
  padding: 20px 0;
  border-bottom: 1px solid #dddddd;
}
.node-type-landing-page .view-event-landing .views-row .details,
.node-type-landing-page .view-event-types .views-row .details,
.node-type-landing-page .view-format-landing .views-row .details,
.node-type-landing-page .view-format-types .views-row .details {
  float: right;
}
.node-type-landing-page .view-event-landing .views-row .details span a,
.node-type-landing-page .view-event-types .views-row .details span a,
.node-type-landing-page .view-format-landing .views-row .details span a,
.node-type-landing-page .view-format-types .views-row .details span a {
  display: inline-block;
  background: url(../images/button-forms.png) 0 -93px no-repeat;
  height: 30px;
  line-height: 30px;
  padding-left: 42px;
  padding-right: 10px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0;
}
.node-type-landing-page .view-event-landing .views-row .details span a:hover,
.node-type-landing-page .view-event-types .views-row .details span a:hover,
.node-type-landing-page .view-format-landing .views-row .details span a:hover,
.node-type-landing-page .view-format-types .views-row .details span a:hover {
  background-position: 0 0;
}
.node-type-landing-page .view-event-landing .event-info-bottom,
.node-type-landing-page .view-event-landing .format-info-bottom,
.node-type-landing-page .view-event-types .event-info-bottom,
.node-type-landing-page .view-event-types .format-info-bottom,
.node-type-landing-page .view-format-landing .event-info-bottom,
.node-type-landing-page .view-format-landing .format-info-bottom,
.node-type-landing-page .view-format-types .event-info-bottom,
.node-type-landing-page .view-format-types .format-info-bottom {
  border-top: 1px dashed #dddddd;
  float: left;
  padding: 2em 0;
  margin-top: 7em;
}
.node-type-landing-page .view-event-landing .event-info-top,
.node-type-landing-page .view-event-landing .format-info-top,
.node-type-landing-page .view-event-types .event-info-top,
.node-type-landing-page .view-event-types .format-info-top,
.node-type-landing-page .view-format-landing .event-info-top,
.node-type-landing-page .view-format-landing .format-info-top,
.node-type-landing-page .view-format-types .event-info-top,
.node-type-landing-page .view-format-types .format-info-top {
  float: left;
  padding-bottom: 1em;
}
.node-type-landing-page .view-event-landing .event-landing-image,
.node-type-landing-page .view-event-landing .format-landing-image,
.node-type-landing-page .view-event-types .event-landing-image,
.node-type-landing-page .view-event-types .format-landing-image,
.node-type-landing-page .view-format-landing .event-landing-image,
.node-type-landing-page .view-format-landing .format-landing-image,
.node-type-landing-page .view-format-types .event-landing-image,
.node-type-landing-page .view-format-types .format-landing-image {
  position: relative;
}
.node-type-landing-page .view-event-landing .event-landing-image img,
.node-type-landing-page .view-event-landing .format-landing-image img,
.node-type-landing-page .view-event-types .event-landing-image img,
.node-type-landing-page .view-event-types .format-landing-image img,
.node-type-landing-page .view-format-landing .event-landing-image img,
.node-type-landing-page .view-format-landing .format-landing-image img,
.node-type-landing-page .view-format-types .event-landing-image img,
.node-type-landing-page .view-format-types .format-landing-image img {
  display: block;
  width: 100%;
}
.node-type-landing-page .view-event-landing .event-landing-image .overlay,
.node-type-landing-page .view-event-landing .format-landing-image .overlay,
.node-type-landing-page .view-event-types .event-landing-image .overlay,
.node-type-landing-page .view-event-types .format-landing-image .overlay,
.node-type-landing-page .view-format-landing .event-landing-image .overlay,
.node-type-landing-page .view-format-landing .format-landing-image .overlay,
.node-type-landing-page .view-format-types .event-landing-image .overlay,
.node-type-landing-page .view-format-types .format-landing-image .overlay {
  position: absolute;
  top: 50%;
  margin-top: -34px;
  left: 50%;
  margin-left: -86px;
}
.node-type-landing-page .view-event-landing .event-title,
.node-type-landing-page .view-event-landing .format-title,
.node-type-landing-page .view-event-types .event-title,
.node-type-landing-page .view-event-types .format-title,
.node-type-landing-page .view-format-landing .event-title,
.node-type-landing-page .view-format-landing .format-title,
.node-type-landing-page .view-format-types .event-title,
.node-type-landing-page .view-format-types .format-title {
  color: #3e3e3e;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 6px;
}
.node-type-landing-page .view-event-landing .event-subheading,
.node-type-landing-page .view-event-landing .format-subheading,
.node-type-landing-page .view-event-types .event-subheading,
.node-type-landing-page .view-event-types .format-subheading,
.node-type-landing-page .view-format-landing .event-subheading,
.node-type-landing-page .view-format-landing .format-subheading,
.node-type-landing-page .view-format-types .event-subheading,
.node-type-landing-page .view-format-types .format-subheading {
  font-family: "Georgia", serif;
  font-style: italic;
}
.node-type-landing-page .view-event-landing .event-date,
.node-type-landing-page .view-event-landing .format-date,
.node-type-landing-page .view-event-types .event-date,
.node-type-landing-page .view-event-types .format-date,
.node-type-landing-page .view-format-landing .event-date,
.node-type-landing-page .view-format-landing .format-date,
.node-type-landing-page .view-format-types .event-date,
.node-type-landing-page .view-format-types .format-date {
  font-size: 14px;
  clear: left;
  padding-top: 5px;
  height: auto;
  padding-bottom: 15px;
}
.node-type-landing-page .view-event-landing .event-date strong,
.node-type-landing-page .view-event-landing .format-date strong,
.node-type-landing-page .view-event-types .event-date strong,
.node-type-landing-page .view-event-types .format-date strong,
.node-type-landing-page .view-format-landing .event-date strong,
.node-type-landing-page .view-format-landing .format-date strong,
.node-type-landing-page .view-format-types .event-date strong,
.node-type-landing-page .view-format-types .format-date strong {
  float: left;
  margin-right: 5px;
}
.node-type-landing-page .view-event-landing .date-remaining,
.node-type-landing-page .view-event-types .date-remaining,
.node-type-landing-page .view-format-landing .date-remaining,
.node-type-landing-page .view-format-types .date-remaining {
  text-align: center;
  height: 110px;
  padding-bottom: 15px;
}
.node-type-landing-page .view-event-landing .date-remaining .event-countdown,
.node-type-landing-page .view-event-types .date-remaining .event-countdown,
.node-type-landing-page .view-format-landing .date-remaining .event-countdown,
.node-type-landing-page .view-format-types .date-remaining .event-countdown {
  margin-top: -10px;
  margin-left: 25px;
}
.node-type-landing-page .view-event-landing .date-remaining span.days-left,
.node-type-landing-page .view-event-types .date-remaining span.days-left,
.node-type-landing-page .view-format-landing .date-remaining span.days-left,
.node-type-landing-page .view-format-types .date-remaining span.days-left {
  color: #3e3e3e;
}
.node-type-landing-page .view-event-landing .date-remaining .global-calendar,
.node-type-landing-page .view-event-types .date-remaining .global-calendar,
.node-type-landing-page .view-format-landing .date-remaining .global-calendar,
.node-type-landing-page .view-format-types .date-remaining .global-calendar {
  background: url(../images/global/calendar.png) 100% 0 no-repeat;
}
.node-type-landing-page .view-event-landing .date-remaining .event-schedule-close, .node-type-landing-page .view-event-landing .date-remaining .event-schedule-open,
.node-type-landing-page .view-event-types .date-remaining .event-schedule-close,
.node-type-landing-page .view-event-types .date-remaining .event-schedule-open,
.node-type-landing-page .view-format-landing .date-remaining .event-schedule-close,
.node-type-landing-page .view-format-landing .date-remaining .event-schedule-open,
.node-type-landing-page .view-format-types .date-remaining .event-schedule-close,
.node-type-landing-page .view-format-types .date-remaining .event-schedule-open {
  margin: 0 6px 0 0 !important;
  width: 150px;
}
.node-type-landing-page .view-event-landing .date-remaining .event-schedule-close .global-calendar, .node-type-landing-page .view-event-landing .date-remaining .event-schedule-open .global-calendar,
.node-type-landing-page .view-event-types .date-remaining .event-schedule-close .global-calendar,
.node-type-landing-page .view-event-types .date-remaining .event-schedule-open .global-calendar,
.node-type-landing-page .view-format-landing .date-remaining .event-schedule-close .global-calendar,
.node-type-landing-page .view-format-landing .date-remaining .event-schedule-open .global-calendar,
.node-type-landing-page .view-format-types .date-remaining .event-schedule-close .global-calendar,
.node-type-landing-page .view-format-types .date-remaining .event-schedule-open .global-calendar {
  padding-bottom: 6px;
  line-height: 16px;
  color: #3e3e3e;
  font-size: 12px;
  font-style: italic;
  font-family: "Georgia", serif;
  border-bottom: dashed #ccc 1px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}
.node-type-landing-page .view-event-landing .date-remaining .event-schedule-close div, .node-type-landing-page .view-event-landing .date-remaining .event-schedule-open div,
.node-type-landing-page .view-event-types .date-remaining .event-schedule-close div,
.node-type-landing-page .view-event-types .date-remaining .event-schedule-open div,
.node-type-landing-page .view-format-landing .date-remaining .event-schedule-close div,
.node-type-landing-page .view-format-landing .date-remaining .event-schedule-open div,
.node-type-landing-page .view-format-types .date-remaining .event-schedule-close div,
.node-type-landing-page .view-format-types .date-remaining .event-schedule-open div {
  width: 150px;
  display: block;
  margin-top: 20px;
  clear: both;
  font-family: "Roboto Condensed", sans-serif;
  position: relative;
  height: 50px;
}
.node-type-landing-page .view-event-landing .date-remaining .event-schedule-close div .month, .node-type-landing-page .view-event-landing .date-remaining .event-schedule-open div .month,
.node-type-landing-page .view-event-types .date-remaining .event-schedule-close div .month,
.node-type-landing-page .view-event-types .date-remaining .event-schedule-open div .month,
.node-type-landing-page .view-format-landing .date-remaining .event-schedule-close div .month,
.node-type-landing-page .view-format-landing .date-remaining .event-schedule-open div .month,
.node-type-landing-page .view-format-types .date-remaining .event-schedule-close div .month,
.node-type-landing-page .view-format-types .date-remaining .event-schedule-open div .month {
  position: absolute;
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 25px;
  top: 0;
  left: 20px;
  text-align: center;
  width: 60px;
  color: #3e3e3e;
}
.node-type-landing-page .view-event-landing .date-remaining .event-schedule-close div .year, .node-type-landing-page .view-event-landing .date-remaining .event-schedule-open div .year,
.node-type-landing-page .view-event-types .date-remaining .event-schedule-close div .year,
.node-type-landing-page .view-event-types .date-remaining .event-schedule-open div .year,
.node-type-landing-page .view-format-landing .date-remaining .event-schedule-close div .year,
.node-type-landing-page .view-format-landing .date-remaining .event-schedule-open div .year,
.node-type-landing-page .view-format-types .date-remaining .event-schedule-close div .year,
.node-type-landing-page .view-format-types .date-remaining .event-schedule-open div .year {
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 14px;
  position: absolute;
  bottom: 0;
  left: 15px;
  text-align: center;
  width: 60px;
  color: #3e3e3e;
}
.node-type-landing-page .view-event-landing .date-remaining .event-schedule-close div .day, .node-type-landing-page .view-event-landing .date-remaining .event-schedule-open div .day,
.node-type-landing-page .view-event-types .date-remaining .event-schedule-close div .day,
.node-type-landing-page .view-event-types .date-remaining .event-schedule-open div .day,
.node-type-landing-page .view-format-landing .date-remaining .event-schedule-close div .day,
.node-type-landing-page .view-format-landing .date-remaining .event-schedule-open div .day,
.node-type-landing-page .view-format-types .date-remaining .event-schedule-close div .day,
.node-type-landing-page .view-format-types .date-remaining .event-schedule-open div .day {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 64px;
  line-height: 48px;
  width: 70px;
  text-align: center;
  color: #3e3e3e;
}
.node-type-landing-page .view-event-landing .date-remaining .event-schedule-open,
.node-type-landing-page .view-event-types .date-remaining .event-schedule-open,
.node-type-landing-page .view-format-landing .date-remaining .event-schedule-open,
.node-type-landing-page .view-format-types .date-remaining .event-schedule-open {
  float: right;
  margin-right: 0;
}
.node-type-landing-page .view-event-landing .date-remaining .event-schedule-close,
.node-type-landing-page .view-event-types .date-remaining .event-schedule-close,
.node-type-landing-page .view-format-landing .date-remaining .event-schedule-close,
.node-type-landing-page .view-format-types .date-remaining .event-schedule-close {
  float: right;
}
.node-type-landing-page .view-event-landing .event-levels ul,
.node-type-landing-page .view-event-landing .format-levels ul,
.node-type-landing-page .view-event-types .event-levels ul,
.node-type-landing-page .view-event-types .format-levels ul,
.node-type-landing-page .view-format-landing .event-levels ul,
.node-type-landing-page .view-format-landing .format-levels ul,
.node-type-landing-page .view-format-types .event-levels ul,
.node-type-landing-page .view-format-types .format-levels ul {
  padding: 0;
  margin: 0;
}
.node-type-landing-page .view-event-landing .event-levels li,
.node-type-landing-page .view-event-landing .format-levels li,
.node-type-landing-page .view-event-types .event-levels li,
.node-type-landing-page .view-event-types .format-levels li,
.node-type-landing-page .view-format-landing .event-levels li,
.node-type-landing-page .view-format-landing .format-levels li,
.node-type-landing-page .view-format-types .event-levels li,
.node-type-landing-page .view-format-types .format-levels li {
  font-size: 13px;
  padding-bottom: 3px;
  padding-top: 2px;
  margin-right: 5px;
  color: #aaa;
  float: left;
  text-align: left;
}
.node-type-landing-page .view-event-landing .event-levels li.active,
.node-type-landing-page .view-event-landing .format-levels li.active,
.node-type-landing-page .view-event-types .event-levels li.active,
.node-type-landing-page .view-event-types .format-levels li.active,
.node-type-landing-page .view-format-landing .event-levels li.active,
.node-type-landing-page .view-format-landing .format-levels li.active,
.node-type-landing-page .view-format-types .event-levels li.active,
.node-type-landing-page .view-format-types .format-levels li.active {
  color: #3e3e3e;
}
.node-type-landing-page .view-event-landing .event-levels .sprite-event-level li,
.node-type-landing-page .view-event-types .event-levels .sprite-event-level li,
.node-type-landing-page .view-format-landing .event-levels .sprite-event-level li,
.node-type-landing-page .view-format-types .event-levels .sprite-event-level li {
  visibility: hidden;
  display: none;
}
.node-type-landing-page .view-event-landing .event-levels .sprite-event-level li.active,
.node-type-landing-page .view-event-types .event-levels .sprite-event-level li.active,
.node-type-landing-page .view-format-landing .event-levels .sprite-event-level li.active,
.node-type-landing-page .view-format-types .event-levels .sprite-event-level li.active {
  visibility: visible;
  display: block;
}
.node-type-landing-page .view-event-types .views-row,
.node-type-landing-page .view-format-types .views-row {
  position: relative;
}
.node-type-landing-page .view-event-types .event-subheading,
.node-type-landing-page .view-event-types .format-subheading,
.node-type-landing-page .view-format-types .event-subheading,
.node-type-landing-page .view-format-types .format-subheading {
  margin-bottom: 1em;
}
.node-type-landing-page .view-event-types .event-subheading p,
.node-type-landing-page .view-event-types .format-subheading p,
.node-type-landing-page .view-format-types .event-subheading p,
.node-type-landing-page .view-format-types .format-subheading p {
  margin: 0 0 .2em !important;
  padding: 0;
}
.node-type-landing-page .view-event-types .event-levels,
.node-type-landing-page .view-event-types .format-levels,
.node-type-landing-page .view-format-types .event-levels,
.node-type-landing-page .view-format-types .format-levels {
  width: 50%;
  padding-bottom: 0 !important;
}
.node-type-landing-page .view-event-types .event-levels, .node-type-landing-page .view-event-types .event-levels *,
.node-type-landing-page .view-event-types .format-levels,
.node-type-landing-page .view-event-types .format-levels *,
.node-type-landing-page .view-format-types .event-levels,
.node-type-landing-page .view-format-types .event-levels *,
.node-type-landing-page .view-format-types .format-levels,
.node-type-landing-page .view-format-types .format-levels * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.node-type-landing-page .view-event-types .event-levels li,
.node-type-landing-page .view-event-types .format-levels li,
.node-type-landing-page .view-format-types .event-levels li,
.node-type-landing-page .view-format-types .format-levels li {
  width: 50%;
  min-width: 130px;
  margin: 0 0 8px;
  padding-right: 20px;
}
.node-type-landing-page .view-event-types .details,
.node-type-landing-page .view-format-types .details {
  position: absolute;
  right: 0;
  bottom: 23px;
  float: none !important;
}

/* CHOSEN FILTER CUSTOM */
#edit_field_event_type_tid_chzn {
  width: 200px !important;
}

.chzn-container-single .chzn-single span {
  margin-right: 50px;
}

@media all and (max-width: 768px) {
  .node-type-landing-page .body-lower-center-column .pane-generic-html-pane .premier-play .left {
    float: left;
    width: 100%;
  }
  .node-type-landing-page .body-lower-center-column .pane-generic-html-pane .premier-play .right {
    float: left;
    width: 100%;
  }
}
@media all and (max-width: 1024px) {
  .section-landing-page .view-event-landing .event-landing-image,
  .section-landing-page .view-event-landing .format-landing-image,
  .section-landing-page .view-event-types .event-landing-image,
  .section-landing-page .view-event-types .format-landing-image,
  .section-landing-page .view-format-landing .event-landing-image,
  .section-landing-page .view-format-landing .format-landing-image,
  .section-landing-page .view-format-types .event-landing-image,
  .section-landing-page .view-format-types .format-landing-image {
    float: none;
    clear: both;
    margin-bottom: 20px;
    width: 100%;
  }
  .section-landing-page .view-event-landing .event-landing-image img,
  .section-landing-page .view-event-landing .format-landing-image img,
  .section-landing-page .view-event-types .event-landing-image img,
  .section-landing-page .view-event-types .format-landing-image img,
  .section-landing-page .view-format-landing .event-landing-image img,
  .section-landing-page .view-format-landing .format-landing-image img,
  .section-landing-page .view-format-types .event-landing-image img,
  .section-landing-page .view-format-types .format-landing-image img {
    display: block;
    width: 100%;
  }
  .section-landing-page .view-event-types .event-levels,
  .section-landing-page .view-event-types .format-levels,
  .section-landing-page .view-format-types .event-levels,
  .section-landing-page .view-format-types .format-levels {
    width: auto;
  }
  .section-landing-page .view-event-types .event-levels li,
  .section-landing-page .view-event-types .format-levels li,
  .section-landing-page .view-format-types .event-levels li,
  .section-landing-page .view-format-types .format-levels li {
    white-space: nowrap;
    width: auto;
    display: inline-block;
    float: none;
  }
  .section-landing-page .view-event-types .details,
  .section-landing-page .view-format-types .details {
    position: static;
    right: auto;
    bottom: auto;
  }

  .views-exposed-form .views-exposed-widget {
    float: none;
  }

  /* CHOSEN FILTER CUSTOM */
  #edit_field_event_type_tid_chzn, #edit_field_brand_tid_chzn, #edit_field_store_level_tid_chzn {
    width: 100% !important;
  }

  .section-landing-page .landing-page-center-wrapper .ui-widget-content .ui-tabs-panel {
    padding: 10px !important;
  }

  .event-info-left {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 800px) {
  .section-landing-page .view-event-landing .event-info-right,
  .section-landing-page .view-event-landing .event-info-left,
  .section-landing-page .view-event-types .event-info-right,
  .section-landing-page .view-event-types .event-info-left,
  .section-landing-page .view-format-landing .event-info-right,
  .section-landing-page .view-format-landing .event-info-left,
  .section-landing-page .view-format-types .event-info-right,
  .section-landing-page .view-format-types .event-info-left {
    margin: 0;
    width: 50%;
    clear: none;
  }
  .section-landing-page .view-event-landing .event-schedule-close,
  .section-landing-page .view-event-types .event-schedule-close,
  .section-landing-page .view-format-landing .event-schedule-close,
  .section-landing-page .view-format-types .event-schedule-close {
    position: relative;
    float: none;
  }
}
@media screen and (max-width: 768px) {
  .node-type-landing-page .landing-page-center-wrapper .ui-widget-content .item-list .ui-widget-header {
    padding-left: 11px;
  }
}
@media screen and (max-width: 480px) {
  .section-landing-page .view-event-landing .event-countdown,
  .section-landing-page .view-event-landing .format-countdown,
  .section-landing-page .view-event-types .event-countdown,
  .section-landing-page .view-event-types .format-countdown,
  .section-landing-page .view-format-landing .event-countdown,
  .section-landing-page .view-format-landing .format-countdown,
  .section-landing-page .view-format-types .event-countdown,
  .section-landing-page .view-format-types .format-countdown {
    width: 150px;
  }
  .section-landing-page .view-event-landing .event-schedule-close,
  .section-landing-page .view-event-landing .format-schedule-close,
  .section-landing-page .view-event-types .event-schedule-close,
  .section-landing-page .view-event-types .format-schedule-close,
  .section-landing-page .view-format-landing .event-schedule-close,
  .section-landing-page .view-format-landing .format-schedule-close,
  .section-landing-page .view-format-types .event-schedule-close,
  .section-landing-page .view-format-types .format-schedule-close {
    left: auto;
    float: left !important;
  }

  .section-landing-page .view-event-landing .event-info-left {
    width: 100%;
  }
  .section-landing-page .view-event-landing .event-info-left .event-levels {
    margin-bottom: 10px;
    padding: 0;
    border: none;
  }
  .section-landing-page .view-event-landing .event-info-left .event-levels .sprite-event-level {
    margin: 10px 0;
  }
  .section-landing-page .view-event-landing .event-info-left .event-levels .sprite-event-level ul {
    width: 100%;
  }
  .section-landing-page .view-event-landing .event-info-left .event-levels .sprite-event-level ul li {
    width: 45%;
    margin-bottom: 5px;
    box-sizing: border-box;
  }

  .view-event-landing .event-info-right {
    width: 100% !important;
  }
  .view-event-landing .event-info-right .event-date.scheduling-closed {
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .view-event-landing .event-info-right .event-date.scheduling-closed .wrapper-date {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .view-event-landing .event-info-right .global-calendar {
    min-height: 25px;
    max-width: none !important;
    width: auto !important;
    padding: 0 0 5px 20px !important;
    box-sizing: border-box;
    background-position: 0 0 !important;
    text-align: left !important;
  }
  .view-event-landing .event-info-right .date-remaining {
    margin-bottom: 0 !important;
    margin-top: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .view-event-landing .event-info-right .date-remaining .event-countdown.counter-full {
    margin-bottom: 15px;
    -webkit-order: 2;
    order: 2;
    margin-right: 10px;
  }
}
.my-store-profile hr {
  border: solid #ccc 1px;
  border-right: none;
  border-left: none;
  border-top: none;
  height: 1px;
  margin: 40px 0;
  clear: both;
}
.my-store-profile .buttons {
  background: url(../images/button-forms.png) 0 0 no-repeat;
  display: inline-block;
  padding: 0 10px 0 40px;
  height: 30px;
  line-height: 30px;
  color: #fff !important;
  text-transform: uppercase;
}
.my-store-profile .buttons:hover {
  background: url(../images/button-forms.png) 0 -93px no-repeat;
}
.my-store-profile .add-new-location {
  display: block;
  float: none;
  text-align: center;
  padding: 10px 0;
  color: #fff !important;
  background: #3e3e3e;
  border-radius: 4px;
  margin: 0;
}
.my-store-profile .add-new-location:hover {
  background: #d0123e;
}
.my-store-profile .node-webform, .my-store-profile .body-center-column {
  background: none;
  box-shadow: none;
  margin-top: 0;
  padding-top: 0;
}
.my-store-profile #tabs-0-body {
  background: none;
}
.my-store-profile .ui-widget {
  margin-left: -30px;
  margin-right: -30px;
  border: none !important;
}
.my-store-profile .ui-widget .ui-corner-all {
  border-radius: 0 !important;
}
.my-store-profile .ui-widget .ui-tabs-nav {
  padding: 0 30px !important;
}
.my-store-profile .ui-widget .ui-widget-content {
  padding: 10px 30px !important;
}
.my-store-profile .ui-widget .ui-widget-content .pane-profile-my-info h2, .my-store-profile .ui-widget .ui-widget-content .pane-profile-people h2, .my-store-profile .ui-widget .ui-widget-content .pane-profile-location h2 {
  margin-top: 0;
  text-transform: uppercase;
  font-size: 2.5em;
  border-bottom: solid #ccc 1px;
  margin-left: -30px;
  margin-right: -30px;
  padding: 0 30px;
}
.my-store-profile .ui-widget .ui-widget-content a {
  color: #d0123e;
}
.my-store-profile .ui-tabs .ui-tabs-nav li.ui-tabs-selected {
  padding-bottom: 0;
}
.my-store-profile .ui-widget-content {
  border: none;
  border-left: solid #ccc 1px;
  border-right: solid #ccc 1px;
  border-bottom: solid #ccc 1px;
  background: #fff;
  padding: 10px 0;
  color: #3e3e3e;
}
.my-store-profile .ui-widget-content .item-list {
  border: none;
  background: none;
}
.my-store-profile .ui-widget-content .item-list .ui-widget-header {
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  border-color: #dddddd;
  background: none;
  padding: 0;
}
.my-store-profile .ui-widget-content .item-list .ui-widget-header li span {
  display: inline-block;
  background-size: 100%;
  float: left;
  margin-right: 10px;
}
.my-store-profile .ui-widget-content .item-list .ui-widget-header li span.profile-location-icon {
  background: url(../images/my-store-profile/location.png) center center no-repeat;
  width: 25px;
  height: 25px;
}
.my-store-profile .ui-widget-content .item-list .ui-widget-header li span.profile-people-icon {
  background: url(../images/my-store-profile/people.png) center center no-repeat;
  width: 57px;
  height: 25px;
}
.my-store-profile .ui-widget-content .item-list .ui-widget-header li span.profile-my-info-icon {
  background: url(../images/my-store-profile/my-account.png) center center no-repeat;
  width: 39px;
  height: 25px;
}
.my-store-profile .ui-widget-content .item-list .ui-widget-header li.ui-state-default.ui-tabs-selected {
  border-color: #ccc;
  border-top: 3px solid #d0123e;
  border-right: solid #ccc 1px;
  border-left: solid #ccc 1px;
  background: #fff;
  padding-top: 0;
}
.my-store-profile .ui-widget-content .item-list .ui-widget-header li.ui-state-default.ui-tabs-selected a {
  border-color: #dddddd;
  height: 27px;
  border-bottom: solid #fff 1px;
  border-right: none;
  padding: .5em 1.5em;
}
.my-store-profile .ui-widget-content .item-list .ui-widget-header li.ui-state-default {
  background: none;
  margin: 0;
  margin-right: 3px;
  border: none;
  padding-top: 11px;
}
.my-store-profile .ui-widget-content .item-list .ui-widget-header li.ui-state-default a {
  border: none;
  border-right: solid #ccc 1px;
  color: #3e3e3e;
  padding: 0 1em;
  float: none;
  display: block;
  height: auto;
  line-height: auto;
}
.my-store-profile .ui-widget-content .item-list .ui-widget-header li.last a {
  border-right: none;
}
.my-store-profile #my-store-info {
  width: 264px;
  background: #f2f2f2;
  border: solid #ccc 1px;
  border-radius: 4px;
  padding: 20px;
  margin-right: 30px;
  float: left;
}
.my-store-profile #my-store-info h3 {
  margin-top: 0;
  margin-bottom: 0;
}
.my-store-profile #my-store-info .edit {
  background: url(../images/my-store-profile/edit.png) left center no-repeat;
  background-size: 24px;
  display: inline-block;
  padding-left: 30px;
}
.my-store-profile #my-store-info img {
  display: block;
  margin: 10px 0;
}
.my-store-profile #my-store-info .my-store-info-contacts {
  margin-bottom: 10px;
}
.my-store-profile #my-store-info .gateway {
  background: url(../images/sprite-event-levels.png) 0 0 no-repeat;
  display: block;
  height: 25px;
  padding-left: 28px;
}
.my-store-profile #my-store-info .core {
  background: url(../images/sprite-event-levels.png) 0 -70px no-repeat;
  display: block;
  height: 25px;
  padding-left: 28px;
}
.my-store-profile #my-store-info .advanced {
  background: url(../images/sprite-event-levels.png) 0 -140px no-repeat;
  display: block;
  height: 25px;
  padding-left: 28px;
}
.my-store-profile #my-store-status {
  position: relative;
}
.my-store-profile #my-store-status .core {
  display: block;
  width: 125px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 30px;
  background: url(../images/shields/core-selected.png) center top no-repeat;
  background-size: 90px;
  text-align: center;
  padding-top: 80px;
  color: #d0123e;
  font-weight: 600;
}
.my-store-profile #my-store-status .advanced {
  display: block;
  width: 125px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 30px;
  background: url(../images/shields/advanced-selected.png) center top no-repeat;
  background-size: 90px;
  text-align: center;
  padding-top: 80px;
  color: #d0123e;
  font-weight: 600;
}
.my-store-profile #my-store-status .gateway {
  display: block;
  width: 125px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 30px;
  background: url(../images/shields/gateway-selected.png) center top no-repeat;
  background-size: 90px;
  text-align: center;
  padding-top: 80px;
  color: #d0123e;
  font-weight: 600;
}
.my-store-profile #my-store-status {
  padding: 0 40px 40px 160px;
  margin-bottom: 20px;
  border-bottom: dashed #ccc 1px;
  width: 432px;
  float: left;
}
.my-store-profile #my-store-status em {
  color: #3e3e3e;
  font-family: "Georgia", serif;
}
.my-store-profile #my-store-status h3 {
  margin: 0;
}
.my-store-profile #my-store-status .my-store-current-status {
  background: #d5d5d5;
  padding: 3px;
  width: 444px;
  height: 24px;
  border-radius: 4px;
  position: relative;
}
.my-store-profile #my-store-status .my-store-current-status .my-store-current-status-1 {
  width: 20%;
  background: #4c4a88;
  height: 24px;
  border-radius: 4px;
}
.my-store-profile #my-store-status .my-store-current-status .my-store-current-status-2 {
  width: 40%;
  background: #4c4a88;
  height: 24px;
  border-radius: 4px;
}
.my-store-profile #my-store-status .my-store-current-status .my-store-current-status-3 {
  width: 60%;
  background: #4c4a88;
  height: 24px;
  border-radius: 4px;
}
.my-store-profile #my-store-status .my-store-current-status .my-store-current-status-4 {
  width: 80%;
  background: #4c4a88;
  height: 24px;
  border-radius: 4px;
}
.my-store-profile #my-store-status .my-store-current-status .my-store-current-status-5 {
  width: 100%;
  background: #4c4a88;
  height: 24px;
  border-radius: 4px;
}
.my-store-profile #my-store-status .my-store-current-status .grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
}
.my-store-profile #my-store-status .my-store-current-status .grid span {
  display: block;
  border-right: solid #efefef 1px;
  background: #ccc;
  width: 1px;
  height: 30px;
  opacity: 0.6;
}
.my-store-profile #my-store-status .my-store-current-status .grid span.vr20 {
  position: absolute;
  left: 20%;
}
.my-store-profile #my-store-status .my-store-current-status .grid span.vr40 {
  position: absolute;
  left: 40%;
}
.my-store-profile #my-store-status .my-store-current-status .grid span.vr60 {
  position: absolute;
  left: 60%;
}
.my-store-profile #my-store-status .my-store-current-status .grid span.vr80 {
  position: absolute;
  left: 80%;
}
.my-store-profile #my-store-in-progress {
  width: 632px;
  margin-bottom: 20px;
  float: left;
}
.my-store-profile #my-store-in-progress h3 {
  margin-top: 0;
  margin-bottom: 0;
}
.my-store-profile #my-store-in-progress h3 + span {
  margin-bottom: 20px;
  display: inline-block;
}
.my-store-profile #my-store-in-progress .col {
  width: 48%;
  margin-right: 4%;
  float: left;
}
.my-store-profile #my-store-in-progress .col.last {
  margin-right: 0;
}
.my-store-profile #my-store-in-progress .tournaments-reported {
  background: url(../images/my-store-profile/tournaments-reported.png) top left no-repeat;
}
.my-store-profile #my-store-in-progress .unique-people-playing {
  background: url(../images/my-store-profile/unique-people-playing.png) top left no-repeat;
}
.my-store-profile #my-store-in-progress .events-with-players {
  background: url(../images/my-store-profile/events-with-players.png) top left no-repeat;
}
.my-store-profile #my-store-in-progress .introduced-new-players {
  background: url(../images/my-store-profile/introduced-new-players.png) top left no-repeat;
}
.my-store-profile #my-store-in-progress .deliquency-rate {
  background: url(../images/my-store-profile/deliquency-rate.png) top left no-repeat;
}
.my-store-profile #my-store-in-progress .tournaments-reported,
.my-store-profile #my-store-in-progress .unique-people-playing,
.my-store-profile #my-store-in-progress .events-with-players,
.my-store-profile #my-store-in-progress .introduced-new-players,
.my-store-profile #my-store-in-progress .deliquency-rate {
  padding-bottom: 10px;
  border-bottom: dashed #ccc 1px;
  margin-bottom: 10px;
  padding-left: 60px;
  padding-right: 20px;
  font-size: 13px;
  position: relative;
  clear: both;
}
.my-store-profile #my-store-in-progress .tournaments-reported .checked,
.my-store-profile #my-store-in-progress .unique-people-playing .checked,
.my-store-profile #my-store-in-progress .events-with-players .checked,
.my-store-profile #my-store-in-progress .introduced-new-players .checked,
.my-store-profile #my-store-in-progress .deliquency-rate .checked {
  position: absolute;
  top: 6px;
  right: 0;
  display: block;
  width: 15px;
  height: 12px;
  background: url(../images/red-checkbox.png) center center no-repeat;
  text-indent: -55555px;
}
.my-store-profile #my-store-in-progress .tournaments-reported .right,
.my-store-profile #my-store-in-progress .unique-people-playing .right,
.my-store-profile #my-store-in-progress .events-with-players .right,
.my-store-profile #my-store-in-progress .introduced-new-players .right,
.my-store-profile #my-store-in-progress .deliquency-rate .right {
  float: right;
}
.my-store-profile #my-store-in-progress .bar {
  width: 100%;
  background: #d5d5d5;
}
.my-store-profile #my-store-in-progress .bar .progress {
  height: 24px;
  background: #4c4a88;
}
.my-store-profile #my-store-upcoming-events {
  clear: both;
  margin-bottom: 20px;
}
.my-store-profile #my-store-upcoming-events h3 {
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block;
}
.my-store-profile #my-store-upcoming-events > a {
  float: right;
  display: inline-block;
  margin-left: 10px;
}
.my-store-profile #my-store-upcoming-events .add-new-role {
  background: url(../images/my-store-profile/add-new-role.png) left no-repeat;
  background-size: 30px;
  padding-left: 30px;
  display: inline-block;
}
.my-store-profile #my-store-upcoming-events .schedule-new-event {
  background: url(../images/my-store-profile/schedule-new-event.png) left no-repeat;
  background-size: 30px;
  padding-left: 30px;
  display: inline-block;
}
.my-store-profile #my-store-upcoming-events .load-more {
  display: block;
  float: none;
  text-align: center;
  padding: 10px 0;
  color: #fff;
  background: #d0123e;
  border-radius: 4px;
  margin: 0;
}
.my-store-profile #my-store-upcoming-events .load-more:hover {
  background: #3e3e3e;
}
.my-store-profile .tableheader-processed {
  border: solid #ccc 1px;
  border-right: none;
  border-bottom: none;
  border-collapse: separate;
}
.my-store-profile .tableheader-processed th {
  background: #dddddd;
  font-weight: normal;
  border-top: solid #fff 1px;
  border-bottom: solid #ccc 1px;
  border-left: solid #fff 1px;
  border-right: solid #ccc 1px;
  padding: 10px;
}
.my-store-profile .tableheader-processed td {
  border-top: solid #fff 1px;
  border-bottom: solid #ccc 1px;
  border-left: solid #fff 1px;
  border-right: solid #ccc 1px;
  padding: 10px;
}
.my-store-profile .tableheader-processed td a, .my-store-profile .tableheader-processed td .edit {
  background: url(../images/my-store-profile/edit.png) center center no-repeat;
  background-size: 24px;
  display: block;
  padding-left: 30px;
  text-indent: -555555px;
}
.my-store-profile .pane-profile-people .buttons {
  float: right;
}
.my-store-profile .pane-profile-people .buttons:after {
  overflow: hidden;
  *zoom: 1;
}
.my-store-profile .pane-profile-my-info .col-container {
  margin: 20px 0;
}
.my-store-profile .pane-profile-my-info .col-container:after {
  overflow: hidden;
  *zoom: 1;
}
.my-store-profile .pane-profile-my-info .col-container .col25 {
  width: 20%;
  float: left;
  margin-right: 5%;
}
.my-store-profile .pane-profile-my-info .col-container .col25.last {
  margin-right: 0;
}
.my-store-profile .pane-profile-my-info .col-container .col25 fieldset {
  margin-top: 10px;
  padding: 10px 0 10px 0;
  border: none;
  border-top: solid #ccc 1px;
}
.my-store-profile .pane-profile-my-info input[type="checkbox"] {
  display: none;
}
.my-store-profile .pane-profile-my-info input[type="checkbox"] + label {
  display: inline-block;
  width: auto;
  height: 25px;
  padding-right: 76px;
  background: url(../images/my-store-profile/check-sprite.png) right bottom no-repeat;
  font-weight: normal;
}
.my-store-profile .pane-profile-my-info input[type="checkbox"]:checked + label {
  background: url(../images/my-store-profile/check-sprite.png) right top no-repeat;
}
.my-store-profile .pane-profile-my-info h3 {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 10px;
  display: inline-block;
}
.my-store-profile .pane-profile-my-info .edit {
  background: url(../images/my-store-profile/edit.png) left center no-repeat;
  background-size: 24px;
  display: inline-block;
  padding-left: 30px;
}
.my-store-profile .pane-profile-my-info dl {
  width: 46%;
  float: left;
  margin-left: 4%;
}
.my-store-profile .pane-profile-my-info dl dt {
  float: left;
  width: 42%;
  display: block;
  font-weight: 600;
  border-bottom: solid #ccc 1px;
  padding: 6px 0;
  margin-right: 8%;
}
.my-store-profile .pane-profile-my-info dl dd {
  float: left;
  width: 50%;
  display: block;
  border-bottom: solid #ccc 1px;
  padding: 6px 0;
  margin: 0;
}
.my-store-profile .pane-profile-my-info dl.first {
  margin-left: 0;
}

@media all and (max-width: 1030px) {
  .my-store-profile .ui-widget .ui-tabs-nav {
    padding: 0 !important;
  }

  .my-store-profile .ui-widget-content .item-list .ui-widget-header li.ui-state-default a {
    font-size: 13px;
  }

  .my-store-profile .ui-widget-content .item-list .ui-widget-header li span {
    display: none;
  }

  .my-store-profile .ui-widget .ui-widget-content .pane-profile-location h2 {
    line-height: 1em;
    font-size: 2em;
    padding-bottom: 10px;
  }

  .my-store-profile #my-store-info {
    width: 96%;
    margin-bottom: 20px;
    padding: 2%;
  }
  .my-store-profile #my-store-status {
    width: 100%;
    padding: 0;
    text-align: center;
    border-bottom: 0;
  }
  .my-store-profile #my-store-status .my-store-current-status {
    width: 100%;
  }
  .my-store-profile #my-store-status .core {
    position: static;
    width: 100%;
  }
  .my-store-profile #my-store-in-progress {
    width: 100%;
  }
  .my-store-profile #my-store-in-progress .col {
    width: 100%;
  }
  .my-store-profile #my-store-upcoming-events h3 {
    display: block;
    margin-bottom: 20px;
  }
  .my-store-profile #my-store-upcoming-events > a {
    display: block;
    float: none;
    margin: 0;
    border: solid #ccc 1px;
    padding: 10px;
    width: auto;
    margin-bottom: 10px;
  }
  .my-store-profile #my-store-upcoming-events .load-more {
    margin: 0;
  }
  .my-store-profile .tableheader-processed {
    border: none;
  }
  .my-store-profile .tableheader-processed th {
    display: none;
  }
  .my-store-profile .tableheader-processed tr {
    padding: 10px 0;
    border-bottom: solid #ccc 1px;
    display: block;
  }
  .my-store-profile .tableheader-processed td {
    border: none;
    position: relative;
    padding-left: 0;
    display: inline-table;
    width: 100%;
    padding: 0 30px;
    text-align: left;
  }
  .my-store-profile .tableheader-processed td a {
    display: inline;
    text-indent: 0;
    padding: 0;
    background: none;
  }
  .my-store-profile .pane-profile-people .buttons {
    float: none;
  }
  .my-store-profile .pane-profile-my-info h3 {
    display: block;
  }
  .my-store-profile .pane-profile-my-info dl {
    width: 100%;
    float: none;
    margin-left: 0;
  }
  .my-store-profile .pane-profile-my-info dl dt {
    display: inline;
    width: auto;
    margin-right: 10px;
    border: none;
  }
  .my-store-profile .pane-profile-my-info dl dt:after {
    content: ':';
  }
  .my-store-profile .pane-profile-my-info dl dd {
    float: none;
    width: auto;
    border: none;
  }
}
/*
*
* Product detail page
*
*/
/* Layout */
/* related events */
.view-wizards-wpn-product-detail-related-events .views-row {
  width: 29%;
  display: inline-block;
  vertical-align: top;
}

/* File icon without source */
img[src=""]:not([data-src-lazy]) {
  display: none;
}

/* associated products */
.pane-node-field-products-section {
  clear: left;
  /* main content area tabs */
  /* tab navigation */
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel {
  float: left;
  width: 70%;
  margin-left: 25%;
  margin-right: -95%;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-subheading {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-release-date,
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-release-date-txt {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-description {
  clear: left;
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-code {
  clear: both;
  overflow: hidden;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-image {
  float: left;
  width: 50%;
  margin-left: 50%;
  margin-right: -100%;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-nav {
  float: left;
  width: 25%;
  margin-left: 0%;
  margin-right: -25%;
}

/* download files */
.pane-wizards-wpn-product-detail-product-files-panel-pane-1 {
  clear: left;
  float: left;
  width: 41.66667%;
  margin-left: 0%;
  margin-right: -41.66667%;
}

/* related articles sidebar */
.pane-wiz-wpn-associated-content-view-panel-pane-2 {
  margin-bottom: 3em;
}

/* videos */
.pane-wizards-wpn-product-detail-video-panel-pane-1 {
  float: left;
  width: 62.5%;
  margin-left: 0%;
  margin-right: -62.5%;
}
.pane-wizards-wpn-product-detail-video-panel-pane-1 .pane-title {
  clear: left;
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
}
.pane-wizards-wpn-product-detail-video-panel-pane-1 .view-wizards-wpn-product-detail-video {
  clear: left;
}

/* body content */
.node-type-product .pane-node-body {
  clear: left;
  float: left;
  width: 41.66667%;
  margin-left: 0%;
  margin-right: -41.66667%;
}

/*
* Styles
*/
.node-type-product .pane-title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 52px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
}
.node-type-product .chzn-container-single {
  display: none !important;
}

.view-wizards-wpn-product-detail-banner {
  background: #000;
  color: #ffffff;
  height: auto !important;
  display: inline-block;
  width: 100%;
}
.view-wizards-wpn-product-detail-banner li .container {
  padding-bottom: 50px;
  clear: both;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .view-wizards-wpn-product-detail-banner li .container {
    padding-bottom: 0;
  }
}
.view-wizards-wpn-product-detail-banner li img {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.view-wizards-wpn-product-detail-banner .hero-title {
  font-family: "Roboto Condensed", sans-serif;
  color: #ffffff;
  font-size: 55px;
  line-height: 58px;
  text-transform: uppercase;
  margin-bottom: 0;
  text-shadow: #333 1px 1px 1px;
  width: 70%;
}
.view-wizards-wpn-product-detail-banner .subheading {
  font-style: italic;
  font-family: "Georgia", serif;
  text-shadow: #333 1px 1px 1px;
  width: 50%;
}
.view-wizards-wpn-product-detail-banner .summary {
  margin: 20px 0;
  line-height: 1.2em;
  width: 45%;
  text-shadow: #333 1px 1px 1px;
}
.view-wizards-wpn-product-detail-banner .product-dates {
  width: 50%;
  text-shadow: #333 1px 1px 1px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .view-wizards-wpn-product-detail-banner .product-dates {
    display: block;
  }
}
.view-wizards-wpn-product-detail-banner .product-dates .date-container,
.view-wizards-wpn-product-detail-banner .product-dates .custom-dates {
  width: calc(50% - 10px);
}
@media (max-width: 767px) {
  .view-wizards-wpn-product-detail-banner .product-dates .date-container,
  .view-wizards-wpn-product-detail-banner .product-dates .custom-dates {
    width: 100%;
  }
}
.view-wizards-wpn-product-detail-banner .product-dates .date-container p, .view-wizards-wpn-product-detail-banner .product-dates .date-container .field-name-field-ad-label-description .field-item,
.view-wizards-wpn-product-detail-banner .product-dates .custom-dates p,
.view-wizards-wpn-product-detail-banner .product-dates .custom-dates .field-name-field-ad-label-description .field-item {
  font-family: "Georgia", serif;
  font-style: italic;
  margin-bottom: 0;
  color: #ffffff;
  margin-top: 10px;
}
.view-wizards-wpn-product-detail-banner .product-dates .date-container ul,
.view-wizards-wpn-product-detail-banner .product-dates .custom-dates ul {
  list-style: none;
  padding: 0;
  display: block;
}
.view-wizards-wpn-product-detail-banner .product-dates .date-container ul li,
.view-wizards-wpn-product-detail-banner .product-dates .custom-dates ul li {
  padding-bottom: 20px;
}
.view-wizards-wpn-product-detail-banner .product-dates .date-container.product-release,
.view-wizards-wpn-product-detail-banner .product-dates .date-container.launch,
.view-wizards-wpn-product-detail-banner .product-dates .custom-dates li {
  border-bottom: 1px dashed #dddddd;
  padding-bottom: 10px !important;
}
.view-wizards-wpn-product-detail-banner .product-dates .field-content {
  color: #dddddd;
}

/* Related Events */
.section-products .body-center-column .panel-pane:nth-child(odd) {
  background: #ffffff;
  margin: 0 -30px;
  padding: 30px;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 {
  padding-top: 30px;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events:after {
  content: "";
  height: 0;
  display: block;
  overflow: hidden;
  visibility: hidden;
  clear: both;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row {
  text-align: left;
  margin-bottom: 30px;
  margin-right: 48px;
  font-weight: bold;
  min-height: 340px;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -34px;
  margin-left: -86px;
  z-index: 99;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row .logo a {
  display: block;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row .visual {
  margin-bottom: 10px;
  position: relative;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row .visual img {
  width: 100%;
  height: auto;
  display: block;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Open Sans", Arial, sans-serif;
  color: #3e3e3e;
  font-size: 18px;
  line-height: 1.2em;
  min-height: 60px;
}
@media (max-width: 768px) {
  .section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row h2 {
    min-height: 0;
    max-height: none;
  }
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row h2 + .field-content {
  font-family: "Georgia", serif;
  font-style: italic;
  font-weight: normal;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row h2 + .field-content + .field-content {
  display: inline;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row h2 + .field-content + .field-content .date-display-single {
  font-weight: normal;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row .date-display-start, .section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row .date-display-end {
  font-weight: normal;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row.views-row-last {
  margin-right: 0;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row:nth-child(3n+3) {
  margin-right: 0;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row .sprite-event-level {
  padding-top: 10px;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #dddddd;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row .sprite-event-level ul {
  margin: 0;
  padding: 0;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row .sprite-event-level ul li {
  font-weight: normal;
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-countdown {
  float: none;
  margin-left: 25%;
  margin-top: 20px;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-countdown span.days-left {
  color: #3e3e3e;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-countdown + .event-schedule-close {
  display: none;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-schedule-close, .section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-schedule-open {
  margin: 20px 20px 30px 10px;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-schedule-close .global-calendar, .section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-schedule-open .global-calendar {
  color: #3e3e3e;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-schedule-close div span.month, .section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-schedule-close div span.year, .section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-schedule-close div span.day, .section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-schedule-open div span.month, .section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-schedule-open div span.year, .section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-schedule-open div span.day {
  color: #3e3e3e;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-schedule-close {
  float: right;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-schedule-open {
  float: left;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-details {
  clear: both;
  padding-top: 20px;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-details a {
  display: inline-block;
  background: #3e3e3e;
  color: #fff;
  height: 30px;
  line-height: 30px;
  padding-left: 40px;
  padding-right: 10px;
  background: url(../images/button-forms.png) 0 -62px no-repeat;
  text-transform: uppercase;
  font-weight: normal;
}
.section-products .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .event-details a:hover {
  background-position: 0 0;
}

/* Product Tabs */
.pane-node-field-products-section {
  margin: 0 -30px;
  padding: 30px;
  /* main content product tab */
  /* tab navigation */
}
.pane-node-field-products-section .ui-widget-content {
  border: none;
  background: none;
}
.pane-node-field-products-section .ui-widget-content a {
  color: #d0123e;
}
.pane-node-field-products-section .ui-corner-bottom {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.pane-node-field-products-section .ui-tabs {
  padding: 0;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel {
  background: #f6f6f6;
  border: 1px solid #ccc;
  color: #3e3e3e;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-collection-item-field-products-section h2 {
  margin: 0 0 15px;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-collection-item-field-products-section .field-name-field-product-c-title {
  margin: 0;
  font-size: 36px;
  line-height: 36px;
  font-family: "Open Sans", Arial, sans-serif;
  color: #3e3e3e;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-subheading {
  font-size: 14px;
  color: #3e3e3e;
  margin-bottom: 10px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px dashed #dddddd;
}
@media (max-width: 480px) {
  .pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-code.field-label-inline .field-items, .pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-code.field-label-inline .field-label {
    float: none !important;
  }
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel a.upc-code {
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel a.upc-code:hover, .pane-node-field-products-section .ui-tabs .ui-tabs-panel a.upc-code:focus {
  text-decoration: underline;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel a.upc-code:after {
  content: "";
  width: 30px;
  height: 21px;
  display: block;
  position: absolute;
  right: -35px;
  top: 1px;
  background: url(../images/upc-code-icon.png) 0 0 no-repeat;
  cursor: pointer;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-release-date,
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-release-date-txt {
  margin-bottom: 30px;
  font-style: italic;
  font-family: "Georgia", serif;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-release-date .field-label,
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-release-date-txt .field-label {
  margin-right: 10px;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-description {
  margin-bottom: 30px;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-description .field-label {
  font-size: 24px;
  margin-bottom: 20px;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-image {
  text-align: center;
  width: 300px;
  padding: 0 10px;
  margin-top: 50px;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: inline;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-image .field-name-field-sub-image {
  text-align: center;
  margin-bottom: 20px;
  display: block;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-products-c-contents {
  clear: left;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-products-c-contents .field-label {
  font-size: 24px;
  margin-bottom: 20px;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-sub-image {
  display: none;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-sub-image .field-label {
  display: none;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-nav {
  padding: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: 1px solid #ccc;
  background: none;
  border-right: none;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-nav li {
  margin: 0;
  padding: 0;
  border: none;
  border-bottom: 1px solid #dddddd !important;
  top: 0;
  background: none;
  width: 100%;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  position: relative;
  box-sizing: border-box;
  /* tabs title */
}
.pane-node-field-products-section .ui-tabs .ui-tabs-nav li a {
  padding: 10px 15px;
  margin: 0;
  white-space: normal;
  color: #3e3e3e;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-nav li.ui-state-active {
  border-left: 4px solid #d0123e;
  background: #f0f0f0;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-nav li.ui-state-active a {
  padding-left: 11px;
  color: inherit;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-nav li.ui-state-active:after {
  content: '';
  background: url("../images/tab-arrow-small.png") no-repeat right center;
  width: 20px;
  height: 20px;
  position: absolute;
  right: -10px;
  top: 13px;
}
.pane-node-field-products-section .ui-tabs .ui-tabs-nav li.first {
  background: #3e3e3e;
  color: #dddddd;
  padding: 35px 0 35px 15px;
  font-weight: normal;
  font-size: 18px;
}

/* videos section */
.pane-wizards-wpn-product-detail-video-panel-pane-1 {
  clear: both;
}
.pane-wizards-wpn-product-detail-video-panel-pane-1 .pane-title {
  font-size: 32px;
  line-height: 38px;
  margin: 20px 0;
}
.pane-wizards-wpn-product-detail-video-panel-pane-1 .media-youtube-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  margin-bottom: 30px;
}
.pane-wizards-wpn-product-detail-video-panel-pane-1 .media-youtube-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pane-wizards-wpn-product-detail-video-panel-pane-1 .pager-load-more a {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  display: block;
  background: #d0123e;
  padding: 10px 0;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
}

/* Files Downloads */
.pane-wizards-wpn-product-detail-product-files-panel-pane-1 .pane-title {
  font-size: 32px;
  line-height: 38px;
}
.pane-wizards-wpn-product-detail-product-files-panel-pane-1 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pane-wizards-wpn-product-detail-product-files-panel-pane-1 .views-row {
  margin: 20px 0;
  padding-bottom: 20px;
}
.pane-wizards-wpn-product-detail-product-files-panel-pane-1 .views-row .file {
  background-position: 0 -56px;
  height: 32px;
  width: 32px;
  padding-left: 40px;
  padding-bottom: 15px;
}
.pane-wizards-wpn-product-detail-product-files-panel-pane-1 .views-row .file img {
  display: none;
}
.pane-wizards-wpn-product-detail-product-files-panel-pane-1 a {
  color: #d0123e;
}

/* Related Articles */
.pane-wiz-wpn-associated-content-view-panel-pane-2 {
  /* one item */
  /* two items */
  /* three items */
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .view-content:after, .pane-wiz-wpn-associated-content-view-panel-pane-2 .view-wrapper:after {
  content: ".";
  width: 0;
  height: 0;
  display: block;
  overflow: hidden;
  clear: both;
  visibility: hidden;
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .view-wrapper {
  border-bottom: 1px solid #dddddd;
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .view-wrapper:last-child {
  border-bottom: none;
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .views-row:nth-child(1):nth-last-child(1) {
  width: 100%;
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .views-row:nth-child(1):nth-last-child(2),
.pane-wiz-wpn-associated-content-view-panel-pane-2 .views-row:nth-child(2):nth-last-child(1) {
  width: 50%;
  float: left;
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .views-row:nth-child(1):nth-last-child(2) .item-list {
  border-right: 1px solid #dddddd;
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .views-row:nth-child(1):nth-last-child(3),
.pane-wiz-wpn-associated-content-view-panel-pane-2 .views-row:nth-child(2):nth-last-child(2),
.pane-wiz-wpn-associated-content-view-panel-pane-2 .views-row:nth-child(3):nth-last-child(1) {
  width: 33.3333%;
  float: left;
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .views-row:nth-child(1):nth-last-child(3) .item-list, .pane-wiz-wpn-associated-content-view-panel-pane-2 .views-row:nth-child(2):nth-last-child(2) .item-list {
  border-right: 1px solid #dddddd;
  display: table;
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .views-row .item-list {
  width: 100%;
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .pane-title {
  background: #3e3e3e;
  font-family: "Open Sans", Arial, sans-serif;
  color: white;
  padding: 10px 30px;
  margin: 30px 0 0;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-transform: none;
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .view-wiz-wpn-associated-content-view {
  background: #ffffff;
  padding: 0;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .view-wiz-wpn-associated-content-view ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .view-wiz-wpn-associated-content-view li {
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0;
  margin-left: 0;
  padding: 30px 30px 30px 55px;
  position: relative;
  display: table-cell;
  vertical-align: middle;
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .view-wiz-wpn-associated-content-view li a {
  color: #d0123e;
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .view-wiz-wpn-associated-content-view .article li, .pane-wiz-wpn-associated-content-view-panel-pane-2 .view-wiz-wpn-associated-content-view .document li {
  background: url("../images/related-articles/document.png") no-repeat 10px center;
}
.pane-wiz-wpn-associated-content-view-panel-pane-2 .view-wiz-wpn-associated-content-view .product li {
  background: url("../images/related-articles/product.png") no-repeat 10px center;
}

.node-type-product {
  /* Body Content */
}
.node-type-product .pane-node-body {
  padding-bottom: 30px;
}
.node-type-product .item-list select {
  display: none;
}
@media (max-width: 768px) {
  .node-type-product {
    /* one item */
    /* two items */
    /* three items */
  }
  .node-type-product .views-row:nth-child(1):nth-last-child(1) {
    width: 100%;
  }
  .node-type-product .views-row:nth-child(1):nth-last-child(2),
  .node-type-product .views-row:nth-child(2):nth-last-child(1) {
    width: 100%;
    float: none;
  }
  .node-type-product .views-row:nth-child(1):nth-last-child(3),
  .node-type-product .views-row:nth-child(2):nth-last-child(2),
  .node-type-product .views-row:nth-child(3):nth-last-child(1) {
    width: 100%;
    float: none;
  }
  .node-type-product .view-wrapper {
    border-bottom: none;
  }
  .node-type-product .views-row:nth-child(1):nth-last-child(3) .item-list, .node-type-product .views-row:nth-child(2):nth-last-child(2) .item-list {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .node-type-product .item-list ul.chzn-results {
    display: block;
  }
  .node-type-product .item-list select {
    display: inline-block;
  }
  .node-type-product .pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-image {
    margin-top: 0;
  }
  .node-type-product .pane-node-field-tradekit {
    padding-bottom: 0;
  }
  .node-type-product .pane-node-field-tradekit fieldset:last-child {
    margin-bottom: 0;
  }
  .node-type-product .pane-node-field-tradekit fieldset:last-child legend {
    margin-bottom: 0;
  }
  .node-type-product .pane-node-body {
    padding-bottom: 0;
  }
}
/* Mobile Specific */
@media all and (max-width: 1045px) {
  .node-type-product .view-wizards-wpn-product-detail-banner .page-inner {
    padding-top: 30px;
  }
  .node-type-product .view-wizards-wpn-product-detail-banner .hero-title {
    font-size: 2em;
    line-height: 1em;
    text-align: center;
    display: inline;
  }
  .node-type-product .view-wizards-wpn-product-detail-banner .subheading {
    text-align: center;
    width: auto;
  }
  .node-type-product .view-wizards-wpn-product-detail-banner .summary {
    width: 100%;
  }
  .node-type-product .view-wizards-wpn-product-detail-banner .product-dates {
    width: 100%;
  }

  .view-wizards-wpn-product-detail-related-events .event-countdown {
    margin-left: 0;
    float: left;
    margin-bottom: 50px;
  }
  .view-wizards-wpn-product-detail-related-events .event-countdown + .event-schedule-close {
    display: block;
    margin-left: 40px;
    margin-top: 50px;
    width: 100px;
  }
  .view-wizards-wpn-product-detail-related-events .event-details {
    margin-left: 0;
    clear: left;
  }
  .view-wizards-wpn-product-detail-related-events .views-row .sprite-event-level ul li {
    font-size: 12px;
  }

  /* related events */
  .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .pane-title {
    font-size: 32px;
    line-height: 38px;
  }
  .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events {
    min-height: 300px;
  }
  .pane-wizards-wpn-product-detail-related-events-panel-pane-1 .view-wizards-wpn-product-detail-related-events .views-row {
    width: 100%;
    float: left;
    display: block;
    text-align: left;
  }

  .pane-node-field-tradekit {
    width: 100%;
    float: none;
    clear: both;
  }

  /* associated products */
  .pane-node-field-products-section {
    clear: left;
  }

  /* associated products tabs */
  .pane-wizards-wpn-product-detail-product-files-panel-pane-1 {
    clear: left;
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    margin-bottom: 20px;
  }

  .pane-node-field-products-section .item-list {
    margin-bottom: 30px;
  }
  .pane-node-field-products-section .item-list .chzn-container {
    width: 100% !important;
  }
  .pane-node-field-products-section .ui-tabs .ui-tabs-nav {
    display: none;
  }
  .pane-node-field-products-section .ui-tabs .ui-tabs-panel {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    background: #ffffff;
    padding: 0;
    border: none;
  }
  .pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-image {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  .pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-description {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  .pane-node-field-products-section .ui-tabs .ui-tabs-panel .field-name-field-product-c-description .field-label {
    font-size: 24px;
  }

  /* related articles sidebar */
  .pane-wiz-wpn-associated-content-view-panel-pane-2 {
    margin-bottom: 30px;
  }

  /* videos */
  .pane-wizards-wpn-product-detail-video-panel-pane-1 {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  .pane-wizards-wpn-product-detail-video-panel-pane-1 .pane-title {
    clear: left;
  }
  .pane-wizards-wpn-product-detail-video-panel-pane-1 .view-wizards-wpn-product-detail-video {
    clear: left;
  }

  /* Files downloads */
  .view-wizards-wpn-product-detail-product-files a {
    color: #d0123e;
  }

  /* body content */
  .node-type-product .pane-node-body {
    clear: left;
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }
  .node-type-product .pane-node-body .field-type-text-with-summary {
    padding: 0;
  }
  .node-type-product .chzn-container-single {
    display: block !important;
    width: 100% !important;
    margin-bottom: 20px;
  }
  .node-type-product ul.mobile-switch {
    display: none !important;
  }
}
.page-resources-distributors .full-width-header {
  background: #101010;
}
.page-resources-distributors .pane-distributor-landing {
  max-width: 970px;
  color: #dddddd;
  margin: 0 auto;
  min-height: 180px;
  font-family: "Georgia", serif;
  font-style: italic;
  padding: 40px 30px;
}
.page-resources-distributors .pane-distributor-landing .pane-title {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 64px;
  color: #ffffff;
  font-style: normal;
  line-height: 72px;
}
.page-resources-distributors .view-wizards-wpn-distributors-listing {
  padding: 0 0 30px;
  /* Sort filters */
}
.page-resources-distributors .view-wizards-wpn-distributors-listing .view-header {
  width: 75%;
  float: left;
}
.page-resources-distributors .view-wizards-wpn-distributors-listing .view-header p {
  margin: 0;
}
.page-resources-distributors .view-wizards-wpn-distributors-listing .view-filters .views-exposed-form .views-exposed-widget {
  margin: 0 !important;
  padding: 0;
  float: right !important;
}
.page-resources-distributors .view-wizards-wpn-distributors-listing .view-filters .views-widget-sort-by label {
  display: none !important;
}
.page-resources-distributors .view-wizards-wpn-distributors-listing .view-content {
  clear: both;
  padding-top: 10px;
}
.page-resources-distributors .view-wizards-wpn-distributors-listing .views-table {
  border: 1px solid #ccc;
  color: #101010;
}
.page-resources-distributors .view-wizards-wpn-distributors-listing .views-table thead {
  background: #dddddd;
}
.page-resources-distributors .view-wizards-wpn-distributors-listing .views-table thead tr {
  border-bottom: 1px solid #ccc;
}
.page-resources-distributors .view-wizards-wpn-distributors-listing .views-table thead th {
  padding: 20px 0;
  text-align: center;
}
.page-resources-distributors .view-wizards-wpn-distributors-listing .views-table tbody tr td {
  padding: 10px 0;
  text-align: center;
  border-right: 1px solid #ccc;
}
.page-resources-distributors .view-wizards-wpn-distributors-listing .views-table tbody tr td.active {
  background: inherit;
}
.page-resources-distributors .view-wizards-wpn-distributors-listing .views-table tbody tr.even {
  background-color: #e9e9e9;
  border-top: 1px solid #ffffff;
}
.page-resources-distributors .view-wizards-wpn-distributors-listing .views-table tbody tr.odd {
  background-color: #ffffff;
}

@media all and (max-width: 768px) {
  .page-resources-distributors .pane-distributor-landing {
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    min-height: 250px;
  }
  .page-resources-distributors .pane-distributor-landing .pane-title {
    font-size: 42px;
    line-height: 48px;
  }
  .page-resources-distributors .view-wizards-wpn-distributors-listing {
    /* Sort filters */
  }
  .page-resources-distributors .view-wizards-wpn-distributors-listing .view-header {
    width: 100%;
    margin-bottom: 30px;
  }
  .page-resources-distributors .view-wizards-wpn-distributors-listing .view-filters .views-exposed-form .views-exposed-widget {
    margin: 0 !important;
    padding: 0;
    float: none !important;
    width: 100%;
  }
  .page-resources-distributors .view-wizards-wpn-distributors-listing .view-filters .views-widget-sort-by label {
    display: none !important;
  }
  .page-resources-distributors .view-wizards-wpn-distributors-listing .view-filters .views-widget-sort-by .chzn-container {
    width: 100% !important;
  }
  .page-resources-distributors .view-wizards-wpn-distributors-listing .views-table thead {
    display: none;
  }
  .page-resources-distributors .view-wizards-wpn-distributors-listing .views-table tbody tr td {
    border-right: none;
    text-align: left;
    padding: 5px 0;
  }
  .page-resources-distributors .view-wizards-wpn-distributors-listing .views-table tbody .views-field-field-logo {
    float: none;
    text-align: center;
  }
  .page-resources-distributors .view-wizards-wpn-distributors-listing .views-table tbody .views-field-title {
    float: left;
    margin-right: 5px;
  }
  .page-resources-distributors .view-wizards-wpn-distributors-listing .views-table tbody .views-field-field-country {
    display: none;
  }
  .page-resources-distributors .view-wizards-wpn-distributors-listing .views-table tbody .views-field-field-city {
    float: left;
    margin-right: 5px;
    clear: left;
  }
  .page-resources-distributors .view-wizards-wpn-distributors-listing .views-table tbody .views-field-field-state {
    float: left;
    margin-right: 5px;
  }
  .page-resources-distributors .view-wizards-wpn-distributors-listing .views-table tbody .views-field-field-phone {
    float: left;
    clear: left;
  }
}
.ui-widget {
  font-family: "Open Sans", Arial, sans-serif;
  color: #3e3e3e;
  font-size: 16px;
}

.page-resources-rules-documents {
  /* Stylish Filters */
}
.page-resources-rules-documents .full-width-header {
  background: #101010;
}
.page-resources-rules-documents .contextual-links-wrapper {
  display: none !important;
}
.page-resources-rules-documents .pane-rules-documents-landing {
  max-width: 970px;
  color: #dddddd;
  margin: 0 auto;
  min-height: 180px;
  font-family: "Georgia", serif;
  font-style: italic;
  padding: 40px 30px;
}
.page-resources-rules-documents .pane-rules-documents-landing .pane-title {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 64px;
  color: #ffffff;
  font-style: normal;
  line-height: 72px;
}
.page-resources-rules-documents .pane-wiz-wpn-content-type-document-rules-and-docs-brand-tabs > .chzn-container-single {
  display: none !important;
}
.page-resources-rules-documents .pane-wiz-wpn-content-type-document-rules-and-docs-brand-tabs .pane-title {
  display: none;
}
.page-resources-rules-documents .pane-wiz-wpn-content-type-document-rules-and-docs-brand-tabs ul.mobile-switch {
  font-size: 0;
  list-style: none;
  margin: 0 -1px 10px 0;
  padding: 0;
  display: -webkit-flex;
  display: flex;
}
.page-resources-rules-documents .pane-wiz-wpn-content-type-document-rules-and-docs-brand-tabs ul.mobile-switch li {
  padding: 0 1px 0 0;
  text-align: center;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.page-resources-rules-documents .pane-wiz-wpn-content-type-document-rules-and-docs-brand-tabs ul.mobile-switch li a {
  font-size: 13px;
  background: #8e8e8e;
  color: #ffffff;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
}
.page-resources-rules-documents .pane-wiz-wpn-content-type-document-rules-and-docs-brand-tabs ul.mobile-switch li a.active {
  position: relative;
  background: #3e3e3e;
}
.page-resources-rules-documents .pane-wiz-wpn-content-type-document-rules-and-docs-brand-tabs ul.mobile-switch li a.active:after {
  background: url("../images/arrow-grey-active.png") no-repeat center bottom transparent;
  content: '';
  width: 21px;
  height: 10px;
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  margin: auto;
}
.page-resources-rules-documents .pane-wiz-wpn-content-type-document-rules-and-docs-brand-tabs ul.mobile-switch li a:hover {
  background: #3e3e3e;
}

@media all and (max-width: 768px) {
  .page-resources-rules-documents .chzn-container {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .page-resources-rules-documents .chzn-container .chzn-results {
    margin: 4px;
    padding: 0;
  }
  .page-resources-rules-documents .chzn-container .chzn-results li {
    text-align: left;
  }
  .page-resources-rules-documents .view-wizards-wpn-documents-listing .view-filters .views-widget-filter-field_document_type_value, .page-resources-rules-documents .view-wizards-wpn-documents-listing .view-filters .views-widget-sort-by {
    margin: 0;
    float: none;
    width: 100%;
  }
  .page-resources-rules-documents .view-wizards-wpn-documents-listing .view-filters .views-widget-filter-field_document_type_value .chzn-container, .page-resources-rules-documents .view-wizards-wpn-documents-listing .view-filters .views-widget-sort-by .chzn-container {
    width: 100% !important;
  }
  .page-resources-rules-documents .pane-rules-documents-landing {
    padding-right: 50px;
    text-align: center;
    min-height: 250px;
  }
  .page-resources-rules-documents .pane-rules-documents-landing .pane-title {
    font-size: 42px;
    line-height: 48px;
  }
  .page-resources-rules-documents .pane-wiz-wpn-content-type-document-rules-and-docs-brand-tabs > .chzn-container-single {
    display: block !important;
  }
  .page-resources-rules-documents .pane-wiz-wpn-content-type-document-rules-and-docs-brand-tabs > ul.mobile-switch {
    display: none !important;
  }
  .page-resources-rules-documents .views-widget-filter-keys {
    display: none;
  }
  .page-resources-rules-documents .ui-widget {
    padding-top: 0;
  }
  .page-resources-rules-documents .ui-widget .ui-tabs-nav {
    display: none;
  }
  .page-resources-rules-documents .ui-tabs .ui-tabs-panel {
    padding-top: 0;
  }
  .page-resources-rules-documents .view-wizards-wpn-documents-listing {
    padding: 0;
  }
  .page-resources-rules-documents .view-wizards-wpn-documents-listing .view-content {
    padding-top: 20px;
  }
  .page-resources-rules-documents .view-wizards-wpn-documents-listing .view-filters .views-widget-filter-field_document_type_value {
    margin-left: 0;
    float: left;
  }
  .page-resources-rules-documents .view-wizards-wpn-documents-listing .view-filters .chzn-container {
    width: 110px !important;
  }
  .page-resources-rules-documents .view-wizards-wpn-documents-listing .view-filters .views-widget-sort-by {
    float: left;
  }
}
.page-resources-rules-documents .rules-documents-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.page-resources-rules-documents .rules-documents-container, .page-resources-rules-documents .rules-documents-container * {
  box-sizing: border-box;
}
.page-resources-rules-documents .rules-documents-container section {
  width: 75%;
  margin-bottom: 30px;
  padding-right: 30px;
}
.page-resources-rules-documents .rules-documents-container aside {
  width: 25%;
}
@media (max-width: 1023px) {
  .page-resources-rules-documents .rules-documents-container {
    width: auto;
    display: block;
  }
  .page-resources-rules-documents .rules-documents-container section {
    width: auto;
    padding: 0;
  }
  .page-resources-rules-documents .rules-documents-container aside {
    width: auto;
  }
}
.page-resources-rules-documents .search-bar {
  width: 100%;
  margin-bottom: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.page-resources-rules-documents .search-bar .search-bar_search {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.page-resources-rules-documents .search-bar .search-bar_search:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url('../images/search.svg?1599154334') 50% 50%/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 15px;
  bottom: 0;
}
.page-resources-rules-documents .search-bar .search-bar_actions {
  padding-left: 2px;
}
.page-resources-rules-documents .search-bar input {
  color: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
}
.page-resources-rules-documents .search-bar input[type="text"] {
  width: 100%;
  margin: 0;
  padding: 10px 44px 10px 10px;
  border: 1px solid #ccc;
  outline: 0;
  background: white;
}
.page-resources-rules-documents .search-bar input[type="text"]::-webkit-input-placeholder {
  color: inherit;
  font-style: italic;
}
.page-resources-rules-documents .search-bar input[type="text"]::-moz-placeholder {
  color: inherit;
  font-style: italic;
}
.page-resources-rules-documents .search-bar input[type="text"]:-ms-input-placeholder {
  color: inherit;
  font-style: italic;
}
.page-resources-rules-documents .search-bar input[type="text"]:-moz-placeholder {
  color: inherit;
  font-style: italic;
}
.page-resources-rules-documents .search-bar input[type="text"]::placeholder {
  color: inherit;
  font-style: italic;
}
.page-resources-rules-documents .search-bar input[type="submit"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  background: #ccc;
}
.page-resources-rules-documents .search-bar input[type="submit"]:hover {
  color: white;
  border-color: #3e3e3e;
  background: #3e3e3e;
}
@media (max-width: 767px) {
  .page-resources-rules-documents .search-bar {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page-resources-rules-documents .search-bar .search-bar_search,
  .page-resources-rules-documents .search-bar .search-bar_actions {
    width: 100%;
  }
  .page-resources-rules-documents .search-bar .search-bar_actions {
    padding: 2px 0 0;
  }
}
.page-resources-rules-documents table.rules-and-documents {
  font-size: 14px;
  line-height: 1.2em;
  margin: 0;
  padding: 0;
  border: 0;
  border-spacing: 0;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .page-resources-rules-documents table.rules-and-documents {
    border-top: 1px solid #ccc;
  }
}
.page-resources-rules-documents table.rules-and-documents tr {
  padding: 0;
  border: 0;
  background: none;
}
.page-resources-rules-documents table.rules-and-documents tr th,
.page-resources-rules-documents table.rules-and-documents tr td {
  font-weight: normal;
  text-align: center;
  border-width: 1px 0 1px 1px;
  border-style: solid;
  border-color: #ccc;
  margin: 0;
  padding: 15px 10px;
}
.page-resources-rules-documents table.rules-and-documents tr th:last-child,
.page-resources-rules-documents table.rules-and-documents tr td:last-child {
  border-right-width: 1px;
}
.page-resources-rules-documents table.rules-and-documents tr th img,
.page-resources-rules-documents table.rules-and-documents tr th svg,
.page-resources-rules-documents table.rules-and-documents tr td img,
.page-resources-rules-documents table.rules-and-documents tr td svg {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: inline-block;
}
.page-resources-rules-documents table.rules-and-documents tr th.logo,
.page-resources-rules-documents table.rules-and-documents tr td.logo {
  width: 150px;
}
.page-resources-rules-documents table.rules-and-documents tr th.category,
.page-resources-rules-documents table.rules-and-documents tr td.category {
  width: 130px;
  padding-right: 10px;
}
.page-resources-rules-documents table.rules-and-documents tr th.updated-date,
.page-resources-rules-documents table.rules-and-documents tr td.updated-date {
  width: 130px;
}
.page-resources-rules-documents table.rules-and-documents tr th.links,
.page-resources-rules-documents table.rules-and-documents tr td.links {
  width: 96px;
}
.page-resources-rules-documents table.rules-and-documents tr th.links ul,
.page-resources-rules-documents table.rules-and-documents tr td.links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-resources-rules-documents table.rules-and-documents tr th.links a,
.page-resources-rules-documents table.rules-and-documents tr td.links a {
  font-size: 0;
  text-indent: -999px;
  width: 32px;
  height: 32px;
  outline: none;
  background: url(../images/global/download.png) no-repeat center center;
  display: inline-block;
  overflow: hidden;
}
.page-resources-rules-documents table.rules-and-documents tr th {
  font-weight: bold;
}
.page-resources-rules-documents table.rules-and-documents tr:nth-child(even) th,
.page-resources-rules-documents table.rules-and-documents tr:nth-child(even) td {
  background: #e9e9e9;
}
@media (max-width: 767px) {
  .page-resources-rules-documents table.rules-and-documents tr {
    padding: 10px 68px 10px 10px;
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: #ccc;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .page-resources-rules-documents table.rules-and-documents tr:nth-child(odd) {
    background: #e9e9e9;
  }
  .page-resources-rules-documents table.rules-and-documents tr th,
  .page-resources-rules-documents table.rules-and-documents tr td {
    text-align: left;
    width: 100%;
    padding: 3px 0;
    border: 0;
    background: none !important;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
  }
  .page-resources-rules-documents table.rules-and-documents tr th img,
  .page-resources-rules-documents table.rules-and-documents tr th svg,
  .page-resources-rules-documents table.rules-and-documents tr td img,
  .page-resources-rules-documents table.rules-and-documents tr td svg {
    max-width: none;
    max-height: 100%;
  }
  .page-resources-rules-documents table.rules-and-documents tr th.logo,
  .page-resources-rules-documents table.rules-and-documents tr td.logo {
    height: 40px;
  }
  .page-resources-rules-documents table.rules-and-documents tr th.category, .page-resources-rules-documents table.rules-and-documents tr th.updated-date,
  .page-resources-rules-documents table.rules-and-documents tr td.category,
  .page-resources-rules-documents table.rules-and-documents tr td.updated-date {
    width: auto;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
  }
  .page-resources-rules-documents table.rules-and-documents tr th.links,
  .page-resources-rules-documents table.rules-and-documents tr td.links {
    width: 68px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }
  .page-resources-rules-documents table.rules-and-documents tr th.links a,
  .page-resources-rules-documents table.rules-and-documents tr td.links a {
    margin: -16px 0 0 -16px;
    position: absolute;
    top: 50%;
    left: 50%;
  }
}
.page-resources-rules-documents table.rules-and-documents thead th,
.page-resources-rules-documents table.rules-and-documents thead td {
  background: #ddd;
}
@media (max-width: 767px) {
  .page-resources-rules-documents table.rules-and-documents thead {
    display: none;
  }
}
.page-resources-rules-documents .pager-load-more li {
  padding: 0;
}
.page-resources-rules-documents .pager-load-more li a {
  color: white;
  text-transform: uppercase;
  line-height: 40px;
  padding: 0 20px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .page-resources-rules-documents .pager-load-more {
    margin-top: 0;
  }
}
.page-resources-rules-documents aside h2 {
  font-size: 30px;
  line-height: 1.2em;
  margin: 0 0 15px 0;
}
.page-resources-rules-documents aside .articles-list {
  font-size: 14px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-resources-rules-documents aside .articles-list .articles-list_item {
  width: 100%;
  margin-bottom: 30px;
}
.page-resources-rules-documents aside .articles-list .articles-list_item a {
  color: inherit;
  display: block;
}
.page-resources-rules-documents aside .articles-list .articles-list_item a img {
  width: 100%;
  height: auto;
  margin: 0 0 10px;
  padding: 0;
  display: block;
}
.page-resources-rules-documents aside .articles-list .articles-list_item a h3 {
  color: inherit;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.page-resources-rules-documents aside .articles-list .articles-list_item a p {
  color: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
}
.page-resources-rules-documents aside .articles-list .articles-list_item a p .date {
  display: inline-block;
}
.page-resources-rules-documents aside .articles-list .articles-list_item a p .read-time {
  color: #7b7b7b;
  padding-left: 20px;
  position: relative;
  display: inline-block;
}
.page-resources-rules-documents aside .articles-list .articles-list_item a p .read-time:before {
  content: "";
  width: 14px;
  height: 14px;
  background: url('../images/clock.png?1599154334') 50% 50%/contain no-repeat;
  position: absolute;
  top: .35em;
  left: 0;
}
.page-resources-rules-documents aside .articles-list .articles-list_item a:hover h3 {
  color: #d0123e;
}
@media (max-width: 1023px) {
  .page-resources-rules-documents aside .articles-list {
    margin-left: -15px;
    margin-right: -15px;
  }
  .page-resources-rules-documents aside .articles-list .articles-list_item {
    width: 50%;
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .page-resources-rules-documents aside .articles-list {
    margin-left: 0;
    margin-right: 0;
  }
  .page-resources-rules-documents aside .articles-list .articles-list_item {
    width: 100%;
    padding: 0;
  }
}

.master-icons-sprite, .master-icons-add-location, .master-icons-application, .master-icons-become-part-of-network, .master-icons-deck-checklist, .master-icons-direct-sales, .master-icons-event-rules, .master-icons-find-distributors, .master-icons-folder, .master-icons-grow-gaming-community, .master-icons-invite-event-organizer, .master-icons-marketing-materials, .master-icons-notebook, .master-icons-phone, .master-icons-product-barcode, .master-icons-product, .master-icons-products, .master-icons-program-instructions, .master-icons-retail-location, .master-icons-retailer, .master-icons-store-audit-organized-play, .master-icons-store-audit-presentation, .master-icons-store-audit-retail, .master-icons-trade-show-icon-120_0, .master-icons-tradeshow, .master-icons-update-store-information, .master-icons-user-info, .master-icons-wizard-calendar {
  background-image: url('../images/master-icons-sbbee3aa6f8.png');
  background-repeat: no-repeat;
}

/*
*
* Layout
*
*/
.page-join-wpn-article .pane-join-wpn-banner .top-header {
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
}
.page-join-wpn-article .pane-join-wpn-banner .top-img-container {
  float: left;
  width: 50%;
  margin-left: 50%;
  margin-right: -100%;
}
.page-join-wpn-article a.button {
  display: inline-block;
  background: url(../images/button-forms.png) 0 0 no-repeat;
  height: 30px;
  line-height: 30px;
  padding-left: 42px;
  padding-right: 10px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  margin: 10px;
  appearance: none !important;
  -moz-appearance: none !important;
  /* Firefox */
  -webkit-appearance: none !important;
  /* Safari and Chrome */
  font-family: "Open Sans", Arial, sans-serif !important;
  font-style: normal !important;
}
.page-join-wpn-article a.button:hover {
  background-position: 0 -92px;
  color: #fff;
}

.page-join-wpn-article .full-width-header {
  background: #101010;
}

.page-join-wpn-article form.webform-client-form .form-item {
  width: 48%;
  float: left;
  margin: 1%;
}
.page-join-wpn-article form.webform-client-form .form-item input {
  height: 40px;
}
.page-join-wpn-article form.webform-client-form .form-actions {
  clear: both !important;
  text-align: center;
  padding: 10px 0;
  border: none !important;
}
.page-join-wpn-article form.webform-client-form .form-actions .form-submit {
  float: none !important;
}

.pane-join-wpn-banner {
  max-width: 970px;
  margin: 0 auto;
  padding: 80px 30px 0;
  height: 410px;
}
.pane-join-wpn-banner .top-header h1 {
  margin: 0;
  color: #ffffff;
  font-size: 60px;
  line-height: 55px;
}
.pane-join-wpn-banner .top-header h2, .pane-join-wpn-banner .top-header h3 {
  color: #dddddd;
  font-family: "Georgia", serif;
  font-weight: normal;
}
.pane-join-wpn-banner .top-body-link a {
  display: inline-block;
  background: url(../images/button-forms.png) 0 -30px no-repeat;
  height: 30px;
  line-height: 30px;
  padding-left: 42px;
  padding-right: 10px;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  margin: 10px 0;
}
.pane-join-wpn-banner .top-body-link a:hover {
  background-position: 0 0;
  color: #fff;
}

.pane-webform-client-block-309 .pane-title {
  font-size: 45px;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
}

.pane-join-wpn-why, .pane-join-wpn-how {
  margin-bottom: 40px;
}
.pane-join-wpn-why .pane-title, .pane-join-wpn-how .pane-title {
  font-size: 45px;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
}
.pane-join-wpn-why ul, .pane-join-wpn-how ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pane-join-wpn-why li, .pane-join-wpn-how li {
  display: inline-block;
  position: relative;
  border-right: 1px dashed #dddddd;
  padding: 0 16px;
  width: 30%;
  min-height: 200px;
}
.pane-join-wpn-why li.grow, .pane-join-wpn-how li.grow {
  background: url("../images/master-icons/grow-gaming-community.png") no-repeat center center;
}
.pane-join-wpn-why li.network, .pane-join-wpn-how li.network {
  background: url("../images/master-icons/become-part-of-network.png") no-repeat center center;
}
.pane-join-wpn-why li.materials, .pane-join-wpn-how li.materials {
  background: url("../images/master-icons/wizard-calendar.png") no-repeat 75px center;
}
.pane-join-wpn-why li.last, .pane-join-wpn-how li.last {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}
.pane-join-wpn-why li p, .pane-join-wpn-how li p {
  text-align: center;
  position: absolute;
  top: 150px;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #3e3e3e;
  margin: 6px auto;
  right: 0;
  left: 0;
}

.pane-join-wpn-why {
  margin-bottom: 20px;
}
.pane-join-wpn-why li p {
  top: 170px;
}

.pane-join-wpn-how ul {
  background: url("../images/join-how-bg.png") no-repeat center center;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding-bottom: 50px;
}
.pane-join-wpn-how li {
  text-align: center;
  border-right: none;
}
.pane-join-wpn-how li.location {
  background: url("../images/master-icons/retail-location.png") no-repeat center center;
}
.pane-join-wpn-how li.application {
  background: url("../images/master-icons/application.png") no-repeat center center;
}
.pane-join-wpn-how li.application .see-more {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 190px;
  margin: auto;
}
.pane-join-wpn-how li.application .see-more a {
  display: inline-block;
  background: url(../images/button-forms.png) 0 0 no-repeat;
  height: 30px;
  line-height: 30px;
  padding-left: 42px;
  padding-right: 10px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  margin: 10px 0;
}
.pane-join-wpn-how li.application .see-more a:hover {
  background-position: 0 -93px;
  color: #fff;
}
.pane-join-wpn-how li.contact {
  background: url("../images/master-icons/phone.png") no-repeat center center;
}

.pane-store-level-info {
  font-style: italic;
  font-family: "Georgia", serif;
  color: #898989;
  margin: 0 0 20px;
  font-size: 20px;
}
.pane-store-level-info .pane-title {
  font-size: 45px;
  line-height: 47px;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
}
.pane-store-level-info #quicktabs-storelevelinfo {
  font-family: "Open Sans", Arial, sans-serif !important;
  font-style: normal;
  font-size: 16px;
  color: #3e3e3e;
  margin: 30px 0;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list:after {
  overflow: hidden;
  *zoom: 1;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul {
  height: auto;
  margin: 0;
  padding: 0;
  border: solid #ccc 1px;
  border-bottom: none;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul:after {
  overflow: hidden;
  *zoom: 1;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li {
  background: url(../images/arrow-join-active.png) right 0 no-repeat;
  margin: 0 -9% 0 0;
  padding: 0;
  width: 33%;
  position: relative;
  z-index: 5;
  height: 212px;
  margin-left: 0%;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a {
  background: none;
  height: 212px;
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 99999999;
  text-align: center;
  line-height: 284px;
  color: #dddddd;
  font-size: 13px;
  position: relative;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a#quicktabs-tab-storelevelinfo-Advanced-Plus {
  background: url(../images/shields/advancedplus.png) center 54px no-repeat;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a#quicktabs-tab-storelevelinfo-Advanced {
  background: url(../images/shields/advanced.png) center 54px no-repeat;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a#quicktabs-tab-storelevelinfo-Core {
  background: url(../images/shields/gateway.png) center 54px no-repeat;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a#quicktabs-tab-storelevelinfo-Gateway {
  background: url(../images/shields/core.png) center 54px no-repeat;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:first-child, .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.first {
  z-index: 10;
  margin-left: 0;
  width: 29%;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:nth-child(2) {
  z-index: 8;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.last {
  z-index: 1;
  background: #eee;
  width: 30%;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.last.active {
  background: #fff;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:last-child {
  z-index: 1;
  background: #eee;
  width: 30%;
  margin-left: 2%;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:last-child.active, .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:last-child:hover {
  background: #fff;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active, .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:hover {
  background: url(../images/arrow-join.png) right 0 no-repeat;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active a, .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:hover a {
  font-size: 16px;
  color: #d0123e;
  line-height: 324px;
  position: relative;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active a#quicktabs-tab-storelevelinfo-Advanced-Plus, .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:hover a#quicktabs-tab-storelevelinfo-Advanced-Plus {
  background: url(../images/shields/advancedplus-selected.png) center 40px no-repeat;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active a#quicktabs-tab-storelevelinfo-Advanced, .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:hover a#quicktabs-tab-storelevelinfo-Advanced {
  background: url(../images/shields/advanced-selected.png) center 40px no-repeat;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active a#quicktabs-tab-storelevelinfo-Core, .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:hover a#quicktabs-tab-storelevelinfo-Core {
  background: url(../images/shields/core-selected.png) center 40px no-repeat;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active a#quicktabs-tab-storelevelinfo-Gateway, .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:hover a#quicktabs-tab-storelevelinfo-Gateway {
  background: url(../images/shields/gateway-selected.png) center 40px no-repeat;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active a:before, .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active a:after, .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:hover a:before, .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:hover a:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active a:before, .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:hover a:before {
  border-color: rgba(204, 204, 204, 0);
  border-top-color: #ccc;
  border-width: 18px;
  margin-left: -18px;
}
.pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active a:after, .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:hover a:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #fff;
  border-width: 17px;
  margin-left: -17px;
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core, .pane-store-level-info .quicktabs-tabpage {
  background: #eee;
  border: 1px solid #ccc;
  padding: 30px;
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core h2.mobile-title, .pane-store-level-info .quicktabs-tabpage h2.mobile-title {
  color: #d0123e !important;
  font-weight: bold !important;
  font-size: 40px !important;
  font-family: "Roboto Condensed", sans-serif !important;
  margin: 0 !important;
  padding: 0 !important;
  display: none;
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core h2, .pane-store-level-info .quicktabs-tabpage h2 {
  margin-top: 0;
  margin-bottom: 20px;
  clear: left;
  font-family: "Open Sans", Arial, sans-serif;
  color: #3e3e3e;
  font-size: 30px;
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements, .pane-store-level-info .quicktabs-tabpage .requirements {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  clear: both;
  width: 100%;
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li, .pane-store-level-info .quicktabs-tabpage .requirements li {
  float: left;
  width: 28.8%;
  border-right: 1px dashed #dddddd;
  padding: 0 2%;
  margin-bottom: 30px;
  padding-top: 120px;
  text-align: center;
  background-position: 50% 20px;
  background-repeat: no-repeat;
  /* Attendees */
  /* Events */
  /* Players */
  /* Delinquency */
  /* Other */
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.last, .pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li:nth-child(3n), .pane-store-level-info .quicktabs-tabpage .requirements li.last, .pane-store-level-info .quicktabs-tabpage .requirements li:nth-child(3n) {
  border-right: none;
  margin-right: 0;
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li:nth-child(3n+1), .pane-store-level-info .quicktabs-tabpage .requirements li:nth-child(3n+1) {
  clear: left;
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.join, .pane-store-level-info .quicktabs-tabpage .requirements li.join {
  background-image: url("../images/master-icons/application.png");
  background-position: 50% 14px;
  -moz-background-size: 81px;
  -o-background-size: 81px;
  -webkit-background-size: 81px;
  background-size: 81px;
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.one, .pane-store-level-info .quicktabs-tabpage .requirements li.one {
  background-image: url(../images/attendees/one-above.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.four, .pane-store-level-info .quicktabs-tabpage .requirements li.four {
  background-image: url(../images/attendees/four-above.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.six, .pane-store-level-info .quicktabs-tabpage .requirements li.six {
  background-image: url(../images/attendees/six-above.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.twelve, .pane-store-level-info .quicktabs-tabpage .requirements li.twelve {
  background-image: url(../images/attendees/twelve-above.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.twenty, .pane-store-level-info .quicktabs-tabpage .requirements li.twenty {
  background-image: url(../images/attendees/twenty-above.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.twenty-four, .pane-store-level-info .quicktabs-tabpage .requirements li.twenty-four {
  background-image: url(../images/attendees/twenty-four_above.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.thirty, .pane-store-level-info .quicktabs-tabpage .requirements li.thirty {
  background-image: url(../images/attendees/thirty-above.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.forty-eight, .pane-store-level-info .quicktabs-tabpage .requirements li.forty-eight {
  background-image: url(../images/attendees/forty-eight_above.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.eight-events, .pane-store-level-info .quicktabs-tabpage .requirements li.eight-events {
  background-image: url(../images/attendees/eight-events.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.twenty-events, .pane-store-level-info .quicktabs-tabpage .requirements li.twenty-events {
  background-image: url(../images/attendees/twenty-events2.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.onetwentyfive-events, .pane-store-level-info .quicktabs-tabpage .requirements li.onetwentyfive-events {
  background-image: url(../images/attendees/onetwentyfive-events.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.three-players, .pane-store-level-info .quicktabs-tabpage .requirements li.three-players {
  background-image: url(../images/attendees/three-players.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.fifteen-players, .pane-store-level-info .quicktabs-tabpage .requirements li.fifteen-players {
  background-image: url(../images/attendees/fifteen-players.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.thirtytwo-players, .pane-store-level-info .quicktabs-tabpage .requirements li.thirtytwo-players {
  background-image: url(../images/attendees/thirtytwo-players.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.twenty-players, .pane-store-level-info .quicktabs-tabpage .requirements li.twenty-players {
  background-image: url(../images/attendees/twenty-players.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.fifty-players, .pane-store-level-info .quicktabs-tabpage .requirements li.fifty-players {
  background-image: url(../images/attendees/fifty-players.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.fifty-players2, .pane-store-level-info .quicktabs-tabpage .requirements li.fifty-players2 {
  background-image: url(../images/attendees/fifty-players2.png);
  clear: both;
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.hundred-players, .pane-store-level-info .quicktabs-tabpage .requirements li.hundred-players {
  background-image: url(../images/attendees/hundred-players.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.twofifty-players, .pane-store-level-info .quicktabs-tabpage .requirements li.twofifty-players {
  background-image: url(../images/attendees/twofifty-players.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.zero-delinquency, .pane-store-level-info .quicktabs-tabpage .requirements li.zero-delinquency {
  background-image: url(../images/attendees/zero-delinquency.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.ten-delinquency, .pane-store-level-info .quicktabs-tabpage .requirements li.ten-delinquency {
  background-image: url(../images/attendees/ten-delinquency.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.onboarding, .pane-store-level-info .quicktabs-tabpage .requirements li.onboarding {
  background-image: url(../images/attendees/onboarding.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.sign-return-quality, .pane-store-level-info .quicktabs-tabpage .requirements li.sign-return-quality {
  background-image: url(../images/attendees/qualityagreement_final.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li.fraud-infractions, .pane-store-level-info .quicktabs-tabpage .requirements li.fraud-infractions {
  background-image: url(../images/attendees/fraudinfraction.png);
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li p, .pane-store-level-info .quicktabs-tabpage .requirements li p {
  color: #3e3e3e;
  margin: auto;
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .benefits, .pane-store-level-info .quicktabs-tabpage .benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
  -moz-column-width: 50%;
  -webkit-column-width: 50%;
  column-width: 50%;
}
.pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .benefits li, .pane-store-level-info .quicktabs-tabpage .benefits li {
  background: url("../images/red-checkbox.png") no-repeat left 5px;
  padding-left: 20px;
  padding-bottom: 10px;
  margin: 10px 5% 10px 0;
  border-bottom: 1px dashed #dddddd;
}

/* !-- Getting started panel -- */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.pane-join-wpn-article .getting-started {
  margin: 60px 0 45px;
}
.pane-join-wpn-article .getting-started h2 {
  font-size: 45px;
  line-height: normal;
  margin: 0;
  padding: 0;
}
.pane-join-wpn-article .getting-started .subtitle {
  color: #898989;
  font: italic normal 20px "Georgia", serif;
  margin: 0;
  padding: 0;
}
.pane-join-wpn-article .getting-started .getting-started-articles {
  color: #222;
  margin: 30px 0;
  padding: 0;
  border: 1px solid #bbb;
  background: #eee;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row {
  width: 100%;
  margin: 20px 0;
  display: table;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row .getting-started-article {
  padding: 0 20px;
  width: 33.33%;
  border-width: 0 1px 0 0;
  border-style: dashed;
  border-color: #d2d2d2;
  display: table-cell;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row .getting-started-article:nth-child(3n) {
  border-right-width: 0;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row .getting-started-article a.image {
  margin-bottom: 10px;
  display: block;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row .getting-started-article a.image img {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
  border: 0;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row .getting-started-article h3 {
  font-size: 18px;
  font-family: "Open Sans", Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row .getting-started-article h3 a {
  color: #222;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row .getting-started-article h3 a:hover {
  color: #d0123e;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row .getting-started-article p {
  font-size: 16px;
  text-align: left;
  margin: 0 0 .9em;
  padding: 0;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row .getting-started-article p.excerpt {
  font-size: 14px;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row .getting-started-article p.actions {
  margin-bottom: 0;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row .getting-started-article p.actions a {
  color: #d0123e;
  text-transform: none;
  padding: 0;
  background: none;
  display: inline;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row .getting-started-article p.actions a:hover {
  color: #3e3e3e;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row.row-items-3 {
  width: 100%;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row.row-items-3 .getting-started-article {
  width: 33.33%;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row.row-items-2 {
  width: 66.66%;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row.row-items-2 .getting-started-article {
  width: 50%;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row.row-items-1 {
  width: 33.33%;
}
.pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row.row-items-1 .getting-started-article {
  width: 100%;
}
@media (max-width: 768px) {
  .pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row {
    width: auto !important;
    margin: 0;
    display: block;
  }
  .pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row:last-of-type .getting-started-article:last-of-type {
    border-bottom-width: 0;
  }
  .pane-join-wpn-article .getting-started .getting-started-articles .getting-started-articles-row .getting-started-article {
    width: auto !important;
    padding: 0 0 20px;
    margin: 20px;
    border-width: 0 0 1px;
    display: block;
  }
}
.pane-join-wpn-article .getting-started .getting-started-articles .actions {
  text-align: center;
  margin: 0 0 20px;
  padding: 0 20px;
}
.pane-join-wpn-article .getting-started .getting-started-articles .actions a {
  color: #fff;
  text-transform: uppercase;
  padding: .3em 20px;
  background: #d0123e;
  display: inline-block;
}
.pane-join-wpn-article .getting-started .getting-started-articles .actions a:hover {
  background: #3e3e3e;
}

@media all and (max-width: 768px) {
  .page-join-wpn-article .pane-join-wpn-banner .top-header {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    text-align: center;
  }
  .page-join-wpn-article .pane-join-wpn-banner .top-header h1 {
    font-size: 32px;
    line-height: 34px;
  }
  .page-join-wpn-article .pane-join-wpn-banner .top-header .top-body-link {
    width: 260px;
    margin: auto;
  }
  .page-join-wpn-article .pane-join-wpn-banner .top-img-container {
    clear: left;
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    margin: 20px 0;
  }

  .pane-join-wpn-why ul li {
    width: 100%;
    float: none;
    display: block;
    padding: 0;
    border-right: none;
    border-bottom: 1px dashed #dddddd;
    padding-bottom: 30px;
  }
  .pane-join-wpn-why ul li p {
    margin: auto;
    top: 180px;
  }
  .pane-join-wpn-why ul li.materials {
    background: url("../images/master-icons/wizard-calendar.png") no-repeat center center;
  }

  .pane-join-wpn-how {
    margin-bottom: 30px;
  }
  .pane-join-wpn-how ul {
    background: url("../images/join-how-bg-vert.png") no-repeat center top;
    background-size: 320px;
    border: none;
    padding: 0;
    margin: 30px -30px 0 -30px;
  }
  .pane-join-wpn-how ul li {
    width: 100%;
    float: none;
    display: block;
    height: 267px;
    padding: 0;
  }
  .pane-join-wpn-how ul li.location {
    background-position: center 30px;
  }
  .pane-join-wpn-how ul li.location p {
    top: 120px;
  }
  .pane-join-wpn-how ul li.application {
    background-position: center 30px;
  }
  .pane-join-wpn-how ul li.application p {
    top: 130px;
  }
  .pane-join-wpn-how ul li.application .see-more {
    top: 170px;
  }
  .pane-join-wpn-how ul li.contact {
    background-position: center 30px;
  }
  .pane-join-wpn-how ul li.contact p {
    top: 130px;
  }

  .pane-store-level-info .quicktabs-tabpage {
    border-right-width: 0 !important;
    border-left-width: 0 !important;
  }
  .pane-store-level-info .quicktabs-tabpage h2.mobile-title {
    display: block !important;
  }
  .pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .benefits, .pane-store-level-info .quicktabs-tabpage .benefits {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
    -moz-column-width: 100%;
    -webkit-column-width: 100%;
    column-width: 100%;
  }
  .pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li, .pane-store-level-info .quicktabs-tabpage .requirements li {
    width: 100%;
    float: none;
  }
  .pane-store-level-info #quicktabs-tabpage-storelevelinfo-Core .requirements li, .pane-store-level-info .quicktabs-tabpage .requirements li {
    border: none;
    border-bottom: 1px dashed #dddddd;
    padding-bottom: 20px;
    border-right: none;
  }
  .pane-store-level-info .quicktabs-tabpage .benefits li {
    width: auto;
  }
  .pane-store-level-info #quicktabs-storelevelinfo {
    margin: 30px -30px 0  -30px;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list:after {
    overflow: hidden;
    *zoom: 1;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul {
    border-width: 1px 0;
    border-style: solid;
    border-color: #dddddd;
    position: relative;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul:after {
    overflow: hidden;
    *zoom: 1;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li {
    height: auto;
    width: 25% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #efefef !important;
    position: relative;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:before {
    content: "";
    width: 12px;
    background: url(../images/join-wpn/arrow-tab-item.png) 0 50% no-repeat;
    background-size: 200% 100%;
    position: absolute;
    top: 0;
    right: -12px;
    bottom: 0;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:last-child:before {
    display: none;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li:after {
    content: "";
    width: 28px;
    height: 14px;
    margin-left: -14px;
    background: url(../images/join-wpn/arrow-tab-current.png) 50% 0 no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: -14px;
    left: 55%;
    display: none;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a {
    text-indent: -9999px;
    height: 86px;
    outline: 0;
    background: none !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a:before {
    display: none;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a:after {
    content: "";
    width: 60px !important;
    height: 60px !important;
    margin: -30px 0 0 -30px !important;
    border: 0 !important;
    background: 50% 12px / 30px auto no-repeat !important;
    position: absolute !important;
    top: 50% !important;
    left: 55% !important;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a#quicktabs-tab-storelevelinfo-Advanced-Plus:after {
    background-image: url(../images/shields/advancedplus.png) !important;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a#quicktabs-tab-storelevelinfo-Advanced:after {
    background-image: url(../images/shields/advanced.png) !important;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a#quicktabs-tab-storelevelinfo-Core:after {
    background-image: url(../images/shields/gateway.png) !important;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a#quicktabs-tab-storelevelinfo-Gateway:after {
    background-image: url(../images/shields/core.png) !important;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active {
    background: white !important;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active:before {
    background-position: 100% 50%;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active:after {
    display: block;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active a:after,
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a:hover:after {
    background-size: 50px auto !important;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active a#quicktabs-tab-storelevelinfo-Advanced-Plus:after,
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a:hover#quicktabs-tab-storelevelinfo-Advanced-Plus:after {
    background-image: url(../images/shields/advancedplus-selected.png) !important;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active a#quicktabs-tab-storelevelinfo-Advanced:after,
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a:hover#quicktabs-tab-storelevelinfo-Advanced:after {
    background-image: url(../images/shields/advanced-selected.png) !important;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active a#quicktabs-tab-storelevelinfo-Core:after,
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a:hover#quicktabs-tab-storelevelinfo-Core:after {
    background-image: url(../images/shields/core-selected.png) !important;
  }
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li.active a#quicktabs-tab-storelevelinfo-Gateway:after,
  .pane-store-level-info #quicktabs-storelevelinfo .item-list ul li a:hover#quicktabs-tab-storelevelinfo-Gateway:after {
    background-image: url(../images/shields/gateway-selected.png) !important;
  }
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* !-- Legal Gate -- */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.legal-gate-lightbox {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
}
.legal-gate-lightbox, .legal-gate-lightbox::before, .legal-gate-lightbox::after,
.legal-gate-lightbox *,
.legal-gate-lightbox *::before,
.legal-gate-lightbox *::after {
  box-sizing: border-box;
  outline: none;
}
.legal-gate-lightbox * {
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}
.legal-gate-lightbox .fancybox-skin {
  border-radius: 0;
  padding: 0 !important;
  background: #f6f6f6;
}
.legal-gate-lightbox .fancybox-inner {
  overflow: visible !important;
  height: auto !important;
}
.legal-gate-lightbox .fancybox-close {
  width: 50px;
  height: 50px;
  top: 0;
  right: 0;
  background: none;
}
.legal-gate-lightbox .fancybox-close::before, .legal-gate-lightbox .fancybox-close::after {
  content: "";
  background: black;
  width: 24px;
  height: 6px;
  margin: -3px 0 0 -12px;
  position: absolute;
  top: 50%;
  left: 50%;
}
.legal-gate-lightbox .fancybox-close::before {
  transform: rotate(45deg);
}
.legal-gate-lightbox .fancybox-close::after {
  transform: rotate(-45deg);
}
.legal-gate-lightbox .legal-title {
  color: #3e3e3e;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.25;
  text-align: center;
  margin: 0;
}
@media (max-width: 767px) {
  .legal-gate-lightbox .legal-title {
    font-size: 24px;
  }
}
.legal-gate-lightbox .legal-gate {
  max-width: 800px;
  padding: 30px 70px 20px;
}
@media (max-width: 767px) {
  .legal-gate-lightbox .legal-gate {
    padding: 50px 10px;
  }
}
.legal-gate-lightbox .legal-gate-text {
  max-height: 50vh;
  text-align: left;
  padding: 20px 0;
  overflow: auto;
  overflow-x: hidden;
}
.legal-gate-lightbox .legal-gate-text h1,
.legal-gate-lightbox .legal-gate-text h2,
.legal-gate-lightbox .legal-gate-text h3,
.legal-gate-lightbox .legal-gate-text h4,
.legal-gate-lightbox .legal-gate-text h5,
.legal-gate-lightbox .legal-gate-text h6 {
  font-weight: bold;
  font-size: 18px;
  margin: 2em 0 .3em;
}
.legal-gate-lightbox .legal-gate-text p,
.legal-gate-lightbox .legal-gate-text ul,
.legal-gate-lightbox .legal-gate-text ol {
  margin: 1.5em 0 0;
}
.legal-gate-lightbox .legal-gate-text ul,
.legal-gate-lightbox .legal-gate-text ol {
  margin-left: 1.5em;
  padding: 0;
}
.legal-gate-lightbox .legal-gate-text ul {
  list-style-type: disc;
}
.legal-gate-lightbox .legal-gate-text ol {
  list-style-type: decimal;
}
.legal-gate-lightbox .legal-gate-text p + ul,
.legal-gate-lightbox .legal-gate-text p + ol {
  margin-top: .8em;
}
.legal-gate-lightbox .legal-gate-text > *:first-child {
  margin-top: 0;
}
.legal-gate-lightbox .legal-gate-text a {
  color: #d0123e;
  text-decoration: underline;
}
.legal-gate-lightbox .legal-gate-text a:hover {
  text-decoration: none;
}
.legal-gate-lightbox .legal-gate-text-wrapper {
  margin: 0 0 20px;
  border-bottom: 1px solid #c5c5c5;
  position: relative;
}
.legal-gate-lightbox .legal-gate-text-wrapper::before, .legal-gate-lightbox .legal-gate-text-wrapper::after {
  content: "";
  height: 20px;
  position: absolute;
  right: 0;
  left: 0;
  z-index: 5;
}
.legal-gate-lightbox .legal-gate-text-wrapper::before {
  top: 0;
  background: linear-gradient(to bottom, #f6f6f6, rgba(246, 246, 246, 0));
}
.legal-gate-lightbox .legal-gate-text-wrapper::after {
  bottom: 0;
  background: linear-gradient(to top, #f6f6f6, rgba(246, 246, 246, 0));
}
.legal-gate-lightbox .legal-gate-agreement {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .legal-gate-lightbox .legal-gate-agreement {
    justify-content: flex-start;
  }
}
.legal-gate-lightbox .legal-gate-agreement input {
  margin: .15em 0 0 0;
}
.legal-gate-lightbox .legal-gate-agreement label {
  font-weight: bold;
  padding-left: 10px;
}
.legal-gate-lightbox .legal-gate-link {
  margin: 0;
  text-align: center;
  flex-shrink: 0;
}
.legal-gate-lightbox .legal-gate-link a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 40px;
  background: #d0123f;
  display: inline-block;
  transition: background-color .25s ease;
}
.legal-gate-lightbox .legal-gate-link a.disabled {
  background: #e0e0e0;
  pointer-events: none;
}

.page-my-store .full-width-header {
  background: #101010;
}
.page-my-store .pane-my-store-banner {
  min-height: 180px;
  max-width: 970px;
  margin: 0 auto;
  padding: 40px 30px;
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 16px;
  color: #dddddd;
}
.page-my-store .pane-my-store-banner .pane-title {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 64px;
  color: #ffffff;
  font-style: normal;
  line-height: 72px;
}
.page-my-store .pane-generic-html-pane, .page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links {
  clear: both;
}
.page-my-store .pane-generic-html-pane .pane-title, .page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links .pane-title {
  font-size: 45px;
  line-height: 48px;
  text-transform: uppercase;
  margin: 0 0 10px;
  clear: both;
}
.page-my-store .pane-generic-html-pane ul, .page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
  clear: both;
  overflow: hidden;
}
.page-my-store .pane-generic-html-pane p {
  font-style: italic;
  font-family: "Georgia", serif;
  color: #898989;
  margin: 0 0 20px;
  font-size: 20px;
}
.page-my-store .pane-generic-html-pane li {
  width: 22%;
  float: left;
  padding: 0px 5px 0;
  text-align: center;
  margin-right: 2%;
  border-right: 1px dashed #dddddd;
  margin-bottom: 50px;
}
.page-my-store .pane-generic-html-pane li a {
  color: #3e3e3e;
  font-size: 22px;
  line-height: 24px;
  font-weight: bold;
  text-align: center;
  padding-top: 140px;
  display: block;
}
.page-my-store .pane-generic-html-pane li.store {
  background: url("../images/master-icons/update-store-information.png") no-repeat center top;
}
.page-my-store .pane-generic-html-pane li.event-location {
  background: url("../images/master-icons/add-location.png") no-repeat center top;
}
.page-my-store .pane-generic-html-pane li.personal {
  background: url("../images/master-icons/user-info.png") no-repeat center top;
}
.page-my-store .pane-generic-html-pane li.event-organizer {
  background: url("../images/master-icons/invite-event-organizer.png") no-repeat center top;
  border-right: none;
  margin-right: 0;
}
.page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links {
  margin: 0 -30px 0;
  padding: 30px;
  background: #ffffff;
  position: relative;
}
.page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links h2.pane-title {
  margin-right: 230px;
}
.page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links .see-all {
  max-width: 200px;
  position: absolute;
  top: 30px;
  right: 30px;
}
.page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links .see-all a {
  display: inline-block;
  background: url(../images/button-forms.png) 0 -93px no-repeat;
  height: 30px;
  line-height: 30px;
  padding-left: 42px;
  padding-right: 10px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
.page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links .see-all a:hover {
  background-position: 0 0;
}
.page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links ul li {
  float: left;
  width: 29%;
  text-align: center;
  margin: 0;
}
.page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links ul li a {
  color: #3e3e3e;
  font-size: 22px;
  line-height: 24px;
  font-weight: bold;
  padding-top: 140px;
  display: block;
}
.page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links ul li.checklist {
  background: url(../images/master-icons/deck-checklist.png) center top no-repeat;
}
.page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links ul li.instructions {
  background: url(../images/master-icons/program-instructions.png) center top no-repeat;
  border-left: 1px dashed #dddddd;
  border-right: 1px dashed #dddddd;
}
.page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links ul li.rules {
  background: url(../images/master-icons/event-rules.png) center top no-repeat;
}
.page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links:after {
  overflow: hidden;
  *zoom: 1;
}
.page-my-store .pane-store-level-info {
  clear: both;
}
.page-my-store .pane-store-level-info .see-all {
  float: right;
  clear: both;
}
.page-my-store .pane-store-level-info .see-all a {
  font-family: "Open Sans", Arial, sans-serif;
  font-style: normal;
  display: block;
  background: url(../images/button-forms.png) 0 0px no-repeat;
  height: 30px;
  line-height: 30px;
  padding-left: 42px;
  padding-right: 10px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
}
.page-my-store .pane-store-level-info .see-all a:hover {
  background-position: 0 -93;
}

@media (max-width: 768px) {
  .page-my-store .full-width-header > .pane-my-store-banner {
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    min-height: 120px;
  }
  .page-my-store .full-width-header > .pane-my-store-banner .pane-title {
    font-size: 2em !important;
    line-height: 1em !important;
  }
  .page-my-store .pane-generic-html-pane li {
    width: 100%;
    float: none;
    border-right: none;
    border-bottom: 1px dashed #dddddd;
    padding-bottom: 20px;
    border-left: none !important;
    border-right: none !important;
    margin: 0 !important;
  }
  .page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links .see-all {
    float: left;
    top: 0;
    position: initial;
    margin-bottom: 40px;
  }
  .page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links ul li {
    width: 100%;
    float: none;
    border-right: none;
    border-bottom: 1px dashed #dddddd;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links ul li.instructions {
    border-left: none;
    border-right: none;
  }
  .page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links {
    margin-bottom: 30px;
    padding-bottom: 0;
  }
  .page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links h2.pane-title {
    margin-right: 0;
  }
  .page-my-store .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links .see-all {
    max-width: none;
    float: none;
    position: static;
    top: auto;
    right: auto;
  }
}
@media (max-width: 479px) {
  .pane-generic-html-pane .pane-title, .pane-wiz-wpn-content-type-document-my-store-rules-and-docs-links .pane-title {
    font-size: 40px;
    line-height: 48px;
    text-transform: uppercase;
    margin: 0 0 10px;
    clear: both;
  }
}
.related-articles-sprite, .related-articles-calendar, .related-articles-document, .related-articles-email, .related-articles-media, .related-articles-phone, .related-articles-product {
  background-image: url('../images/related-articles-s7472234c65.png');
  background-repeat: no-repeat;
}

.node-type-document {
  /* Document Downloads */
}
.node-type-document .panel-2col-stacked {
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding-top: 30px;
}
.node-type-document #content {
  margin-top: -15px;
  background: #f6f6f6;
  border-top: 1px solid #ddd;
}
.node-type-document .view-banner-revisions-view {
  margin-bottom: 20px;
}
.node-type-document .view-banner-revisions-view .views-field-title {
  display: none;
}
.node-type-document .view-wizards-wpn-document-details {
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}
.node-type-document .view-wizards-wpn-document-details h1 {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 42px;
  line-height: 48px;
  color: #3e3e3e;
  margin: 0 0 10px;
}
.node-type-document .view-wizards-wpn-document-details .views-field-created, .node-type-document .view-wizards-wpn-document-details .views-field-name {
  font-family: "Georgia", serif;
  color: #3e3e3e;
  font-style: italic;
  font-size: 16px;
}
.node-type-document .view-wizards-wpn-document-details .views-field-name a {
  color: #d0123e;
}
.node-type-document .pane-node-body {
  margin-bottom: 30px;
}
.node-type-document .pane-node-body h2, .node-type-document .pane-node-body h3, .node-type-document .pane-node-body h4 {
  color: #3e3e3e;
  font-family: "Open Sans", Arial, sans-serif;
}
.node-type-document .pane-node-body a {
  color: #d0123e;
}
.node-type-document .pane-node-field-attachments {
  width: 45%;
  margin-bottom: 30px;
}
.node-type-document .pane-node-field-attachments a {
  color: #d0123e;
}
.node-type-document .pane-node-field-attachments .field-item {
  margin: 20px 0;
  padding-bottom: 20px;
  border-bottom: 1px dashed #dddddd;
}
.node-type-document .pane-node-field-attachments .field-item .file {
  background-position: 0 -56px;
  height: 32px;
  width: 32px;
  padding-left: 40px;
  padding-bottom: 15px;
}
.node-type-document .pane-node-field-attachments .field-item .file img {
  display: none;
}

@media all and (max-width: 768px) {
  .node-type-document .pane-node-body {
    margin-bottom: 30px;
  }
  .node-type-document .pane-node-body .field-type-text-with-summary {
    padding: 0;
  }
  .node-type-document .view-wizards-wpn-associated-content-view {
    margin-bottom: 30px;
  }
  .node-type-document .pane-node-field-attachments {
    width: 100%;
  }
}
@media all {
  #admin-menu, #admin-menu .dropdown {
    z-index: 1004 !important;
  }

  .header-popin-wrapper {
    position: relative;
    /* Breaking News */
    /* Alert */
  }
  .header-popin-wrapper *, .header-popin-wrapper *:before, .header-popin-wrapper *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .header-popin-wrapper .page-width {
    position: relative;
    max-width: 1030px;
    margin: 0 auto;
    line-height: 1.3em;
  }
  .header-popin-wrapper.breaking-news {
    height: 100px;
  }
  .header-popin-wrapper #breaking-news {
    height: 100px;
    border-bottom: 1px solid #000;
    z-index: 400;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RmZGZkZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #dfdfdf));
    background: -moz-linear-gradient(top, #ffffff 0%, #dfdfdf 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%, #dfdfdf 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #dfdfdf 100%);
    z-index: 1002;
  }
  .header-popin-wrapper #breaking-news .visual {
    width: 27.5%;
    height: 100px;
    display: block;
    overflow: hidden;
    float: left;
    position: relative;
  }
  .header-popin-wrapper #breaking-news .visual img {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
  }
  .header-popin-wrapper #breaking-news .content {
    width: 72.5%;
    padding: 15px 35px 0 15px;
    float: left;
  }
  .header-popin-wrapper #breaking-news .content h3 {
    margin: 0;
    padding: 0 10px 0 0;
    color: #000;
    font-size: 16px;
    font-family: "Open Sans", Arial, sans-serif;
  }
  .header-popin-wrapper #breaking-news .content p {
    margin: 0;
    padding: 0 10px 0 0;
    font-size: 14px;
    color: #3e3e3e;
    line-height: 1em;
  }
  .header-popin-wrapper #breaking-news .content p a {
    font-style: italic;
    color: #3e3e3e;
    text-decoration: underline;
  }
  .header-popin-wrapper #breaking-news .content:after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    overflow: hidden;
    clear: both;
    visibility: hidden;
  }
  .header-popin-wrapper #breaking-news .close {
    width: 30px;
    height: 30px;
    display: block;
    text-decoration: none;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1003;
    background: url(../images/close-breaking-news.svg) 0 0 no-repeat;
    background-size: 100% auto;
    text-indent: -9999px;
  }
  .header-popin-wrapper #breaking-news .close.dark {
    background: url(../images/close-breaking-news-dark.svg) 0 0 no-repeat;
    background-size: 100% auto;
  }
  .header-popin-wrapper #page.breaking-news #breaking-news {
    display: block;
  }
  .header-popin-wrapper #page.snap-menu #breaking-news {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
  .header-popin-wrapper.alert {
    height: 50px;
  }
  .header-popin-wrapper #alert {
    height: 50px;
    padding: 15px;
    background: #be3a31;
    border-bottom: 1px solid #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
    overflow: hidden;
  }
  .header-popin-wrapper #alert p span {
    display: inline-block;
    color: #fff;
    font-size: 16px;
  }
  .header-popin-wrapper #alert p {
    margin: 0;
    padding: 0 35px 0 0;
    display: inline-block;
    color: #e0afad;
    font-size: 14px;
    line-height: 1em;
  }
  .header-popin-wrapper #alert p a {
    color: #e0afad;
    font-style: italic;
    text-decoration: underline;
  }
  .header-popin-wrapper #alert .close {
    width: 30px;
    height: 30px;
    display: block;
    text-decoration: none;
    text-align: center;
    position: absolute;
    top: -5px;
    right: 5px;
    z-index: 1003;
    background: url(../images/close-breaking-news.svg) 0 0 no-repeat;
    background-size: 100% auto;
    text-indent: -9999px;
  }
  .header-popin-wrapper #alert .close.dark {
    background: url(../images/close-breaking-news-dark.svg) 0 0 no-repeat;
    background-size: 100% auto;
  }

  .logged-in .header-popin-wrapper #breaking-news, .logged-in .header-popin-wrapper #alert {
    position: relative !important;
  }
}
@media (max-width: 1024px) {
  .header-popin-wrapper {
    position: relative;
    /* Breaking News */
    /* Alert */
  }
  .header-popin-wrapper.breaking-news {
    height: 140px;
  }
  .header-popin-wrapper #breaking-news {
    height: 140px;
    z-index: 1002;
  }
  .header-popin-wrapper #breaking-news .visual {
    width: 30%;
    height: 140px;
  }
  .header-popin-wrapper #breaking-news .visual img {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
  }
  .header-popin-wrapper #breaking-news .content {
    width: 70%;
    padding: 5px 20px 0 15px;
  }
  .header-popin-wrapper #breaking-news .content h3 {
    margin: 0 0 5px;
    padding: 0;
    font-size: 14px;
  }
  .header-popin-wrapper.alert {
    height: 60px;
  }
  .header-popin-wrapper #alert {
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
  }
}
@media (max-width: 479px) {
  .header-popin-wrapper {
    /* Breaking news */
    /* Alert */
  }
  .header-popin-wrapper #breaking-news {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    border-bottom: none;
  }
  .header-popin-wrapper #breaking-news .content {
    width: 100%;
    padding: 50px 20px 20px;
    position: relative;
    z-index: 1;
  }
  .header-popin-wrapper #breaking-news .visual {
    width: 100%;
    height: auto;
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .header-popin-wrapper #breaking-news .visual img {
    position: relative;
    left: auto;
    bottom: auto;
  }
  .header-popin-wrapper #breaking-news a.close {
    max-height: 30px;
  }
  .header-popin-wrapper #alert {
    height: 75px;
    padding: 0;
  }
  .header-popin-wrapper #alert p {
    padding: 5px 30px 5px 10px;
    font-size: 12px;
  }
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Judge Resources */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
body.page-judgeresources .body-center-column .ui-tabs .ui-tabs-nav li.ui-tabs-selected {
  padding-bottom: 0;
}
body.page-judgeresources .body-center-column .ui-widget-content {
  padding: 0 0 40px;
  border: none;
  background: none;
}
body.page-judgeresources .body-center-column .ui-widget-content .item-list {
  border: none;
  background: none;
}
body.page-judgeresources .body-center-column .ui-widget-content .item-list .ui-widget-header {
  margin: 0;
  padding: 0;
  border-top: none;
  border-right: none;
  border-left: none;
  border-color: #dddddd;
  background: none;
}
body.page-judgeresources .body-center-column .ui-widget-content .item-list .ui-widget-header a {
  outline: none;
}
body.page-judgeresources .body-center-column .ui-widget-content .item-list .ui-widget-header li.ui-state-default {
  margin-right: 3px;
  border-width: 1px 1px 0;
  border-style: solid;
  border-color: #ccc;
  border-adius: 3px;
  overflow: hidden;
}
body.page-judgeresources .body-center-column .ui-widget-content .item-list .ui-widget-header li.ui-state-default a {
  color: #3e3e3e;
  line-height: 27px;
  background: #fff;
  position: relative;
  outline: none;
}
body.page-judgeresources .body-center-column .ui-widget-content .item-list .ui-widget-header li.ui-state-default a:hover, body.page-judgeresources .body-center-column .ui-widget-content .item-list .ui-widget-header li.ui-state-default a:focus {
  color: #d0123e;
}
body.page-judgeresources .body-center-column .ui-widget-content .item-list .ui-widget-header li.ui-state-default.ui-tabs-active a {
  color: #3e3e3e;
  cursor: default;
  pointer-events: none;
}
body.page-judgeresources .body-center-column .ui-widget-content .item-list .ui-widget-header li.ui-state-default.ui-tabs-active a:before {
  content: "";
  height: 3px;
  background: #d0123e;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel {
  padding: 40px !important;
  border: solid #ccc 1px;
  border-top: none;
  background: white;
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel, body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel:before, body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel:after, body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel *, body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel *:before, body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel *:after {
  box-sizing: border-box;
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel p {
  margin: 0 0 1.5em;
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel a {
  color: #d0123e;
  text-decoration: none;
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section:after {
  content: "";
  height: 0;
  display: block;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div {
  line-height: 1.2em;
  text-align: center;
  width: 33.32%;
  margin-top: 40px;
  border-width: 0 0 0 1px;
  border-style: dashed;
  border-color: #dddddd;
  float: left;
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div:nth-child(3n+1) {
  border-left-width: 0;
  clear: left;
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div a {
  color: #3e3e3e;
  text-decoration: none;
  min-height: 260px;
  padding: 140px 20px 0;
  background-position: 50% 0%;
  background-repeat: no-repeat;
  background-size: auto 116px;
  display: block;
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div a h3 {
  color: #d0123e;
  font-size: 19px;
  line-height: 1.1em;
  margin: 0;
  padding: 0;
  -moz-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  -webkit-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div a p {
  font-size: 14px;
  margin: 0 0 1.2em;
  padding: 0;
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div a:hover h3, body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div a:focus h3 {
  color: #3e3e3e;
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div.find a {
  background-image: url(../images/judge-resources/find_judge.png);
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div.chat a {
  background-image: url(../images/judge-resources/chat_judges.png);
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div.rules a {
  background-image: url(../images/judge-resources/rules_questions.png);
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div.feedback a {
  background-image: url(../images/judge-resources/feedback.png);
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div.browse a {
  background-image: url(../images/judge-resources/browse_judge_articles.png);
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div.judge a {
  background-image: url(../images/judge-resources/questions_answered.png);
}
body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div.share a {
  background-image: url(../images/judge-resources/share_judge_stories.png);
}
@media (max-width: 930px) {
  body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div a {
    min-height: 330px;
  }
}
@media (max-width: 768px) {
  body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div {
    width: auto;
    margin: 0;
    padding: 0;
    border-width: 0;
    float: none;
  }
  body.page-judgeresources .body-center-column .ui-widget-content .ui-tabs-panel section > div a {
    min-height: 0;
    padding-top: 160px;
    padding-bottom: 20px;
    background-position: 50% 20px;
  }
}

.page-wpn-search .panel-3col .panel-col-last {
  float: left;
  width: 50%;
}
.page-wpn-search .panel-3col .panel-col:nth-child(2) {
  float: right;
}
@media screen and (max-width: 480px) {
  .page-wpn-search .panel-3col .panel-col,
  .page-wpn-search .panel-3col .panel-col-last {
    float: none;
    width: 100%;
  }
  .page-wpn-search .panel-3col ol {
    padding-left: 0;
  }
}

#admin-menu .dropdown .admin-menu-icon img {
  width: 16px;
}

.tabs-primary, .tabs-secondary {
  visibility: visible;
  padding-bottom: 27px;
}

.error, .messages--error {
  border-color: #d0123e;
  color: #d0123e;
  box-sizing: border-box;
}

h1 {
  font-size: 3em;
}

body {
  background: #f6f6f6;
  word-wrap: break-word;
}

a {
  color: #d0123e;
}

#modal-link {
  display: inline-block;
}

.utility {
  background: #3e3e3e;
  padding-top: 1em;
  padding-bottom: 0;
}
.utility .utility-links {
  text-align: right;
}
.utility .utility-links ul {
  font-size: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.utility .utility-links ul li {
  font-size: 13px;
  list-style: none;
  padding-left: 25px;
  display: inline-block;
  position: relative;
}
.utility .utility-links ul li a.menu__link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.077em;
  background: url("../images/global/download-white.png") no-repeat 0 center;
  padding: 5px 0 5px 25px;
  transition: color .25s linear;
}
.utility .utility-links ul li a.menu__link:hover {
  color: #7e7e7e;
}
.utility .utility-links ul li:before {
  background: url("../images/menu-sep.png") no-repeat 50% 50%;
  content: '';
  width: 25px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.utility .utility-links ul li:nth-child(2) a.menu__link {
  background-image: url(../images/global/icon-find-a-judge.png);
}
.utility .utility-links .block-wiz-wpn-locale-selector {
  height: 40px;
  width: 135px;
  background: url("../images/search-world.png") no-repeat 10px 2px;
}
.utility .utility-links .block-wiz-wpn-locale-selector .ctools-use-modal {
  color: white;
  font-size: 0.875em;
  padding: 0;
  display: inline-block;
  /*visibility: hidden;*/
  width: 110px;
  height: 40px;
  position: relative;
  height: 25px;
  float: left;
  transition: color .25s linear;
}
.utility .utility-links .block-wiz-wpn-locale-selector .ctools-use-modal:after {
  background: url("../images/small-arrow-down.png") no-repeat right center;
  content: '';
  visibility: visible;
  position: absolute;
  top: 8px;
  right: -16px;
  width: 10px;
  height: 10px;
}
.utility .utility-links .block-wiz-wpn-locale-selector .ctools-use-modal:before {
  background: url("../images/search-world.png") no-repeat 10px center;
  content: '';
  visibility: visible;
  display: block;
}
.utility .utility-links .block-wiz-wpn-locale-selector .ctools-use-modal:hover {
  color: #7e7e7e;
}

.header {
  background: #ffffff;
  height: 70px;
}
.header .page-inner {
  position: relative;
  height: 70px;
}

.header__logo {
  width: 150px;
  height: 112px;
  position: absolute;
  left: 0;
  top: -30px;
  z-index: 99;
  margin: auto;
}
.header__logo img {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 100;
}

.header__region .menu {
  margin: 0 0 0;
  padding: 0;
  width: 100%;
  float: left;
}
.header__region .menu li {
  display: block;
  background: url(../images/menu-sep.png) no-repeat right center;
  float: left;
  width: auto;
  height: 70px;
}
.header__region .menu li.first a {
  margin-left: 0;
}
.header__region .menu li.last {
  background: none;
}
.header__region .menu li.last a {
  margin-right: 0;
}
.header__region .menu li a {
  color: #101010;
  text-transform: uppercase;
  vertical-align: middle;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  padding: 0 10px;
  display: table-cell;
  height: 70px;
  line-height: 20px;
  text-align: center;
  white-space: wrap;
  max-width: 11em;
}
.header__region .menu li a:hover, .header__region .menu li a.active {
  color: #d0123e;
}
.header__region .menu li ul {
  display: none !important;
}
.header__region .block-apachesolr-panels, .header__region .block-search {
  margin-top: 15px;
}
.header__region .block-apachesolr-panels .form-item, .header__region .block-search .form-item {
  margin: 0;
}
.header__region .block-apachesolr-panels .form-text, .header__region .block-search .form-text {
  height: 40px;
  background: #f6f6f6;
  border: 1px solid #d4d4d4;
  border-right: none;
  width: 80%;
  float: left;
  padding: 0 10px;
}
.header__region .block-apachesolr-panels .form-text:focus, .header__region .block-search .form-text:focus {
  outline: none;
}
.header__region .block-apachesolr-panels .form-submit, .header__region .block-search .form-submit {
  text-indent: -9999px;
  background: url("../images/search.png") no-repeat 0px center #f6f6f6;
  height: 40px;
  border: 1px solid #d4d4d4;
  padding-left: 15px;
  border-left: none;
  margin-left: -5px;
  line-height: 35px;
  float: left;
}
.header__region .block-apachesolr-panels .form-submit:focus, .header__region .block-search .form-submit:focus {
  outline: none;
}

#page {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  #page.overlay {
    z-index: 9999;
  }
}
.node-webform,
.body-center-column {
  background: #f6f6f6;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  margin-top: -42px;
  padding-top: 40px;
  position: relative;
  z-index: 100;
}

.node-type-page .body-center-column {
  margin-top: 20px;
}

.logged-in .view-banner-view {
  margin-top: 0px;
}

.logged-in .header {
  padding-bottom: 0;
}

.common-questions {
  background: #3e3e3e;
  padding: 4em 0;
  color: #ffffff;
}
.common-questions .question-info {
  width: 24%;
}
.common-questions .question-info h2 {
  font-family: "Roboto Condensed", sans-serif;
  color: #ffffff;
  font-size: 2em;
  line-height: 1em;
  margin: 0;
}
.common-questions .question-info p {
  font-size: 0.8125em;
  line-height: 20px;
  min-width: 200px;
}
.common-questions .question-info .contact {
  background: url("../images/contact-icon.png") no-repeat top left;
  padding-left: 50px;
  margin-bottom: 25px;
}
.common-questions .question-info .contact p {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 18px;
  margin: 0;
}
.common-questions .question-info .contact a {
  color: #aeaeae;
  font-size: 14px;
  background: url("../images/small-arrow-icon.png") no-repeat right 5px;
  padding-right: 15px;
}
.common-questions .questions {
  min-height: 200px;
  text-align: right;
  margin-left: 0;
}
@media all and (min-width: 800px) {
  .common-questions .questions {
    margin-left: 110px;
  }
}
.common-questions .view-wizards-wpn-homepage-faq .view-content ul,
.common-questions .view-wizards-wpn-general-faq-list .view-content ul,
.common-questions .view-faq-revisions-view .view-content ul {
  margin: 0;
  padding: 0;
}
.common-questions .view-wizards-wpn-homepage-faq .view-content li,
.common-questions .view-wizards-wpn-general-faq-list .view-content li,
.common-questions .view-faq-revisions-view .view-content li {
  display: inline-block;
  margin-left: 20px;
}
.common-questions .view-wizards-wpn-homepage-faq .view-content li.first,
.common-questions .view-wizards-wpn-general-faq-list .view-content li.first,
.common-questions .view-faq-revisions-view .view-content li.first {
  margin-left: 0;
}
.common-questions .view-wizards-wpn-homepage-faq .view-content a,
.common-questions .view-wizards-wpn-general-faq-list .view-content a,
.common-questions .view-faq-revisions-view .view-content a {
  text-align: center;
  color: #ffffff;
  font-family: Georgia, Times, serif;
  font-style: italic;
  font-size: 1em;
  position: relative;
  display: block;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  border: 15px solid #262626;
  vertical-align: middle;
  background: #3e3e3e;
  padding: 64px 30px 0 30px;
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
}
.common-questions .view-wizards-wpn-homepage-faq .view-content a:hover,
.common-questions .view-wizards-wpn-general-faq-list .view-content a:hover,
.common-questions .view-faq-revisions-view .view-content a:hover {
  color: #ffffff;
  background-color: #d0123e;
}
.common-questions .see-all-faq {
  width: auto !important;
}
.common-questions .see-all-faq a {
  display: inline-block;
  background: #3e3e3e;
  color: #fff;
  height: 30px;
  line-height: 30px;
  padding-left: 40px;
  padding-right: 10px;
  background: url(../images/button-forms.png) 0 -93px no-repeat;
  text-transform: uppercase;
}
.common-questions .see-all-faq a:hover {
  background-position: 0 0;
}

.footer-top {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzEzMTMxMyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzFlMWUxZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #131313), color-stop(100%, #1e1e1e));
  background-image: -moz-linear-gradient(#131313, #1e1e1e);
  background-image: -webkit-linear-gradient(#131313, #1e1e1e);
  background-image: linear-gradient(#131313, #1e1e1e);
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #101010;
  border-bottom: 1px solid #101010;
}
.footer-top .ctools-use-modal {
  color: #ffffff;
  font-size: 0.875em;
  background: url("../images/search-world.png") no-repeat left center;
  padding: 10px 40px;
}

#footer {
  display: block;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzE5MTkxOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzA2MDYwNiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #191919), color-stop(100%, #060606));
  background-image: -moz-linear-gradient(#191919, #060606);
  background-image: -webkit-linear-gradient(#191919, #060606);
  background-image: linear-gradient(#191919, #060606);
}
@media all and (max-width: 320px) {
  #footer {
    padding: 0;
  }
}
#footer .page-inner {
  padding-top: 40px;
}
@media all and (max-width: 768px) {
  #footer .page-inner {
    padding-top: 20px;
  }
}
@media all and (max-width: 320px) {
  #footer .page-inner {
    padding: 0;
  }
}
#footer div.branding-left, #footer div.branding-right {
  float: left;
  text-align: center;
  width: 20%;
  position: relative;
}
@media all and (max-width: 768px) {
  #footer div.branding-left, #footer div.branding-right {
    width: 50%;
  }
}
#footer div.branding-right {
  width: 13%;
  background: url("../images/separator-third.png") no-repeat 0 0;
}
@media all and (max-width: 768px) {
  #footer div.branding-right {
    background: none;
    margin-left: 0;
    width: 50%;
  }
  #footer div.branding-right img {
    float: left;
    margin-right: 17px;
  }
}
#footer div.branding-left {
  margin-left: -90%;
}
@media all and (max-width: 768px) {
  #footer div.branding-left {
    margin-right: 0;
    margin-left: 0;
  }
}
#footer div.branding-left a,
#footer div.branding-right a {
  display: block;
  float: none;
  text-align: center;
}
#footer div.branding-left a img,
#footer div.branding-right a img {
  font-weight: normal;
  margin: 4px 0 5px;
}
@media all and (max-width: 768px) {
  #footer div.branding-left a img,
  #footer div.branding-right a img {
    margin-right: 17px;
  }
}
#footer div.branding-center {
  color: #7E7E7E;
  float: left;
  font-size: 82%;
  line-height: 120%;
  margin-left: 22%;
  padding-top: 5px;
  position: relative;
  text-align: left;
  width: 65%;
}
@media all and (max-width: 768px) {
  #footer div.branding-center {
    width: 95%;
    margin-left: 5%;
  }
}
#footer div.branding-center p {
  width: 100%;
  padding-bottom: 10px;
}
#footer div.branding-center p strong {
  display: block;
  width: 100%;
  padding: 0 0 4px;
}
#footer div.branding-center p a {
  color: #7e7e7e;
  text-decoration: none;
}
#footer div.branding-center p a:hover {
  text-decoration: none;
  color: white;
}
#footer div.branding-center p span.branding-family {
  font-size: 17px;
  font-weight: bold;
  line-height: 27px;
}
#footer div.branding-center p span.branding-family i {
  text-transform: none;
  font-style: normal;
  line-height: 16px;
  font-size: 16px;
}
#footer div.branding-center p span.branding-family strong {
  font-size: 14px;
  font-weight: normal;
  line-height: 14px;
}
#footer .copyright {
  float: left;
  width: 100%;
  clear: both;
  display: block;
  text-align: center;
  font-size: 75%;
  line-height: 125%;
  color: #898989;
}

.panel-homepage em h3 {
  font-family: Georgia, serif;
  font-size: 20px;
  color: #898989;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 0;
}
.panel-homepage p {
  font-size: 14px;
}
.panel-homepage .top-header, .panel-homepage .top-body-link {
  float: left;
  width: 45%;
}
.panel-homepage .top-header {
  margin-top: 0;
}
.panel-homepage .top-img-container {
  float: right;
  width: 50%;
}
.panel-homepage .pane-join-wpn {
  background: #ffffff;
  margin: -40px -30px 0;
  padding: 40px 30px;
}
.panel-homepage .pane-join-wpn:after, .panel-homepage .pane-grow-your-store-featured-store:after {
  overflow: hidden;
  *zoom: 1;
}
.panel-homepage .pane-join-wpn a, .panel-homepage .pane-grow-your-store-featured-store a {
  display: inline-block;
  background: url(../images/button-forms.png) 0 0 no-repeat;
  height: 30px;
  line-height: 30px;
  padding-left: 42px;
  padding-right: 10px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  margin: 20px 0;
}
.panel-homepage .pane-join-wpn a:hover, .panel-homepage .pane-grow-your-store-featured-store a:hover {
  background-position: 0 -93px;
}
.panel-homepage .body-centerleft {
  padding: 30px 0 70px;
}
.panel-homepage .body-centerleft h2 {
  font-size: 35px;
  line-height: 35px;
  margin: 0;
}
.panel-homepage .body-centerleft h3 {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 22px;
  color: #3e3e3e;
}
.panel-homepage .body-centerleft p {
  color: #3e3e3e;
  font-size: 14px;
}
.panel-homepage .body-centerleft a {
  display: inline-block;
  background: url(../images/button-forms.png) 0 0 no-repeat;
  height: 30px;
  line-height: 30px;
  padding-left: 42px;
  padding-right: 10px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  margin: 20px 0;
}
.panel-homepage .body-centerleft a:hover {
  background-position: 0 -93px;
}
.panel-homepage .body-centerright {
  padding: 30px 0 70px 20px;
}
.panel-homepage .body-centerright h2 {
  font-size: 35px;
  line-height: 35px;
  margin: 0;
}
.panel-homepage .body-centerright h3 {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 22px;
  color: #3e3e3e;
}
.panel-homepage .body-centerright p {
  color: #3e3e3e;
  font-size: 14px;
}
.panel-homepage .body-centerright a {
  display: inline-block;
  background: url(../images/button-forms.png) 0 0 no-repeat;
  height: 30px;
  line-height: 30px;
  padding-left: 42px;
  padding-right: 10px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  margin: 20px 0;
}
.panel-homepage .body-centerright a:hover {
  background-position: 0 -93px;
}
.panel-homepage .body-centermain {
  background: #FFF;
  margin: 0 -30px;
  padding: 0 30px;
}
.panel-homepage .body-centermain h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 45px;
  line-height: 45px;
}
.panel-homepage .body-centermain .top-img-container {
  float: right;
}

div.ctools-modal-content {
  /*	width: 600px !important;*/
  background: #ffffff;
  height: 400px !important;
}
div.ctools-modal-content .modal-header {
  background: #3e3e3e;
  padding: 10px 4px;
  color: #ffffff;
  font-family: "Open Sans", Arial, sans-serif;
  width: inherit;
  /*		box-sizing: border-box;*/
}
div.ctools-modal-content .modal-header .modal-title {
  margin-left: 10px;
  white-space: normal;
}
div.ctools-modal-content .modal-header a.close {
  color: #D0123E;
  text-transform: uppercase;
  margin-right: 10px;
}
div.ctools-modal-content .modal-header a.close:before, div.ctools-modal-content .modal-header a.close:after {
  width: 20px;
  height: 20px;
  content: '';
  display: inline-block;
  background: url("../images/close.png") no-repeat;
  top: 6px;
  position: relative;
  margin-left: 10px;
}
div.ctools-modal-content .modal-header a.close:before {
  display: none;
}
div.ctools-modal-content .modal-header a.close img {
  left: 10px;
  width: 0;
  height: 0;
  padding-left: 0;
  box-sizing: border-box;
}
div.ctools-modal-content .modal-content {
  color: #3e3e3e;
  background: #ffffff;
  height: 400px !important;
  overflow-x: auto;
}
div.ctools-modal-content .modal-content input {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  padding: 5px 15px !important;
  color: #FFF;
  background: #d0123e;
  border: none;
  margin-right: 20px;
  margin-bottom: 20px;
}
div.ctools-modal-content .modal-content input#edit-previous {
  background: #3e3e3e;
  margin-right: 3px;
}

.page-wpn-search .panel-3col {
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 20px;
  position: relative;
  z-index: 100;
  max-width: 970px;
  margin: auto;
}
.page-wpn-search .panel-3col .form-text {
  padding: 0 10px;
}
.page-wpn-search .panel-3col .panel-col-first {
  display: none;
}
.page-wpn-search .panel-3col .panel-col-last .pane-apachesolr-form .form-text {
  height: 40px;
  background: #f6f6f6;
  border: 1px solid #d4d4d4;
  border-right: none;
  width: 80%;
  float: left;
}
.page-wpn-search .panel-3col .panel-col-last .pane-apachesolr-form .form-text:focus {
  outline: none;
}
.page-wpn-search .panel-3col .panel-col-last .pane-apachesolr-form .form-submit {
  text-indent: -9999px;
  background: url("../images/search.png") no-repeat 0px center #f6f6f6;
  height: 40px;
  border: 1px solid #d4d4d4;
  padding-left: 15px;
  border-left: none;
  margin-left: -5px;
  line-height: 35px;
  float: left;
}
.page-wpn-search .panel-3col .panel-col-last .pane-apachesolr-form .form-submit:focus {
  outline: none;
}
.page-wpn-search .panel-3col .panel-col-last .pane-apachesolr-form:after {
  overflow: hidden;
  *zoom: 1;
}
.page-wpn-search p.search-info {
  display: none;
}

@media all and (max-width: 800px) {
  div#modalContent {
    width: 75% !important;
    z-index: 1002 !important;
  }
  div#modalContent .modal-content, div#modalContent .modal-header, div#modalContent .ctools-modal-content {
    width: 100% !important;
  }
  div#modalContent .modal-content {
    padding: 4px;
  }
  div#modalContent .modal-content form {
    padding: 20px;
  }

  #header {
    /*	width: 600px !important;*/
  }
  #header .responsive-menus.responsified.responsive-toggled.absolute .responsive-menus-simple {
    left: 0;
    width: 100%;
  }
  #header .responsive-menus {
    margin: 0;
    height: 70px;
  }
  #header .responsive-menus span.toggler {
    display: block;
    width: 72px;
    height: 68px;
    /*text-indent: -555555px;*/
    line-height: 70px;
    padding: 0 !important;
    /*background: url(../images/mobile-menu.png) center center no-repeat;*/
  }
  #header .responsive-menus .responsive-menus-simple {
    background: #3e3e3e;
    height: 100%;
    margin: 0 !important;
    padding-top: 31px;
  }
  #header .responsive-menus .responsive-menus-simple #block-apachesolr-panels-search-form {
    position: relative;
    width: auto;
    top: 0;
  }
  #header .responsive-menus .responsive-menus-simple #block-apachesolr-panels-search-form form {
    padding: 0 0 0 5%;
  }
  #header .responsive-menus .responsive-menus-simple #block-apachesolr-panels-search-form form .form-text {
    width: 90%;
  }
  #header .responsive-menus .responsive-menus-simple ul li {
    float: none;
    text-align: left;
    padding: 0;
    margin: 0;
    display: block;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
  }
  #header .responsive-menus .responsive-menus-simple ul li a {
    text-align: left;
    margin-left: 0;
    margin: 0;
    height: auto;
    line-height: normal;
    font-size: 18px !important;
    color: #ffffff;
    padding: 10px 20px;
    display: block;
    background: #3e3e3e;
    width: auto;
    max-width: 100%;
    white-space: normal;
  }
  #header .responsive-menus .responsive-menus-simple ul li a:hover {
    background: #ccc;
  }
  #header .responsive-menus .responsive-menus-simple ul li a:hover a {
    color: #3e3e3e;
  }
  #header .responsive-menus .responsive-menus-simple ul li.first a {
    margin-left: 0 !important;
  }

  .utility .block-menu, .utility .block-wiz-wpn-locale-selector {
    display: none;
  }

  #header #logo {
    text-align: center;
    margin-top: -10px;
    z-index: 1001;
    margin-top: 17px;
  }
  #header #logo img {
        /*
max-width: none;
        width: initial;
        top: 15px;
*/
  }

  .view-wizards-wpn-event-detail-banner-revision-view .hero-title a {
    font-size: 3em;
    left: 25%;
    text-align: center;
    width: 50%;
  }

  .panel-homepage .pane-join-wpn .top-header, .panel-homepage .pane-join-wpn .top-body-link {
    width: 100%;
  }
  .panel-homepage .pane-join-wpn .top-img-container {
    margin: 20px 0;
  }
  .panel-homepage .body-centerright {
    padding-left: 0;
  }

  .common-questions .question-info {
    padding-right: 0;
    width: 100%;
  }
  .common-questions .view-wizards-wpn-homepage-faq .view-content li,
  .common-questions .view-wizards-wpn-general-faq-list .view-content li,
  .common-questions .view-faq-revisions-view .view-content li {
    margin-left: 0;
    display: block;
    background: #262626;
    padding: 10px 20px;
    border-bottom: 1px solid #3e3e3e;
  }
  .common-questions .view-wizards-wpn-homepage-faq .view-content li a,
  .common-questions .view-wizards-wpn-general-faq-list .view-content li a,
  .common-questions .view-faq-revisions-view .view-content li a {
    border-radius: 0;
    border: none;
    display: block;
    width: auto;
    height: auto;
    background-color: transparent;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-position: top center;
    padding-top: 40px;
    float: none;
  }
  .common-questions .see-all-faq {
    margin-top: 20px;
  }

  #footer {
    /* hide child lists from main menu */
  }
  #footer .footer-logo {
    text-align: right;
    margin-top: 0;
  }
  #footer .footer-logo a {
    display: inline-block;
    margin-bottom: 0;
    padding-left: 30px;
  }
  #footer .footer-logo a + a {
    padding-right: 0;
    padding-left: 20px;
  }
  #footer .footer-security {
    margin-top: 0;
    text-align: left;
    padding-left: 80px;
  }
  #footer .footer-security img {
    padding-left: 10px;
  }
  #footer .block-menu-block .menu .menu {
    display: none;
  }
}
.event-countdown {
  float: left;
  position: relative;
}
.event-countdown span {
  display: block;
  text-align: center;
  width: 100%;
  position: absolute;
}
.event-countdown span.day {
  color: #4c4a88;
  font-size: 4em;
  font-weight: bold;
  top: 48px;
  left: 0;
}
.event-countdown span.days-left {
  color: #fff;
  bottom: -10px;
  font-family: Georgia, serif;
  font-style: italic;
  position: absolute;
  text-align: center;
}

#block-print-print-links {
  display: none;
}

/* CUSTOM CTA STYLE BUTTONS */
.red-cta, .grey-cta {
  display: inline-block;
  background: url("../images/button-forms.png") 0 0 no-repeat;
  height: 30px;
  line-height: 30px;
  padding-left: 42px;
  padding-right: 10px;
  font-size: 16px;
  color: #FFF;
  text-transform: uppercase;
  margin: 10px;
}

#header {
  height: auto;
}
#header .block-menu .hidden-on-desktop {
  display: none;
}
@media screen and (max-width: 800px) {
  #header .block-menu {
    margin-left: 110px;
  }
  #header .block-menu .hidden-on-desktop {
    display: block;
  }
}

.grey-cta {
  background-position: 0 -93px;
}
.grey-cta:hover, .grey-cta:focus {
  background-position: 0 0;
}

.pager-load-more {
  background: none !important;
}
.pager-load-more li {
  text-align: center !important;
}
.pager-load-more li a {
  background: #d0123e !important;
  padding: 0 20px !important;
  border-radius: 0 !important;
  display: inline-block !important;
}
.pager-load-more li a:hover, .pager-load-more li a:focus {
  background: #3e3e3e !important;
}

@media (max-width: 767px) {
  .pager-load-more li a {
    display: block !important;
  }
}
.full-width-header .wiz-pane-banner {
  background-size: cover;
  background-position: 50% 50%;
}
.full-width-header .wiz-pane-banner .wrapper-banner {
  max-width: 970px;
  margin: 0 auto;
  padding: 80px 30px 0;
  height: 410px;
}
.full-width-header .wiz-pane-banner .wrapper-banner h1 {
  margin: 0;
  color: #ffffff;
  font-size: 60px;
  line-height: 55px;
  text-shadow: #333 1px 1px 1px;
}
.full-width-header .wiz-pane-banner .wrapper-banner h3 {
  color: #fff;
  font-family: "Georgia", serif;
  font-weight: normal;
  text-shadow: #333 1px 1px 1px;
}
.full-width-header .wiz-pane-banner .wrapper-banner .top-body-link a {
  display: inline-block;
  background: url(../images/button-forms.png) 0 -30px no-repeat;
  height: 30px;
  line-height: 30px;
  padding-left: 42px;
  padding-right: 10px;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  margin: 10px 0;
}
.full-width-header .wiz-pane-banner .wrapper-banner .top-body-link a:hover {
  background-position: 0 0;
  color: #fff;
}

@media all and (max-width: 768px) {
  .full-width-header .wiz-pane-banner {
    background-size: cover;
    background-position: 50% 50%;
  }
  .full-width-header .wiz-pane-banner .wrapper-banner {
    height: 360px;
    text-align: center;
    position: relative;
  }
  .full-width-header .wiz-pane-banner .wrapper-banner h1 {
    display: block;
    width: 100%;
    font-size: 2em;
    text-align: center;
    line-height: 1em;
  }
  .full-width-header .wiz-pane-banner .wrapper-banner h3 {
    color: #fff;
    font-family: "Georgia", serif;
    font-weight: normal;
    text-shadow: #333 1px 1px 1px;
  }
}
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #fff;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("../images/fancybox/fancybox_sprite.png");
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../images/fancybox/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../images/fancybox/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../images/fancybox/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../images/fancybox/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }

  #fancybox-loading div {
    background-image: url("../images/fancybox/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}
/* -- Audit Requirement Panel -- */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.audit-requirements-panel,
.icon-block-panel,
.more-information-block-panel {
  margin: 0 -30px 0;
  padding: 30px;
  background: #ffffff;
  clear: both;
}
.audit-requirements-panel:after,
.icon-block-panel:after,
.more-information-block-panel:after {
  overflow: hidden;
  *zoom: 1;
}
.audit-requirements-panel .pane-title,
.audit-requirements-panel .panel-subtitle,
.icon-block-panel .pane-title,
.icon-block-panel .panel-subtitle,
.more-information-block-panel .pane-title,
.more-information-block-panel .panel-subtitle {
  text-align: left;
  display: block;
}
.audit-requirements-panel .pane-title,
.icon-block-panel .pane-title,
.more-information-block-panel .pane-title {
  font-size: 45px;
  line-height: 48px;
  text-transform: uppercase;
  margin: 0 0 10px;
  clear: both;
}
.audit-requirements-panel .panel-subtitle,
.icon-block-panel .panel-subtitle,
.more-information-block-panel .panel-subtitle {
  color: #898989;
  font-style: italic;
  font-size: 20px;
  font-family: "Georgia", serif;
  margin: 0 0 20px;
}

.audit-requirements-panel,
.icon-block-panel {
  text-align: center;
}
.audit-requirements-panel ul,
.icon-block-panel ul {
  width: 100%;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.audit-requirements-panel ul,
.audit-requirements-panel ul *,
.icon-block-panel ul,
.icon-block-panel ul * {
  box-sizing: border-box;
}
.audit-requirements-panel ul li,
.icon-block-panel ul li {
  text-align: center;
  width: 33.33333%;
  margin-bottom: 30px;
  border-left: 1px dashed #dddddd;
  background: center top no-repeat;
}
.audit-requirements-panel ul li:nth-child(3n+1),
.icon-block-panel ul li:nth-child(3n+1) {
  border-left: 0;
}
.audit-requirements-panel ul li a,
.icon-block-panel ul li a {
  color: #3e3e3e;
  padding: 140px 20px 0;
  display: block;
}
.audit-requirements-panel ul li a .panel-item-title,
.icon-block-panel ul li a .panel-item-title {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5em;
}

@media (max-width: 768px) {
  .audit-requirements-panel .see-all,
  .icon-block-panel .see-all {
    margin-bottom: 40px !important;
    float: left;
    position: initial;
    top: 0;
  }
  .audit-requirements-panel ul li,
  .icon-block-panel ul li {
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-right: none !important;
    border-bottom: 1px dashed #dddddd;
    border-left: none !important;
    float: none;
  }
  .audit-requirements-panel ul li.instructions,
  .icon-block-panel ul li.instructions {
    border-left: none;
    border-right: none;
  }
}
@media (max-width: 479px) {
  .audit-requirements-panel .pane-title,
  .icon-block-panel .pane-title,
  .more-information-block-panelblock .pane-title {
    font-size: 40px !important;
  }
}
blockquote {
  padding: 30px 50px 30px 30px;
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 18px;
  text-align: center;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  position: relative;
}
blockquote:before {
  content: "\201C";
  font-size: 6em;
  position: absolute;
  left: -20px;
  top: 60px;
  color: #dddddd;
}
blockquote:after {
  content: "\201D";
  font-size: 6em;
  position: absolute;
  right: 15px;
  top: 60px;
  color: #dddddd;
}
blockquote p {
  margin: 0;
  padding: 0;
}
@media all and (max-width: 768px) {
  blockquote {
    margin: 1.5em 0;
  }
}

/* !-- YouTube Container -- */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.youtube-panel {
  padding: 0 0 40px;
}

.youtube-container {
  position: relative;
  z-index: 1;
}
.youtube-container::before {
  content: "";
  padding-top: 56.25%;
  display: block;
}
.youtube-container iframe {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* -- Lazy Load Images -- */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
img[data-src-lazy] {
  background: url(../images/lazy-load-background.png) 0 0/auto auto repeat;
  width: 1px;
  height: 1px;
}

/*# sourceMappingURL=styles.css.map */
