/* Table of contents

  1. Variables
  1.1 Variables Media Queries
  2. Font embedding
  3. Scrollbar
  4. General styling
  4.1 Brand Logos top of content area
  5. Links and Buttons
  6. Forms and form elements (input, textarea, select, etc.)
  6.1.1 Sign-up form
  6.1.2 Sign-in form
  6.1.3 Promotion form
  6.2 Custom radio buttons and checkboxes
  6.3 Text inputs (input, textarea, select, etc.)
  6.4 Login/Logout Modal and Form
  7. Survey box & News box
  8. Konto & Profil
  9. Punktetabelle

  10. Accordion
  11. Footer
  11.1 Scroll to top button
  12. Cookie Modal
  13. Image Slider
  13.1 Text inside Image Slider
  13.2 jSuccess CSS



*/

/* 1. Variables */
:root {
  --clr-primary: #e0001b;
  --clr-secondary: #e0001b;
  --clr-accent: hsl(35deg 95% 59%);
  --clr-accent-secondary: #15507a;
  /* --clr-accent-secondary: #287cb4; */
  --clr-primary_10: hsl(353deg 100% 44% / 10%);
  --clr-accent_10: hsl(35deg 95% 59% / 10%);
  --clr-white: #ffffff;
  --clr-black: #000000;
  --clr-dark-grey: #404040;
  --clr-dark-grey-100: rgb(70, 70, 70);
  --clr-medium-grey: #666666;
  --clr-neutral-grey: #b2b2b2;
  --clr-light-grey: #cccccc;
  --clr-lighter-grey: #e5e5e5;
  --clr-red: #cc3333;
  --clr-background: #f8f8f8;
  --header-height: 100px;
  --nav-height: 40px;
  --max-width-super: 1440px;
  --spacer-horizontal-tiny: 0 4px;
  --spacer-horizontal-small: 0 8px;
  --spacer-horizontal-medium: 0 16px;
  --spacer-horizontal-large: 0 24px;
  --spacer-horizontal-xlarge: 0 32px;
  --spacer-horizontal-xxlarge: 0 40px;
  --spacer-horizontal-xxxlarge: 0 48px;
  --spacer-vertical-tiny: 4px 0;
  --spacer-vertical-small: 8px 0;
  --spacer-vertical-medium: 16px 0;
  --spacer-vertical-large: 24px 0;
  --spacer-vertical-xlarge: 32px 0;
  --spacer-vertical-xxlarge: 40px 0;
  --spacer-vertical-xxxlarge: 48px 0;
  --spacer-tiny: 4px;
  --spacer-small: 8px;
  --spacer-medium: 16px;
  --spacer-large: 24px;
  --spacer-xlarge: 32px;
  --spacer-xxlarge: 40px;
  --spacer-xxxlarge: 48px;
  --transition-duration-medium: 250ms;
}

/* 1.1 Variables Media Queries */
@media only screen and (max-width: 768px) {
  :root {
    --spacer-horizontal-tiny: 0 2px;
    --spacer-horizontal-small: 0 4px;
    --spacer-horizontal-medium: 0 8px;
    --spacer-horizontal-large: 0 12px;
    --spacer-horizontal-xlarge: 0 16px;
    --spacer-horizontal-xxlarge: 0 20px;
    --spacer-horizontal-xxxlarge: 0 24px;
    --spacer-tiny: 2px;
    --spacer-small: 4px;
    --spacer-medium: 8px;
    --spacer-large: 12px;
    --spacer-xlarge: 16px;
    --spacer-xxlarge: 20px;
    --spacer-xxxlarge: 24px;
    --transition-duration-medium: 250ms;
  }
}

/* 2. Font embedding */
@font-face {
  font-family: 'FrutigerNext';
  src: url('FrutigerNextLTW1G-Regular.otf') format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'FrutigerNext';
  src: url('FrutigerNextLTW1G-Bold.otf') format('opentype');
  font-weight: 700;
}

/* 3. Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--clr-light-grey);
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fff;
  background-color: #fff;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--clr-neutral-grey);
}

/* 4. General styling */
html,
body {
  font-family: 'FrutigerNext', Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--clr-black);
  font-variant-numeric: lining-nums;
  -moz-font-feature-settings: 'lnum';
  -webkit-font-feature-settings: 'lnum';
  font-feature-settings: 'lnum';
  scroll-behavior: smooth;
  background-color: var(--clr-background);
  letter-spacing: 0.12em;
  word-spacing: 0.16em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'FrutigerNext', Verdana, sans-serif;
  margin: 0 0 var(--spacer-small);
  line-height: 1.125;
}

h1 {
  font-size: 40px;
  margin: 0 0 var(--spacer-medium);
}

h2 {
  font-size: 24px;
  font-weight: bold;
}
figure {
  margin: 0;
}
img {
  max-width: 100%;
}

.theme-white,
.theme-white:hover {
  color: var(--clr-black) !important;
  background-color: var(--clr-white) !important;
}

.theme-black,
.theme-hover-black:hover {
  color: var(--clr-white) !important;
  background-color: var(--clr-black) !important;
}

.theme-dark-grey,
.theme-hover-dark-grey:hover {
  color: white !important;
  background-color: var(--clr-dark-grey) !important;
}

.theme-text-black,
.theme-hover-text-black:hover {
  color: var(--clr-black) !important;
}

.padding-horizontal-medium {
  padding: var(--spacer-horizontal-medium);
}

.caption {
  display: none;
}

label {
  display: block;
}

form[name='passVergessen'] label {
  display: inline-block;
}

.rog-content section {
  /* margin-bottom: var(--spacer-xxxlarge); */
  margin-top: var(--spacer-xlarge);
}

input:invalid {
  box-shadow: none !important;
  /* outline: none !important; */
}

input:invalid::-webkit-validation-container {
  display: none !important;
}

input:invalid:-moz-ui-invalid {
  box-shadow: none !important;
  /* outline: none !important; */
}
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* 4.1 Brand Logos top of content area */

.brand-logos {
  display: inline-block;
  /* flex-direction: row; */
  /* flex-wrap: wrap; */
  /* align-content: center; */
  /* justify-content: flex-start; */
  padding: var(--spacer-xxxlarge) 16px;
}

.logo-evn {
  width: auto;
  height: 30px;
  margin-right: 30px;
  margin-left: 30px;
  margin-top: 24px;
}

.logo-kabelplus {
  width: 156px;
  height: auto;
  margin-top: 32px;
}

/* 5. Links and Buttons */

a {
  color: #287cb4;
  color: var(--clr-accent-secondary);
  text-decoration: none;
  outline: #000;
}

main a {
  text-decoration: underline;
}

.rog-button,
input[type='submit'],
input[type='button'],
button:not(.theme-nav-burger--button),
.survey_link,
.bestellen_link_box a,
.bonus_link_box a {
  /* General */
  border: none;
  display: inline-block;
  vertical-align: middle;
  /* overflow: hidden; */
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* theme */
  background-color: var(--clr-primary);
  border-radius: 10px;
  border: 2px solid transparent;
  color: var(--clr-white);
  font-weight: bold;
  font-size: 16px;
  padding: var(--spacer-small) var(--spacer-medium) !important;
}

.rog-button:hover,
.rog-button:focus,
input[type='submit']:hover,
input[type='submit']:focus,
input[type='button']:hover,
input[type='button']:focus,
button:not(.theme-nav-burger--button):hover,
button:not(.theme-nav-burger--button):focus,
.survey_link:hover,
.survey_link:focus,
.bestellen_link_box a:hover,
.bestellen_link_box a:focus,
.bonus_link_box a:hover,
.bonus_link_box a:focus {
  background-color: var(--clr-primary) !important;
  color: var(--clr-white) !important;
}

.rog-button:active,
input[type='submit']:active,
input[type='button']:active,
button:not(.theme-nav-burger--button):active,
.survey_link:active,
.bestellen_link_box a:active,
.bonus_link_box a:active {
  background-color: var(--clr-primary) !important;
}

.rog-button-highlight {
  font-size: 24px !important;
}
#start-rog-button {
  background-color: #464646 !important;
}
.rog-button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid black;
}

.delete_button_konto.delete_button {
  background-color: #f8f8f8 !important;
  font-size: 14px;
  margin-top: 24px;
  margin-top: var(--spacer-large);
  color: #555;
}

/* 6. Forms and form elements (input, textarea, select, etc.) */

form {
  background-color: var(--clr-white);
  padding: var(--spacer-medium);
  box-shadow: 0 0 var(--spacer-medium) 0 hsl(0deg 0% 0% / 5%);
}

/* 6.1.1 Sign-up form */
.selbsteregistierte {
  width: 100%;
}

.selbstregistrierten_field {
  padding: 8px 0;
  padding: var(--spacer-vertical-small);
}
fieldset.selbstregistrierten_field {
  border: none;
}

.selbstregistrierten_field:first-child {
  padding-top: 0;
}

.selbstregistrierten_field:last-child {
  padding-bottom: 0;
}

#website {
  display: inline;
  height: 1px;
  width: 1px;
  opacity: 0;
  pointer-events: none;
}

label.selbstregistrierung {
  display: block;
}

.reg-hinweis {
  font-size: 16px;
}

/* 6.1.2 Sign-in form */
.login-form .rog-button,
.login-form input[type='submit'],
.login-form input[type='button'] {
  width: 100%;
  white-space: normal;
}

.password-show-label {
  display: inline-block !important;
}
.password-show-label-register {
  display: inline !important;
}
.password-show-icon {
  width: 8%;
}
.password-show-icon-register {
  width: 4%;
}

/* 6.1.3 Promotion form */
.promotion_layout {
  height: min-content;
  padding: 0;
}

.promotion_layout .left .field {
  float: none;
  height: fit-content;
  width: 100%;
}

.promotionrow_normal {
  padding: var(--spacer-medium);
  background-color: var(--clr-white);
  border: none;
  box-shadow: 0 0 var(--spacer-medium) 0 hsl(0deg 0% 0% / 5%);
  border: 6px solid var(--clr-primary);
}
.promotionrow_normal form.new_opt_in {
  box-shadow: none;
  padding-inline: var(--spacer-medium);
}

.promotion_heading {
  font-size: 16px;
}

.promotion_text {
  padding: 0;
  margin-block-end: 0;
}
/* augeblendete form fields */
.promotion_field_gender,
.promotion_field_titel,
.promotion_field_language,
#copy_code_button {
  display: none;
}

/* 6.2 Custom radio buttons and checkboxes */
.rog-selection-container {
  display: inline-block;
  position: relative;
  padding-left: 24px;
  margin-bottom: 0px;
  margin-right: 24px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* -- Hide the browser's default radio button */
.rog-selection-container input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

/* -- Create a custom radio button */
.rog-selection.rog-radiobutton {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: white;
  border: 1px solid #666666;
  border: 1px solid var(--clr-medium-grey);
  border-radius: 50%;
}

/* -- Create a custom checkbox */
.rog-selection.rog-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: white;
  border: 1px solid #b2b2b2;
  border: 1px solid var(--clr-neutral-grey);
}

/* -- On mouse-over, add a grey background color */
.rog-selection-container:hover input ~ .rog-selection {
  border: 1px solid #ffb800;
  border: 1px solid var(--clr-secondary);
}

/* -- When the radio button is checked, add a blue background */
.rog-selection-container input:checked ~ .rog-selection {
  border: 1px solid #ffb800;
  border: 1px solid var(--clr-secondary);
}
.rog-selection-container input:focus ~ .rog-selection {
  outline: 1px solid;
}
/* -- Create the indicator (the dot/circle - hidden when not checked) */
.rog-selection:after {
  content: '';
  position: absolute;
  display: none;
}

/* -- Show the indicator (dot/circle) when checked */
.rog-selection-container input:checked ~ .rog-selection:after {
  display: block;
}

/* -- Style the radio button indicator (dot/circle) */
.rog-selection-container .rog-selection.rog-radiobutton:after {
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffb800;
  background-color: var(--clr-secondary);
}

/* -- Style the checkbox indicator */
.rog-selection-container .rog-selection.rog-checkbox:after {
  left: 4px;
  top: 4px;
  width: 10px;
  height: 10px;
  background-color: #ffb800;
  background-color: var(--clr-secondary);
}

/* 6.3 Text inputs (input, textarea, select, etc.) */
input[type='text'],
input[type='password'],
input[type='email'],
input[type='number'],
select,
textarea {
  border: 1px solid var(--clr-black);
  padding: var(--spacer-small);
  width: 100% !important;
  max-width: 480px;
  border-radius: 10px;
}

input[type='text']:focus,
input[type='password']:focus,
input[type='email']:focus,
input[type='number']:focus,
select:focus,
textarea:focus {
  /* outline: 0; */
}

/* 6.4 Login/Logout Modal and Form */

.rog-modal-content--header {
  --rog-modal-content--header-height: 32px;
  height: 40px;
  height: var(--rog-modal-content--header-height);
}

.rog-button.rog-display-topright {
  background-image: none;
  display: flex;
  padding: 0 !important;
  width: 40px;
  height: 40px;
  width: var(--rog-modal-content--header-height);
  height: var(--rog-modal-content--header-height);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  align-items: center;
  justify-content: center;
}

.rog-modal-form--container > * {
  padding: 8px 0;
  padding: var(--spacer-vertical-small);
}

.rog-modal-form--container > div:first-of-type {
  padding-top: 0;
}

.rog-modal-form--container > div:last-of-type {
  padding-bottom: 0;
}

.rog-modal-form--container h2 {
  font-size: 16px;
}

.rog-modal-form--container p {
  margin: 0;
}

/* 7. Survey box & News box*/

#surveys_outer,
#news_outer {
  --background-color: var(--clr-background);
  background-color: var(--background-color);
  padding: var(--spacer-medium);
  margin-bottom: var(--spacer-medium);
  /* box-shadow: 0 0 var(--spacer-medium) 0 hsl(0deg 0% 0% / 5%); */
  width: 100%;
  margin-left: 0;
}

.surveys_header,
#news_label {
  background-color: var(--clr-dark-grey);
  color: white;
  padding: var(--spacer-horizontal-small);
  display: inline-block;
  margin: 0;
  margin-bottom: var(--spacer-medium);
}

.survey_header {
  font-weight: bold;
}

.surveys_header {
  font-size: 16px;
  font-weight: 400;
  padding: 4px 8px;
}

.survey_header,
.survey-subheader {
  font-size: 16px;
}

#start_news {
  height: auto;
  border: none;
}

.news-text h1,
.news-text h2 {
  font-size: 30px !important;
  font-weight: 400 !important;
}
.news-text h3,
.news-text h4,
.news-text h5,
.news-text h6 {
  font-size: 24px !important;
  font-weight: 400 !important;
}
.news-text p {
  font-size: 16px !important;
}

/* Survey */

.survey-box {
  padding: var(--spacer-vertical-large);
}

.survey-box:first-child {
  padding-top: 0;
}

.survey-box:last-child {
  padding-bottom: 0;
}

.surveys_innerbox {
  border: none;
  height: fit-content;
  padding: 0;
}

/* News */

#news_label {
  display: none;
}

.news-article:not(:last-child) {
  margin-bottom: 3rem;
}

.news-article {
  background-color: var(--clr-white);
  padding: var(--spacer-medium);
  border-radius: 10px;
  border: 1px solid var(--clr-lighter-grey);
}

.news-text {
  --max-lines: 5;
  --line-height: 1.4;
  max-height: calc(var(--max-lines) * 1em * var(--line-height) + 40px);
  line-height: var(--line-height);
  overflow: hidden;
  position: relative;
}

.news-text:has(+ .show-more-news-text:not(:checked))::before {
  /* content: ""; */
  /* position: absolute; */
  /* height: calc(2em * var(--line-height)); */
  /* width: 100%; */
  /* bottom: 0; */
  /* pointer-events: none; */
  /* background: linear-gradient(to bottom, transparent, var(--background-color)); */
}

.show-more-news-text {
  appearance: none;
  /* border: 1px solid black; */
  /* padding: .5em; */
  /* border-radius: .25em; */
  cursor: pointer;
  margin-top: 2rem;
}

.show-more-news-text:hover {
  /* background-color: var(--clr-light-grey); */
}

.show-more-news-text::before {
  content: 'Mehr dazu';
  font-size: 22px;
  background-image: url(/themes/evn/images/pfeil_rechts.png);
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: 105px;
  padding-right: 30px;
}

.show-more-news-text:checked::before {
  content: 'Weniger anzeigen';
  background-image: url(/themes/evn/images/pfeil_links.png);
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: 3px;
  padding-left: 30px;
}

.news-text:has(+ .show-more-news-text:checked) {
  max-height: none;
}

#news_outer img {
  width: 100% !important;
  height: auto !important;
}

/* 8. Konto & Profil */

/* 8.1 Konto */

.konto_part_1 > div:first-child,
.konto_part_1 > div.vornamebox {
  padding-top: 0;
}

.konto_part_2 > div:last-child {
  padding-bottom: 0;
}

.konto_part_1,
.konto_part_2 {
  float: none;
}

.konto_part_2 {
  padding-left: 0;
}

/*.genderbox,*/
.birthdatebox,
.languagebox,
.strassebox,
.hausnummerbox,
.plzbox,
.stadtbox {
  display: none;
}

/* 8.2 Profil */

.propertyueber > .propouterdiv {
  margin-bottom: var(--spacer-xxxlarge);
  margin-top: var(--spacer-large);
}

.propertyueber > .propouterdiv:nth-last-child(2) {
  margin-bottom: 16px;
  margin-bottom: var(--spacer-medium);
}

.plusminus {
  display: none;
}

.propertyfieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.propertyfieldsetlegend {
  background-color: var(--clr-dark-grey-100);
  color: white;
  padding: var(--spacer-horizontal-small);
  display: inline-block;
  margin-bottom: var(--spacer-small);
  position: relative;
  padding-right: 32px;
  cursor: pointer;
  max-width: 480px;
  width: 100%;
}

.prop_div > div:nth-child(odd) {
  padding-top: var(--spacer-small);
}

.prop_div > div:nth-child(even) {
  padding-bottom: var(--spacer-small);
}

.prop_div > div:first-child {
  padding-top: 0;
}

.prop_div > div:last-child {
  padding-bottom: 0;
}

/* Mekmale einblenden */
.prop_div {
  /* height: 0; */
  overflow: hidden;
}

.active .prop_div {
  height: auto;
}

.propertyfieldsetlegend > svg.chevron-pointing-up,
.propertyfieldsetlegend > svg.chevron-pointing-down {
  fill: #ffffff;
  height: 16px;
  position: absolute;
  right: 8px;
  top: 50%;
  top: calc(50% - 8px);
  width: 16px;
}

.propertyfieldsetlegend > svg.chevron-pointing-up {
  display: none;
}

.active .propertyfieldsetlegend > svg.chevron-pointing-down {
  display: none;
}

.active .propertyfieldsetlegend > svg.chevron-pointing-up {
  display: block;
}

/* Umfragemodal Kundennummer ergaenzen */

#survey-wrapper {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background-color: rgba(147, 149, 151, 0.7);
  overflow: hidden;
}

#survey-content {
  display: block;
  position: relative;
  top: 130px;
  padding: 16px;
  margin: auto;
  background-color: rgba(255, 255, 255, 1);
  width: 100%;
  max-width: 700px;
  box-shadow: 0 4px 10px 0 rgb(0 0 0 / 20%), 0 4px 20px 0 rgb(0 0 0 / 19%);
}

/* 9. Punktetabelle */

.punktetable {
  background-color: var(--clr-white);
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: var(--spacer-medium);
  margin-bottom: 8px;
}

.punktetable thead tr {
  background-color: var(--clr-accent_10);
}

.punktetable tr {
  border-bottom: 1px solid #ddd;
}

.punktetable tbody tr:nth-child(even) {
  background-color: #f1f1f1;
}

.punktetable td,
.punktetable th {
  padding: 8px 8px;
  text-align: left;
  vertical-align: top;
}

.punktetable th:first-child,
.punktetable td:first-child {
  padding-left: 16px;
}

.punktetable tfoot,
.punktetable th:last-child,
.punktetable td:last-child {
  display: none;
}

/* 10. Accordion */
.rog-accordion {
  border: 1px solid #b2b2b2;
  border: 1px solid var(--clr-neutral-grey);
  cursor: pointer;
  padding: 16px;
  padding: var(--spacer-medium);
  position: relative;
  margin-bottom: 16px;
  margin-bottom: var(--spacer-medium);
  overflow: hidden;
  border-radius: 4px;
  margin-top: 0 !important;
}

.rog-accordion:hover {
  background-color: #e5e5e5;
  background-color: var(--clr-lighter-grey);
}

.rog-accordion > .rog-accordion--headline-row {
  position: relative;
  padding-right: 32px;
}

.rog-accordion > .rog-accordion--headline-row > svg.chevron-pointing-up,
.rog-accordion > .rog-accordion--headline-row > svg.chevron-pointing-down {
  fill: #287cb4;
  fill: var(--clr-accent-secondary);
  height: 16px;
  position: absolute;
  right: 8px;
  top: 50%;
  top: calc(50% - 8px);
  width: 16px;
}

.rog-accordion > .rog-accordion--headline-row > svg.chevron-pointing-up {
  display: none;
}

.rog-accordion > .rog-accordion--headline-row > svg.chevron-pointing-down {
  display: block;
}

.rog-accordion.active
  > .rog-accordion--headline-row
  > svg.chevron-pointing-down {
  display: none;
}

.rog-accordion.active > .rog-accordion--headline-row > svg.chevron-pointing-up {
  display: block;
}

.rog-accordion > .rog-accordion--text {
  border-left: 2px solid #ffb800;
  border-left: 2px solid var(--clr-secondary);
  padding: 0 16px;
  padding: var(--spacer-horizontal-medium);
  /* height: 0; */
  overflow: hidden;
  margin: 0;
}

.rog-accordion.active > .rog-accordion--text {
  height: auto;
  margin-top: 8px;
  margin-top: var(--spacer-small);
}

details summary::marker {
  display: none;
  list-style: none;
  font-size: 0;
}

details summary::-webkit-details-marker {
  display: none;
  list-style: none;
  font-size: 0;
}

.rog-accordion button {
  background-color: transparent;
  color: inherit;
  font-weight: normal;
  padding: 0 !important;
  border-radius: 0;
}

.rog-accordion button:hover,
.rog-accordion button:focus,
.rog-accordion button:active {
  background-color: transparent !important;
  color: inherit !important;
}

/* 11. Footer */

.theme-footer {
  --scroll-to-top-dimensions: 48px;
  text-align: left;
  position: relative;
  margin-top: var(--spacer-xxxlarge);
  /* padding: calc(var(--scroll-to-top-dimensions)/2) var(--scroll-to-top-dimensions); */
}

.theme-footer > .theme-footer-nav {
  margin: 0px auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  /* gap: var(--spacer-xxxlarge); */
  padding: 0.01em 16px;
}

.theme-footer > .theme-footer-nav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.theme-footer-nav li {
  flex: 1 1 100%;
  text-align: center;
}

@media (min-width: 600px) {
  .theme-footer-nav li {
    flex: 1 1 auto;
  }
}

.theme-footer > .theme-footer-nav > ul > li > a {
  padding: 22px 24px;
}

.theme-footer-link {
  display: inline-block;
  padding: 22px 24px;
  border-radius: 4px;
  /* background: hsl(114deg 92% 57% / 21%); */
}

.theme-footer-link:hover {
  background-color: #f8f8f8;
  background-color: var(--clr-background);
}

.theme-footer-link > span {
  position: relative;
}

.theme-footer-link > span:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: black;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition-duration-medium) ease;
}

.theme-footer-link:hover > span:after,
.theme-footer-link:focus > span:after,
.theme-footer-link.selected > span:after {
  transform: scaleX(1);
}

.theme-footer-subnav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 10px;
  gap: 1rem;
  margin-top: 1rem;
  background-color: #fff;
  border-radius: 4px;
}

.theme-footer-subnav li a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
}

/* 11.1 Scroll to top button */

#scroll-to-top {
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
}

.scroll-to-top {
  text-align: center;
  font-size: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 48px;
  width: 48px;
  height: var(--scroll-to-top-dimensions);
  width: var(--scroll-to-top-dimensions);
  max-width: none;
  transition: width var(--transition-duration-medium) ease,
    padding-right var(--transition-duration-medium) ease;
}
.scroll-to-top > div:first-child > div {
  fill: var(--clr-white);
  height: 16px;
  width: 16px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-to-top > div:nth-of-type(3) {
  margin-top: -4px;
}

#scroll-to-top:hover {
  padding-right: 20px;
  width: 70px;
  background-color: #000 !important;
}

.scroll-to-top span {
  font-size: 10px;
  font-weight: 300;
}

/* 12. Cookie Modal */

#cookie-wrapper {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background-color: rgba(147, 149, 151, 0.7);
  overflow: hidden;
}
#cookie-content {
  display: block;
  position: relative;
  top: 130px;
  padding: 16px;
  margin: auto;
  background-color: rgba(255, 255, 255, 1);
  width: 100%;
  max-width: 800px;
  box-shadow: 0 4px 10px 0 rgb(0 0 0 / 20%), 0 4px 20px 0 rgb(0 0 0 / 19%);
}
button#cookie-button {
  padding: var(--spacer-tiny) var(--spacer-small) !important;
  margin-top: 10px;
}
button#cookie-button:nth-of-type(2) {
  background-color: var(--clr-dark-grey);
}
button#cookie-button:nth-of-type(2):hover {
  background-color: var(--clr-dark-grey) !important;
}
#cookie-content > p:first-child {
  margin-top: 0.1em !important;
}
#cookie-content > p:nth-child(3) > *:first-child {
  color: var(--clr-black);
}
/* 13. Image Slider */

.full-width-media__container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 16px;
  padding-bottom: var(--spacer-medium);
}

/* 13.1 Text inside Image Slider */

.full-width-media__caption {
  position: absolute;
  top: 98%;
  left: 15.5%;
  transform: translate(-15.5%, -98%);
}
/******************/
/** 13.2 jSuccess CSS **/
/******************/
#jSuccess {
  max-width: 730px;
}

.h2_title {
  font-size: 24px;
  font-weight: bold;
}

/* news */
