* {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  box-sizing: border-box; }

html {
  height: 100%; }

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--body-background); }

body {
  touch-action: pan-y; }

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0);
  position: absolute; }

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0); }

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: rgba(94, 94, 94, 0.5); }

@keyframes slam {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.3); }
  100% {
    transform: scale(1); } }

.slam {
  animation-name: slam;
  animation-duration: 500ms; }

@keyframes gradient {
  0% {
    background-position: 0% 0%; }
  25% {
    background-position: 0% 100%; }
  50% {
    background-position: 100% 100%; }
  75% {
    background-position: 100% 0%; }
  100% {
    background-position: 0% 0%; } }

@keyframes fast-gradient {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

@keyframes rainbow {
  0% {
    color: blue; }
  15% {
    color: green; }
  35% {
    color: yellow; }
  50% {
    color: red; }
  85% {
    color: purple; }
  100% {
    color: blue; } }

.text-rainbow {
  animation: rainbow 10s infinite; }

@keyframes pulseglow {
  0% {
    filter: brightness(100%); }
  50% {
    filter: brightness(120%); }
  100% {
    filter: brightness(100%); } }

.pulse-glow {
  animation: pulseglow 1.5s infinite; }

.rainbow-glow {
  background: linear-gradient(-45deg, #5552ee, #613ce7, #23a6d5, #234cd5);
  background-size: 400% 400%;
  animation: fast-gradient 10s ease infinite; }

.loading-bar-container {
  height: 3px;
  background: linear-gradient(90deg, #a6b4e1, #0036d5);
  background-size: 200% 200%;
  animation: gradient 3s ease infinite;
  transition: width 0.15s, opacity 0.2s ease-out; }

input[type="number"]:not(.mobile)::-webkit-inner-spin-button,
input[type="number"]:not(.mobile)::-webkit-outer-spin-button {
  opacity: 1;
  height: 20px;
  padding: 5px;
  margin-left: 5px; }

.form-group {
  position: relative; }

.form-group input[type="text"].form-control,
.form-group input[type="password"].form-control,
.form-group input[type="number"].form-control {
  height: auto;
  padding: 0.6em 0 0.2em 0;
  margin-bottom: 0.5em;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
  outline: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }

.form-group input[type="text"].form-control:focus,
.form-group input[type="password"].form-control:focus,
.form-group input[type="number"].form-control:focus {
  border-bottom: 1px solid #4285f4;
  box-shadow: 0 1px 0 0 #4285f4; }

.form-group input[type="text"].form-control:disabled,
.form-group input[type="password"].form-control:disabled,
.form-group input[type="number"].form-control:disabled {
  color: #949494 !important; }

.form-group .form-label {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1rem;
  color: #757575;
  cursor: text;
  transform-origin: 0 100%;
  transform: translateY(0.6em);
  transition: transform 0.2s ease-out, color 0.2s ease-out, top 0.2s ease-out; }

.form-group textarea.form-control + .form-label {
  left: 7px;
  top: -5px; }

.form-group .form-control:focus + .form-label {
  color: #4285f4; }

.form-group .form-label.active {
  transform: translateY(-14px) scale(0.8);
  font-size: 1em; }

.form-group textarea.form-control + .form-label.active {
  backdrop-filter: brightness(2);
  padding-left: 3px;
  padding-right: 3px;
  margin-left: -3px;
  top: -1px;
  border-radius: 10px; }

.sneaky-link {
  color: #212529;
  text-decoration: none; }

.brightness-100 {
  filter: brightness(100%); }

#overlay-panel-container {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 35; }

#main {
  height: 100vh;
  padding-top: 60px;
  box-sizing: border-box; }

#top-bar {
  width: calc(100% - 215px);
  height: 60px;
  margin-left: 215px;
  background-color: var(--basic-background);
  position: fixed;
  top: 0;
  left: 0;
  clip-path: inset(0px 0px -10px 0px);
  z-index: 2;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); }

html.mobile #top-bar {
  width: 100%;
  margin-left: 0px; }

html.mobile .top-bar-search {
  width: calc(100% - 437px); }

@media screen and (max-width: 768px) {
  #top-bar {
    width: calc(100% - 126px);
    height: 60px;
    margin-left: 126px; }
  html.mobile .top-bar-search {
    width: calc(100% - 126px); } }

.block-separator-start {
  border-left: 1px solid var(--block-separator); }

.block-separator-end {
  border-right: 1px solid var(--block-separator); }

.block-separator-top {
  border-top: 1px solid var(--block-separator); }

.block-separator-bottom {
  border-bottom: 1px solid var(--block-separator); }

.block-button {
  width: 125px;
  height: 100%;
  display: inline-flex;
  background-color: var(--secondary-background);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: filter 0.2s; }

.block-button:hover {
  filter: brightness(0.93); }

.block-button.disabled {
  filter: brightness(0.8); }

.block-button span {
  color: var(--secondary-text);
  font-weight: 400; }

.block-button.inverted {
  background-color: var(--primary-background); }

.block-button.inverted:hover {
  /*background-color: #cb2614;*/
  filter: brightness(0.9); }

.block-button.inverted span {
  color: var(--primary-text); }

.top-bar-button-container {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); }

#logout-button {
  top: 120px;
  right: 0px;
  width: 250px;
  height: 60px;
  z-index: 30;
  display: flex;
  position: fixed; }

#profile-button {
  top: 60px;
  right: 0px;
  width: 250px;
  height: 60px;
  z-index: 30;
  display: flex;
  position: fixed; }

#top-bar-logo {
  width: 215px;
  height: 120px;
  padding: 5px 10px 5px 10px;
  background-color: var(--logo-background);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  border-bottom-right-radius: 5px;
  cursor: pointer;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); }

#top-bar-logo div {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: 90%;
  background-repeat: no-repeat; }

@media screen and (max-width: 768px) {
  #top-bar-logo {
    width: 130px;
    height: 60px;
    padding: 3px 6px 3px 6px; } }

html.mobile #top-bar-logo {
  display: none; }

@media screen and (max-width: 990px) {
  #notifications {
    margin-bottom: 60px; } }

.block-logo {
  width: 215px;
  height: 120px;
  background-color: var(--logo-background);
  background-position: center center;
  background-size: 80%;
  background-repeat: no-repeat; }

.block-input {
  width: 310px;
  padding: 10px;
  border: 0;
  text-align: center;
  font-weight: 300;
  background-color: rgba(0, 0, 0, 0.025);
  outline: none;
  transition: width 0.2s, background-color 0.2s; }

.block-input:focus {
  width: 320px;
  background-color: rgba(0, 0, 0, 0.04); }

.panel-shadow {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); }

#top-bar-search-sort,
#top-bar-search-filter {
  width: auto;
  padding-left: 15px;
  padding-right: 15px; }

#top-bar-search-sort i,
#top-bar-search-filter i {
  font-size: 30px; }

#top-bar-search-sort .sort-description,
#top-bar-search-filter .sort-description {
  width: 0px;
  color: var(--secondary-text);
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  padding-left: 0px;
  box-sizing: border-box;
  transition: width 0.2s, padding-left 0.2s; }

#top-bar-search-sort:hover .sort-description,
#top-bar-search-filter:hover .sort-description {
  width: 110px;
  padding-left: 8px; }

.product-actions-container {
  width: 100%;
  position: absolute;
  bottom: 37px; }

.cart-button,
.minus-quantity-button,
.plus-quantity-button {
  height: 31px;
  color: var(--catalogue-button-text);
  background-color: var(--catalogue-button-background);
  border: none;
  border-radius: 3px;
  box-sizing: border-box;
  text-align: center;
  vertical-align: top;
  display: inline-block;
  transition: background-color 0.2s; }

.minus-quantity-button,
.plus-quantity-button {
  width: 31px; }

.item-quantity-indicator {
  width: 40px;
  height: 31px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  line-height: 31px; }

.product-actions-quantity {
  display: inline-block;
  vertical-align: top; }

.favourite-button {
  width: 33px;
  height: 31px;
  padding: 0;
  font-size: 20px;
  outline: none !important;
  color: black;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 3px;
  box-sizing: border-box;
  transition: font-size 0.2s; }

.favourite-button:hover {
  font-size: 22px; }

.basic-panel-header {
  width: 100%;
  height: 50px;
  padding: 9px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: var(--primary-text);
  background-color: var(--primary-background); }

.basic-panel-body {
  width: 100%;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color: var(--basic-text);
  background-color: var(--basic-background); }

.checkout-panel-header {
  width: 600px;
  height: 50px;
  padding: 9px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: var(--primary-text);
  background-color: var(--primary-background); }

.checkout-panel {
  width: 600px;
  height: 440px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color: var(--basic-text);
  background-color: var(--basic-background); }

.profile-container {
  width: 100%;
  max-width: 800px; }

.profile-panel-header {
  width: 100%;
  height: 50px;
  padding: 9px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: var(--primary-text);
  background-color: var(--primary-background); }

.profile-panel {
  width: 100%;
  height: 560px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color: var(--basic-text);
  background-color: var(--basic-background); }

.profile-editor-container {
  width: 100%;
  height: calc(100% - 42px);
  overflow-y: auto; }

.profile-confirm-options {
  padding-right: 4px;
  height: 46px; }

.save-cart-panel-header {
  width: 500px;
  height: 50px;
  padding: 9px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: var(--primary-text);
  background-color: var(--primary-background); }

.save-cart-panel {
  width: 500px;
  height: 400px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color: var(--basic-text);
  background-color: var(--basic-background); }

.save-cart-editor-container {
  width: 100%;
  height: calc(100% - 42px);
  overflow-y: auto; }

.save-cart-confirm-options {
  padding-right: 4px;
  height: 46px; }

.age-overlay-panel-header {
  width: 400px;
  height: 50px;
  padding: 9px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: var(--primary-text);
  background-color: var(--primary-background); }

.age-overlay-panel {
  width: 400px;
  height: 157px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color: var(--basic-text);
  background-color: var(--basic-background); }

#overlay-panel-container > .login-panel {
  width: 550px;
  padding: 20px;
  border-radius: 5px;
  background-color: var(--secondary-background); }

.login-option-container,
.login-input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }

#overlay-panel-container > .legacy-panel {
  width: 650px;
  padding: 20px;
  border-radius: 5px;
  background-color: var(--secondary-background); }

.legacy-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }

.checkout-cart-confirm-list,
.checkout-address-list,
.checkout-payment-list,
.checkout-period-list {
  width: 100%;
  height: calc(100% - 42px);
  overflow-y: auto; }

.checkout-cart-confirm-list .item-row {
  width: 100%;
  border-bottom: 1px solid #c0c0c0; }

.checkout-cart-confirm-list .item-row .item-name {
  width: 58%;
  display: inline-block; }

.checkout-cart-confirm-list .item-row .item-price {
  width: 15%;
  text-align: right;
  display: inline-block; }

.checkout-cart-confirm-list .item-row .item-quantity {
  width: 15%;
  text-align: right;
  display: inline-block;
  padding-right: 2px; }

.checkout-cart-confirm-list .item-row .item-substitute {
  width: 5%;
  text-align: right;
  display: inline-block; }

.checkout-cart-confirm-list .item-row .item-note {
  width: 7%;
  text-align: center;
  display: inline-block; }

.checkout-cart-confirm-options,
.checkout-address-confirm-options {
  height: 46px; }

.checkout-total-price {
  font-size: 22px;
  vertical-align: middle; }

.product-info-panel {
  width: 100%;
  max-width: 800px;
  height: 600px;
  border-radius: 5px;
  overflow-y: auto;
  color: var(--basic-text);
  background-color: var(--basic-background); }

.product-info-left {
  width: calc(60% - 10px);
  height: 100%;
  overflow-y: auto; }

.product-info-right {
  width: 40%;
  height: 100%;
  position: relative;
  margin-left: 10px;
  box-sizing: border-box; }

.product-info-main-image {
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  padding: 6px;
  box-shadow: 1px 1px 5px #c8c8c8; }

.product-info-main-image:before {
  content: "";
  display: block;
  margin-top: 100%; }

.product-info-main-image img {
  position: absolute;
  max-width: calc(100% - 12px);
  max-height: calc(100% - 12px); }

.product-info-gallery-container {
  width: 100%;
  margin-top: 8px;
  margin-left: -6px;
  margin-right: -6px;
  margin-bottom: 20px;
  height: 152px;
  overflow-y: auto; }

.product-info-small-image {
  width: 64px;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  padding: 3px;
  margin: 6px;
  box-shadow: 1px 1px 3px #c8c8c8;
  cursor: pointer; }

.product-info-small-image.selected {
  border-color: #d9a4a4; }

.register-panel {
  max-width: 600px;
  border-radius: 5px;
  color: var(--basic-text);
  background-color: var(--basic-background); }

/*.register-container, .finished-container
	{
	display: flex;
	
	justify-content: center;
	align-items: center;
	flex-direction: column;
	}*/
.privacy-container {
  padding-top: 96px; }

@media screen and (max-width: 768px) {
  .privacy-container {
    padding-top: 32px; } }

.orders-container {
  padding-top: 96px;
  padding-bottom: 96px; }

@media screen and (max-width: 768px) {
  .orders-container {
    padding-top: 32px;
    padding-bottom: 32px; } }

#mobile-menu {
  top: 60px;
  right: 185px;
  width: 250px;
  z-index: 30;
  display: flex;
  position: fixed;
  box-shadow: 2px 6px 8px rgba(0, 0, 0, 0.15); }

@media screen and (max-width: 992px) {
  #mobile-menu {
    right: 20%; } }

@media screen and (max-width: 768px) {
  #mobile-menu {
    right: 0px; } }

.clear-search {
  color: gray;
  font-size: 24px;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 4px; }

.row-button {
  cursor: pointer;
  transition: background-color 0.3s; }

.row-button:hover {
  background-color: #f2f2f2; }

.cart-counter {
  width: 96px;
  height: 96px;
  right: 12px;
  bottom: 12px;
  position: fixed;
  border: 2px solid #989898;
  border-radius: 50%;
  color: #989898;
  background-color: #d6d6d6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
  padding-right: 0px;
  font-size: 48px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  z-index: 40;
  cursor: pointer;
  transition: transform 0.2s; }

.cart-counter:hover {
  transform: scale(1.1); }

.cart-counter-digits {
  color: var(--primary-text);
  font-weight: 400;
  opacity: 0.9;
  position: absolute;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4); }

.filter-menu {
  max-width: 300px !important; }
