/**
 * This file contains stuff that is shared between variants
 */
/**
 * This file contains stuff that can vary between variants
 */
/**
 * Calculate an em size based on a context
 */
/**
 * Conditionally output stuff.
 * The idea is to be able to target print, browsers, sizes etc.
 */
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

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

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

body {
  background: #fff;
  font-size: 14px;
  line-height: 1.3;
  color: #333;
}

p, ul, ol {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  margin: 0;
  font-weight: normal;
}

.peytz-layout {
  font-family: 'DRPublik-Regular', Arial, Helvetica, sans-serif;
  max-width: 960px;
  margin: 50px auto 40px;
  padding: 0 10px;
}
.peytz-layout__top {
  margin-bottom: 20px;
}
.peytz-layout__aside {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .peytz-layout {
    margin: 30px auto 40px;
  }
}

@media (min-width: 1024px) {
  .peytz-layout {
    position: relative;
    margin: 70px auto 40px;
  }
  .peytz-layout__aside {
    float: right;
    width: 220px;
  }
  .peytz-layout__main {
    margin-right: 240px;
    min-height: 500px;
  }
}
.peytz-panel {
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin: -5px;
  font-size: 0;
}
.peytz-panel__item {
  flex: 1 0 50%;
  min-width: 140px;
  max-width: 50%;
  display: inline-block;
  display: flex;
  padding: 5px;
  font-size: 14px;
  vertical-align: top;
  box-sizing: border-box;
}
.peytz-panel__item.is-hidden {
  display: none;
}
.peytz-panel.is-hidden {
  display: none;
}
.peytz-panel__item > * {
  flex: 1;
}

@media (min-width: 800px) {
  .peytz-panel {
    margin: -10px;
  }
  .peytz-panel__item {
    flex: 1 0 33.333%;
    max-width: 33.3333%;
    padding: 10px;
  }
}
.peytz-newsletter {
  font-family: 'DRPublik-Regular', Arial, Helvetica, sans-serif;
  padding-bottom: 50px;
  position: relative;
  border: 1px solid #e5e5e5;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}
.peytz-newsletter__picture {
  margin: -1px -1px 1px;
}
.peytz-newsletter__body {
  padding: 10px;
  box-sizing: border-box;
}
.peytz-newsletter__title {
  margin: 0;
  font-size: 14px;
  line-height: 1;
  word-break: break-word;
  font-family: "DRPublik-SemiBold", "Arial Black", sans-serif;
}
.peytz-newsletter__text {
  margin-top: 5px;
  padding: 0;
}
.peytz-newsletter__link {
  font-size: 12px;
  padding: 0;
  line-height: 30px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0;
  height: 50px;
  padding: 10px;
  border-top: 2px solid #f3f3f3;
  box-sizing: border-box;
}
.peytz-newsletter__link > a:link, .peytz-newsletter__link a:visited {
  color: #ec001c;
  text-decoration: underline;
  text-transform: uppercase;
}
.peytz-newsletter__check {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  text-align: center;
  height: 30px;
  line-height: 30px;
  padding: 0;
  margin: 0;
  color: #0861ce;
  font-size: 24px;
  border: 1px solid #0861ce;
  border-radius: 4px;
  cursor: pointer;
  box-sizing: border-box;
}
.peytz-newsletter.is-selected .peytz-newsletter__check:before {
  content: '';
  background: url("https://s3-eu-west-1.amazonaws.com/peytzmail/dr/images/check.png") 50% no-repeat;
  display: block;
  height: 28px;
  width: 28px;
}

@media (min-width: 600px) {
  .peytz-newsletter__title {
    font-size: 18px;
  }
}
.peytz-heading--1 {
  font-family: "DRPublik-Bold", "Arial Black", sans-serif !important;
  font-size: 2.28571429em;
  line-height: 35px;
  margin-bottom: 5px;
  color: #1a1a1a;
}
.peytz-heading--2 {
  font-size: 1.71428571em;
}

@media (min-width: 1024px) {
  .peytz-heading--1 {
    font-size: 3.21428571em;
    padding-bottom: 20px;
  }
}
.peytz-text {
  max-width: 500px;
}
.peytz-text p {
  margin: 1em 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
}
.peytz-text p:first-child {
  margin-top: 0;
}
.peytz-text a {
  text-decoration: underline;
}
.peytz-text ul {
  list-style: disc;
  margin: 0 0 1em 1.2em;
  font-size: 16px;
}
.peytz-text ul ul {
  margin-bottom: 0;
}
.peytz-text ol {
  list-style: decimal;
  margin: 0 0 1em 1.5em;
}
.peytz-text ol ol {
  margin-bottom: 0;
}
.peytz-grey-text {
  color: #333333;
}

@media (min-width: 1024px) {
  .peytz-text {
    margin-bottom: 40px;
  }
  .peytz-text p {
    font-size: 18px;
    line-height: 24px;
  }
  .peytz-text ul {
    list-style: disc;
    margin: 0 0 1em 1.2em;
    font-size: 18px;
  }
}
.picture {
  padding-bottom: 56.36363636%;
  position: relative;
  overflow: hidden;
  display: block;
  background: #eee;
}

.picture > img {
  position: absolute;
  width: 100%;
  height: auto;
}

.peytz-categories__header {
  font-family: "DRPublik-SemiBold", "Arial Black", sans-serif;
  font-size: 18px;
  margin: 0 0 10px;
}
.peytz-categories__dropdown {
  background: #0861ce;
  color: #fff;
  text-transform: uppercase;
  height: 40px;
  line-height: 43px;
  padding: 0 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}
.peytz-categories__selector {
  margin: 0;
  padding: 0;
  font-size: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  background: #fff;
  z-index: 9999;
}
.dr-caret-down::after{
  float: right;
  content: url(https://s3-eu-west-1.amazonaws.com/peytzmail/dr/images/arrow.png);
  display: block;
  margin: 0 auto;
  text-align:center;
  height: 24px;
}
.dr-caret-up::after{
  float: right;
  content: url(https://s3-eu-west-1.amazonaws.com/peytzmail/dr/images/arrow.png);
  transform: rotate(180deg);
  display: block;
  margin: 10px auto;
  text-align:center;
  height: 24px;
}
.is-open .peytz-categories__selector {
  display: block;
}
.peytz-categories__selector__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 48px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: url("https://s3-eu-west-1.amazonaws.com/peytzmail-dr/images/gfx/close.svg") 50% no-repeat;
}
.peytz-categories__items {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.peytz-categories__item {
  box-sizing: border-box;
  display: block;
  border: 1px solid #0861ce;
  color: #0861ce;
  text-transform: uppercase;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-size: 16px;
  border-radius: 4px;
  margin: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.peytz-categories__item:hover {
  background: #e1efff;
}
.peytz-categories__item.is-selected {
  background: #0861ce;
  color: #fff;
}
.m-show {
  display: block;
}
@media (min-width: 1024px) {
  .peytz-categories {
    border: 1px solid #e5e5e5;
    padding: 20px;
  }
  .peytz-categories__dropdown {
    display: none;
  }
  .peytz-categories__selector, .is-open .peytz-categories__selector {
    display: block;
    position: static;
    margin: 0;
    padding: 0;
    font-size: 0;
    overflow: visible;
  }
  .m-show {
    display: none;
  }
  .peytz-categories__selector__close {
    display: none;
  }
  .peytz-categories__items {
    margin-bottom: -10px;
    position: static;
    overflow: visible;
  }
  .peytz-categories__item {
    display: inline-block;
    border: 1px solid #0861ce;
    color: #0861ce;
    text-transform: uppercase;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 16px;
    border-radius: 4px;
    margin: 0 10px 10px 0;
    cursor: pointer;
  }
  .peytz-categories__item:hover {
    background: #e1efff;
  }
  .peytz-categories__item.is-selected {
    background: #0861ce;
    color: #fff;
  }
}
.peytz-signup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e5e5e5;
  z-index: 100;
  transform: translate3d(0, 0, 0);
}
.peytz-signup.is-busy:before {
  content: '';
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.peytz-signup__head {
  border-bottom: 2px solid #f3f3f3;
  padding: 10px;
  position: relative;
}
.peytz-signup__title {
  font-family: "DRPublik-SemiBold", "Arial Black", sans-serif;
  font-size: 18px;
}
.peytz-signup__status {
  position: absolute;
  right: 10px;
  top: 8px;
  font-size: 0;
  display: none;
  cursor: pointer;
}
.is-dirty .peytz-signup__status {
  display: block;
}
.peytz-signup__toggle {
  color: #cc380d;
  line-height: 26px;
  display: inline-block;
  vertical-align: top;
  text-decoration: underline;
  color: #cc380d;
  font-size: 14px;
  margin-left: 10px;
  min-width: 58px;
  text-align: right;
}
.peytz-signup__toggle.is-close {
  display: none;
}
.is-opened .peytz-signup__toggle.is-close {
  display: inline-block;
}
.is-opened .peytz-signup__toggle {
  display: none;
}
.peytz-signup__count {
  background: #cc380d;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 13px;
  line-height: 26px;
  min-width: 25px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  text-align: center;
  line-height: 30px;
}
.peytz-signup__list {
  overflow: auto;
  max-height: 0px;
  transition: max-height .3s;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
}
.is-opened .peytz-signup__list {
  max-height: 185px;
}
.peytz-signup__item {
  font-family: "DRPublik-SemiBold", "Arial Black", sans-serif;
  position: relative;
  padding: 10px 30px 10px 10px;
  font-size: 18px;
}
.peytz-signup__remove {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 2px;
  top: 50%;
  margin-top: -20px;
  cursor: pointer;
  z-index: 1;
}
.peytz-signup__remove:before {
  content: '';
  background: url("https://s3-eu-west-1.amazonaws.com/peytzmail/dr/images/cross.svg") 50% no-repeat;
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  border-radius: 4px;
  top: 8px;
  left: 8px;
}
.peytz-signup__remove:hover:before {
  background-color: #b4310b;
}
.peytz-signup__foot {
  padding: 10px 120px 10px 10px;
  position: relative;
}
.peytz-signup__mail {
  height: 35px;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  line-height: 1;
  background: #fff;
  box-shadow: none;
  font-size: 16px;
  font-family: "DRPublik-Regular", "Verdana", sans-serif;
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid #979797;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 20px;
}
.input-mobile {
  background: #E8E8E8;
}
.is-invalid .peytz-signup__mail {
  border-color: #cc380d;
}
.peytz-signup__mail::-webkit-input-placeholder {
  line-height: 1.2;
}
.peytz-signup__invalid {
  color: #cc380d;
  text-align: center;
  padding-top: 5px;
  display: none;
}
.is-invalid .peytz-signup__invalid {
  display: block;
}
.peytz-signup__error {
  color: #cc380d;
  text-align: center;
  padding-top: 5px;
  display: none;
}
.is-error .peytz-signup__error {
  display: block;
}
.peytz-signup__button {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 100px;
}
.peytz-signup.is-focused {
  position: absolute;
  top: 0;
  bottom: auto;
}

@media (min-width: 1024px) {
  .peytz-signup {
    position: relative;
    background: #e5e5e5;
  }
  .peytz-signup.is-sticky {
    position: fixed;
    left: auto;
    right: auto;
    top: 80px;
    bottom: auto;
    width: 220px;
  }
  .peytz-signup.is-end {
    position: absolute;
    bottom: 0;
    top: auto;
  }
  .is-dirty .peytz-signup__status {
    display: none;
  }
  .peytz-signup__title {
    font-size: 28px;
    line-height: 1;
  }
  .peytz-signup__list {
    display: block;
    max-height: 300px;
    transition: none;
  }
  .peytz-signup__foot {
    padding: 10px;
  }
  .peytz-signup__button {
    margin-top: 10px;
    position: static;
    width: 100%;
  }
}
.peytz-button {
  height: 35px;
  -webkit-appearance: none;
  background: #FF001E;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-family: "DRPublik-SemiBold", "Verdana", sans-serif;
  display: inline-block;
  padding: 0 20px;
  border-radius: 0px;
  box-sizing: border-box;
  border: 0 solid transparent;
  vertical-align: middle;
  cursor: pointer;
}
.peytz-button, .peytz-button:link, .peytz-button:visited {
  color: #fff;
}

.peytz-button:hover, .peytz-button:focus {
  background: #EC001C;
  text-decoration: none;
}
.peytz-button.is-disabled, .peytz-button.is-disabled:focus, .peytz-button.is-disabled:hover {
  background: #bbb;
  color: #7F7F7F;
}

.peytz-feedback {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.peytz-feedback.is-visible {
  display: flex;
  flex-direction: column;
}
.peytz-feedback__body {
  background: #fff;
  padding: 20px;
  max-width: 400px;
  margin: 0 auto;
  color: #333333;
}
.peytz-feedback__title {
  color: #1a1a1a;
  font-family: "DRPublik-SemiBold", "Arial Black", sans-serif;
  font-size: 24px;
  margin: 0 0 10px;
}
.peytz-feedback__title--none {
  display: none;
}
.peytz-feedback.is-none .peytz-feedback__title--some {
  display: none;
}
.peytz-feedback.is-none .peytz-feedback__title--none {
  display: block;
}
.peytz-feedback__mail {
  color: #cc380d;
  text-decoration: underline;
}
.peytz-feedback__items {
  margin: 20px 0;
  font-size: 18px;
  font-family: "DRPublik-Regular", "Verdana", sans-serif;
  max-height: 200px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  list-style: disc;
  list-style-position: inside;
}
.peytz-feedback__button {
  text-align: center;
}
input[type="email"]:disabled {
  background: #dddddd;
}
@media screen and (max-width: 1023px) {
  .peytz-layout__main.peytz-layout__main--right {
    margin-bottom: 40px;
  }
  #dr-global-footer {
    visibility: hidden;
    clear: both;
    float: left;
    display: none;
  }
}
#peytz-subscription {
  display: none;
}
#peytz-subscription-mobile {
  display: none;
}
fieldset legend {
  opacity: 0.0001;
}
