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

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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.3;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  color: currentColor;
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

ol, ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

.hamburger {
  --bar: 4px;
  --gap: 3px;
  width: 30px;
  height: calc(var(--c-white) * 3 + var(--c-white) * 2);
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  flex: 0 0 auto;
}
.hamburger span {
  display: block;
  position: absolute;
  height: var(--bar);
  width: 100%;
  background: var(--c-white);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
  top: calc(var(--bar) + var(--gap));
}
.hamburger span:nth-child(4) {
  top: calc(var(--bar) + var(--gap) * 2 + var(--bar));
}

.main-menu__checkbox {
  display: none;
}

@media (min-width: 1200px) {
  .menu-button {
    display: none;
  }
}

.navigation-row {
  display: none;
  height: calc(100vh - var(--header-height));
  overflow: scroll;
}
@media (min-width: 1200px) {
  .navigation-row {
    display: flex;
    height: auto;
    overflow: revert;
  }
}

body:has(#main-menu:checked) {
  overflow: hidden;
}
body:has(#main-menu:checked) .navigation-row {
  display: block;
}
body:has(#main-menu:checked) .hamburger span:nth-child(1), body:has(#main-menu:checked) .hamburger span:nth-child(4) {
  top: 10.5px;
  width: 0%;
  left: 50%;
}
body:has(#main-menu:checked) .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
body:has(#main-menu:checked) .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}

.main-navigation {
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1200px) {
  .main-navigation {
    display: flex;
  }
}

body.sticky .main-navigation__item {
  min-height: 60px;
}

.main-navigation__item {
  text-align: center;
  font-size: 0.9rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  transition: min-height 0.3s;
}
@media (min-width: 1200px) {
  .main-navigation__item {
    flex: 1 0 auto;
    min-height: 120px;
  }
}
.main-navigation__item:nth-child(1) {
  background-image: url(../../images/cat_victoria.jpg);
}
.main-navigation__item:nth-child(2) {
  background-image: url(../../images/cat_edward7.jpg);
}
.main-navigation__item:nth-child(3) {
  background-image: url(../../images/cat_george5.jpg);
}
.main-navigation__item:nth-child(4) {
  background-image: url(../../images/cat_edward8.jpg);
}
.main-navigation__item:nth-child(5) {
  background-image: url(../../images/cat_george6.jpg);
}
.main-navigation__item:nth-child(6) {
  background-image: url(../../images/cat_elizabeth2.jpg);
}
.main-navigation__item:nth-child(7) {
  background-image: url(../../images/cat_charles3.jpg);
}
.main-navigation__item:nth-child(8) {
  background-image: url(../../images/cat_commemoratives.jpg);
}
.main-navigation__item:nth-child(9) {
  background-image: url(../../images/cat_cheappostage.jpg);
}
.main-navigation__item:nth-child(10) {
  background-image: url(../../images/cat_rare.jpg);
}
.main-navigation__item:hover .main-navigation__link {
  background-color: rgba(73, 80, 72, 0.5);
}
@media (min-width: 1200px) {
  .main-navigation__item:hover .main-navigation-sub-menu {
    display: block;
  }
}

.main-navigation__link {
  background-color: rgba(73, 80, 72, 0.8);
  color: white;
  height: 100%;
  line-height: 130%;
  text-align: center;
  text-decoration: none;
  border-width: 8px;
  border-style: dotted;
  border-color: white;
  border-image-slice: 33% 33%;
  border-image-repeat: round;
  border-image-width: 8px;
  border-image-outset: 2px;
  display: block;
  box-sizing: border-box;
  padding: 0.5em;
  font-weight: bold;
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1200px) {
  .main-navigation__link {
    justify-content: center;
  }
}

.navigation__expand {
  width: 30px;
  height: 30px;
  display: block;
  background-color: var(--c-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .navigation__expand {
    display: none;
  }
}
.navigation__expand:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 5px 10px 5px;
  border-color: transparent transparent var(--c-red) transparent;
  transform: rotate(90deg);
}
.navigation__expand input {
  display: none;
}

.bb-theme-2 .main-navigation__link {
  border-image-source: url("../../images/dots_scheme3.svg");
}

.main-navigation-sub-menu {
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  position: relative;
  list-style: none;
  z-index: 10000;
  margin: 0;
  padding: 0.5em 0;
  width: 100%;
}
@media (min-width: 1200px) {
  .main-navigation-sub-menu {
    position: absolute;
    width: auto;
    background-color: var(--c-red);
  }
}

.main-navigation-sub-menu__item {
  text-align: left;
  padding: 0.1em 0.75em;
}
@media (min-width: 1200px) {
  .main-navigation-sub-menu__item {
    white-space: nowrap;
  }
}
.main-navigation-sub-menu__item:before {
  display: inline-block;
  content: ">";
  color: white;
  margin-right: 5px;
}

.main-navigation-sub-menu__link {
  color: white;
  text-align: left;
  text-decoration: none;
  font-size: 0.8rem;
}
.main-navigation-sub-menu__link:hover {
  color: var(--c-blue-secondary);
}

.main-navigation__item:has(input[type=checkbox]:checked) .navigation__expand {
  transform: rotate(90deg);
}
.main-navigation__item:has(input[type=checkbox]:checked) .main-navigation-sub-menu {
  display: block;
}

.catalogue_intro {
  border-bottom: 1px solid var(--c-white);
  margin-bottom: 2em;
  padding-bottom: 2em;
}
.catalogue_intro p {
  line-height: 130%;
}
.catalogue_intro a {
  color: var(--c-blue);
}

.category-links {
  list-style: none;
  margin: 1em 0 0 0;
  padding: 0;
  gap: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.category-links__item {
  background-color: rgb(178.5, 178.5, 178.5);
  border-radius: 5px;
  font-size: 150%;
  text-align: center;
}
.category-links__item:hover {
  background-color: #cccccc;
}

.category-links__link {
  color: white;
  text-decoration: none;
  display: block;
  line-height: 120%;
  min-height: 80px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.block {
  margin-top: 3em;
}

.block__title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}

.block__description {
  margin: 1em 0 2em 0;
}
.block__description p {
  margin: 0 0 1em 0;
}

.table {
  background-color: #ffffff;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 0.9rem;
  width: 100%;
}
.table small {
  font-size: 80%;
}
.table .center, .table .text-center {
  text-align: center;
}
.table .right, .table .text-right {
  text-align: right;
}
.table td {
  border: 1px solid #e3e3e3;
  padding: 0.5em 0.2em;
}

.table--verticalspace {
  margin: 1em 0;
}

.table__header-row td {
  font-weight: bold;
  border-bottom: 2px solid var(--c-blue);
  padding: 0.5em 0.2em;
}

.table__footer-row td {
  font-weight: bold;
}

.table__link--text {
  color: var(--c-blue);
  text-decoration: none;
  font-weight: bold;
}

.breadcrumb {
  background-color: rgb(127.5, 127.5, 127.5);
  display: flex;
  padding: 1em;
  margin: -1em 0 2.5em 0;
  font-size: 0.7rem;
}

.breadcrumb__item {
  padding-right: 10px;
}
.breadcrumb__item:last-of-type .breadcrumb__link:after {
  display: none;
}

.breadcrumb__link {
  color: white;
  text-decoration: none;
}
.breadcrumb__link:after {
  content: ">";
  display: inline-block;
  padding-left: 10px;
}

.featured-products {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.featured-products li {
  word-break: break-all;
}

.featured-products__item {
  width: auto;
  box-sizing: border-box;
  padding: 1em;
  background-color: rgb(178.5, 178.5, 178.5);
}
.featured-products__item img {
  width: 100%;
  height: auto;
}
.featured-products__item p {
  margin-bottom: 1em;
  line-height: 140%;
  font-size: 0.9rem;
}

.checkout-options {
  display: flex;
  margin-bottom: 1em;
}
@media (max-width: 600px) {
  .checkout-options {
    flex-wrap: wrap;
  }
}

.checkout-options__option {
  background-color: white;
  padding: 1em;
  margin-right: 1em;
}
@media (max-width: 600px) {
  .checkout-options__option {
    width: 100%;
    margin: 0 0 1em 0;
  }
}
.checkout-options__option select {
  width: 100%;
}
.checkout-options__option h4 {
  margin: 0 0 1em 0;
  color: var(--c-blue);
}

.checkout-options__option--address {
  width: 30%;
}
@media (max-width: 600px) {
  .checkout-options__option--address {
    width: 100%;
  }
}

.checkout-options__option--notes {
  flex: 1 0 auto;
}
@media (max-width: 600px) {
  .checkout-options__option--notes {
    width: 100%;
    flex: auto;
  }
}
.checkout-options__option--notes textarea {
  width: 100%;
}

.panel {
  background-color: white;
  padding: 1em;
  margin-bottom: 2em;
}

.panel__title {
  font-size: 1.7rem;
  padding-bottom: 0.3rem;
  margin-bottom: 0.75rem;
  display: flex;
  border-bottom: 1px solid var(--c-blue);
  color: var(--c-red);
}
.panel__title .fa {
  color: var(--c-charcoal);
  margin-right: 15px;
}
.panel__title a {
  margin-left: 1em;
}

.form-row {
  display: flex;
  margin-bottom: 1em;
  width: 60%;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 600px) {
  .form-row {
    width: 100%;
  }
}
.form-row label {
  flex: 1 0 120px;
  max-width: 150px;
  color: white;
}
@media (max-width: 600px) {
  .form-row label {
    padding-bottom: 5px;
  }
}
.form-row label + * {
  flex: 1 0 auto;
}
.form-row input:not([type=checkbox]), .form-row select {
  border: 0;
  padding: 10px;
}
@media (max-width: 600px) {
  .form-row input:not([type=checkbox]), .form-row select {
    width: 80%;
  }
}
.form-row__help {
  font-size: 0.75em;
}
.form-row__help--warn {
  color: white;
  margin-left: 0.5em;
}

.registration {
  display: flex;
  flex-direction: column;
  grid-gap: 2em;
}
@media (min-width: 600px) {
  .registration {
    flex-direction: row-reverse;
  }
}
.registration .form-row {
  width: 100%;
}
.registration .form-row label {
  color: var(--c-blue);
}
.registration .form-row input[type=text] {
  flex: 1;
}

.registration__panel {
  background-color: #cccccc;
  padding: 1em;
  border-radius: 10px;
  color: #666;
}

.registration__title {
  color: var(--c-red);
  margin-bottom: 1em;
  border-bottom: 1px solid white;
  padding-bottom: 0.5em;
  font-size: 1.3rem;
}

.registration__help {
  font-size: 85%;
  line-height: 140%;
  margin-top: 0.75em;
}
.registration__help-title {
  border-bottom: 1px solid #666;
  padding-bottom: 0.7rem;
  margin-top: 2em;
}

.row {
  display: block;
  margin: 0 auto;
}

.row--float-content {
  position: relative;
}
.row--float-content:after {
  content: "";
  display: block;
  clear: both;
}

.row--full-width {
  width: 100%;
  max-width: var(--max-width);
}

.row--small-padded {
  width: 95%;
  max-width: var(--max-width);
}

.row--vertical-padded {
  padding-top: 30px;
  padding-bottom: 30px;
}

.row--padded {
  width: 90%;
  max-width: var(--max-width);
}

.row--grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .row--grid {
    flex-direction: column;
    align-items: stretch;
  }
}
.row--grid .row__block {
  box-sizing: border-box;
  padding: 1em;
  width: 100%;
}
.row--grid .row__block--collapse {
  padding: 0;
}
.row--grid .row__block--20 {
  flex: 0 0 20%;
  margin-left: 5%;
  text-align: center;
  font-size: 0.9rem;
}
@media (max-width: 600px) {
  .row--grid .row__block--20 {
    margin-left: 0;
  }
}
.row--grid .row__block--20 img {
  width: 100%;
  height: auto;
}
@media (max-width: 600px) {
  .row--grid .row__block--20 img {
    width: 70%;
    margin: 0 auto;
  }
}

.row--grid-collapse .row__block {
  padding: 0;
}

.header {
  background-color: green;
  color: white;
  text-align: center;
  display: none;
}

.flex-row {
  display: flex;
  border-bottom: 1px solid var(--c-black);
  background-color: white;
  min-width: 320px;
  padding: 15px;
  flex-direction: column;
  font-size: 0.85rem;
}

.flex-row:nth-child(odd) {
  background-color: rgb(229.5, 229.5, 229.5);
}

.flex-row:hover {
  background-color: rgb(216.75, 216.75, 216.75);
}

.option {
  display: inline-block;
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  margin-bottom: 5px;
  box-sizing: border-box;
  padding-right: 2px;
}
.option:empty {
  display: none;
}

.option .quality {
  font-size: 75%;
  opacity: 1;
}

.link span {
  font-size: 75%;
  color: white;
}

.details .description {
  width: 100%;
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dotted var(--c-black);
  line-height: 140%;
}

.details .img {
  display: inline-block;
  text-align: left;
}

.prices {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.details {
  flex-wrap: wrap;
}

span.sg {
  flex: 1 0 auto;
  padding: 0 10px;
}

span.scott {
  flex: 1 0 auto;
  padding: 0 10px;
  border-right: 0;
}

span.sku {
  flex: 1 0 auto;
  padding: 0 10px;
}

.mobile-help {
  font-weight: bold;
}

.flex-row--header {
  display: none;
}

@media screen and (min-width: 600px) {
  body {
    background-color: #e3e3e3;
  }
  .header {
    display: block;
  }
  .flex-row {
    flex-direction: row;
    padding: 0;
  }
  .flex-row--header {
    border-bottom: 2px solid var(--table-border);
    display: flex;
  }
  .flex-row--header span {
    font-weight: bold;
    line-height: 40px;
  }
  .flex-row--header .prices {
    border-left: 1px solid var(--table-border);
    justify-content: center;
    line-height: 40px;
    font-weight: bold;
  }
  .details {
    width: 70%;
    flex-wrap: nowrap;
    display: flex;
  }
  .details .col {
    flex-direction: column;
    justify-content: center;
    display: flex;
    border-right: 1px solid var(--table-border);
  }
  .details .description {
    padding: 0 10px;
    margin-top: 0;
    border-top: 0;
  }
  .mobile-help {
    display: none;
  }
  .details .col:last-of-type {
    border-right: 0;
  }
  .sg {
    width: 9%;
    word-break: break-all;
  }
  .scott {
    width: 9%;
    word-break: break-all;
  }
  .sku {
    width: 6%;
    word-break: break-all;
  }
  .details .col.img {
    width: 50px;
    text-align: center;
  }
  .options-1 .details {
    width: 90%;
  }
  .options-2 .details {
    width: 85%;
  }
  .options-6 .details {
    width: 55%;
  }
  .options-7 .details {
    width: 50%;
  }
  .option {
    margin: 0;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    padding: 10px 0;
    border-right: 1px solid var(--table-border);
  }
  .option:empty {
    display: block;
  }
  .option:first-of-type {
    border-left: 1px solid var(--table-border);
  }
  .option:last-of-type {
    border-right: 0;
  }
  .prices {
    flex: 1 0 auto;
    margin-top: 0;
  }
  .prices .link {
    flex: 1 0 auto;
    justify-content: center;
  }
}
.filter_panel {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  border-radius: 10px;
}
.filter_panel h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.filter_panel label {
  font-size: 0.8rem;
}
.filter_panel input[type=text] {
  border: 0;
  padding: 0.2rem;
}
.filter_panel .button {
  font-size: 0.9em;
  padding: 0.3rem;
  line-height: 100%;
}

.filter_panel__form-wrap {
  padding-bottom: 0.5rem;
  padding-right: 1rem;
}

.filter_panel__form-group {
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  display: flex;
}
@media (max-width: 600px) {
  .filter_panel__form-group {
    display: block;
  }
}
.filter_panel__form-group:last-of-type {
  margin-bottom: 1rem;
}

.stamps-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.stamps-grid__item {
  background-color: rgb(127.5, 127.5, 127.5);
  padding: 1rem;
  margin-bottom: 1em;
  font-size: 0.8rem;
}

.stamp-block__description {
  margin: 1rem 0 0.5rem 0;
  font-size: 90%;
  line-height: 140%;
}

.stamp-block__image img {
  width: 100%;
  height: auto;
}

.stamp-block__sku {
  font-size: 70%;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #e3e3e3;
}

.next-show-detail__title {
  color: var(--c-red);
  font-size: 1.6rem;
  line-height: 140%;
  text-align: center;
}

.next-show-detail__date {
  text-align: center;
}

.next-show-detail * + * {
  margin-top: 0.5rem;
  line-height: 1.6;
}

.next-show-detail__small {
  font-size: 80%;
}

.next-show-countdown {
  background-color: var(--c-blue);
  color: white;
}

@media (max-width: 1024px) {
  .row--home-banner {
    width: 100%;
    flex-wrap: wrap;
  }
}
.row--home-banner .row__block:nth-child(1) {
  width: 70%;
}
@media (max-width: 1024px) {
  .row--home-banner .row__block:nth-child(1) {
    width: 100%;
  }
}
.row--home-banner .row__block:nth-child(1) img {
  width: 100%;
  height: 100%;
}
.row--home-banner .row__block:nth-child(2) {
  width: 30%;
  color: var(--c-black);
  background-image: url(../../images/seahorse_faded.jpeg);
  padding: 0;
}
@media (max-width: 1024px) {
  .row--home-banner .row__block:nth-child(2) {
    width: 100%;
    background-image: none;
    text-align: center;
  }
}

.features {
  background-color: #cccccc;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2em;
}

.features__item {
  border-right: 4px dotted #87B0AE;
  color: white;
  width: 33.33%;
  display: flex;
  font-size: 0.9rem;
  padding: 1em;
  box-sizing: border-box;
  border-style: dotted;
  border-color: white;
  border-image-source: url("../../images/dots_lgrey.svg");
  border-image-slice: 33% 33%;
  border-image-repeat: round;
  border-image-width: 8px;
  border-image-outset: 2px;
}
@media (max-width: 800px) {
  .features__item {
    width: 50%;
    font-size: 80%;
  }
}
@media (max-width: 600px) {
  .features__item {
    width: 100%;
    font-size: 80%;
  }
}

.features__image {
  width: 30%;
}
.features__image img {
  width: 100%;
  height: auto;
}

.features__text {
  padding-left: 1em;
  width: 70%;
}
.features__text h3 {
  font-weight: bold;
  margin: 0 0 0.5em 0;
  font-size: 1.3em;
}
.features__text a {
  color: white;
  text-decoration: none;
}
.features__text p {
  line-height: 140%;
}

.acting .bx-controls-direction a {
  width: 15px;
  height: 15px;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path d="M6.77,17.96l-1-1c-.31-.31-.31-.81,0-1.12l5.84-5.84-5.84-5.84c-.31-.31-.31-.81,0-1.12l1-1c.31-.31.81-.31,1.12,0l7.4,7.4c.31.31.31.81,0,1.12l-7.4,7.4c-.31.31-.81.31-1.12,0Z" style="fill: %23fff; stroke-width: 0px;"/><rect width="20" height="20" style="fill: none; stroke-width: 0px;"/></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: auto;
}
.acting .bx-controls-direction a:hover {
  background-position: center;
  opacity: 0.5;
}
.acting .bx-controls-direction a.bx-prev {
  transform: rotate(180deg);
}

.hero-banner {
  min-height: 400px;
  background: url(../images/hero-banner.png);
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  padding: 0 1rem clamp(2rem, 5vw, 4rem) 1rem;
  position: relative;
}
@media (min-width: 920px) {
  .hero-banner {
    min-height: 40vh;
  }
}
.hero-banner:after {
  display: block;
  content: "";
  background: url(../../images/flags.svg);
  background-repeat: repeat-x;
  background-position: 0 -5px;
  background-size: auto 80px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.hero-banner:before {
  display: block;
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.hero-banner > * {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--c-white);
  position: relative;
  text-shadow: rgba(0, 0, 0, 0.9) 0px 0px 12px;
  z-index: 50;
  text-align: center;
  text-wrap: balance;
  line-height: 110%;
}
.hero-banner em {
  font-size: 75%;
  font-style: italic;
}

.home-highlights {
  padding: 7rem 0 2.5rem 0;
  background: var(--c-blue-secondary);
  position: relative;
}
@media (min-width: 920px) {
  .home-highlights {
    padding-top: 3.5rem;
  }
}

.icon-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}
.icon-list li {
  flex: 0 0 50%;
}
.icon-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-direction: column;
}
@media (min-width: 920px) {
  .icon-list {
    flex-direction: row;
  }
  .icon-list li {
    flex: auto;
  }
}
.icon-list svg {
  width: auto;
  height: 60px;
}
.icon-list span {
  max-width: 22ch;
  text-wrap: balance;
  text-align: center;
}

.latest-shows {
  background: var(--c-blue);
  border-radius: 10px;
  position: absolute;
  z-index: 50;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-white);
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  gap: 10px;
  align-items: center;
}
@media (min-width: 920px) {
  .latest-shows {
    flex-direction: row;
    border-radius: 40px;
  }
}

*[data-showcountdown] {
  display: inline-flex;
  background: var(--c-red);
  padding: 5px 15px;
  border-radius: 20px;
  margin-right: 10px;
  gap: 5px;
  color: var(--c-white);
}
*[data-showcountdown].bg-white {
  background-color: var(--c-white);
  color: var(--c-red);
}
*[data-showcountdown].bg-white svg path {
  fill: var(--c-red);
}
*[data-showcountdown] svg {
  width: 20px;
  height: 20px;
}

.home .content-wrapper {
  padding: 3rem 0;
  background-color: var(--c-white);
}
.home .content-wrapper > .row {
  max-width: 100%;
}
.home .content-wrapper > .row > * + * {
  margin-top: 2rem;
}
.home .content-wrapper h1 {
  color: var(--c-red);
  font-weight: 600;
}

.stamp-fairs {
  background: var(--c-blue-secondary);
  border-radius: 10px;
  display: flex;
  flex-direction: column-reverse;
  overflow: hidden;
}
@media (min-width: 920px) {
  .stamp-fairs {
    flex-direction: row;
  }
}
.stamp-fairs h3 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  color: var(--c-red);
}

.stamp-fairs__content {
  padding: clamp(1rem, 5vw, 2rem);
  flex-basis: 50%;
}
.stamp-fairs__content > * + * {
  margin-top: 1rem;
}
.stamp-fairs__content *[data-showcountdown] {
  margin-top: 2.5rem;
}
.stamp-fairs__content h4 {
  color: var(--c-red);
  font-size: 2rem;
  font-weight: 700;
}

.stamp-shows-slider {
  flex-basis: 50%;
}

.stamp-show-tile {
  display: grid;
}
.stamp-show-tile > * {
  grid-area: 1/1;
}
.stamp-show-tile > div {
  padding: 2rem;
  background-color: red;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 212, 255, 0) 50%);
  color: var(--c-white);
  font-size: 1.5rem;
  line-height: 80%;
}
.stamp-show-tile img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}

.stamp-fairs__clickncollect {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stamp-slider a.title {
  color: var(--c-red);
  font-size: clamp(1.2rem, 5vw, 2.2rem);
  font-weight: 600;
}
.stamp-slider a.title:hover {
  color: var(--c-blue);
}
.stamp-slider a.title span:after {
  content: "";
  margin-left: 5px;
  width: 0;
  height: 0;
  display: inline-block;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 16px solid currentColor;
}
.stamp-slider a.title small {
  font-size: 50%;
  color: var(--c-charcoal);
  font-weight: 100;
  display: block;
}
@media (min-width: 920px) {
  .stamp-slider a.title small {
    display: inline;
  }
}
.stamp-slider .buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}
.stamp-slider .active {
  background-color: #e3e3e3;
}
.stamp-slider .counter {
  opacity: 0.2;
  padding-right: 10px;
}
.stamp-slider button[data-move] {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(var(--c-blue-rgb)/8%);
  cursor: pointer;
  border: 0;
}
.stamp-slider button[data-move]:hover {
  background-color: rgb(var(--c-blue-rgb)/20%);
}
.stamp-slider button[data-move]:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.stamp-slider__wrapper {
  overflow-x: scroll;
  margin: 1rem 0;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.stamp-slide__image {
  background-color: rgb(var(--c-blue-rgb)/8%);
  width: 100%;
}
.stamp-slide__image a {
  aspect-ratio: 1/1;
  display: block;
}
.stamp-slide__image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.stamp-slide__content {
  padding: 0.5rem 1rem;
  font-size: 80%;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.stamp-slide__price {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.stamp-slider__track {
  display: flex;
  gap: 10px;
}
.stamp-slider__track > li {
  flex: 0 0 60%;
  scroll-snap-align: start;
  min-height: 300px;
  border-radius: 4px;
  overflow: hidden;
  background-color: rgb(var(--c-blue-rgb)/5%);
  display: flex;
  flex-direction: column;
}
@media (min-width: 600px) {
  .stamp-slider__track > li {
    flex: 220px 0 0;
  }
}

.stamp-tile__title {
  margin-top: 0.5rem;
}

.footer-tiles {
  gap: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 2rem;
}

.footer-tiles div {
  background-color: #e3e3e3;
  display: grid;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.footer-tiles div > * {
  grid-row-start: 1;
  grid-column-start: 1;
  grid-area: 1/-1;
  transition: all 0.3s;
}
.footer-tiles div:hover img {
  transform: scale(1.1);
}
.footer-tiles div:hover a {
  background-color: rgb(var(--c-blue-rgb)/0);
  opacity: 0;
}
.footer-tiles div img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.footer-tiles div a {
  grid-area: 1/1/-1/-1;
  height: 100%;
  align-content: center;
  z-index: 1;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  background-color: rgb(var(--c-blue-rgb)/0.6);
  padding: 1rem;
  text-align: center;
  color: var(--c-white);
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.1), 1px 1px 1px rgba(0, 0, 0, 0.5);
}

:root {
  --c-blue-rgb: 0 9 30;
  --c-red-rgb: 158 63 24;
  --c-blue: rgba(var(--c-blue-rgb) / 1);
  --c-red: rgba(var(--c-red-rgb) / 1);
  --c-button: #637294;
  --c-white: #ffffff;
  --c-black: #000000;
  --c-charcoal: #231f20;
  --c-blue-secondary: #deedf5;
  --table-border: color.mix(black, white, 70%);
  --max-width: 1600px;
}

html, body {
  font-weight: 100;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  margin: 0;
  height: 100%;
}

body {
  margin-top: var(--header-height, 180px);
}

#app {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

strong {
  font-weight: 600;
}

small {
  font-size: 60%;
}

hr {
  margin: 1em 0;
  border: 0;
  border-top: 1px solid var(--c-white);
}

.masthead {
  border-bottom: 5px;
  color: white;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
}
.masthead a {
  color: white;
  text-decoration: none;
}
.masthead .stacked {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 500px) {
  .masthead .stacked {
    flex-direction: row;
  }
}
.masthead .row:has(.logo) {
  padding: 1rem 0;
}

body.sticky .logo {
  width: 360px;
}

.masthead__logo {
  background: rgb(25.5, 33.6, 52.5);
}
.masthead__logo .logo {
  width: 95%;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .masthead__logo .logo {
    margin: 0;
  }
}

.masthead__intro {
  background: var(--c-blue);
  padding: 1rem 0;
}
.masthead__intro .stacked {
  justify-content: flex-end;
}

.title-with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.title-with-icon svg {
  width: 40px;
  height: 40px;
}

.masthead__text {
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 140%;
}
@media (max-width: 600px) {
  .masthead__text {
    padding-right: 0;
    width: 100%;
    text-align: center;
  }
}

.contact-details {
  text-align: right;
  font-size: 0.7rem;
}
@media (max-width: 600px) {
  .contact-details {
    text-align: center;
  }
}
.contact-details li {
  display: inline-block;
}

.auth-links {
  font-size: 0.8rem;
}

.auth-links__item {
  position: relative;
  padding: 0.5rem;
}
.auth-links__item:hover .auth-links__dropdown {
  display: block;
}

.auth-links__toggle {
  display: block;
}
@media (max-width: 600px) {
  .auth-links__toggle {
    display: inline-block;
  }
}

.auth-links__dropdown {
  position: absolute;
  display: none;
  background-color: var(--c-blue);
  z-index: 10;
  right: 0;
  top: 100%;
  padding: 10px;
}
.auth-links__dropdown li {
  white-space: nowrap;
  text-align: right;
  padding-bottom: 5px;
}

.navigation-row {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0.75em 0;
  position: relative;
}

.content-wrapper {
  background-color: rgb(var(--c-blue-rgb)/30%);
  padding: 2em 0;
  flex: 1 0 auto;
}

.page-title {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.sub-title {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.account-details {
  font-size: 0.8rem;
}
.account-details a {
  text-decoration: none;
  color: white;
}

.user-tools {
  display: flex;
  justify-content: center;
  font-size: 75%;
  gap: 7px;
}
.user-tools > div {
  padding: 0.5rem;
}
@media (max-width: 600px) {
  .user-tools {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 600px) {
  .user-tools {
    width: 100%;
  }
}
.user-tools .break {
  display: block;
}
@media (max-width: 600px) {
  .user-tools .break {
    display: inline-block;
  }
}

.search {
  background-color: #505050;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  .search {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5em;
    margin-right: 0;
  }
}

.search__form {
  margin: 0;
}

.search__label {
  color: var(--c-white);
}

.search__input {
  background-color: black;
  border: 0;
  height: 25px;
  border: 0;
}

.search__button {
  background-color: var(--c-button);
  border: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  width: 30px;
  height: 25px;
  display: inline-block;
  cursor: pointer;
}
.search__button i {
  color: white;
}

.basket-icon {
  background-color: var(--c-red);
  text-align: center;
  box-sizing: border-box;
}

.basket-icon__link {
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .basket-icon__link {
    display: inline-block;
  }
}

.auth {
  background-color: var(--c-button);
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .auth {
    width: 48.5%;
  }
}
.auth.logged-in {
  padding: 0;
}

.acting {
  background-color: orangered;
  padding: 2em;
  text-align: center;
  color: white;
  overflow: hidden;
}
.acting:before {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  position: absolute;
  top: -3px;
  left: 0;
  z-index: 10;
  /*background: url(../images/snow.svg);
  background-repeat: repeat-x;*/
}
@media (max-width: 600px) {
  .acting:before {
    background-size: 600px;
  }
}
.acting a {
  color: white;
}

.text-block p {
  margin-bottom: 1rem;
  line-height: 150%;
}
.text-block a {
  color: white;
  text-decoration: none;
}
.text-block h2 {
  font-size: 1.6rem;
  margin: 1rem 0 0.5rem 0;
  color: white;
}
.text-block h3 {
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem 0;
  color: white;
}
.text-block ul {
  list-style: disc;
  margin: 0 0 2em 1rem;
}
.text-block ul li {
  margin-bottom: 0.3rem;
}
.text-block dt {
  float: left;
  width: 20%;
  text-align: left;
  clear: left;
  font-weight: bold;
  padding: 1rem 0;
  border-top: 1px solid white;
}
.text-block dd {
  float: left;
  width: 70%;
  padding: 1em 0;
  border-top: 1px solid white;
}
.text-block dl:after {
  content: "";
  display: table;
  clear: both;
}

.text-block--70 {
  width: 70%;
}
@media (max-width: 800px) {
  .text-block--70 {
    width: 100%;
  }
}

.form-inline {
  display: flex;
  margin-top: 5px;
}

.item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.item-list--space-btm {
  margin-bottom: 2em;
}

.item-list--vertical-space {
  margin: 1em 0;
}

.item-list--slim-gap .item-list__item {
  padding-bottom: 5px;
}

.item-list--inline {
  display: flex;
}
.item-list--inline .item-list__item {
  padding-right: 10px;
}
.item-list--inline .item-list__item:last-of-type {
  padding-right: 0;
  padding-bottom: 0.5rem;
}

.item-list--right {
  justify-content: flex-end;
}

.item-list--80 {
  font-size: 80%;
}

.item-list__item {
  padding-bottom: 0.5em;
  line-height: 120%;
}
.item-list__item:last-of-type {
  padding-bottom: 0;
}

.item-list__link--nounderline {
  text-decoration: none;
}

.text-link {
  color: var(--c-blue);
  font-weight: bold;
  text-decoration: none;
}

.button {
  background-color: var(--c-button);
  border-radius: 3px;
  font-size: 1rem;
  padding: 0.5em;
  display: inline-block;
  color: white;
  text-decoration: none;
  border: 0;
  display: inline-block;
  cursor: pointer;
}

.button--small {
  font-size: 0.7rem;
}

.button--warn {
  background-color: orangered;
}

.button--cart {
  font-size: 0.7rem;
  background-color: var(--c-red);
}

.button--offer {
  background-color: gold;
  color: #666;
}

.button--active {
  background-color: var(--c-blue);
  color: var(--c-white);
}

.button--close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.flash {
  position: fixed;
  top: 30px;
  right: 30px;
  background-color: var(--c-white);
  padding: 1em;
  border-radius: 10px;
  max-width: 350px;
  border: 1px solid white;
  text-align: right;
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.15);
}
.flash a {
  color: currentColor;
}
.flash a.hl {
  color: var(--c-red);
  text-decoration: none;
  font-weight: bold;
  font-size: 120%;
}

.image-panel {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 400px;
  background-color: white;
  border-radius: 10px;
  padding: 0.5em;
  min-height: 60px;
}
@media (max-width: 600px) {
  .image-panel {
    width: 80%;
  }
}
.image-panel.loading {
  background-image: url(../images/ajax-loader.gif);
  background-repeat: no-repeat;
  background-position: center center;
}
.image-panel img {
  width: 100%;
  cursor: pointer;
}

.pagination {
  margin-top: 2em;
  flex-wrap: wrap;
  font-size: 80%;
  display: flex;
}
.pagination li {
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
}
.pagination li.active span {
  background-color: var(--c-red);
}
.pagination li.disabled {
  opacity: 0.5;
}
.pagination li > span, .pagination li > a {
  padding: 0.3rem 0.5rem;
  text-align: center;
  border-radius: 5px;
  color: white;
  background-color: var(--c-blue);
  display: block;
}
.pagination li a {
  text-decoration: none;
}

.errors {
  border: 2px solid var(--c-red);
  padding: 1em;
  background-color: fade(white, 50%);
  margin-bottom: 1em;
}
.errors p {
  margin-bottom: 1em;
}
.errors p strong {
  color: var(--c-red);
}

[v-cloak] {
  display: none;
}

.bx-wrapper {
  background-color: transparent;
}

.bxslider li + li {
  display: none;
}

.bx-wrapper {
  border: 0;
  margin-bottom: 0;
  box-shadow: none;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 10px;
  bottom: 10px;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  bottom: 10px;
  left: 10px;
}

.bx-wrapper .bx-controls-direction a {
  z-index: revert;
}

.icon-button {
  color: var(--c-blue);
}

.page-footer {
  background: var(--c-charcoal) url(../../images/footer.svg);
  background-repeat: no-repeat;
  background-position: center center;
  padding: 2em 0;
  font-size: 0.9rem;
}
.page-footer .row {
  flex-wrap: wrap;
}
.page-footer .row > * {
  flex: 20% 0 0;
}
.page-footer .row > * h4:not(:first-of-type) {
  margin-top: 1rem;
}
.page-footer img.price-list {
  width: 180px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.page-footer a {
  color: white;
}

ul.social-icons {
  display: flex;
  gap: 10px;
  color: white;
  justify-content: flex-start;
}
ul.social-icons span {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
ul.social-icons img {
  display: block;
  width: 20px;
  height: 20px;
}

.page-footer__title {
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid white;
  color: white;
  width: 100%;
  display: block;
  font-weight: bold;
}

.credit-cards {
  display: flex;
  gap: 10px;
  margin-bottom: 2em;
}
.credit-cards li {
  width: 50px;
}
.credit-cards li img {
  width: 100%;
}
.credit-cards li:last-of-type {
  margin-right: 0;
}
.credit-cards :after {
  display: block;
  content: "";
  clear: left;
}

.sign-off {
  margin-top: 3rem;
  font-size: 0.5rem;
  color: fade(white, 50%);
}

.block-skip {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1rem;
}

.block-skip.sticky {
  width: 100vw;
  position: fixed;
  left: 50%;
  right: 50%;
  top: 0;
  margin-left: -50vw;
  margin-right: -50vw;
}
.block-skip.sticky .row {
  max-width: 1300px;
}

#backToTop {
  display: none;
  position: fixed; /* Fixed/sticky position */
  bottom: 15px; /* Place the button at the bottom of the page */
  right: 15px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: var(--c-red); /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 10px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  justify-content: center;
  align-content: center;
}

.flash_on #backToTop {
  bottom: 15px;
}

body.sticky #backToTop {
  display: flex;
}

#backToTop:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

.category-description > div {
  padding: 1rem;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
