/* Main SCSS */
/********************************
 Common variables
 
 Files in this folder are accessible to other scss files by default.
 To include this file, add the following line into your scss file located in an app:
 
 @import 'variables_common.scss' 

 ********************************/
/* page and section nav */
.primarynav {
  display: flex;
  gap: 15px;
  justify-content: center; }
  .primarynav a {
    align-items: center;
    animation: btn-text-dim 0.2s ease-in;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    color: white;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    opacity: 0.65;
    padding: 20px 30px;
    text-decoration: none; }
    .primarynav a:hover {
      animation: btn-text-bright 0.4s ease-in;
      opacity: 1; }

@keyframes btn-text-bright {
  from {
    opacity: 0.65; }
  to {
    opacity: 1; } }

@keyframes btn-text-dim {
  from {
    opacity: 1; }
  to {
    opacity: 0.65; } }

/*********************/
/*********************/
.hocusfocus * {
  transition: none !important; }

.panelwrapper > *:first-child {
  min-height: 100vh;
  min-height: 100lvh; }

.panel {
  min-height: 100vh;
  min-height: 100lvh;
  display: grid; }
  .panel .inner {
    align-items: center;
    align-content: center;
    display: grid;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 20px;
    justify-items: center;
    line-height: 32px;
    opacity: 0;
    text-align: center;
    top: 61px;
    transition: opacity 1.5s;
    padding: 30px; }
    .panel .inner h1,
    .panel .inner h2,
    .panel .inner p {
      max-width: 800px; }
    .panel .inner > * + * {
      margin: 20px auto auto auto; }
  .panel .text > * + * {
    margin-top: 32px; }
  .panel .text h2 + p,
  .panel .text h3 + p {
    margin-top: 8px; }

.panel.active .inner {
  opacity: 1; }

.no-js .panel .inner {
  opacity: 1; }

.panel h2 {
  text-align: center; }

.panel--image {
  color: #fff;
  background-size: cover;
  background-position: center;
  filter: grayscale(0%);
  transition: filter 1.5s; }
  .panel--image .inner {
    background-color: rgba(0, 0, 0, 0.55); }
  .panel--image.active {
    filter: grayscale(80%); }

.panel--white {
  background-color: #fff;
  color: #000; }

.panel--black {
  background-color: #000;
  color: #fff; }

.panel--blue {
  background-color: #2d96d3;
  color: #fff; }

.panel--shop .products {
  flex-direction: column;
  max-width: 1200px;
  display: flex;
  gap: 2px; }

.panel--shop .primarynav a {
  color: black;
  border-color: rgba(0, 0, 0, 0.5); }

@media only screen and (min-width: 800px) {
  .panel--shop .products {
    flex-direction: row; } }
/* Main display cabinet SCSS */
/********************************
 Common variables
 
 Files in this folder are accessible to other scss files by default.
 To include this file, add the following line into your scss file located in an app:
 
 @import 'variables_common.scss' 

 ********************************/
.product--full {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr;
  justify-self: center;
  margin: 65px 4px;
  max-width: 2000px;
  align-self: center; }
  .product--full .status {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 30px;
    padding: 5px 10px; }
  .product--full .is-sold {
    background: #ff0000;
    color: #fff; }
  .product--full .price {
    color: #000;
    background: #b8cfff; }
  .product--full .content {
    display: block;
    padding: 10px;
    border: 20px solid #f0f0f0; }
    .product--full .content > * + * {
      margin-top: 12px; }
  .product--full .gallery {
    display: grid;
    gap: 2px;
    grid-template-columns: 1fr 1fr 1fr; }
    .product--full .gallery > *:first-child {
      grid-column: 1/3;
      grid-row: 1/3; }
    .product--full .gallery img {
      max-width: 100%; }

.product--card {
  background: #f4f4f4;
  color: #000;
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-decoration: none; }
  .product--card.product--sold {
    color: #777; }
  .product--card .title {
    font-size: 14px;
    padding: 10px 0; }
  .product--card .status {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 20px;
    padding: 5px 10px; }
  .product--card .is-sold {
    background: #dba9a9;
    color: #fff; }
  .product--card .price {
    color: #000;
    background: #b8cfff; }

.img-frame--square {
  background: #d2d2d2;
  aspect-ratio: 1 / 1; }
  .img-frame--square img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%; }

@media only screen and (min-width: 960px) {
  .product--full {
    margin: 121px 60px; } }

@media only screen and (min-width: 1400px) {
  .product--full {
    grid-template-columns: 1fr 1fr; } }

.shop {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr;
  margin: 65px 4px;
  align-self: center; }
  .shop .products {
    display: grid;
    gap: 2px;
    grid-template-columns: 1fr 1fr 1fr; }

/* product grid at top level for use in other apps*/
.product-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr 1fr 1fr; }
/* Main SCSS */
/********************************
 Common variables
 
 Files in this folder are accessible to other scss files by default.
 To include this file, add the following line into your scss file located in an app:
 
 @import 'variables_common.scss' 

 ********************************/
.page--basic {
  background: white;
  margin: 120px auto;
  max-width: 800px;
  padding: 0px 60px; }
  .page--basic > * + * {
    margin-top: 20px; }
  .page--basic h1,
  .page--basic h2 {
    margin-top: 60px; }

.content--shop {
  align-self: center;
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr;
  justify-self: center;
  margin: 65px 4px;
  max-width: 2000px; }
  .content--shop .content {
    display: block;
    padding: 10px;
    border: 20px solid #f0f0f0; }
    .content--shop .content > * + * {
      margin-top: 12px; }
  .content--shop .product-grid {
    display: grid;
    gap: 2px;
    grid-template-columns: 1fr; }

@media only screen and (min-width: 960px) {
  .content--shop {
    margin: 121px 60px; } }

@media only screen and (min-width: 1400px) {
  .content--shop {
    grid-template-columns: 1fr 2fr; } }

@media only screen and (min-width: 600px) {
  .content--shop .product-grid {
    grid-template-columns: 1fr 1fr; } }

@media only screen and (min-width: 800px) {
  .content--shop .product-grid {
    grid-template-columns: 1fr 1fr 1fr; } }
/* Common SCSS */
/********************************
 Common variables
 
 Files in this folder are accessible to other scss files by default.
 To include this file, add the following line into your scss file located in an app:
 
 @import 'variables_common.scss' 

 ********************************/
/* footer */
.sitefooter {
  background: #000000;
  border-top: 1px dotted #afafaf;
  color: #afafaf;
  display: flex;
  flex-direction: column;
  gap: 0px;
  grid-column: 1;
  grid-row: 3/3;
  font-size: 11px;
  min-height: 100px; }
  .sitefooter > div {
    flex: 1 1 0;
    width: 100%;
    padding: 20px;
    border-top: 1px dotted #5a5a5a; }
  .sitefooter a {
    color: #00b7d5;
    text-decoration: none; }

@media only screen and (min-width: 800px) {
  .sitefooter {
    border-top: none;
    flex-direction: row;
    gap: 10px;
    padding-left: 20px; }
    .sitefooter > div {
      padding: 5px 20px 20px 0;
      border-top: 1px dotted #afafaf; }
    .sitefooter > div {
      width: initial;
      max-width: 280px; } }
/* Common SCSS */
/********************************
 Common variables
 
 Files in this folder are accessible to other scss files by default.
 To include this file, add the following line into your scss file located in an app:
 
 @import 'variables_common.scss' 

 ********************************/
/**********
Base   
**********/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth; }

html {
  background: #ffffff;
  font-family: Verdana, serif;
  font-size: 14px; }

body {
  display: grid;
  grid-template-rows: min-content auto min-content;
  grid-template-columns: auto;
  min-height: 100dvh;
  width: 100vw; }

.pagewrapper {
  display: grid;
  grid-column: 1;
  grid-row: 1/3; }

h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 100;
  font-size: 44px;
  line-height: 38px; }

h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 26px; }

ul,
ol,
dl {
  list-style-position: inside; }

@media only screen and (min-width: 800px) {
  h1 {
    font-size: 75px;
    line-height: 67px; }
  h2 {
    font-size: 35px;
    line-height: 37px; } }

/* Sitebanner */
.sitebanner {
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  grid-column: 1;
  grid-row: 1/1;
  position: fixed;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: 100; }
  .sitebanner .admin-toolbar {
    background: #e95500;
    display: flex;
    gap: 5px;
    padding: 8px 20px;
    align-items: stretch;
    /* Hide the browser's default checkbox */
    /* Create a custom checkbox */
    /* Show the checkmark when checked */
    /* Style the checkmark/indicator */ }
    .sitebanner .admin-toolbar a,
    .sitebanner .admin-toolbar button,
    .sitebanner .admin-toolbar label {
      display: flex;
      align-items: center;
      background: RGBA(0, 0, 0, 0.2);
      border: none;
      border-radius: 4px;
      color: RGBA(255, 255, 255, 0.8);
      font-size: 12px;
      font-weight: bold;
      gap: 5px;
      padding: 6px 12px;
      position: relative;
      text-decoration: none; }
    .sitebanner .admin-toolbar a:hover,
    .sitebanner .admin-toolbar button:hover,
    .sitebanner .admin-toolbar label:hover {
      color: RGBA(255, 255, 255, 1);
      cursor: pointer; }
    .sitebanner .admin-toolbar input[type="checkbox"] {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0; }
    .sitebanner .admin-toolbar .checkmark-custom {
      background-color: #eee;
      border-radius: 2px;
      margin-right: -6px;
      height: 25px;
      width: 25px;
      position: relative; }
    .sitebanner .admin-toolbar input[type="checkbox"]:checked ~ .checkmark-custom:after {
      content: "";
      display: block; }
    .sitebanner .admin-toolbar .checkmark-custom:after {
      border: solid #0084ff;
      border-width: 0 3px 3px 0;
      left: 9px;
      top: 3px;
      height: 12px;
      position: absolute;
      width: 6px;
      -webkit-transform: rotate(36deg);
      -ms-transform: rotate(36deg);
      transform: rotate(36deg); }
  .sitebanner .user-toolbar {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content auto; }
  .sitebanner .logo {
    fill: rgba(255, 255, 255, 0.8);
    width: 320px;
    height: auto;
    padding: 5px 20px; }
  .sitebanner .iconset-menu {
    fill: #fff; }
  .sitebanner .nav-ctrl {
    align-items: end;
    align-self: center;
    display: flex;
    height: 48px;
    margin-left: 20px;
    overflow: hidden;
    width: 48px; }
    .sitebanner .nav-ctrl.active {
      align-items: start; }
  .sitebanner nav {
    overflow: hidden;
    height: 0px;
    display: flex;
    flex-direction: column;
    font-size: 11px;
    gap: 2px;
    grid-column: 1/3;
    grid-row: 2/2; }
    .sitebanner nav.active {
      height: inherit; }
    .sitebanner nav a {
      background-color: rgba(0, 0, 0, 0);
      color: #ffffff;
      display: flex;
      flex: auto;
      padding: 20px;
      text-decoration: none;
      -webkit-transition: background-color 600ms linear;
      -ms-transition: background-color 600ms linear;
      transition: background-color 600ms linear; }
      .sitebanner nav a:hover {
        background-color: rgba(0, 0, 0, 0.6); }

@media only screen and (min-width: 800px) {
  .sitebanner {
    grid-template-columns: auto min-content;
    grid-template-rows: min-content; }
    .sitebanner nav {
      flex-direction: row;
      grid-column: 1/1;
      grid-row: 1/1;
      justify-self: center; }
      .sitebanner nav a {
        align-self: stretch;
        align-items: center;
        padding: 0 20px; }
    .sitebanner .logo {
      grid-row: 1/1; }
    .sitebanner .nav-ctrl {
      display: none;
      grid-row: 1/1; } }

@keyframes nav-text-bright {
  from {
    opacity: 0.65; }
  to {
    opacity: 1; } }

@keyframes nav-text-dim {
  from {
    opacity: 1; }
  to {
    opacity: 0.65; } }
