/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Header
10.0 Content
	11.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Footer
12.0 Media
	12.1 Captions
	13.2 Galleries
13.0 Testing
--------------------------------------------------------------*/
:root {
  --rh--color--background--body: #fff;
  --rh--color--background--button--inactive: #ccc;
  --rh--color--background--header--light: #fafafa;
  --rh--color--background--header: #f8f8f8;
  --rh--color--background--hr: #ccc;
  --rh--color--background--ins: #fff9c0;
  --rh--color--background--pre: rgba(0, 0, 0, 0.2);
  --rh--color--background--screen: #f1f1f1;
  --rh--color--border--abbr: #666;
  --rh--color--border--input: rgba(0, 0, 0, 0.2);
  --rh--font--code: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  --rh--font--line-height--body: 1.8;
  --rh--font--line-height--pre: 1.6;
  --rh--font--main: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  --rh--font--pre: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  --rh--size--general--margin--bottom: 2.4rem;
  --rh--size--block-gap: clamp(4rem, 4.5vw, 12rem);
  --rh--size--general--padding--widget: 2.5em;
  --rh--size--general--padding: 30px;
  --rh--size--site--main-post: 750px;
  --rh--size--site--main: 100%;
  --rh--size--site--sidebar: 275px;
}

/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
  overflow-y: auto;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  background: var(--rh--color--background--body);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

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

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

a img {
  border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  font-family: var(--rh--font--main);
  font-size: var(--rh--general--font-size, 1.7rem);
  line-height: var(--rh--font--line-height--body);
  text-rendering: optimizelegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  line-height: 1.3;
  margin: 3.5rem 0 1.5rem 0;
}

h1 {
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  font-size: 2.4rem;
}
h1 a,
h1 a:hover,
h1 a:visited {
  text-decoration: none;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 2.2rem;
}

h5 {
  font-size: 2.2rem;
}

h6 {
  font-size: 2.2rem;
}

p {
  margin-bottom: var(--rh--size--general--margin--bottom);
}
p:last-child {
  margin-bottom: 0;
}

b,
strong {
  font-weight: 700;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  border-left: 2px solid rgba(0, 0, 0, 0.08);
  font-style: italic;
  padding: 0 0 0 1em;
}

address {
  margin: 0 0 var(--rh--size--general--margin--bottom);
}

pre {
  background: var(--rh--color--background--pre);
  font-family: var(--rh--font--pre);
  font-size: 1.5rem;
  line-height: var(--font--line-height--pre);
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-size: 1.5rem;
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted var(--rh--color--border--abbr);
  cursor: help;
}

mark,
ins {
  background: var(--rh--color--background--ins);
  text-decoration: none;
}

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: 0.5ex;
}

small {
  font-size: 75%;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
html {
  overflow-x: hidden;
}

hr {
  background-color: var(--rh--color--background--hr);
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

.entry-content ol {
  padding-inline-start: 40px;
}

.entry-content ul,
.rh-product-fields__item--content ul,
ul.wp-block-list {
  list-style: none;
  margin: 0 auto var(--rh--size--general--margin--bottom);
  width: 100%;
}
.entry-content ul > li,
.rh-product-fields__item--content ul > li,
ul.wp-block-list > li {
  margin-bottom: 0.5rem;
  padding: 0 0 0 var(--rh--size--general--margin--bottom);
  position: relative;
}
.entry-content ul > li:last-child,
.rh-product-fields__item--content ul > li:last-child,
ul.wp-block-list > li:last-child {
  margin-bottom: 0;
}
.entry-content ul > li::before,
.rh-product-fields__item--content ul > li::before,
ul.wp-block-list > li::before {
  background: currentColor;
  content: "";
  display: inline-block;
  height: 0.6rem;
  margin: 0 1.8rem 0 calc(var(--rh--size--general--margin--bottom) * -1);
  vertical-align: 0.3rem;
  width: 0.6rem;
}
.entry-content ul > li > ol,
.entry-content ul > li > ul,
.rh-product-fields__item--content ul > li > ol,
.rh-product-fields__item--content ul > li > ul,
ul.wp-block-list > li > ol,
ul.wp-block-list > li > ul {
  margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .entry-content ul.is-style-double-columned,
  .rh-product-fields__item--content ul.is-style-double-columned,
  ul.wp-block-list.is-style-double-columned {
    column-gap: 0.8rem;
    display: grid;
    grid-template-columns: 50% 50%;
  }
  .entry-content ul.is-style-double-columned > li,
  .rh-product-fields__item--content ul.is-style-double-columned > li,
  ul.wp-block-list.is-style-double-columned > li {
    width: 100%;
  }
  .entry-content ul.is-style-double-columned > :nth-child(2n-1),
  .rh-product-fields__item--content ul.is-style-double-columned > :nth-child(2n-1),
  ul.wp-block-list.is-style-double-columned > :nth-child(2n-1) {
    padding-right: 4%;
  }
}
.widget .entry-content ul,
.widget .rh-product-fields__item--content ul,
.widget ul.wp-block-list {
  margin-left: 0;
}
.widget .entry-content ul > li,
.widget .rh-product-fields__item--content ul > li,
.widget ul.wp-block-list > li {
  padding-left: 0;
}
.widget .entry-content ul > li::before,
.widget .rh-product-fields__item--content ul > li::before,
.widget ul.wp-block-list > li::before {
  content: none;
}
.widget .entry-content ul:last-child,
.widget .rh-product-fields__item--content ul:last-child,
.widget ul.wp-block-list:last-child {
  margin-bottom: 0;
}

.is-style-benefit-list > li::before {
  display: block;
  font-family: "icons" !important;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  left: 0;
  line-height: 1;
  position: absolute;
  speak: none;
  text-transform: none;
  top: 0.32em;
}
.is-style-benefit-list.is-style-benefit-list > li::before {
  background: none;
  content: "\e915";
  margin: 0;
}

@media only screen and (min-width: 840px) {
  .is-style-flexible-list {
    columns: 2;
  }
}
ol {
  list-style-type: decimal;
  margin: 0 0 var(--rh--size--general--margin--bottom) 2.5rem;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.6em;
}

dl {
  margin-block-end: var(--rh--size--general--margin--bottom);
}
dl:last-child {
  margin-block-end: 0;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0;
}

.blog .entry-content ol,
.blog .entry-content ul {
  margin: var(--rh--size--general--margin--bottom) 0 var(--rh--size--general--margin--bottom) 2.5rem;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .blog .entry-content ol,
  .blog .entry-content ul {
    margin: var(--rh--size--general--margin--bottom) 0 var(--rh--size--general--margin--bottom) 2.6rem;
  }
}

img {
  height: auto;
  max-width: 100%;
}
picture[style*="width:"] > img {
  max-height: 100%;
  object-fit: contain;
}

picture[style*="width:"] {
  display: inline-block;
}

figure {
  margin: 0 0 var(--rh--size--general--margin--bottom) 0;
}
figure:last-child {
  margin-bottom: 0;
}

video {
  max-width: 100%;
}

button,
input[type=button],
input[type=reset],
input[type=submit],
.wp-block-button__link,
.wp-block-file__button {
  border: 0;
  background-clip: padding-box;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 400;
  padding: 0.9rem 1rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
}
button:active, button:focus, button:hover,
input[type=button]:active,
input[type=button]:focus,
input[type=button]:hover,
input[type=reset]:active,
input[type=reset]:focus,
input[type=reset]:hover,
input[type=submit]:active,
input[type=submit]:focus,
input[type=submit]:hover,
.wp-block-button__link:active,
.wp-block-button__link:focus,
.wp-block-button__link:hover,
.wp-block-file__button:active,
.wp-block-file__button:focus,
.wp-block-file__button:hover {
  border: 0;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

table {
  margin: 0 0 var(--rh--size--general--margin--bottom) 0;
  width: 100%;
}

th {
  font-weight: 700;
}

/*--------------------------------------------------------------
5.0 Links
--------------------------------------------------------------*/
a {
  text-decoration: underline;
}
a:focus, a:hover {
  text-decoration: none;
}

.proxy-number {
  text-decoration: none;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
:focus {
  outline: 2px solid currentColor;
  outline-offset: 1px;
}

.is-focussed-hidden {
  height: 0 !important;
  overflow: hidden !important;
  width: 0 !important;
}

.screen-reader-text {
  clip-path: inset(50%);
  height: 1px;
  position: absolute !important;
  overflow: hidden;
  transition: none;
  width: 1px;
}
.screen-reader-text:hover, .screen-reader-text:focus {
  clip-path: none !important;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.align-center {
  text-align: center;
}

.align-left {
  /* rtl:ignore */
  text-align: left;
}

.align-right {
  /* rtl:ignore */
  text-align: right;
}

.alignleft {
  display: inline;
  /* rtl:ignore */
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  /* rtl:ignore */
  float: right;
  margin-left: 1.5em;
}

.is-content-justification-right {
  text-align: right;
}

.aligncenter,
.is-content-justification-center {
  display: block;
  margin: 0 auto;
  text-align: center;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear::before,
.clear::after,
.entry-content::before,
.entry-content::after,
.comment-content::before,
.comment-content::after,
.site-header::before,
.site-header::after,
.site-footer::before,
.site-footer::after,
.widget::before,
.widget::after {
  content: "";
  display: table;
}

.clear::after,
.entry-content::after,
.comment-content::after,
.site-header::after,
.site-footer::after,
.widget::after {
  clear: both;
}

/*--------------------------------------------------------------
9.0 Header
--------------------------------------------------------------*/
.header {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.header .container {
  padding-bottom: 0;
  padding-top: 0;
  width: 100vw;
}
@media only screen and (min-width: 840px) {
  .header .container {
    width: 100%;
  }
}
.header .header-widget {
  display: none;
}
.rh-imprint .header .header-widget > *:not(.rh-slider), .privacy-policy .header .header-widget > *:not(.rh-slider) {
  display: none !important;
}
.header > .nav-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media only screen and (min-width: 840px) {
  .header > .nav-wrapper {
    align-items: center;
    flex-direction: row;
    margin: 0 auto;
  }
  .header > .nav-wrapper > .site-header,
  .header > .nav-wrapper > .main-navigation {
    flex: 1 1 auto;
  }
  .nav-open .header > .nav-wrapper > .site-header,
  .nav-open .header > .nav-wrapper > .main-navigation {
    height: auto;
    width: 256px;
  }
  .nav-center .header > .nav-wrapper > .main-navigation {
    flex-grow: 1000;
  }
  .header.nav-fixed-wrapper {
    left: 0;
    margin-top: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 110;
  }
  .header .fixed-wrapper {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 110;
  }
}

.nav-fixed-wrapper.fixed {
  padding-top: 52px;
}
@media only screen and (min-width: 783px) {
  .nav-fixed-wrapper.fixed {
    padding-top: 0;
  }
}

@media only screen and (min-width: 783px) {
  .admin-bar .nav-fixed-wrapper {
    top: 32px;
  }
}
.admin-bar .nav-fixed-wrapper.fixed {
  padding-top: 52px;
}
@media only screen and (min-width: 783px) {
  .admin-bar .nav-fixed-wrapper.fixed {
    padding-top: 0;
  }
}

.site-header {
  flex-grow: 1;
}

.custom-logo {
  margin: 15px 0 5px;
}

.logo-right .site-branding {
  text-align: right;
}

.logo-center .site-branding {
  text-align: center;
}

.site-header.nav-before,
.nav-wrapper .site-header {
  order: 2;
}

@media only screen and (min-width: 840px) {
  .nav-wrapper .site-header {
    order: 0;
  }
  .logo-right .nav-wrapper .site-header {
    order: 2;
  }
}
.site-title {
  font-size: 2.2rem;
  margin-bottom: 0;
  margin-top: var(--rh--size--general--margin--bottom);
}

.keyvisual {
  background-position: center top;
  background-size: cover;
}
.keyvisual > .wp-caption-text {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 2px 0 0 0;
  color: #fff;
  font-size: 1.2rem;
  opacity: 0.75;
  padding: 0.3rem 0.8rem;
  position: absolute;
  right: 0;
  text-align: right;
  z-index: 50;
}
.keyvisual .container {
  height: 100%;
  padding: 0;
  position: relative;
}
.keyvisual.container {
  padding: 0;
}

.keyvisual-widgets {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.rh-imprint .keyvisual-widgets > *:not(.rh-slider), .privacy-policy .keyvisual-widgets > *:not(.rh-slider) {
  display: none !important;
}
.keyvisual-widgets .widget-title {
  margin: 0 0 0.5em 0;
}
.keyvisual-widgets .icon {
  font-size: 1.3em;
  margin: 0 0.25em 0 0;
  vertical-align: -0.15em;
}

@media only screen and (min-width: 840px) {
  .header .header-widget {
    display: block;
  }
  .site-header {
    display: inline-flex;
  }
  .site-branding {
    flex-grow: 1;
  }
}
/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
.nav-open {
  overflow: hidden;
}
@media only screen and (min-width: 840px) {
  .nav-open {
    overflow: auto;
    overflow-x: hidden;
  }
}
.nav-open > body {
  overflow: hidden;
}
@media only screen and (min-width: 840px) {
  .nav-open > body {
    overflow: auto;
    overflow-x: hidden;
  }
}

.has-smooth-scrolling {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  .has-smooth-scrolling {
    scroll-behavior: auto;
  }
}

.site {
  height: 100%;
  margin: 0;
  overflow: hidden;
  transition: margin-left 0.3s ease;
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .site {
    transition: none;
  }
}
.nav-open .site {
  margin-left: 256px;
}
@media only screen and (min-width: 1135px) {
  .nav-open .site {
    margin-left: 128px;
  }
}
.nav-open > .nav-right .site {
  margin-left: -256px;
}
@media only screen and (min-width: 1135px) {
  .nav-open > .nav-right .site {
    margin-left: -128px;
  }
}
.nav-open .page-template-page-full .site {
  margin-left: 256px;
}
@media only screen and (min-width: 1135px) {
  .nav-open .page-template-page-full .site {
    margin-left: 128px;
  }
}
.nav-open .page-template-page-full.nav-right .site {
  margin-left: -256px;
}
@media only screen and (min-width: 1135px) {
  .nav-open .page-template-page-full.nav-right .site {
    margin-left: -128px;
  }
}

.container {
  margin: 0 auto;
  padding: 2rem;
  padding-left: max(env(safe-area-inset-left), 2rem);
  padding-right: max(env(safe-area-inset-right), 2rem);
}

.page-template-page-full .site-content {
  padding: 2rem 0;
}
.page-template-page-full .entry-content > * {
  padding-left: 2rem;
  padding-right: 2rem;
}
.page-template-page-full .entry-content > .alignfull,
.page-template-page-full .entry-content > .alignwide,
.page-template-page-full .entry-content > .embed-privacy-container {
  padding-left: 0;
  padding-right: 0;
}
.page-template-page-full .entry-content > .embed-privacy-container {
  margin-left: 2rem;
  margin-right: 2rem;
}
@media only screen and (min-width: 840px) {
  .page-template-page-full .entry-content > .embed-privacy-container {
    margin-left: 0;
    margin-right: 0;
  }
}
.page-template-page-full .entry-content > .alignfull {
  margin-left: 0;
  margin-right: 0;
}

@media only screen and (min-width: 840px) {
  .container {
    padding: 4rem;
    padding-left: max(env(safe-area-inset-left), 4rem);
    padding-right: max(env(safe-area-inset-right), 4rem);
  }
  body.mono .site-info.container,
  body.mono .site-header.container,
  body.mono .footer-widgets.container,
  body.mono .keyvisual .container {
    padding-left: max(env(safe-area-inset-left), 4rem);
    padding-right: max(env(safe-area-inset-right), 4rem);
  }
  .page-template-page-full .site-info.container {
    padding: 1em 4rem;
  }
  .page-template-page-full .site-content {
    max-width: 100%;
    padding: 4rem 0;
  }
  .page-template-page-full .entry-content {
    margin-left: auto;
    margin-right: auto;
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .page-template-page-full .entry-content > * {
    padding-left: 0;
    padding-right: 0;
  }
  .page-template-page-full .entry-content > .wp-block-rh-cta {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.rh-nightcrawler-opening-hours {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: var(--rh--size--general--margin--bottom);
}
.rh-nightcrawler-opening-hours > dt,
.rh-nightcrawler-opening-hours > dd {
  flex: 0 0 50%;
}
.rh-nightcrawler-opening-hours > dt {
  font-weight: 400;
}
.rh-nightcrawler-opening-hours > dd {
  margin-bottom: 0;
}
.rh-nightcrawler-opening-hours:last-child {
  margin-bottom: 0;
}

.rh-nightcrawler-reviews .review-star svg {
  height: 1em;
  vertical-align: -1px;
  width: auto;
}
.rh-nightcrawler-reviews:not(:last-child) {
  margin-bottom: var(--rh--size--general--margin--bottom);
}

.is-linkable-block {
  cursor: pointer;
  position: relative;
}

.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

.icon {
  display: inline-block;
  font-family: "icons" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
}
.icon.bottom {
  transform: rotate(180deg);
}
.icon.left {
  transform: rotate(-90deg);
}
.icon.right {
  transform: rotate(90deg);
}
.icon.circle {
  background: #333;
  border-radius: 100%;
  padding: 0.1071428571em 0.1428571429em 0.1785714286em 0.1428571429em;
}
.icon.square {
  background: #333;
  border-radius: 0.2142857143em;
  padding: 0.1071428571em 0.1428571429em 0.1785714286em 0.1428571429em;
}
.icon.angle::before {
  content: "\e914";
}
.icon.arrow::before {
  content: "\e913";
}
.icon.bars::before {
  content: "\e912";
}
.icon.caret::before {
  content: "\e911";
}
.icon.checkmark::before {
  content: "\e915";
}
.icon.chevron::before {
  content: "\e910";
}
.icon.clock-o::before {
  content: "\e918";
}
.icon.close::before {
  content: "\e90f";
}
.icon.download::before {
  content: "\e90e";
}
.icon.facebook::before {
  content: "\e90d";
}
.icon.file-text::before {
  content: "\e90c";
}
.icon.google-plus::before {
  content: "\e90b";
}
.icon.instagram::before {
  content: "\e90a";
}
.icon.kununu::before {
  content: "\e901";
}
.icon.mail::before {
  content: "\e909";
}
.icon.map-marker::before {
  content: "\e917";
}
.icon.pencil::before {
  content: "\e916";
}
.icon.phone::before {
  content: "\e908";
}
.icon.search::before {
  content: "\e900";
}
.icon.star::before {
  content: "\e902";
}
.icon.twitter::before {
  content: "\e907";
}
.icon.upload::before {
  content: "\e906";
}
.icon.youtube::before {
  content: "\e904";
}
.icon.youtube-play::before {
  content: "\e903";
}
.icon.xing::before {
  content: "\e905";
}

@media only screen and (min-width: 783px) {
  .mobile-only-small {
    display: none;
  }
}
@media only screen and (min-width: 1025px) {
  .mobile-only {
    display: none;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  .mobile-only {
    display: block;
  }
}
@media only screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 1.6) {
  .mobile-only {
    display: block;
  }
}

.not-mobile {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .not-mobile {
    display: block;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  .not-mobile {
    display: none;
  }
}

.tablet-only {
  display: none;
}
@media only screen and (min-width: 600px) {
  .tablet-only {
    display: block;
  }
}
@media only screen and (min-width: 1025px) {
  .tablet-only {
    display: none;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  .tablet-only {
    display: block;
  }
}
@media only screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 1.6) {
  .tablet-only {
    display: block;
  }
}

.tablet-desktop-only {
  display: none;
}
@media only screen and (min-width: 600px) {
  .tablet-desktop-only {
    display: block;
  }
}

.widget_search .search-submit {
  display: none;
}

.top-line {
  display: none;
}
@media only screen and (min-width: 840px) {
  .top-line {
    display: block;
  }
}
.top-line > .container {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
.top-line .widget {
  margin-right: 2.4rem;
}
.top-line .widget:last-child {
  margin-right: 0;
}
.top-line .wp-block-button:last-child {
  margin-bottom: 0;
}
.top-line .wp-block-button__link {
  margin: 2px 0;
  padding-bottom: 4px;
  padding-top: 4px;
}

.breadcrumbs {
  margin-bottom: 2rem;
}

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

.has-normal-font-size {
  font-size: 16px;
}

.has-medium-font-size {
  font-size: 20px;
}

.has-large-font-size {
  font-size: 36px;
}

.has-huge-font-size {
  font-size: 42px;
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-left {
  text-align: left;
}

.has-text-align-right {
  text-align: right;
}

.wp-block-file {
  margin-bottom: var(--rh--size--general--margin--bottom);
}
.wp-block-file.aligncenter, .wp-block-file.is-content-justification-center {
  text-align: center;
}
.wp-block-file.alignright {
  /* rtl:ignore */
  text-align: right;
}
.wp-block-file * + .wp-block-file__button {
  margin-left: 0.75em;
}
.wp-block-file:last-child {
  margin-bottom: 0;
}

.has-drop-cap:not(:focus)::first-letter {
  float: left;
  font-size: 8.4em;
  font-style: normal;
  font-weight: 100;
  line-height: 0.68;
  margin: 0.05em 0.1em 0 0;
  text-transform: uppercase;
}

.has-drop-cap:not(:focus)::after {
  content: "";
  clear: both;
  display: table;
  padding-top: 0.875em;
}

.blog article {
  padding-bottom: 40px;
}

.entry-meta,
.cat-links,
.entry-footer,
.comments-link {
  margin-bottom: 1.5rem;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.post-navigation {
  margin-top: 2.4rem;
}
.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  width: 25%;
  max-width: calc(50% - 15px);
  flex: 1 1 25%;
}
.post-navigation .nav-next a {
  text-align: right;
}
.post-navigation .nav-previous a {
  text-align: left;
}
.post-navigation a {
  -webkit-appearance: none;
  border: none;
  background-clip: padding-box;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  padding: 10px 15px;
  transition: all 0.25s ease-in-out;
}
.post-navigation .end-of-road {
  background-color: var(--rh--color--background-button-inactive);
  color: #fff;
  display: block;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.post-navigation .end-of-road.next-link {
  float: left;
}
.post-navigation a:hover {
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}

.entry-footer {
  border-bottom: 1px solid #e9e9e9;
  border-top: 1px solid #e9e9e9;
  padding: 0.8em 0;
}
.entry-footer span {
  display: block;
}
.entry-footer span.vcard {
  display: inline;
}

.backbtn {
  display: block;
  padding-top: 25px;
}

.single-post .site-content {
  max-width: var(--rh--size--site--main-post);
}

.page-template-page-full .post,
.page-template-page-full .page {
  overflow: hidden;
}

.alignfull,
.alignwide {
  left: 50%;
  max-width: none;
  position: relative;
  transform: translate(-50%);
  width: 100vw;
}
.alignfull > img,
.alignfull > a > img,
.alignwide > img,
.alignwide > a > img {
  width: 100%;
}

p.alignfull {
  padding-left: 15px;
  padding-right: 15px;
}

.alignwide {
  width: auto;
}

@media only screen and (min-width: 840px) {
  .category .page-header,
  .post-type-archive-product .page-header,
  .rh-spider-man-product-list,
  .rh-spider-man__filter-form,
  .single-product .site-main {
    margin-left: auto;
    margin-right: auto;
  }
}
.wp-block-image {
  line-height: 0;
  margin-bottom: var(--rh--size--general--margin--bottom);
}
.wp-block-image > figcaption {
  margin: 1rem 0 0 0;
  text-align: center;
  font-size: 0.7647em;
  line-height: 1.8;
}
.wp-block-image.is-style-circle-mask img {
  border-radius: 50%;
}
.wp-block-image.is-style-rounded img {
  border-radius: 9999px;
}

/*--------------------------------------------------------------
11.0 Footer
--------------------------------------------------------------*/
.footer-widgets {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 0;
}
.footer-widgets .widget {
  flex: 0 0 100%;
}
@media only screen and (min-width: 840px) {
  .footer-widgets .widget {
    padding-right: 0.5em;
    flex: 1 1 50%;
  }
  .footer-widgets .widget:nth-child(2n) {
    padding-left: 0.5em;
    padding-right: 0;
  }
  .footer-widgets .widget:nth-child(2n-1):last-child {
    padding-right: 0;
  }
}

.footer-widgets .widget:last-child {
  margin-right: 0;
}

.footer-credits {
  flex: 1 0 100%;
  text-align: center;
}
@media only screen and (min-width: 840px) {
  .footer-credits {
    flex: 1 1 auto;
    margin-right: 2rem;
    text-align: left;
  }
}
.footer-credits > span {
  display: inline-block;
}
.footer-credits > span:not(:last-child):after {
  content: " | ";
}
.footer-credits > span:not(:last-child) {
  margin-right: 0.27em;
}

.site-info {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  padding-bottom: max(env(safe-area-inset-bottom), 1rem);
  padding-top: 1rem;
  font-size: 1.3rem;
}

#rh-branding {
  margin: var(--rh--size--general--margin--bottom) auto 0;
}
@media only screen and (min-width: 840px) {
  #rh-branding {
    margin: 0;
  }
}

.footer-branding {
  fill: currentColor;
}

@media only screen and (min-width: 1024px) {
  .site-footer {
    text-align: left;
  }
  .container.footer-widgets {
    padding-left: 0;
    padding-right: 0;
  }
}
/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
embed,
iframe,
object {
  max-width: 100%;
}

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin: 0 auto;
}
.wp-caption .wp-caption-text {
  background-color: var(--rh--color--background--header);
  color: #fff;
  padding: 0.8075em;
  text-align: left;
}

.wp-caption-text {
  text-align: center;
}
