@font-face {
  font-family: "Theinhardt";
  src: url("/assets/Theinhardt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Theinhardt";
  src: url("/assets/Theinhardt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
}
:root {
  --columns: 12;
  --product-columns: 3;
  --gap: 24px;
  --half-gap: calc(var(--gap) / 2);
  --two-gap: calc(var(--gap) * 2);
  --three-gap: calc(var(--gap) * 3);
  --four-gap: calc(var(--gap) * 4);
  --five-gap: calc(var(--gap) * 5);
  --border-radius: 24px;
  --radius: 16px;
  --half-radius: calc(var(--radius) / 2);
  --two-radius: calc(var(--radius) * 2);
}
@media (max-width: 1023px) {
  :root {
    --columns: 4;
    --product-columns: 3;
  }
}
@media (max-width: 767px) {
  :root {
    --columns: 4;
    --product-columns: 1;
    --gap: 16px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Theinhardt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  margin: 0px;
  padding: 0px;
}

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  -webkit-hyphens: auto;
          hyphens: auto;
}
body > * {
  padding: var(--gap);
}

h1, h2, h3, h4, b, strong, .logo, .price, .btn, input[type=submit], .username a {
  font-family: "Theinhardt", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0px;
}

h1, h2, h3, h4, p {
  margin-top: 0px;
  margin-bottom: var(--gap);
}

h1 {
  font-size: 1.95rem;
  line-height: 1.95rem;
  text-transform: uppercase;
}

h2, .my-products h3,
.buy-options h3 {
  font-size: 1.55rem;
  line-height: 1.55rem;
}

.buy-options + h2 {
  margin-top: var(--three-gap);
}
@media (max-width: 1023px) {
  .buy-options + h2 {
    margin-top: var(--two-gap);
  }
}

p + h2 {
  margin-top: 32px;
}

.grid > h3 {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 0px !important;
}

.grid > p:not(.small),
h3 {
  font-size: 25px;
  line-height: 30px;
}

hr {
  margin-bottom: var(--four-gap);
  height: 1px;
  width: 100%;
  background-color: transparent;
  border: 0px;
}

.homepage h1:first-of-type {
  display: none;
}
.homepage p + h2 {
  margin-top: var(--gap);
}

.byline,
.description,
.btn,
input,
input[type=submit],
input[type=checkbox],
input[type=date] {
  font-family: "Theinhardt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.8rem;
  line-height: 1rem;
}

.username {
  font-size: 0.7rem;
  line-height: 1rem;
}

.btn,
input[type=submit] {
  padding: 9px 20px 8px;
  border-radius: var(--border-radius);
  border: 1px solid black;
  background-color: transparent;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-weight: 700;
}
.btn:hover,
input[type=submit]:hover {
  text-decoration: none;
  background-color: black;
  color: white;
  cursor: pointer;
}

input[type=submit],
p .btn {
  background-color: black;
  border-color: black;
  color: white;
  padding: 8px 20px 6px;
}
input[type=submit]:hover,
p .btn:hover {
  background-color: white;
  color: black;
}

a.btn {
  text-decoration: none !important;
}

.arrow-right {
  display: inline;
  background-image: url(/assets/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 38px;
  overflow: hidden;
  text-indent: -100vw;
  color: transparent;
}

.arrow-left {
  display: inline;
  background-image: url(/assets/arrow-left.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 38px;
  overflow: hidden;
  text-indent: -100vw;
  color: transparent;
}

.grid {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-gap: var(--gap);
  grid-row-gap: 0px;
  grid-template-columns: repeat(var(--columns), 1fr);
  min-height: 0;
}

ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
ul li {
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  color: black;
}
a:hover {
  text-decoration: underline;
}

main p a,
main table a,
form a {
  text-decoration: underline;
}
main p a:hover,
main table a:hover,
form a:hover {
  text-decoration: none;
}

header {
  position: relative;
}
header .mainnav-toggler {
  width: 40px;
  height: 24px;
  z-index: 9;
}
@media (max-width: 1023px) {
  header .mainnav-toggler {
    position: absolute;
    padding: var(--gap);
    top: 0px;
    right: 0px;
    width: calc(40px + var(--two-gap));
    height: calc(20px + var(--two-gap));
  }
}
header .mainnav-toggler span {
  width: 100%;
  height: 4px;
  margin-bottom: 6px;
  display: block;
  background-color: black;
}
header .mainnav-toggler span:last-child {
  margin-bottom: 0px;
}
header .mainnav-toggler:hover {
  cursor: pointer;
}
header .mainnav {
  background-color: black;
  position: fixed;
  z-index: 10;
  left: 0px;
  top: 0px;
  bottom: 0px;
  overflow-y: auto;
  padding: var(--four-gap) var(--gap);
  transform: translateX(-100%);
  transition: transform 0.6s ease-in-out;
  color: white;
}
@media (max-width: 474px) {
  header .mainnav {
    right: 0px;
  }
}
header .mainnav a {
  color: white;
}
header .mainnav .btn {
  transition: all 0.3s ease-in-out;
  color: black;
}
header .mainnav .pages li {
  margin-bottom: var(--radius);
}
header .mainnav .pages li:last-child {
  margin-bottom: 0px;
}
header .mainnav .pages li a.btn {
  background-color: white;
  border-color: white;
}
header .mainnav .pages li a.btn:hover {
  background-color: black;
  color: white;
}
header .mainnav .pages li a.btn.btn.pass {
  background-color: #6CE686;
  border-color: #6CE686;
}
header .mainnav .pages li a.btn.btn.pass:hover {
  color: #6CE686;
}
header .mainnav .pages li a.btn.btn.voucher {
  background-color: #ACC6FF;
  border-color: #ACC6FF;
}
header .mainnav .pages li a.btn.btn.voucher:hover {
  color: #ACC6FF;
}
header .mainnav .pages li a.btn.btn.website {
  background-color: black;
  border-color: black;
  color: white;
  border-color: white;
}
header .mainnav .pages li a.btn.btn.website:hover {
  background-color: white;
  color: black;
}
header .mainnav .pages li a.btn.btn.website:hover span {
  filter: invert(1);
}
header .mainnav .pages li a.btn.btn:hover {
  background-color: black;
}
header .mainnav .pages li a.btn span {
  position: relative;
  display: inline;
  color: transparent;
  margin-right: 5px;
}
header .mainnav .pages .user {
  margin-top: var(--two-gap);
  margin-bottom: var(--gap);
}
header .mainnav .pages .user .username {
  margin-bottom: var(--gap);
}
header .mainnav .pages .user .username a {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 32ch;
}
header .mainnav .pages .user li {
  margin-bottom: calc(var(--radius) / 2);
}
header .mainnav .pages .user li:last-child {
  margin-top: var(--two-gap);
  margin-bottom: 0px;
}
header .mainnav .lang {
  margin-top: var(--two-gap);
  display: flex;
  gap: var(--gap);
}
header nav {
  grid-column: 1/2;
}
header .logo {
  font-size: 1.4rem;
  line-height: 1.4rem;
  text-transform: uppercase;
  grid-column: 2/9;
  display: flex;
  align-items: baseline;
}
@media (max-width: 600px) {
  header .logo {
    font-size: 4.6vw;
  }
}
@media (max-width: 374px) {
  header .logo {
    font-size: 6.8vw;
  }
}
@media (max-width: 1023px) {
  header .logo {
    grid-column: 1/5;
  }
}
header .logo a:hover {
  text-decoration: none;
}
header .logo img {
  width: 108px;
  height: auto;
  margin-right: 18px;
}
header .logo span {
  text-wrap: nowrap;
}
header .metanav {
  font-size: 14px;
  grid-column: 9/13;
  text-align: right;
}
@media (max-width: 1023px) {
  header .metanav {
    display: none;
  }
}
header .metanav .lang {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--half-gap);
  line-height: 0.8rem;
  font-weight: bold;
  gap: 14px;
  padding-right: 4px;
}
header .metanav ul {
  display: flex;
  justify-content: flex-end;
  gap: var(--half-gap);
}
header .metanav .btn {
  background-color: black;
  border-color: black;
  color: white;
  font-size: 14px;
  line-height: 14px;
  padding: 5px 14px 5px 14px !important;
}
header .metanav .btn:hover {
  background-color: white;
  color: black;
}
header .metanav .username {
  margin-top: calc(var(--half-gap) - 4px);
}
header .metanav .username a {
  color: #EA1114;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 24ch;
}

.mainnav-active .mainnav {
  transform: translateX(0%);
}

main {
  flex: 1;
  padding-top: var(--three-gap);
}
@media (max-width: 1023px) {
  main {
    padding-top: var(--two-gap);
  }
}
main .grid > * {
  grid-column: 1/11;
}
@media (max-width: 1023px) {
  main .grid > * {
    grid-column: 1/5;
  }
}
main .grid img.header {
  width: 100%;
  grid-column: 1/13;
  grid-row: 1/1;
  margin-bottom: var(--four-gap);
}
@media (min-width: 1023.01px) {
  main .grid img.header {
    margin-top: -30px;
  }
}
@media (max-width: 1023px) {
  main .grid img.header {
    grid-column: 1/5;
    margin-bottom: var(--three-gap);
  }
}
main .grid .products,
main .grid .my-products {
  display: grid;
  grid-gap: var(--gap);
  grid-row-gap: 0px;
  grid-template-columns: repeat(var(--product-columns), 1fr);
  margin-top: var(--gap);
  margin-bottom: var(--four-gap);
}
@media (max-width: 1023px) {
  main .grid .products,
  main .grid .my-products {
    margin-bottom: var(--three-gap);
  }
}
main .grid .products .product,
main .grid .products .option-pass,
main .grid .products .option-voucher,
main .grid .my-products .product,
main .grid .my-products .option-pass,
main .grid .my-products .option-voucher {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--gap);
}
main .grid .products .product a.product-link,
main .grid .products .product a.option-pass-link,
main .grid .products .option-pass a.product-link,
main .grid .products .option-pass a.option-pass-link,
main .grid .products .option-voucher a.product-link,
main .grid .products .option-voucher a.option-pass-link,
main .grid .my-products .product a.product-link,
main .grid .my-products .product a.option-pass-link,
main .grid .my-products .option-pass a.product-link,
main .grid .my-products .option-pass a.option-pass-link,
main .grid .my-products .option-voucher a.product-link,
main .grid .my-products .option-voucher a.option-pass-link {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--gap);
}
main .grid .products .product a:hover,
main .grid .products .option-pass a:hover,
main .grid .products .option-voucher a:hover,
main .grid .my-products .product a:hover,
main .grid .my-products .option-pass a:hover,
main .grid .my-products .option-voucher a:hover {
  text-decoration: none;
}
main .grid .products .product:hover,
main .grid .products .option-pass:hover,
main .grid .products .option-voucher:hover,
main .grid .my-products .product:hover,
main .grid .my-products .option-pass:hover,
main .grid .my-products .option-voucher:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}
main .grid .products .product:nth-child(1) a.product-link,
main .grid .products .product:nth-child(1) a.option-pass-link,
main .grid .products .option-pass:nth-child(1) a.product-link,
main .grid .products .option-pass:nth-child(1) a.option-pass-link,
main .grid .products .option-voucher:nth-child(1) a.product-link,
main .grid .products .option-voucher:nth-child(1) a.option-pass-link,
main .grid .my-products .product:nth-child(1) a.product-link,
main .grid .my-products .product:nth-child(1) a.option-pass-link,
main .grid .my-products .option-pass:nth-child(1) a.product-link,
main .grid .my-products .option-pass:nth-child(1) a.option-pass-link,
main .grid .my-products .option-voucher:nth-child(1) a.product-link,
main .grid .my-products .option-voucher:nth-child(1) a.option-pass-link {
  background-color: #2A4C97;
}
main .grid .products .product:nth-child(2) a.product-link,
main .grid .products .product:nth-child(2) a.option-pass-link,
main .grid .products .option-pass:nth-child(2) a.product-link,
main .grid .products .option-pass:nth-child(2) a.option-pass-link,
main .grid .products .option-voucher:nth-child(2) a.product-link,
main .grid .products .option-voucher:nth-child(2) a.option-pass-link,
main .grid .my-products .product:nth-child(2) a.product-link,
main .grid .my-products .product:nth-child(2) a.option-pass-link,
main .grid .my-products .option-pass:nth-child(2) a.product-link,
main .grid .my-products .option-pass:nth-child(2) a.option-pass-link,
main .grid .my-products .option-voucher:nth-child(2) a.product-link,
main .grid .my-products .option-voucher:nth-child(2) a.option-pass-link {
  background-color: #1F9B39;
}
main .grid .products .product:nth-child(3) a.product-link,
main .grid .products .product:nth-child(3) a.option-pass-link,
main .grid .products .option-pass:nth-child(3) a.product-link,
main .grid .products .option-pass:nth-child(3) a.option-pass-link,
main .grid .products .option-voucher:nth-child(3) a.product-link,
main .grid .products .option-voucher:nth-child(3) a.option-pass-link,
main .grid .my-products .product:nth-child(3) a.product-link,
main .grid .my-products .product:nth-child(3) a.option-pass-link,
main .grid .my-products .option-pass:nth-child(3) a.product-link,
main .grid .my-products .option-pass:nth-child(3) a.option-pass-link,
main .grid .my-products .option-voucher:nth-child(3) a.product-link,
main .grid .my-products .option-voucher:nth-child(3) a.option-pass-link {
  background-color: #EA1114;
}
main .grid .products .product h2,
main .grid .products .option-pass h2,
main .grid .products .option-voucher h2,
main .grid .my-products .product h2,
main .grid .my-products .option-pass h2,
main .grid .my-products .option-voucher h2 {
  margin-top: 5px;
  margin-bottom: 10px;
}
main .grid .products .product .price,
main .grid .products .option-pass .price,
main .grid .products .option-voucher .price,
main .grid .my-products .product .price,
main .grid .my-products .option-pass .price,
main .grid .my-products .option-voucher .price {
  margin-top: var(--gap);
  margin-bottom: var(--gap);
}
main .grid .products .product .description,
main .grid .products .option-pass .description,
main .grid .products .option-voucher .description,
main .grid .my-products .product .description,
main .grid .my-products .option-pass .description,
main .grid .my-products .option-voucher .description {
  flex: 1;
}
main .grid .products .product .more,
main .grid .products .option-pass .more,
main .grid .products .option-voucher .more,
main .grid .my-products .product .more,
main .grid .my-products .option-pass .more,
main .grid .my-products .option-voucher .more {
  margin-top: var(--gap);
  align-self: flex-end;
}
main .grid .products:not(.voucher) a,
main .grid .my-products:not(.voucher) a {
  color: white;
}
main .grid .products:not(.voucher) .more,
main .grid .my-products:not(.voucher) .more {
  border-color: white;
  color: white;
}
main .grid .products:not(.voucher) .more:hover,
main .grid .my-products:not(.voucher) .more:hover {
  text-decoration: none;
  background-color: white;
  color: black;
}
main .grid .products.voucher .product:nth-child(1) a.product-link,
main .grid .products.voucher .product:nth-child(1) a.option-pass-link,
main .grid .my-products.voucher .product:nth-child(1) a.product-link,
main .grid .my-products.voucher .product:nth-child(1) a.option-pass-link {
  background-color: #ACC6FF;
}
main .grid .products.voucher .product:nth-child(2) a.product-link,
main .grid .products.voucher .product:nth-child(2) a.option-pass-link,
main .grid .my-products.voucher .product:nth-child(2) a.product-link,
main .grid .my-products.voucher .product:nth-child(2) a.option-pass-link {
  background-color: #6CE686;
}
main .grid .products.voucher .product:nth-child(3) a.product-link,
main .grid .products.voucher .product:nth-child(3) a.option-pass-link,
main .grid .my-products.voucher .product:nth-child(3) a.product-link,
main .grid .my-products.voucher .product:nth-child(3) a.option-pass-link {
  background-color: #FFD9D9;
}
main .grid .voucher-badge {
  grid-column: 11/13;
  grid-row: 1/100;
  position: sticky;
  top: var(--gap);
  align-self: start;
  display: flex;
  justify-content: center;
  -webkit-hyphens: none;
          hyphens: none;
}
@media (max-width: 1023px) {
  main .grid .voucher-badge {
    display: none;
  }
}
main .grid .voucher-badge a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #2A4C97;
  color: white;
  border-radius: 50%;
  width: 80%;
  aspect-ratio: 1/1;
  transform: rotate(-10deg) scale(1);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 1200px) {
  main .grid .voucher-badge a {
    width: 100%;
  }
}
main .grid .voucher-badge a:hover {
  text-decoration: none;
  transform: rotate(-10deg) scale(1.05);
  transition: transform 0.3s ease-in-out;
}
main .grid .voucher-badge a span {
  max-width: 80%;
}
main .grid .buy-options {
  margin-top: var(--gap);
  margin-bottom: var(--two-gap);
  display: flex;
  grid-gap: var(--gap);
  justify-content: stretch;
}
@media (max-width: 767px) {
  main .grid .buy-options {
    flex-direction: column;
  }
}
main .grid .buy-options .login,
main .grid .buy-options .register {
  flex: 1;
}
main .grid .buy-options .login a,
main .grid .buy-options .register a {
  background-color: #E9E9E9;
  display: flex;
  flex-direction: column;
  padding: var(--gap);
  border-radius: var(--radius);
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}
main .grid .buy-options .login a .more,
main .grid .buy-options .register a .more {
  align-self: flex-end;
}
main .grid .buy-options .login a:hover,
main .grid .buy-options .register a:hover {
  text-decoration: none;
  transform: scale(1.05);
}
main .grid .buy-options .register a {
  background-color: #E9E9E9;
}
main .grid form {
  grid-column: 4/10;
  margin-top: var(--five-gap);
}
@media (max-width: 1023px) {
  main .grid form {
    grid-column: 1/5;
    margin-top: var(--four-gap);
  }
}
main .grid form label,
main .grid form input {
  display: block;
  width: 100%;
}
main .grid form input {
  margin-top: var(--half-radius);
}
main .grid form input[type=date]::-webkit-date-and-time-value {
  text-align: left;
}
main .grid form input:not([type=submit]) {
  margin-bottom: var(--gap);
  padding: var(--half-radius) var(--radius);
}
main .grid form input:not([type=submit]):not([type=checkbox]) {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  border: 1px solid black;
  min-height: 40px;
  background-color: #fff;
  color: inherit;
}
main .grid form input[type=submit] {
  margin-bottom: 0;
}
main .grid form input[type=checkbox] {
  transform: scale(1.5);
  transform-origin: center left;
  display: inline-block;
  width: 15px;
  margin: 0px;
  margin-right: 15px;
  padding: 0px;
}
main .grid form input[type=checkbox] + label {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 50px);
  margin-bottom: var(--gap);
}
main .grid form .bg {
  background-color: #E9E9E9;
  padding: var(--gap);
  border-radius: var(--radius);
  margin-bottom: var(--two-radius);
}
main .grid form .bg input:last-child {
  margin-bottom: 0px;
}
main .grid form .bg.address {
  background-color: #E9E9E9;
  display: flex;
  flex-direction: column;
}
main .grid form .bg.address .btn {
  align-self: flex-end;
}
main .grid .voucher-form {
  grid-column: 1/8;
  margin-top: var(--gap);
}
@media (max-width: 1023px) {
  main .grid .voucher-form {
    grid-column: 1/5;
  }
}
main .grid .voucher-form .bg {
  margin-bottom: var(--two-gap);
}
main .grid .voucher-form .voucher-input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--half-radius);
  margin-bottom: var(--gap);
}
main .grid .voucher-form .voucher-input .voucher-separator {
  padding-left: var(--half-radius);
  padding-right: var(--half-radius);
}
main .grid .voucher-form .voucher-input input {
  text-align: center;
  width: 80px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  flex-grow: 1;
  text-align: center;
  margin: 0px !important;
}
@media (max-width: 600px) {
  main .grid .voucher-form .voucher-input input {
    flex-grow: 0;
    width: 38% !important;
  }
}
main .grid .voucher-form .voucher-buttons {
  display: flex;
  gap: var(--gap);
}
main .grid .voucher-form .voucher-buttons a {
  background-color: #EA1114;
  border-color: #EA1114;
  color: white;
  text-align: center;
  padding: var(--half-radius) var(--radius);
  margin-top: var(--half-radius);
}
main .grid .voucher-form .voucher-buttons a:hover {
  background-color: transparent;
  color: #EA1114;
}
main .grid .voucher-form .voucher-buttons * {
  flex: 1;
}
main .grid .table-wrapper {
  grid-column: 1/13;
  overflow-x: auto;
  margin-left: calc(var(--half-radius) * -1);
  width: calc(100% + var(--radius));
  margin-bottom: var(--gap);
}
@media (max-width: 1023px) {
  main .grid .table-wrapper {
    grid-column: 1/5;
  }
}
main .grid .table-wrapper table {
  border-collapse: collapse;
  width: 100%;
  min-width: 500px;
  table-layout: fixed;
}
main .grid .table-wrapper table th, main .grid .table-wrapper table td {
  padding: var(--half-radius);
  text-align: left;
}
main .grid .table-wrapper table tbody tr:nth-child(odd) {
  background-color: #EEEEEE;
}
main .grid .my-products {
  display: flex;
  align-items: flex-start;
  gap: var(--gap);
  margin-top: 0px;
  margin-bottom: var(--gap);
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  main .grid .my-products {
    flex-direction: column;
  }
}
@media (min-width: 767.01px) {
  main .grid .my-products {
    flex-wrap: wrap !important;
  }
  main .grid .my-products > div {
    flex-basis: 45% !important;
  }
}
main .grid .my-products h3 {
  font-size: 1.55rem;
  line-height: 1.55rem;
  margin-bottom: 0px;
}
main .grid .my-products .active-pass {
  flex-shrink: 0;
}
main .grid .my-products .active-pass,
main .grid .my-products .options {
  width: 50%;
}
@media (max-width: 767px) {
  main .grid .my-products .active-pass,
  main .grid .my-products .options {
    width: 100%;
  }
}
@media (min-width: 650px) and (max-width: 767px) {
  main .grid .my-products .options {
    display: flex;
    gap: var(--gap);
  }
  main .grid .my-products .options > * {
    flex: 1;
  }
}
main .grid .my-products .active-pass {
  background-color: #2A4C97;
  color: white;
  border-radius: var(--radius);
  padding: var(--gap);
  flex: 1;
  display: flex;
  flex-direction: column;
}
main .grid .my-products .active-pass .passes {
  display: flex;
  gap: var(--gap);
  justify-content: center;
  flex: 1;
}
main .grid .my-products .active-pass a.pass {
  margin-top: var(--gap);
  margin-bottom: var(--gap);
  align-self: center;
  display: block;
  width: 250px;
  max-width: 100%;
}
main .grid .my-products .active-pass a.extend {
  align-self: flex-end;
  color: white;
  border-color: white;
}
main .grid .my-products .active-pass a.extend span {
  filter: invert(0);
  transition: all 0.3s ease-in-out;
}
main .grid .my-products .active-pass a.extend:hover {
  color: black;
  border-color: white;
  background-color: white;
}
main .grid .my-products .active-pass a.extend:hover span {
  filter: invert(1);
}
main .grid .my-products .active-pass.not-yet-active {
  background-color: #ccc !important;
}
main .grid .my-products .active-pass canvas,
main .grid .my-products .active-pass img {
  border-radius: var(--radius);
  background-color: white;
  max-width: 100%;
}
main .grid .my-products .active-pass a canvas {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}
main .grid .my-products .active-pass a canvas:hover {
  transform: scale(1.05);
}
main .grid .my-products .options {
  color: white;
}
main .grid .my-products .options a.option-pass-link {
  color: black;
  text-align: center;
}
main .grid .my-products .options .option-pass a.option-pass-link {
  background-color: #E9E9E9;
  -webkit-hyphens: none;
          hyphens: none;
}
main .grid .my-products .options .option-voucher a.option-pass-link {
  background-color: #E9E9E9;
}
main .grid .my-products .active-pass + .options {
  flex: 1;
}

.loggedin main .product,
.my-account main .option-pass,
.my-account main .option-voucher {
  position: relative;
  padding-bottom: 40px;
}
.loggedin main .product a.product-link,
.loggedin main .product a.option-pass-link,
.my-account main .option-pass a.product-link,
.my-account main .option-pass a.option-pass-link,
.my-account main .option-voucher a.product-link,
.my-account main .option-voucher a.option-pass-link {
  position: relative;
  z-index: 5;
  padding-bottom: var(--two-gap);
}
.loggedin main .product .more,
.my-account main .option-pass .more,
.my-account main .option-voucher .more {
  display: none;
}
.loggedin main .product .buy,
.my-account main .option-pass .buy,
.my-account main .option-voucher .buy {
  background-color: black;
  color: white;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: var(--two-gap);
  text-align: center;
  position: absolute;
  border-radius: 0px;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  z-index: 1;
}
.loggedin main .product .buy span,
.my-account main .option-pass .buy span,
.my-account main .option-voucher .buy span {
  display: inline-flex;
  margin-left: 5px;
  transform: translateX(0px);
  transition: transform 0.3s ease-in-out;
}
.loggedin main .product .buy:hover span,
.my-account main .option-pass .buy:hover span,
.my-account main .option-voucher .buy:hover span {
  transform: translateX(20px);
}

body.my-account h2 {
  margin-top: var(--four-gap);
}
@media (max-width: 1023px) {
  body.my-account h2 {
    margin-top: var(--three-gap);
  }
}

body.loggedin .buy-options {
  display: none;
}

body:not(.loggedin) .product .buy,
body:not(.loggedin) .buy-form {
  display: none;
}

body.show-form .buy-options {
  display: none !important;
}
body.show-form .buy-form {
  display: block !important;
}

body:not(.homepage) .voucher-badge {
  display: none;
}

body.redeem .products.voucher {
  margin-bottom: 0px !important;
}
body.redeem p + h2 {
  margin-top: var(--gap);
}
body.redeem p + h3 {
  margin-top: var(--gap);
  margin-bottom: var(--gap);
}

footer {
  color: white;
  background-color: black;
  border-top-left-radius: var(--gap);
  border-top-right-radius: var(--gap);
  padding-top: var(--three-gap);
  padding-bottom: var(--three-gap);
  margin-top: var(--five-gap);
}
@media (max-width: 1023px) {
  footer {
    margin-top: var(--four-gap);
  }
}
@media (max-width: 767px) {
  footer {
    padding-top: var(--two-gap);
    padding-bottom: var(--two-gap);
  }
}
footer a {
  color: white;
}
footer nav {
  grid-column: 1/13;
}
@media (max-width: 1023px) {
  footer nav {
    grid-column: 1/5;
  }
}
footer .socialmedia {
  grid-column: 1/13;
  display: flex;
  gap: var(--radius);
}
@media (min-width: 768px) {
  footer .socialmedia {
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  footer .socialmedia {
    margin-top: var(--two-gap);
    grid-column: 1/5;
  }
}

body.noscroll {
  overflow: hidden;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.lightbox-overlay img {
  max-width: 80vw;
  max-height: 80vh;
  aspect-ratio: 639/1164;
  border-radius: var(--radius);
  overflow: hidden;
}

header .mainnav .mainnav-close,
.lightbox-overlay .close-btn {
  position: absolute;
  padding: var(--radius);
  top: 0px;
  right: 0px;
  width: calc(var(--radius) * 2 + 33px);
  height: calc(var(--radius) * 2 + 33px);
  background-image: url(/assets/close.svg);
  background-repeat: no-repeat;
  background-size: 33px 33px;
  background-position: center center;
  text-indent: -100vw;
  overflow: hidden;
}
header .mainnav .mainnav-close:hover,
.lightbox-overlay .close-btn:hover {
  cursor: pointer;
}/*# sourceMappingURL=smp.lt.css.map */