/*
 * @file
 * global.styles
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 *
 *
 * How to use this file:
 * --------------------
 *
 * There are many empty selectors and some basic styles to act as a guide.
 * Nothing is set in stone and you can change anything - even delete all of it
 * and start with your own clean slate.
 *
 * To FORCE PRINT all selectors you can search and replace a single { (opening
 * curly brace) and insert an empty comment. This is very useful in conjuction
 * with FireSass: https://addons.mozilla.org/en-US/firefox/addon/firesass-for-firebug/
 *
 * See global.base also which includes normalize.css and some additional
 * helper classes and base styles.
 */
/* =============================================================================
 *   Base
 * ========================================================================== */
/*
 * To preserve theme settings never apply font properties to the HTML element.
 * This is critically important if you are using the Responsive JavaScript
 * feature as this relies on being able to set a pseudo font family on the HTML
 * element. If you need to set default font properties of any kind use the BODY
 * element as these can be overridden using font theme settings.
 */
html > body {
  font-family: "Helvetica Neue", "Arial Nova", Roboto, Helvetica, sans-serif;
  font-size: 15px;
}

html {
  background: #fff;
}

body.admin-menu #header {
  top: 29px;
}
body.admin-menu #header .mobile-menu {
  top: 77px;
}
body.mobile-menu-open #header .mobile-menu-button {
  border-right: 1px solid #c9c5c1;
  height: 48px;
}
body.mobile-menu-open #header .mobile-menu {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

/* =============================================================================
 *   HTML Elements
 * ========================================================================== */
h1,
.h1 {
  font-size: 44px;
  font-weight: 100;
}

h2,
.h2 {
  font-size: 30px;
  font-weight: 200;
}

h3,
.h3 {
  font-size: 24px;
  font-weight: 200;
}

h4,
.h4 {
  font-size: 20px;
  font-weight: 400;
}

h5,
.h5 {
  font-size: 17px;
  font-weight: 400;
}

.copytext {
  font-size: 15px;
}

.copytext-small {
  font-size: 13px;
}

.thin {
  font-weight: 100;
}

.light {
  font-weight: 200;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.columns ul {
  margin: 0 0 20px;
  padding-left: 25px;
}
.columns ul li {
  line-height: 18px;
  list-style: outside none none;
  margin-bottom: 10px;
  position: relative;
  font-size: 15px;
}
.columns ul li:before {
  color: #0065D3;
  content: "";
  left: -15px;
  position: absolute;
  top: 5px;
  background: url(../images/blue-dot.png);
  width: 6px;
  height: 5px;
}

pre,
code,
tt,
samp,
kbd,
var {
  font-family: Consolas, Monaco, "Courier New", Courier, monospace, sans-serif;
}

/* =============================================================================
 *   Wrappers
 * ========================================================================== */
.max-width-container {
  max-width: 320px;
  margin: 0 auto;
  position: relative;
}

/*
 * Outer wrappers:
 * - #page-wrapper: body > #page-wrapper
 * - #page: body > #page-wrapper > #page
 * - .container: body > #page-wrapper > #page.container
 *
 * The .container class holds the page width value from theme settings. You can
 * style the .container class but do not add width such as border, padding,
 * margins etc.
 */
#page {
  position: relative;
}

/*
 * Wraps all header elements - branding and .region-header
 */
#header {
  background-color: white;
  height: 48px;
  padding-top: 12px;
  position: fixed;
  width: 100%;
  max-width: 100%;
  z-index: 998;
  box-shadow: -320px 0 0 white, 320px 0 0 white;
  -moz-box-shadow: -320px 0 0 white, 320px 0 0 white;
  -webkit-box-shadow: -320px 0 0 white, 320px 0 0 white;
}
#header #branding {
  margin: 0;
}
#header #branding #logo {
  margin: 0px;
  padding: 0px;
}
#header #branding #logo img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 150px;
}
#header .mobile-menu-button {
  background-image: url("/sites/all/themes/ebay_partner_network/images/hamburger_menue_smartphone.png");
  background-color: white;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
  float: left;
  height: 47px;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
  cursor: pointer;
  z-index: 4;
}
#header .mobile-menu {
  background: white;
  position: fixed;
  top: 48px;
  bottom: 0px;
  left: 0px;
  -webkit-transform: translate(-100%, 0px);
  -ms-transform: translate(-100%, 0px);
  transform: translate(-100%, 0px);
  z-index: 3;
  overflow: auto;
  padding-bottom: 100px;
  width: 100%;
  height: 100%;
  border-top: 1px solid #c9c5c1;
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-timing-function: ease-in-out;
}
#header .mobile-menu .block-inner {
  margin: 0px;
}
#header .mobile-menu ul, #header .mobile-menu li {
  margin: 0px;
  padding: 0px;
}
#header .mobile-menu ul {
  /**** 2nd level menu ****/
}
#header .mobile-menu ul li {
  list-style-image: none;
  list-style-type: none;
  font-size: 20px;
  border-bottom: 1px solid #c9c5c1;
  position: relative;
}
#header .mobile-menu ul li a {
  padding: 18px;
  display: block;
  color: #333333;
}
#header .mobile-menu ul li a:visited {
  color: #333333;
}
#header .mobile-menu ul li.expanded ul {
  display: none;
}
#header .mobile-menu ul li .submenu-icon {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 18px;
}
#header .mobile-menu ul ul li a {
  padding: 18px 18px 18px 36px;
  color: #333333;
}
#header .mobile-menu ul ul li:last-child {
  border-bottom: none;
}
#header .mobile-menu .sign-up-link {
  margin: 20px;
  display: block;
  width: calc(100% - 40px);
}
#header .mobile-menu .signup-now-container-login {
  margin: 0px 20px 0px 20px;
  width: calc(100% - 40px);
}
#header .signup-now-container {
  display: none;
}
#header .signup-now-container .signup-now-container-login a,
#header .signup-now-container .signup-now-container-login a:hover,
#header .signup-now-container .signup-now-container-login a:visited {
  color: #333333;
  text-decoration: underline dotted;
}
#header .signup-now-container .sign-up-link {
  padding: 0.75rem 30px !important;
  border-radius: 0 !important;
}

/*
 * Wraps the sidebars the content column
 */
/*
 * Main content column wrapper
 */
/*
 * Wraps the main-content-header, the content region and feed-icons. Use this
 * wrapper to style the entire main content column
 */
/*
 * Wraps the content region, avoid applying styles to this wrapper, its used
 * mainly for position and invisible gutters and can be problematic to style
 */
/*
 * Footer wrapper
 */
/*
 * Panels may need additional margin wrangling when in the $content region
 */
/*
 * Full Width Wrappers
 * These are used in the optional page--full-width-wrappers.tpl.php template.
 * All have internal .container classes. In the full width wrapper template the
 * .container classes set the width or max-width - you can style this but never
 * add any width/margin/padding/borders etc to .container
 */
/*
 * Wraps the leaderboard
 */
/*
 * Wraps the header
 */
#header-wrapper {
  /* Debug styles, is this working */
  background: rgba(255, 192, 203, 0.5);
}

/*
 * Wraps the nav elements
 */
/*
 * Wraps breadcrumb
 */
/*
 * Wraps messages and help
 */
/*
 * Wraps the secondary content/preface region
 */
/*
 * Wraps the main content column
 */
/*
 * Wraps the tertiary content/postfix region
 */
/*
 * Footer wrapper
 */
#footer-wrapper {
  /* Debug styles, is this working? */
  background: rgba(255, 192, 203, 0.5);
}

/* =============================================================================
 *   Branding
 * ========================================================================== */
/*
 * Wraps all the branding elements, logo, name and slogan
 */
/*
 * Logo
 */
#logo {
  padding: 10px 0;
}
#logo img {
  vertical-align: bottom;
}

/*
 * Wrapper for the site name and slogan
 */
/*
 * Site name (h1)
 */
#site-name {
  margin: 0;
}
#site-name a:link, #site-name a:visited {
  text-decoration: none;
}
#site-name a:hover, #site-name a:focus {
  text-decoration: underline;
}

/*
 * Site slogan (h2)
 */
#site-slogan {
  margin: 0;
}

/* =============================================================================
 *   Page content header
 * ========================================================================== */
/*
 * Main content header wraps the page title, tabs and actions links
 */
#main-content-header h1 {
  display: none;
}

/*
 * The main page title (h1)
 */
#page-title {
  margin: 0;
}

/* =============================================================================
 *   Misc Global Styles
 * ========================================================================== */
/*
 * Feed icons
 */
/*
 * Aggregator feed source
 */
#aggregator .feed-source .feed-icon {
  display: inline;
  float: none;
  margin-right: 10px;
}

.feed-details dt,
.feed-details dd {
  display: inline;
  margin: 0;
}

/*
 * Generic styles for the more link
 */
/*
 * Generic styles for links. See the ul.links declaration in node and comment stylesheets
 */
ul.links {
  margin: 0;
  padding: 0;
}
ul.links.inline {
  display: block;
}
ul.links li {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Search results are an ordered list so reset the margin
 */
.search-results {
  margin: 0;
  padding: 0;
}

/*
 * Attribution message and link
 */
.attribution {
  display: block;
  opacity: 0.65;
  padding: 1em 0;
  text-align: center;
}
.attribution a {
  text-decoration: none;
  color: inherit;
}
.attribution a:hover, .attribution a:focus {
  text-decoration: underline;
}

/* =============================================================================
 *   Regions
 * ========================================================================== */
/*
 * Standard region wrapper, don't add width to any regions, you will bork the layout - no margin, padding or borders etc
 */
/*
 * Regions have an inner div - perfect for adding margin, padding or borders
 */
/*
 * Regions can be nested, such as when using Panels
 */
/*
 * Header region, embedded in the #header
 */
/*
 * Generally used to output Drupals help block, if the help module is enabled
 */
/*
 * Secondary content
 */
/*
 * Sits above the main content header, like a content-top region
 */
/*
 * Sits below the main content, like a content-bottom region
 */
/*
 * Sidebars - targets both
 */
/*
 * First sidebar
 */
/*
 * Second sidebar
 */
/*
 * Tertiary content
 */
/*
 * Footer region
 */
/* =============================================================================
 *   Links
 * ========================================================================== */
a {
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}

/* =============================================================================
 *   Primary, Secondary and Menu Bar region menus
 * ========================================================================== */
.nav {
  clear: both;
  margin: 10px 0;
}
.nav ul,
.nav ul.menu {
  margin: 0;
  padding: 0;
}
.nav li,
.nav ul.menu li {
  display: inline;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav li a,
.nav ul.menu li a {
  display: block;
  white-space: nowrap;
  padding: 0 10px;
}
.nav .block {
  margin-bottom: 0;
}

.menu-bar-main-container {
  position: relative;
}

#menu-bar {
  display: none;
  background-color: white;
  margin: 0px;
  box-shadow: -320px 0 0 white, 320px 0 0 white;
  -moz-box-shadow: -320px 0 0 white, 320px 0 0 white;
  -webkit-box-shadow: -320px 0 0 white, 320px 0 0 white;
}
#menu-bar nav.block-menu-block,
#menu-bar nav#block-system-main-menu {
  margin: 0px;
}
#menu-bar nav.block-menu-block ul li a,
#menu-bar nav#block-system-main-menu ul li a {
  padding: 0px;
  color: #333333;
}
#menu-bar nav.block-menu-block ul li a:visited,
#menu-bar nav#block-system-main-menu ul li a:visited {
  color: #333333;
}

/* =============================================================================
 *   Superfish
 * ========================================================================== */
ul.sf-menu {
  margin-bottom: 0;
}
ul.sf-menu a {
  border-left: 0;
  border-top: 0;
  padding: 0 10px;
  text-decoration: none;
  height: 2.5em;
  line-height: 2.5em;
}
ul.sf-menu li:hover, ul.sf-menu li.sfHover {
  outline: 0;
}
ul.sf-menu a:focus, ul.sf-menu a:hover, ul.sf-menu a:active {
  outline: 0;
}

/*
 * Superfish blocks
 */
.block-superfish ul {
  margin: 0 !important;
  padding: 0 !important;
}
.block-superfish li {
  margin: 0 !important;
  padding: 0 !important;
}

/*
 * Vertical style
 */
.sf-vertical {
  width: 100%;
}
.sf-vertical li {
  width: 100%;
}
.sf-vertical li:hover ul, .sf-vertical li.sfHover ul {
  left: 100%;
  top: 0;
  margin: 0;
  padding: 0;
}
.sf-vertical li a {
  padding: 0 10px;
}

/*
 * Navbar style
 */
.sf-navbar {
  padding-bottom: 0 !important;
}

/*
 * Sensible padding for the default style
 */
.sf-menu.sf-style-default a {
  padding: 0 10px;
}

/* =============================================================================
 *   Menu Toggles
 * ========================================================================== */
.at-mt .at-menu-toggle,
.at-mt .at-menu-toggle ul,
.at-mt .at-menu-toggle ul.menu {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
.at-mt .at-menu-toggle-button {
  margin: 0;
}
.at-mt .at-menu-toggle ul a {
  padding: 0 10px;
  white-space: nowrap;
}

/* =============================================================================
 *   Menus, usually blocks
 * ========================================================================== */
ul.menu {
  padding-left: 15px;
}
ul.menu ul {
  padding-left: 15px;
}
ul.menu li {
  margin: 0;
}

/* If li.content exists it's a problem, so reset the padding */
.block .menu li.content {
  padding: 0;
}

/* =============================================================================
 *   Book navigation menu
 * ========================================================================== */
.book-navigation .page-up {
  /* Prevent text wrapping to a new line, assumes English "up" is used (two characters) */
  min-width: 2em;
  white-space: nowrap;
}
.book-navigation .menu {
  margin-left: 0;
}

/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */
#breadcrumb {
  margin: 10px 0;
  /* If the label is set to show in theme settings the label class is added */
}
#breadcrumb .breadcrumb-label {
  font-size: 1em;
  display: inline;
  padding-right: 10px;
}
#breadcrumb .breadcrumb-label:after {
  content: ":";
}
#breadcrumb ol {
  margin: 0;
  padding: 0;
}
#breadcrumb .with-breadcrumb-label ol {
  display: inline;
}
#breadcrumb li {
  list-style: none;
  display: inline;
}

/* =============================================================================
 *   Pagers
 * ========================================================================== */
ul.pager {
  clear: both;
  margin: 0;
  text-align: center;
}

.item-list ul.pager li {
  margin: 0;
}

ul.pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: .5em;
}
ul.pager li.pager-current {
  font-weight: 700;
}

.block ul.pager li {
  margin: 0;
}

/*
 * Theme the various states of pager links
 */
/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */
#skip-link {
  left: 50%;
  margin-left: -6.5em;
  margin-top: 0;
  padding: 0 0.5em;
  position: absolute;
  width: 12em;
  z-index: 50;
}
#skip-link a {
  background: #444;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}
#skip-link a:link, #skip-link a:visited {
  background: #444;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}
#skip-link a:hover, #skip-link a:focus, #skip-link a:active {
  outline: 0;
}

/* =============================================================================
 *   Tabs (local tasks)
 * ========================================================================== */
#tasks {
  margin-bottom: 15px;
}

ul.primary {
  border-bottom-color: #ccc;
  margin: 20px 0;
  padding: 0 0 0 5px;
}
ul.primary li {
  display: block;
  float: left;
  margin: 0 1px -1px;
}
ul.primary li a {
  background-color: #f5f5f5;
  border-color: #ccc;
  margin-right: 1px;
  padding: 0 10px;
  display: block;
  float: left;
  height: 1.5em;
  line-height: 1.5em;
}
ul.primary li a:hover, ul.primary li a:focus {
  background-color: #eee;
  border-color: #ccc;
}
ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  background-color: #fff;
  border-bottom-color: #fff;
}

ul.secondary {
  border-bottom: 1px solid #ccc;
  margin: 1em 0 0;
  padding: 0 .3em 1em;
}
ul.secondary li {
  border-right: 0;
  list-style: none;
  padding: 0 10px 0 0;
}
ul.secondary li a:hover, ul.secondary li a.active {
  border-bottom: none;
  text-decoration: underline;
}

/* =============================================================================
 *   Action links
 * ========================================================================== */
ul.action-links {
  margin: 20px 0 0;
  list-style: none;
}

/* =============================================================================
 *  Field Styling
 * ========================================================================== */
/*
 * Wrapper for any field
 */
/*
 * Above and inline classes are on the field wrapper
 */
/*
 * When labels are set to inline in field display settings the clearfix class is automatically added
 */
.field-label-inline {
  /* Remove the margin on inline field lables to preserve vertical formatting */
}
.field-label-inline .field-label {
  margin: 0;
}

/*
 * Labels are h2 in Adaptivetheme. Use a strong selector to mitigate unwanted ineritance issues
 */
.field-label {
  font-size: 1em;
  font-weight: 700;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 0;
}

/*
 * Field types (Core)
 */
/*
 * Image fields use the <figure> and <figcaption> elements from HTML5
 */
/*
 * Taxonomy
 */
.field-type-taxonomy-term-reference {
  /* The same bottom margin as p, blockquote, ul, ol and dl */
  margin-bottom: 1.5em;
}
.field-type-taxonomy-term-reference.field-label-inline .field-items {
  margin: 0;
  padding: 0;
}
.field-type-taxonomy-term-reference.field-label-inline .field-item {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Text
 */
/*
 * Long text
 */
/*
 * Text with summary
 */
/*
 * File
 */
/*
 * Number/Integer
 */
/*
 * Decimal
 */
/*
 * Number float
 */
/*
 * List
 */
/*
 * List boolean
 */
/*
 * List integer
 */
/*
 * List float
 */
/*
 * Field types (Contrib)
 */
/*
 * Named fields
 */
/*
 * Underscores in field name are replaced with dashes
 */
/*
 * Image Alignment Theme Settings - included here so you can easily override
 */
/*
 * Float none setting
 */
/*
 * Float left setting
 */
.ia-l .field-type-image figure,
.iat-l .field-type-image figure {
  margin: 5px 20px 15px 0;
}

/*
 * Centered setting
 */
.ia-c .field-type-image figure,
.iat-c .field-type-image figure {
  margin: 5px auto 15px;
}

/*
 * Float right setting
 */
.ia-r .field-type-image figure,
.iat-r .field-type-image figure {
  margin: 5px 0 15px 20px;
}

/* =============================================================================
 *   Block Styling
 * ========================================================================== */
/*
 * Main wrapper for most blocks, block_system_main does not have it
 */
.block {
  margin-bottom: 20px;
}

/*
 * Inner wrapper for most blocks, good for margin, padding and borders, block_system_main does not have it
 */
/*
 * The first block in the region
 */
/*
 * The last block in the region
 */
/*
 * Zebra striping for each block in the region
 */
/*
 * Zebra striping for each block in the region
 */
/*
 * Block title
 */
.block-title {
  margin: 0;
}

/*
 * Block content wrapper
 */
/*
 * Match item list and block menu margin and padding
 */
.block-content ul,
.block-content ol {
  padding: 0 0 0 15px;
}
.block-content li {
  margin: 0;
  padding: 0;
}

/*
 * Block for the latest news items in the first category
 */
/*
 * Block for the latest news items in the first feed
 */
/*
 * First block created with "Add block" link
 */
/*
 * "Recent blog posts" block
 */
/*
 * "Book navigation" block for the current book's table of contents
 */
/*
 * "Recent comments" block
 */
/*
 * "Active forum topics" block
 */
/*
 * "New forum topics" block
 */
/*
 * Language switcher block
 */
/*
 * Custom menu block
 */
/*
 * "Recent content" block
 */
/*
 * "Syndicate" block for primary RSS feed; see also page.css's .feed-icon
 */
/*
 * "Most recent poll" block
 */
/*
 * "Author information" block for the profile of the page's author
 */
/*
 * "Search form" block
 */
/*
 * "Shortcuts" block
 */
/*
 * "Popular content" block
 */
/*
 * "Main menu" block
 */
/*
 * "Management" block for Drupal management menu
 */
/*
 * "Navigation" block for Drupal navigation menu
 */
/*
 * "User menu" block for Drupal user menu
 */
/*
 * "System help" block
 */
/*
 * "Main page content" block
 */
/*
 * "Powered by Drupal" block
 */
/*
 * "User login form" block
 */
/*
 * "Who's new" block for a list of the newest users
 */
/*
 * "Who's online" block for a list of the online users
 */
/* =============================================================================
 *   Node Styling
 * ========================================================================== */
.node {
  margin-bottom: 20px;
}
.node .node-title {
  margin: 0;
}

/*
 * All nodes are given a node-FOO class that describes the type of content that
 * it is. If you create a new content type called "my-custom-type", it will
 * receive a "node-my-custom-type" class.
 */
/* =============================================================================
 *   Comment Styling - Comments, comment wrapper, comment form
 * ========================================================================== */
/*
 * Wrapper for the list of comments and its titles
 */
#comments {
  margin: 1.5em 0;
}
#comments h2.comment-title {
  margin: 0;
}
#comments h2.comment-form {
  margin: 0;
}

/*
 * Wrapper for a single comment
 */
.comment {
  margin-bottom: 20px;
}

/*
 * Comment title
 */
.comment-title {
  margin: 0;
}

/*
 * Comment states
 */
/*
 * Preview of the comment before submitting new or updated comment
 */
/*
 * "New" marker for comments that are new for the current user
 */
.new {
  color: #c00;
}

/*
 * Nested comments are indented
 */
.indented {
  margin-left: 40px;
}

/* =============================================================================
 *   Forms
 * ========================================================================== */
/*
 * Wrapper for a form element (or group of form elements) and its label
 */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
.form-item label {
  font-weight: 700;
}
.form-item .description {
  font-size: 0.85em;
}

/*
 * Highlight marks and form required mark
 */
.marker,
.form-required {
  color: #c00;
}

/*
 * The submit button
 */
.container-inline div,
.container-inline label {
  display: inline;
}

/*
 * Define consistent borders
 */
fieldset {
  border: 1px solid #ccc;
}

/*
 * Tips for Drupal's input formats
 */
/*
 * Buttons used by contrib modules like Media
 */
a.button {
  -moz-appearance: button;
  -webkit-appearance: button;
}

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

/* =============================================================================
 *   Tables
 * ========================================================================== */
table {
  margin: 10px 0;
  padding: 0;
  width: 100%;
}
table.sticky-header {
  z-index: 10;
}

table,
thead,
tbody,
tr,
th,
td {
  border-color: #ccc;
}

table,
td,
th {
  vertical-align: middle;
}

caption,
th,
td {
  text-align: left;
}

thead tr {
  font-weight: 700;
  background-color: #e5e5e5;
}

td,
th {
  border-bottom: 0;
  margin: 0;
  padding: 5px 7px;
}

tbody tr {
  border-top: 1px solid #ccc;
}

tr {
  /* Table row striping */
}
tr.odd {
  background: #fff;
}
tr.info, tr.even, tr:nth-child(2n+2) {
  border-bottom: 0;
  background-color: #f5f5f5;
}
tr.odd td.active {
  background-color: #eee;
}
tr.even td.active {
  background-color: #ebebeb;
}

/*
 * Forum tables
 * Core sets white-space to nowrap, which makes no sense
 */
#forum td.created, #forum td.posts, #forum td.topics, #forum td.last-reply, #forum td.replies, #forum td.pager {
  white-space: normal;
}

/* =============================================================================
 *   Messages
 * ========================================================================== */
div.messages {
  margin-bottom: 10px;
  margin-top: 10px;
}
div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

/*
 * Unpublished nodes
 */
.node-unpublished p.unpublished,
.comment-unpublished p.unpublished {
  color: pink;
  color: rgba(239, 170, 170, 0.4);
  font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
}

/* =============================================================================
 *    Maintenance pages
 * ========================================================================== */
.maintenance-page .container {
  padding: 40px 0;
}
.maintenance-page #site-name,
.maintenance-page #page-title {
  margin: 0;
}

.db-offline .container {
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  max-width: 960px;
}
.db-offline div.messages {
  margin: 20px 0 0;
}
.db-offline #content {
  padding: 20px 0;
}

/* =============================================================================
 *   Misc overrides for contrib modules
 * ========================================================================== */
/*
 * Admin menu overrides
 */
#admin-menu {
  margin: 0;
  padding: 0;
}

/*
 * Devel Module
 */
.dev-query {
  background: #eee;
  padding: 30px;
}

/*
 * Styleguide module tweaks
 */
#styleguide-header {
  padding: 0 10px;
}
#styleguide-header .item-list {
  font-family: inherit;
  margin: 0 20px 20px 0;
  min-height: 260px;
  width: auto;
}

#footer {
  box-shadow: -960px 0 0 #fff, 960px 0 0 #fff;
  -moz-box-shadow: -960px 0 0 #fff, 960px 0 0 #fff;
  -webkit-box-shadow: -960px 0 0 #fff, 960px 0 0 #fff;
  background-color: #fff;
  padding: 20px 10px;
}
#footer #block-ebay-epn-footer-ebay-epn-footer {
  margin-bottom: 0;
}

/***** Language Switch Footer / Mobile menu *****/
.language-select {
  display: list-item;
  font-size: 12px;
  margin-bottom: 12px;
  list-style: none;
  text-decoration: none;
  width: 160px;
  margin: 5px auto 20px;
}
.language-select a {
  color: #333333;
}
.language-select .language-select-wrapper {
  position: relative;
  border: 0 none;
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
.language-select .language-select-wrapper .presentation {
  cursor: pointer;
  display: block;
  height: 30px;
  line-height: 29px;
  position: relative;
  text-indent: 50px;
  width: 160px;
}
.language-select .language-select-wrapper .presentation .epn-flag {
  display: inline-block;
  height: 18px;
  left: 10px;
  margin-right: 10px;
  position: absolute;
  top: 5px;
  width: 27px;
}
.language-select .language-select-wrapper .current {
  background: #f5f5f5 none repeat scroll 0 0;
  border: 1px solid #ddd;
  background: transparent url("../images/down.svg") no-repeat scroll right center;
  text-indent: 43px;
}
.language-select .language-select-wrapper .current .presentation,
.language-select .language-select-wrapper .current .active {
  text-indent: 43px;
}
.language-select .language-select-wrapper .language-select-dropdown {
  display: none;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 0 0 3px 3px;
  box-shadow: 5px 2px 10px rgba(0, 0, 0, 0.4);
  padding: 20px;
  position: absolute;
  left: 0px;
  top: -192px;
}
.language-select .language-select-wrapper .language-select-dropdown ul {
  float: left;
  height: 100%;
  list-style: outside none none;
  margin: 0;
  min-width: 175px;
  padding: 0;
}
.language-select .language-select-wrapper .language-select-dropdown ul .presentation {
  width: 100%;
  margin: 0;
  display: list-item;
  list-style: outside none none;
  padding: 2px 15px;
}

/****** Tools Item ******/
.node-tools-item.tool {
  margin-bottom: 30px;
}
.node-tools-item.tool .tool-image {
  margin-bottom: 10px;
  cursor: pointer;
}
.node-tools-item.tool .tool-title {
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 15px;
  line-height: 20px;
}
.node-tools-item.tool .tool-desc {
  font-size: 15px;
  line-height: 20px;
}
.node-tools-item.tool .tool-detail {
  display: none;
}

/******* Paragraphs ******/
.paragraphs-item-calculator {
  background-color: white;
  box-shadow: -320px 0 0 white, 320px 0 0 white;
  -moz-box-shadow: -320px 0 0 white, 320px 0 0 white;
  -webkit-box-shadow: -320px 0 0 white, 320px 0 0 white;
}
.paragraphs-item-calculator .calculator-additional-info {
  margin-top: 0;
  font-size: 13px;
  margin-bottom: 30px;
  max-width: 300px;
}
.paragraphs-item-calculator .calculator-outer-container {
  padding-top: 0;
  margin-bottom: 0;
}
.paragraphs-item-calculator .calculator-outer-container .calculator-headline h3 {
  font-weight: 400;
  margin: 0;
  padding-bottom: 5px;
  padding-left: 20px;
  font-size: 20px;
}
.paragraphs-item-calculator .calculator-outer-container .calculator-intro {
  background-color: white;
  position: relative;
  max-width: 100%;
}
.paragraphs-item-calculator .calculator-outer-container .calculator-intro .calculator-intro-headline {
  margin-left: -10px;
  margin-right: -10px;
}
.paragraphs-item-calculator .calculator-outer-container .calculator-intro .calculator-intro-headline h3 {
  background-color: #efefef;
  box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  -moz-box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  -webkit-box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  font-size: 20px;
  line-height: 20px;
  font-weight: 100;
  padding: 15px 15px;
  padding-left: 30px;
  margin-top: 10px;
}
.paragraphs-item-calculator .calculator-outer-container .calculator-intro .calculator-intro-container {
  font-size: 14px;
  font-weight: 200;
  line-height: 18px;
  padding: 0 20px;
}
.paragraphs-item-calculator .calculator-outer-container .calculator-intro .calculator-intro-image {
  margin-left: -10px;
  margin-right: -10px;
  width: calc(100% + 20px);
  max-width: none;
}
.paragraphs-item-calculator .calculator-outer-container .calculator-intro .calculator-intro-image picture,
.paragraphs-item-calculator .calculator-outer-container .calculator-intro .calculator-intro-image img {
  width: 100%;
  height: auto;
}
.paragraphs-item-calculator .calculator-container .categories.desktop {
  display: none;
}
.paragraphs-item-calculator .calculator-container .calculator-left {
  width: 100%;
}
.paragraphs-item-calculator .calculator-container .calculator-right {
  width: 100%;
  margin-top: 10px;
}
.paragraphs-item-calculator .calculator-container .calculator-right .current-item {
  background-color: #efefef;
  box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  -moz-box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  -webkit-box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 10px;
  padding-right: 10px;
}
.paragraphs-item-calculator .calculator-container .calculator-right .current-item div.item-image {
  width: 90px;
  height: 90px;
  display: table;
  text-align: center;
  margin: 0 auto;
}
.paragraphs-item-calculator .calculator-container .calculator-right .current-item div.item-image .li-wrapper {
  display: table-cell;
  vertical-align: middle;
}
.paragraphs-item-calculator .calculator-container .calculator-right .current-item div.item-image .li-wrapper .item-image {
  max-width: 70px;
  max-height: 70px;
}
.paragraphs-item-calculator .calculator-container .calculator-right .current-item .item-right-side {
  margin-bottom: 10px;
  text-align: center;
}
.paragraphs-item-calculator .calculator-container .calculator-right .current-item .item-right-side .item-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}
.paragraphs-item-calculator .calculator-container .calculator-right .current-item .item-right-side .item-price {
  font-size: 38px;
  font-weight: 100;
}
.paragraphs-item-calculator .calculator-container .calculator-right .current-item .item-right-side .item-price #price-currency.gbp {
  margin-right: -10px;
}
.paragraphs-item-calculator .calculator-container .calculator-right .current-item .item-right-side .item-price #price-currency.usd,
.paragraphs-item-calculator .calculator-container .calculator-right .current-item .item-right-side .item-price #price-currency.eur {
  margin-right: -6px;
}
.paragraphs-item-calculator .calculator-container .calculator-right .current-item .item-right-side .item-price .additional-info-below {
  font-size: 15px;
  vertical-align: top;
}
.paragraphs-item-calculator .calculator-container .calculator-right .current-item .item-right-side .item-price .additional-info {
  font-size: 11px;
  font-weight: normal;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider {
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider .items-sold-text {
  display: inline-block;
  width: 50px;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider #amount-items {
  font-size: 40px;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider input[type="range"] {
  -webkit-appearance: none;
  position: relative;
  width: 100%;
  margin-top: 25px;
  display: block;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider input[type="range"]:disabled::-webkit-slider-thumb {
  background: #dedede;
  border: 1px solid #dedede;
  cursor: not-allowed;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider input[type="range"]:disabled::-moz-range-thumb {
  background: #dedede;
  border: 1px solid #dedede;
  cursor: not-allowed;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider input[type="range"]:disabled::-ms-thumb {
  background: #dedede;
  border: 1px solid #dedede;
  cursor: not-allowed;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider input[type="range"]:disabled::-webkit-slider-runnable-track {
  cursor: not-allowed;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider input[type="range"]:disabled::-moz-range-track {
  cursor: not-allowed;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider input[type="range"]:disabled::-ms-track {
  cursor: not-allowed;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  cursor: pointer;
  border: 1px solid #333333;
  background: #333333;
  width: 20px;
  height: 20px;
  border-radius: 30px;
  margin-top: -8px;
  z-index: 10;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider input[type="range"]::-moz-range-thumb {
  cursor: pointer;
  border: 1px solid #333333;
  background: #333333;
  width: 15px;
  height: 15px;
  border-radius: 20px;
  z-index: 10;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider input[type="range"]::-ms-thumb {
  cursor: pointer;
  border: 1px solid #333333;
  background: #333333;
  width: 15px;
  height: 15px;
  border-radius: 20px;
  z-index: 10;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #dedede;
  margin-top: -25px;
  z-index: 8;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider input[type="range"]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #dedede;
  z-index: 8;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider input[type="range"]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #dedede;
  cursor: pointer;
  border-color: transparent;
  color: transparent;
  z-index: 8;
}
.paragraphs-item-calculator .calculator-container .calculator-right .min-max-slider input[type="range"]:focus {
  outline: none;
}
.paragraphs-item-calculator .calculator-container .calculator-right .potential-earnings {
  background-color: #efefef;
  box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  -moz-box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  -webkit-box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  margin-left: -10px;
  margin-right: -10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  text-align: center;
}
.paragraphs-item-calculator .calculator-container .calculator-right .potential-earnings div {
  font-size: 36px;
  font-weight: 400;
  margin-top: 10px;
}
.paragraphs-item-calculator .calculator-container .calculator-right .potential-earnings div #earning-currency.gbp,
.paragraphs-item-calculator .calculator-container .calculator-right .potential-earnings div #earning-currency.eur,
.paragraphs-item-calculator .calculator-container .calculator-right .potential-earnings div #earning-currency.usd {
  margin-right: -10px;
}
.paragraphs-item-calculator .calculator-container .calculator-right .potential-earnings div .earn-number {
  letter-spacing: 2px;
}
.paragraphs-item-calculator .calculator-container .calculator-right .announcement {
  color: #f5af02;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.paragraphs-item-calculator .calculator-container ul.categories,
.paragraphs-item-calculator .calculator-container ul.items {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.paragraphs-item-calculator .calculator-container ul.categories li,
.paragraphs-item-calculator .calculator-container ul.items li {
  list-style: none;
  width: calc(100% / 3);
  height: 110px;
  display: table;
  float: left;
  cursor: pointer;
  vertical-align: text-top;
  text-align: center;
}
.paragraphs-item-calculator .calculator-container ul.categories li.text,
.paragraphs-item-calculator .calculator-container ul.items li.text {
  font-size: 20px;
}
.paragraphs-item-calculator .calculator-container ul.categories li .li-wrapper,
.paragraphs-item-calculator .calculator-container ul.items li .li-wrapper {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}
.paragraphs-item-calculator .calculator-container ul.categories li .li-wrapper .item-image,
.paragraphs-item-calculator .calculator-container ul.items li .li-wrapper .item-image {
  max-width: 70px;
  max-height: 70px;
}
.paragraphs-item-calculator .calculator-container ul.categories li .hover-wrapper,
.paragraphs-item-calculator .calculator-container ul.items li .hover-wrapper {
  display: none;
}
.paragraphs-item-calculator .calculator-container .mobile-categories {
  margin: 0px;
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 30px;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  background: #efefef;
  box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  -moz-box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  -webkit-box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
}
.paragraphs-item-calculator .calculator-container .mobile-categories .mobile-categories-headline {
  padding: 20px 0px 10px 20px;
}
.paragraphs-item-calculator .calculator-container .mobile-categories .categories-mobile li {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.paragraphs-item-calculator .calculator-container .mobile-categories .categories-mobile li:nth-child(odd) {
  background: white;
}
.paragraphs-item-calculator .calculator-container .mobile-categories .categories-mobile li:nth-child(even) {
  background: #efefef;
}
.paragraphs-item-calculator .calculator-container .mobile-categories .categories-mobile li .category-image-wrapper {
  height: 80px;
  margin-bottom: 20px;
}
.paragraphs-item-calculator .calculator-container .mobile-categories .categories-mobile li .category-image {
  max-width: 80px;
  max-height: 80px;
  display: inline-block;
}
.paragraphs-item-calculator .calculator-container .mobile-categories .categories-mobile li .category-name {
  font-size: 14px;
}
.paragraphs-item-calculator .calculator-container .mobile-categories.tablet {
  display: none;
}
.paragraphs-item-calculator .calculator-container .items-wrapper {
  background: #efefef;
  box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  -moz-box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  -webkit-box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 10px;
  padding-right: 10px;
}
.paragraphs-item-calculator .calculator-container ul.items .back-to-category-view {
  text-transform: uppercase;
}
.paragraphs-item-calculator .calculator-container ul.items .back-to-category-view .li-wrapper {
  position: relative;
}
.paragraphs-item-calculator .calculator-container ul.items .back-to-category-view span.back-triangle {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #f5af02;
  position: absolute;
  left: -10px;
}
.paragraphs-item-calculator .calculator-container ul {
  margin: 0;
  padding-left: 0;
}
.paragraphs-item-calculator .calculator-container ul li {
  margin-bottom: 0;
}
.paragraphs-item-calculator .calculator-container ul li:before {
  display: none;
}

.paragraphs-item-homepage-main-content .copytext-white-bg-container {
  background: white;
  position: relative;
  padding-top: 38px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
  box-shadow: -320px 0 0 white, 320px 0 0 white;
  -moz-box-shadow: -320px 0 0 white, 320px 0 0 white;
  -webkit-box-shadow: -320px 0 0 white, 320px 0 0 white;
}
.paragraphs-item-homepage-main-content .copytext-white-bg-container .copytext {
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 18px;
  padding-left: 15px;
}
.paragraphs-item-homepage-main-content .copytext-white-bg-container .image-right-side,
.paragraphs-item-homepage-main-content .copytext-white-bg-container .image-left-side {
  margin-bottom: 25px;
}
.paragraphs-item-homepage-main-content .copytext-white-bg-container .image-right-side img,
.paragraphs-item-homepage-main-content .copytext-white-bg-container .image-left-side img {
  width: 100%;
}
.paragraphs-item-homepage-main-content .copytext-white-bg-container .image-right-side {
  display: none;
}
.paragraphs-item-homepage-main-content .copytext-white-bg-container #find-share-earn {
  margin-bottom: 25px;
}
.paragraphs-item-homepage-main-content .copytext-white-bg-container #find-share-earn .find-share-earn-item {
  text-align: center;
  margin-bottom: 20px;
}
.paragraphs-item-homepage-main-content .copytext-white-bg-container #find-share-earn .find-share-earn-item .headline {
  font-size: 20px;
  line-height: 28px;
  margin-top: 10px;
}
.paragraphs-item-homepage-main-content .copytext-white-bg-container #find-share-earn .find-share-earn-item .skin-flyout-container {
  display: inline;
}
.paragraphs-item-homepage-main-content .copytext-white-bg-container #find-share-earn .find-share-earn-item .skin-flyout-container .copytext {
  display: inline;
  padding: 0;
  font-size: 15px;
  line-height: 28px;
}
.paragraphs-item-homepage-main-content .copytext-white-bg-container #find-share-earn .find-share-earn-item .skin-flyout-container .icon-info {
  z-index: 997;
  position: relative;
  display: inline;
  padding: 0;
  font-size: 13px;
}
.paragraphs-item-homepage-main-content .copytext-white-bg-container #find-share-earn .find-share-earn-item .skin-flyout-container .flyout-alert {
  font-size: 13px;
  line-height: 19px;
  text-align: left;
  z-index: 1000;
}
.paragraphs-item-homepage-main-content .copytext-white-bg-container #find-share-earn .find-share-earn-item .skin-flyout-container .flyout-position {
  right: -8px;
}

.paragraphs-item-homepage-promo .sign-up {
  background-color: #F5AF02;
  position: relative;
  padding: 20px;
  box-shadow: -320px 0 0 #F5AF02, 320px 0 0 #F5AF02;
  -moz-box-shadow: -320px 0 0 #F5AF02, 320px 0 0 #F5AF02;
  -webkit-box-shadow: -320px 0 0 #F5AF02, 320px 0 0 #F5AF02;
}
.paragraphs-item-homepage-promo .sign-up .sign-up-container {
  display: inline;
}
.paragraphs-item-homepage-promo .sign-up .sign-up-container .sign-up-headline {
  color: white;
  height: auto;
  margin: 0 0 0 0;
  padding-top: 0px;
  font-size: 14px;
  line-height: 18px;
  width: 100%;
}
.paragraphs-item-homepage-promo .sign-up .sign-up-container .sign-up-link-wrapper {
  margin-top: 10px;
}
.paragraphs-item-homepage-promo .sign-up .sign-up-container .sign-up-link {
  font-weight: 700 !important;
  border-radius: 0 !important;
  padding: 0.75rem 30px !important;
  margin: 0 auto;
  display: block;
}

.paragraphs-item-tools .tools-inner-main-container {
  background: white;
  box-shadow: -320px 0 0 white, 320px 0 0 white;
  -moz-box-shadow: -320px 0 0 white, 320px 0 0 white;
  -webkit-box-shadow: -320px 0 0 white, 320px 0 0 white;
  padding: 60px 50px;
  min-height: 200px;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories {
  display: none;
  margin-bottom: 20px;
  position: relative;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category {
  margin-bottom: 20px;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category .a {
  font-size: 20px;
  line-height: 28px;
  color: #333333;
  font-weight: 200;
  position: relative;
  padding-bottom: 15px;
  cursor: pointer;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category .a:hover, .paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category .a.active {
  text-decoration: none;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category:hover .a, .paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category.active .a {
  font-weight: 500;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category:hover .a:before, .paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category.active .a:before {
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category:hover.building_links .a, .paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category.active.building_links .a {
  color: #e53238;
  font-weight: 500;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category:hover.building_links .a:before, .paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category.active.building_links .a:before {
  background: #e53238;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category:hover.developing_creative .a, .paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category.active.developing_creative .a {
  color: #2767b0;
  font-weight: 500;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category:hover.developing_creative .a:before, .paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category.active.developing_creative .a:before {
  background: #2767b0;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category:hover.item_feeds .a, .paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category.active.item_feeds .a {
  color: #f5af02;
  font-weight: 500;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category:hover.item_feeds .a:before, .paragraphs-item-tools .tools-inner-main-container .tools-categories .tools-category.active.item_feeds .a:before {
  background: #f5af02;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories-mobile {
  display: block;
  margin-bottom: 30px;
  position: relative;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories-mobile .tools-categories-selected {
  width: 180px;
  margin: 0 auto;
  z-index: 10;
  background: url("../images/down.svg") white no-repeat 160px 12px;
  cursor: pointer;
  border: 1px solid #cacaca;
  text-align: center;
  padding: 9px 16px;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories-mobile .tools-categories-selected .a {
  font-size: 18px;
  font-weight: 600;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories-mobile .tools-categories-select {
  z-index: 11;
  position: absolute;
  top: 60px;
  left: 0px;
  width: calc(100% + 100px);
  margin-left: -50px;
  margin-right: -50px;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories-mobile .tools-categories-select .tools-categories-select-dropdown {
  cursor: pointer;
  margin: 0px;
  padding: 15px 0px;
  border: 1px solid #cacaca;
  height: auto;
  background: white;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories-mobile .tools-categories-select .tools-categories-select-dropdown li {
  padding: 9px 16px;
  text-align: center;
  width: auto;
  margin-bottom: 0;
  cursor: pointer;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories-mobile .tools-categories-select .tools-categories-select-dropdown li .a {
  font-size: 18px;
}
.paragraphs-item-tools .tools-inner-main-container .tools-categories-mobile .tools-categories-select .tools-categories-select-dropdown li::before {
  display: none;
}
.paragraphs-item-tools .tools-inner-main-container .tools-content .tool {
  text-align: center;
}

.paragraphs-item-visit-blog .gs-visit-blog {
  background-color: white;
  box-shadow: -320px 0 0 white, 320px 0 0 white;
  -moz-box-shadow: -320px 0 0 white, 320px 0 0 white;
  -webkit-box-shadow: -320px 0 0 white, 320px 0 0 white;
  padding: 24px 20px;
  margin-top: 30px;
}
.paragraphs-item-visit-blog .gs-visit-blog .content-container {
  width: 100%;
  float: none;
}
.paragraphs-item-visit-blog .gs-visit-blog .content-container .headline {
  font-size: 12px;
  line-height: 22px;
}
.paragraphs-item-visit-blog .gs-visit-blog .content-container .content {
  font-size: 12px;
  line-height: 16px;
}
.paragraphs-item-visit-blog .gs-visit-blog .visit-blog-button {
  float: none;
  margin-top: 20px;
}
.paragraphs-item-visit-blog .gs-visit-blog .visit-blog-button a.btn, .paragraphs-item-visit-blog .gs-visit-blog .visit-blog-button a.btn.btn--faux {
  padding: 12px 50px !important;
  background-color: #f5af02 !important;
  border: 1px solid #f5af02 !important;
  font-weight: 700 !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: white !important;
}

.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-icon-container {
  text-align: center;
  width: 280px;
  margin: 0 auto;
  display: none;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-icon-container .hiw-icon {
  margin-bottom: 20px;
  cursor: pointer;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-icon-container .hiw-icon .hiw-icon-img-container {
  margin: 0 auto 20px;
  width: 146px;
  height: 145px;
  padding-top: 6px;
  display: none;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-icon-container .hiw-icon .hiw-icon-img-container img {
  width: 134px;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-icon-container .hiw-icon .hiw-icon-text {
  font-size: 20px;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-icon-container .hiw-icon.active .hiw-icon-img-container {
  padding-top: 0;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-icon-container .hiw-icon.active .hiw-icon-img-container img {
  width: 146px;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-icon-container .hiw-icon.active.find .hiw-icon-text {
  color: #e53238;
  font-weight: bold;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-icon-container .hiw-icon.active.share .hiw-icon-text {
  color: #f5af02;
  font-weight: bold;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-icon-container .hiw-icon.active.earn .hiw-icon-text {
  color: #85ba41;
  font-weight: 500;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container {
  margin-top: 20px;
  background-color: white;
  box-shadow: -320px 0 0 white, 320px 0 0 white;
  -moz-box-shadow: -320px 0 0 white, 320px 0 0 white;
  -webkit-box-shadow: -320px 0 0 white, 320px 0 0 white;
  min-height: 520px;
  box-shadow: none;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-mobile-headline {
  background: #f0eeec;
  box-shadow: -320px 0 0 #f0eeec, 320px 0 0 #f0eeec;
  -moz-box-shadow: -320px 0 0 #f0eeec, 320px 0 0 #f0eeec;
  -webkit-box-shadow: -320px 0 0 #f0eeec, 320px 0 0 #f0eeec;
  text-align: center;
  margin-top: -20px;
  margin-left: -20px;
  margin-right: -20px;
  padding: 30px 0;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-mobile-headline .hiw-content-text-headline {
  margin-top: 10px;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content {
  padding: 0 20px 20px 20px;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content.active {
  display: block;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content .hiw-content-headline {
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 30px;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content .hiw-content-text {
  font-size: 15px;
  line-height: 20px;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content .hiw-content-text ul {
  margin: 0px;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content .hiw-content-text ul li {
  list-style: none;
  position: relative;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content .hiw-content-text ul li:before {
  content: "";
  position: absolute;
  width: 9px;
  height: 19px;
  top: 0px;
  left: -20px;
  background: url(../images/hiw-find-list.png);
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content .hiw-content-text ul li .hiw-content-text-headline {
  margin-bottom: 10px;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content .hiw-content-pic {
  display: none;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content .hiw-content-inner-container {
  padding-top: 20px;
  position: relative;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content .hiw-content-inner-container:before {
  background: url(../images/hiw-arrow.png);
  width: 38px;
  height: 16px;
  position: absolute;
  top: -16px;
  left: calc(100% / 2 - 20px);
  content: "";
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content.find .hiw-content-text-headline {
  color: #e53238;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content.find .hiw-content-text {
  margin-bottom: 40px;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content.find .hiw-content-text ul li:before {
  background: url(../images/hiw-find-list.png);
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content.share .hiw-content-text-headline {
  color: #f5af02;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content.share .hiw-content-text {
  margin-bottom: 40px;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content.share .hiw-content-text ul li:before {
  background: url(../images/hiw-share-list.png);
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content.earn .hiw-content-text-headline {
  color: #85ba41;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content.earn .hiw-content-text ul {
  margin-bottom: 30px;
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content.earn .hiw-content-text ul li:before {
  background: url(../images/hiw-earn-list.png);
}
.paragraphs-item-how-it-works-main-content .hiw-main-container .hiw-content-container .hiw-content.earn .hiw-content-text .btn {
  border-radius: 0px;
  border: none;
  background: #85ba41;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  width: 51%;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px;
}
.paragraphs-item-how-it-works-main-content .columns .hiw-content-text ul li:before {
  content: "";
  left: -20px;
}

.paragraphs-item-why-epn .sign-up-now-button {
  margin-top: -25px;
}
.paragraphs-item-why-epn .copytext-white-bg-container {
  background: white;
  position: relative;
  padding-top: 0px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
  box-shadow: -320px 0 0 white, 320px 0 0 white;
  -moz-box-shadow: -320px 0 0 white, 320px 0 0 white;
  -webkit-box-shadow: -320px 0 0 white, 320px 0 0 white;
}
.paragraphs-item-why-epn .copytext-white-bg-container .copytext {
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 18px;
  padding-left: 15px;
}
.paragraphs-item-why-epn .copytext-white-bg-container .max-width-container {
  background-color: white;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left {
  min-height: auto;
  margin-bottom: 50px;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-image-container,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-image-container {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: -2px;
  position: absolute;
  bottom: 0px;
  margin-left: -10px;
  width: 320px;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-image-container.why-epn-mobile,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-image-container.why-epn-mobile {
  position: relative;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-desktop,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-desktop {
  display: none;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-headline-text,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-headline-text {
  margin-top: 40px;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-headline-text .why-epn-text,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-headline-text .why-epn-text {
  margin-left: 0px;
  margin-bottom: 25px;
  margin-right: 0px;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-icon-container,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-icon-container {
  position: relative;
  min-height: 220px;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-icon-container .why-epn-icon,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-icon-container .why-epn-icon {
  float: left;
  margin-bottom: 10px;
  margin-left: 15px;
  margin-top: 10px;
  margin-right: 15px;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-icon-container .why-epn-icon-text,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-icon-container .why-epn-icon-text {
  margin: 10px 0px 5px 20px;
  padding: 20px 20px 0px 0px;
  width: auto;
  line-height: 16px;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-link img,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-link img {
  width: 10px;
  height: 10px;
  margin-left: 5px;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-link a,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-link a {
  color: #0654ba;
  font-weight: bold;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-link,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-link {
  margin-left: 0px;
  margin-top: 5px;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-link .field,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-link .field-item,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-link .field-items,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-link .field,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-link .field-item,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-link .field-items {
  display: inline-block;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-list,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-list {
  margin-bottom: 20px;
  margin-left: 30px;
  margin-right: 5px;
  padding-right: 20px;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-list .why-epn-copytext-list-intro-text,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-list .why-epn-copytext-list-intro-text {
  margin-bottom: 5px;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-list li,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-list li {
  margin-bottom: 10px;
}
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-right .why-epn-list ul,
.paragraphs-item-why-epn .copytext-white-bg-container .why-epn-left .why-epn-list ul {
  padding-left: 30px;
}

.paragraphs-item-getting-started-main-content .gs-main-container {
  margin-top: 30px;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-bubble-navigation {
  margin-bottom: 30px;
  text-align: center;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-bubble {
  width: 15px;
  height: 15px;
  border-radius: 20px;
  background-color: #a5a4a4;
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-bubble.active {
  background-color: #0064d2;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content {
  display: none;
  background-color: white;
  box-shadow: -320px 0 0 white, 320px 0 0 white;
  -moz-box-shadow: -320px 0 0 white, 320px 0 0 white;
  -webkit-box-shadow: -320px 0 0 white, 320px 0 0 white;
  padding: 30px;
  font-size: 15px;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content.active {
  display: block;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content .headline {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 10px;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content .quote-left {
  width: 100%;
  float: none;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content .quote-left .quote {
  font-size: 13px;
  line-height: 16px;
  color: #333333;
  background-color: white;
  padding: 10px 20px;
  position: relative;
  border: 1px solid #85ba41;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 240px;
  margin-left: 10px;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content .quote-left .quote::after {
  position: absolute;
  bottom: -25px;
  left: 50px;
  width: 25px;
  height: 25px;
  background-image: url("../images/epn_gettingstarted_speech_bubble_anchor_green_m.png");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-color: white;
  content: "";
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content .quote-left .quote-author {
  margin-top: 15px;
  font-size: 11px;
  line-height: 12px;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content .quote-left .quote-author .author-left {
  width: 87px;
  float: left;
  margin-top: 20px;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content .quote-left .quote-author .author-right {
  float: left;
  width: 160px;
  text-align: left;
  margin-top: 0;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content .quote-left .quote-author .author-name {
  text-align: right;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content .quote-left .quote-author .author-website {
  text-align: right;
  font-style: italic;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content .quote-left .quote-author .author-computer img,
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content .quote-left .quote-author .author-computer picture {
  width: 160px;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content.yellow .quote-left .quote {
  border: 1px solid #f5af02;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content.yellow .quote-left .quote::after {
  background-image: url("../images/epn_gettingstarted_speech_bubble_anchor_yellow_m.png");
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content.blue .quote-left .quote {
  border: 1px solid #2767b0;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content.blue .quote-left .quote::after {
  background-image: url("../images/epn_gettingstarted_speech_bubble_anchor_blue.png_m");
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content .text-right .text {
  font-size: 12px;
  line-height: 16px;
  height: 272px;
  overflow: hidden;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content .text-right .text-read-more {
  margin-top: 0px;
  font-size: 12px;
  color: #0064d2;
  line-height: 26px;
  cursor: pointer;
}
.paragraphs-item-getting-started-main-content .gs-main-container .gs-content .text-right .text-read-more .icon-arrow-up::before {
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #0064d2;
  font-size: 13px;
}

/****** Temp Static HTML ******/
.headline br,
.banner-text br {
  display: none;
}

.global-header-full-img-w-text {
  min-height: 290px;
  position: relative;
  overflow: hidden;
}
.global-header-full-img-w-text.half-height {
  min-height: 150px;
}
.global-header-full-img-w-text.half-height #image-1 {
  height: 150px;
}
.global-header-full-img-w-text.half-height .text-on-img-container {
  padding-top: 58px;
}
.global-header-full-img-w-text.with-flyout {
  margin-top: 32px;
}
.global-header-full-img-w-text .text-on-img-container {
  padding-top: 78px;
}
.global-header-full-img-w-text .lp-text-banner {
  background: white;
  padding: 10px;
  position: relative;
  margin-bottom: 8px;
  margin-top: 0;
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
}
.global-header-full-img-w-text .lp-text-banner.headline {
  font-size: 26px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 200;
}
.global-header-full-img-w-text .lp-text-banner.banner-text {
  font-size: 14px;
  line-height: 18px;
  padding: 10px;
}
.global-header-full-img-w-text #image-1 {
  height: 480px;
  min-height: 100%;
  width: 100%;
  background-image: url("../images/home-header.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  top: 0;
  left: 0;
  position: absolute;
}
.global-header-full-img-w-text .header-image {
  height: 480px;
  min-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
}
.global-header-full-img-w-text .header-image img,
.global-header-full-img-w-text .header-image picture {
  width: 100%;
}

.skin-flyout-container {
  display: inline-block;
  max-width: 320px;
  position: relative;
  height: 40px;
  width: 200px;
}
.skin-flyout-container .info-click {
  cursor: pointer;
  display: inline-block;
  padding: 15px;
  position: absolute;
  right: 0;
}
.skin-flyout-container .flyout-position {
  display: none;
  position: absolute;
  right: 8px;
  margin-top: 5px;
  z-index: 996;
}
.skin-flyout-container .flyout-alert--top-right::before {
  right: 3px;
}

.epn-flag {
  position: relative;
  display: inline-block;
  width: 27px;
  height: 18px;
  margin-right: 10px;
}
.epn-flag.epn-flag-us {
  background: url("../images/flags/US.svg") no-repeat;
  background-size: contain;
}
.epn-flag.epn-flag-uk {
  background: url("../images/flags/UK.png") no-repeat;
  background-size: contain;
}
.epn-flag.epn-flag-de {
  background: url("../images/flags/DE.svg") no-repeat;
  background-size: contain;
}
.epn-flag.epn-flag-es {
  background: url("../images/flags/ES.svg") no-repeat;
  background-size: contain;
}
.epn-flag.epn-flag-fr {
  background: url("../images/flags/FR.svg") no-repeat;
  background-size: contain;
}
.epn-flag.epn-flag-it {
  background: url("../images/flags/IT.svg") no-repeat;
  background-size: contain;
}

/****** Static Page ******/
.node-type-static-page .global-header-full-img-w-text #image-1 {
  background-image: url(../images/faq-header.jpg);
}
.node-type-static-page .static-main-container {
  margin-top: 20px;
  background: white;
  padding: 10px;
  font-size: 12px;
  line-height: 16px;
}
.node-type-static-page .columns .static-main-container a[name] {
  padding-top: 60px;
  color: #333;
  text-decoration: none;
}
.node-type-static-page .columns .static-main-container ul {
  padding-left: 20px;
  margin: 1em 0;
}
.node-type-static-page .columns .static-main-container ul li {
  list-style: none;
  font-size: 12px;
  line-height: 16px;
  margin: 0px;
}
.node-type-static-page .columns .static-main-container ul li:before {
  display: none;
}
.node-type-static-page .columns .static-main-container ul li ul {
  padding-left: 30px;
}
.node-type-static-page .columns .static-main-container ul li ul li {
  position: relative;
}
.node-type-static-page .columns .static-main-container ul li ul li:before {
  content: "";
  color: #0065D3;
  position: absolute;
  top: 5px;
  left: -15px;
  display: block;
  background: url(../images/blue-dot.png);
  width: 6px;
  height: 5px;
}

/****** Global elements ******/
.grey-box {
  box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  -moz-box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  -webkit-box-shadow: -320px 0 0 #efefef, 320px 0 0 #efefef;
  background: #efefef;
  padding: 15px 15px;
  padding-left: 25px;
  margin-bottom: 21px;
  margin-left: -10px;
  margin-right: -10px;
  font-size: 20px;
  line-height: 20px;
}

.language-switch {
  width: auto;
  position: fixed;
  right: 0;
  top: -5px;
  z-index: 998;
}
.language-switch .icon-arrow-down {
  position: absolute;
  right: 0;
  top: 28px;
  z-index: 999;
  font-size: 8px;
}
.language-switch ul {
  padding: 0;
  position: relative;
  margin-top: 13px;
}
.language-switch ul:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 15px;
  height: 5px;
  width: 8px;
  cursor: pointer;
  background-image: url("../images/arrow_down.png");
  background-size: 8px 5px;
  background-repeat: no-repeat;
  background-position: center right;
}
.language-switch ul li {
  display: none;
  padding: 8px 14px;
  background: white;
}
.language-switch ul li span.language {
  display: table;
}
.language-switch ul li .epn-flag {
  position: relative;
  display: inline-block;
  width: 27px;
  height: 18px;
}
.language-switch ul li a {
  color: #333333;
  font-size: 14px;
  font-weight: 200;
}
.language-switch ul li:hover a {
  color: #0654ba;
  text-decoration: underline;
}
.language-switch ul li.active {
  display: block;
  margin-left: 0px;
  margin-bottom: 4px;
  cursor: pointer;
}
.language-switch ul li.active .epn-flag {
  margin-right: 20px;
}
.language-switch ul li.active.opened {
  border: none;
  box-shadow: none;
  margin-left: 90px;
}
.language-switch ul li.active.opened a {
  display: none;
}
.language-switch ul li.active a {
  display: none;
}
.language-switch ul li.opened {
  display: block;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.language-switch ul li.opened a {
  display: table-cell;
  vertical-align: middle;
}
.language-switch ul li:first-child {
  margin-top: 13px;
}
.language-switch ul li:last-child {
  border-bottom: 1px solid #ddd;
}

.sign-up-now-button {
  margin-bottom: 15px;
  margin-top: 25px;
  text-align: center;
}
.sign-up-now-button .btn {
  border-radius: 0 !important;
  font-weight: 700 !important;
  padding: 13px 30px !important;
}

.special-offer-flyout-container {
  z-index: 2;
  position: fixed;
  top: 47px;
  display: block;
  width: 100%;
  left: 0px;
}
.special-offer-flyout-container .flyout-inner {
  position: relative;
}
.special-offer-flyout-container .flyout-teaser {
  width: 100%;
  height: 32px;
  background-color: #f5af02;
  padding: 9px 15px;
  text-align: center;
  text-transform: uppercase;
  color: white;
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
}
.special-offer-flyout-container .special-offer-flyout {
  -webkit-transition: visibility 0.5s, opacity 0.5s linear 0s, right 0s linear 0s;
  -moz-transition: visibility 0.5s, opacity 0.5s linear 0s, right 0s linear 0s;
  -ms-transition: visibility 0.5s, opacity 0.5s linear 0s, right 0s linear 0s;
  -o-transition: visibility 0.5s, opacity 0.5s linear 0s, right 0s linear 0s;
  transition: visibility 0.5s, opacity 0.5s linear 0s, right 0s linear 0s;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: auto;
  padding: 20px 24px;
  background-color: #f5af02;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}
.special-offer-flyout-container .special-offer-flyout .flyout-text {
  color: white;
  font-size: 22px;
  line-height: 26px;
}
.special-offer-flyout-container .special-offer-flyout .sign-up-now-button {
  text-align: left;
  margin-top: 15px;
}
.special-offer-flyout-container .special-offer-flyout .sign-up-now-button .btn {
  padding: 12px 29px !important;
}

.fakelink {
  color: #0654ba;
  cursor: pointer;
}
.fakelink:hover {
  text-decoration: underline;
}

/******* Colorbox and colorbox content ********/
#colorbox #cboxWrapper {
  border-radius: 0px;
}
#colorbox #cboxWrapper #cboxContent #cboxClose {
  bottom: auto;
  top: 0px;
  background: url(../images/colorbox-closer.png);
  width: 22px;
  height: 22px;
}
#colorbox #cboxWrapper #cboxContent #cboxLoadedContent {
  margin-bottom: 0px;
  margin-top: 28px;
}
#colorbox.tool-detail .tool-detail-container .tool-detail-image {
  text-align: center;
  margin-bottom: 10px;
}
#colorbox.tool-detail .tool-detail-container .tool-detail-title {
  font-size: 18px;
  margin-bottom: 10px;
}
#colorbox.tool-detail .tool-detail-container .tool-detail-desc {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 10px;
}
#colorbox.tool-detail .tool-detail-container .tool-detail-content p {
  font-size: 15px;
  margin-bottom: 10px;
}
#colorbox.tool-detail .tool-detail-container .tool-detail-content .tool-detail-content-headline {
  margin-bottom: 10px;
  font-size: 16px;
}
#colorbox.tool-detail .tool-detail-container .tool-detail-content .tool-detail-content-ul-headline {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 18px;
}
#colorbox.tool-detail .tool-detail-container .tool-detail-content ul {
  margin: 0px;
  margin-bottom: 20px;
  padding-left: 25px;
}
#colorbox.tool-detail .tool-detail-container .tool-detail-content ul li {
  font-size: 15px;
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  line-height: 18px;
}
#colorbox.tool-detail .tool-detail-container .tool-detail-content ul li:before {
  content: "";
  color: #0065D3;
  position: absolute;
  top: 5px;
  left: -15px;
  background: url(../images/blue-dot.png);
  width: 6px;
  height: 5px;
}

.paragraphs-item-get-paid .mobile {
  display: block;
}
.paragraphs-item-get-paid .desktop {
  display: none;
}
.paragraphs-item-get-paid .gp-main-container {
  margin-top: 20px;
}
.paragraphs-item-get-paid .gp-main-container .content {
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: -320px 0 0 white, 320px 0 0 white;
  -moz-box-shadow: -320px 0 0 white, 320px 0 0 white;
  -webkit-box-shadow: -320px 0 0 white, 320px 0 0 white;
}
.paragraphs-item-get-paid .gp-main-container .content .headline {
  margin-left: -20px;
  padding: 15px 20px;
  background-color: #f4f4f4;
  display: inline-block;
  font-size: 17px;
  line-height: 14px;
  margin-bottom: 20px;
}
.paragraphs-item-get-paid .gp-main-container .content .content-left {
  text-align: center;
  margin-bottom: 25px;
}
.paragraphs-item-get-paid .gp-main-container .content .content-left .gp-statistic img {
  max-width: 85%;
}
.paragraphs-item-get-paid .gp-main-container .content .content-left .gp-statistic .image {
  width: 93px;
  display: inline-block;
}
.paragraphs-item-get-paid .gp-main-container .content .content-left .gp-statistic {
  text-align: center;
  margin-bottom: 10px;
  float: left;
  width: 93px;
}
.paragraphs-item-get-paid .gp-main-container .content .content-left .gp-statistic .category {
  margin-top: 5px;
  font-size: 13px;
}
.paragraphs-item-get-paid .gp-main-container .content .content-left .gp-statistic .percent {
  font-size: 25px;
  line-height: 33px;
}
.paragraphs-item-get-paid .gp-main-container .content .content-left .gp-statistic .percent .additional-info-below {
  font-size: 15px;
  vertical-align: 8px;
}
.paragraphs-item-get-paid .gp-main-container .content .content-right {
  font-size: 14px;
  line-height: 18px;
}
.paragraphs-item-get-paid .gp-main-container .content .additional-info {
  font-size: 11px;
}

.columns #tasks ul {
  margin: 20px 0;
  padding: 0;
}
.columns #tasks ul li {
  font-size: 17px;
  margin-bottom: 0px;
}
.columns #tasks li:before {
  display: none;
}

/*
.field-type-text-with-summary
{
	table, th, td
	{
		border: 1px solid #ccc;
	}
	
	h2
	{
		color: #333;
    	text-decoration: none;
    	line-height: 45px;
	}
	
	.legal-first-headline
	{
		padding-top: 45px;
	}
}
*/
