*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 100%;
}

body {
  font-weight: 400;
  line-height: 1.3rem;
  color: var(--bs-dark);
  box-sizing: border-box;
  overflow-x: hidden;
  font-size: 1rem;
}
@media (min-width: 48em) {
  body {
    font-size: 1.1rem;
  }
}
@media (min-width: 62em) {
  body {
    font-size: 1.2rem;
  }
}
@media (min-width: 75em) {
  body {
    font-size: 1.3rem;
  }
}

iframe {
  width: 100%;
  max-height: 39px;
}

a:link {
  text-decoration: none;
}

.modal {
  z-index: 2000 !important;
}

.modal-backdrop, .modal-dialog {
  z-index: 1500 !important;
}

.sidebar {
  --sidebar-display: block;
}

.logo {
  position: relative;
  left: 1rem;
  min-width: 100px;
  max-width: 150px;
  height: auto;
  object-fit: scale-down;
}

.bg-main {
  background-color: var(--bs-secondary);
}

.bg-card {
  background-color: transparent;
}

.bg-sidebar {
  background-color: var(--bs-white);
}

.bg-navbar {
  background-color: var(--bs-white);
}

.basket-footer-button {
  /*set icon-color to 'white' for white icon, any other value for black icon*/
  --icon-color: black;
  background-color: var(--bs-primary);
}

.container {
  max-width: 100em;
  width: 100%;
  margin: auto;
}
.container-main {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 1rem;
}
@media (min-width: 62em) {
  .container-main {
    grid-template-columns: 1fr 20rem;
    gap: 1rem;
    margin: 0 1rem;
  }
}
@media (min-width: 75em) {
  .container-main {
    grid-template-columns: 1fr calc(20rem + 10vw);
    margin: 0 10vw;
  }
}
.container-main.no-sidebar {
  grid-template-columns: 1fr !important;
}
.container-menu {
  padding: 0;
  margin: 0;
  max-width: 100%;
}
.container-checkout {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.block-content {
  display: flex;
  justify-content: center;
}
.block-content .container {
  margin: 0;
}

main.with-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: start;
  width: calc(100vw - 2rem);
}
@media (min-width: 62em) {
  main.with-sidebar {
    margin: 0;
    width: calc(100vw - 24rem);
  }
}
@media (min-width: 75em) {
  main.with-sidebar {
    width: calc(80vw - 20rem);
  }
}

main.no-sidebar {
  display: block;
  width: calc(100vw - 4.5rem);
  margin: 0 1rem;
}
@media (min-width: 75em) {
  main.no-sidebar {
    width: calc(80vw - 2rem);
  }
}
main.no-sidebar .block-content {
  display: block;
  margin: 0 auto;
}

.sidebar {
  display: none;
}
@media (min-width: 62em) {
  .sidebar {
    display: var(--sidebar-display);
    min-width: 18rem;
  }
}
@media (min-width: 75em) {
  .sidebar {
    width: 20rem;
  }
}

.sidebar-sticky {
  padding-right: 1rem;
}

.logo-oktopos img {
  width: 6rem;
}

.bg-main {
  background-color: var(--bs-secondary);
}
.bg-sidebar {
  position: relative;
  z-index: 1100;
  background-color: var(--bs-white);
}
.bg-navbar {
  background-color: var(--bs-white);
}
.bg-grey {
  background-color: #eee;
}

.alert-success,
.alert-danger {
  padding: 10px;
}

.pickup-token {
  display: inline;
  margin: 0 auto;
  text-align: start;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  border: 2px dotted var(--bs-dark);
}

#loading {
  display: none;
}

#loading-screen {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.spinner-border {
  margin: auto;
}

.card-body .h5 {
  font-size: smaller;
}

.emptyWindow {
  background-color: rgba(0, 0, 0, 0.1);
  position: fixed;
  z-index: 1000;
  display: none;
}
.emptyWindow:after {
  content: ".";
  visibility: hidden;
}

.input-group-xs .btn.operation {
  width: 30px;
}

.custom-control-input {
  color: var(--bs-primary);
  border: 1.5px solid var(--bs-dark);
}

.modal-dialog :checked + label {
  color: var(--bs-dark);
  background-color: var(--bs-secondary) !important;
}

.btn-img {
  width: 240px !important;
  height: 240px !important;
  border-radius: 25px;
}
.btn:active, .btn:focus {
  outline: none !important;
  box-shadow: none !important;
}
.btn-group-xs > .btn, .btn-xs {
  padding: 0.25rem 0.25rem;
  font-size: 0.875rem;
  line-height: 0.5;
  border-radius: 0.2rem;
}
.btn-check:checked + label {
  color: var(--bs-dark) !important;
  background-color: var(--bs-primary) !important;
  box-shadow: none !important;
  outline: none !important;
  border: transparent;
}

.hide {
  display: none !important;
}

.legend {
  font-size: 0.8rem;
}

.top-nav-container {
  background-color: transparent;
  position: relative;
}

.hero-image {
  background-size: contain;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: 30vh;
  width: 100vw;
  position: relative;
  top: 0;
  left: 0;
}

.navbar-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 5px 0;
  background-color: transparent;
  user-select: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.navbar-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 5px 0;
  background-color: transparent;
  user-select: none;
}

.slider {
  top: 5px;
  height: auto;
  width: 100%;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.slider::-webkit-scrollbar {
  display: none;
}

.sticky-top {
  padding: 0.5rem 0 1rem 0;
  top: 0;
}

.main-menu-bar {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.fade-left {
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 10%, black 100%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 10%, black 100%, rgba(0, 0, 0, 0) 100%);
}
.fade-right {
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 0%, black 90%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 0%, black 90%, rgba(0, 0, 0, 0) 100%);
}
.fade-both {
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 10%, black 90%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 10%, black 90%, rgba(0, 0, 0, 0) 100%);
}

.slide-element {
  text-align: center;
  padding: 0.5rem 1rem;
  height: 40px;
  position: relative;
}
.slide-element.active {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
  border-radius: 0.25rem;
  border: none !important;
}
.slide-element a {
  color: var(--bs-dark);
  line-height: 0.9;
  width: max-content;
  align-self: center !important;
}

.progress-bar {
  position: relative;
  top: 2px;
  margin-top: 0.5rem;
  margin-left: 4%;
  height: 4px;
  width: 93%;
  border-radius: 10px;
  border: 1px solid var(--bs-secondary);
  background-color: var(--bs-dark);
}
.progress-bar .prog-bar-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--bs-primary);
}

.nav .fixed-bottom ul {
  list-style: none;
}
.nav .fixed-bottom span {
  font-size: 120%;
}
.nav-basket-icon {
  display: block;
  max-width: 100px;
}
.nav-brand {
  border-radius: 5px;
  max-width: 100%;
  text-align: center;
}
.nav-basket-menu {
  display: none;
}
@media (min-width: 48em) {
  .nav-basket-menu {
    display: block !important;
  }
}
@media (min-width: 48em) {
  .nav-basket-icon {
    display: none !important;
  }
}
.nav-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
}
.nav-icon img {
  background-color: var(--bs-white);
  padding: 0.5rem;
  border-radius: 5px;
  height: 40px;
  width: 40px;
}

.logo {
  background-color: var(--bs-white);
  padding: 0.5rem;
  border-radius: 5px;
}

.sticky-header {
  top: 65px;
  z-index: 100;
}
@media (min-width: 48em) {
  .sticky-header {
    top: 109px;
  }
}

#toggle-flags-mobile {
  width: 60px;
  top: -4px;
  position: relative;
}
#toggle-flags-desktop {
  top: -5px;
  right: 5px;
}

#flags-closed-mobile, #flags-closed-desktop {
  display: flex;
  opacity: 100% !important;
}
#flags-open-mobile {
  position: absolute;
  background-color: var(--bs-secondary);
  display: none;
  z-index: 2000;
  opacity: 100% !important;
  top: -2px;
  right: 4.5px;
}
#flags-open-mobile.open {
  display: flex;
}
#flags-open-desktop {
  position: absolute;
  background-color: var(--bs-secondary);
  display: none;
  z-index: 2000;
  opacity: 100% !important;
  right: 0;
  top: 0;
}
#flags-open-desktop.open {
  display: flex;
}
@media (min-width: 48em) {
  #flags-open-desktop {
    right: -7px;
  }
}
@media (min-width: 62em) {
  #flags-open-desktop {
    top: -1px;
    right: -3px;
  }
}
@media (min-width: 75em) {
  #flags-open-desktop {
    top: -1px;
    right: -8px;
  }
}

.history-icon {
  height: 30px;
}
@media (min-width: 48em) {
  .history-icon {
    height: 30px;
  }
}
@media (min-width: 62em) {
  .history-icon {
    height: 30px;
  }
}
@media (min-width: 75em) {
  .history-icon {
    height: 40px;
  }
}
.history-button {
  width: 40px;
}
.history-nav-button:active, .history-nav-button:focus {
  outline: none;
  box-shadow: none;
}

.slider-inner {
  display: inline-flex;
  flex-wrap: nowrap;
}
@media (min-width: 48em) {
  .slider-inner {
    display: flex;
    flex-wrap: wrap;
  }
}

.dc-icons-mobile {
  width: 100px;
  display: flex;
}
@media (min-width: 48em) {
  .dc-icons-mobile {
    display: none;
  }
}
.dc-icons-desktop {
  display: none;
}
@media (min-width: 48em) {
  .dc-icons-desktop {
    display: flex;
    width: 200px;
  }
}
@media (min-width: 62em) {
  .dc-icons-desktop {
    width: 280px;
  }
}
@media (min-width: 75em) {
  .dc-icons-desktop {
    width: 350px;
  }
}

#searchContainer {
  min-height: 38px;
}

.search-sidebar {
  padding-top: 1rem;
}
.search-button {
  display: flex;
  justify-content: center;
  align-content: center;
}
.search-button:focus-visible {
  outline: none;
  border: none;
  box-shadow: none;
}
.search-container {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, height 0.5s ease;
  -webkit-transition: opacity 0.5s ease, height 0.5s ease;
  -moz-transition: opacity 0.5s ease, height 0.5s ease;
  -o-transition: opacity 0.5s ease, height 0.5s ease;
}
.search-container.visible {
  opacity: 1;
  height: 3.4rem;
}
.search-icon {
  opacity: 100%;
  height: 1.5rem;
  outline: none;
  box-shadow: none;
}
@media (min-width: 48em) {
  .search-icon {
    height: 1.5rem;
  }
}
@media (min-width: 62em) {
  .search-icon {
    height: 1.5rem;
  }
}
@media (min-width: 75em) {
  .search-icon {
    height: 2rem;
  }
}
.search-nav-button:active, .search-nav-button:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.menu-arrow {
  color: var(--bs-dark);
  display: none;
}

.grab {
  cursor: grab;
}

.grabbing {
  cursor: grabbing;
}

.location-display-mobile {
  display: flex;
  justify-content: center;
  position: relative;
  top: 0.7rem;
  padding-left: 0;
}

.location-display-desktop {
  display: none;
}
@media (min-width: 48em) {
  .location-display-desktop {
    display: flex;
  }
}

.search-sidebar .icon-hover {
  height: 1.5rem;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
#languageSelectModal.show {
  animation: slideIn 0.5s forwards;
}

#languageSelectModal {
  animation: slideOut 0.5s forwards;
}

.options-container {
  display: none;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  border-radius: 0.4rem;
  background-color: var(--bs-white);
  position: absolute;
  top: 2.5rem;
  right: 0;
  z-index: 1030;
  overflow: hidden;
}
.options-container.open {
  display: flex;
  animation: slideIn 0.5s forwards;
}
.options-container.closing {
  animation: slideOut 0.5s forwards;
}
.options-container ul {
  padding: 0;
  margin: 0;
}
.options-container li {
  list-style-type: none;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  overflow: hidden;
}
.options-container li a {
  text-decoration: none;
  color: var(--bs-dark);
}
.options-button {
  position: relative;
  margin-right: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.options-button-burger {
  width: 25px;
  height: 1.5px;
  background-color: var(--bs-dark);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
  transition: all 0.5s ease-in-out;
}
.options-button-burger::before, .options-button-burger::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 1.5px;
  background-color: var(--bs-dark);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
  transition: all 0.5s ease-in-out;
}
.options-button-burger::before {
  transform: translateY(-8px);
}
.options-button-burger::after {
  transform: translateY(8px);
}
.options-button.open .options-button-burger {
  transform: translateX(-50px);
  background-color: transparent;
  box-shadow: none;
}
.options-button.open .options-button-burger::before {
  transform: rotate(45deg) translate(35px, -35px);
}
.options-button.open .options-button-burger::after {
  transform: rotate(-45deg) translate(35px, 35px);
}
.options-item {
  display: flex;
  justify-content: start;
  align-items: center;
}
.options-label {
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 400;
}
.options-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding-right: 1rem;
}
.options-icon.search-icon {
  padding: 0;
}

li .dc-icon {
  padding: 0 1rem 0 0;
  width: 35px;
  height: auto;
}

.language-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.language-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 70%;
}
.language-item img {
  width: 5rem;
  height: auto;
}
.language-flag {
  height: 3rem;
  width: 5rem;
  padding: 1rem 2rem 1rem 0;
  margin-right: 1.5rem;
}
.language-label {
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 400;
  width: 100%;
  padding: 0 0 0 1rem;
}

.search-container {
  display: none;
}
@media (min-width: 48em) {
  .search-container {
    display: flex;
    justify-content: start;
    align-items: start;
    margin-right: 1.5rem;
  }
}

#basket-table {
  display: block;
}
@media (min-width: 48em) {
  #basket-table {
    display: none;
  }
}
#basket-checkout {
  display: none;
}
@media (min-width: 48em) {
  #basket-checkout {
    display: block;
  }
}
#basket-button {
  white-space: normal;
  width: 100px;
}
#basket_sidebar .custom-file {
  height: inherit;
}

.basket .input-group-xs {
  width: 100px;
  font-size: inherit;
}
.basket .input-group input {
  height: inherit;
}
.basket .custom-file input {
  font-size: inherit;
}
.basket-container {
  container-name: basket-container;
  container-type: inline-size;
}
.basket-btn {
  width: 40px !important;
  height: 40px !important;
}
.basket-quantity {
  width: 100px !important;
}
.basket_operation_name {
  word-break: break-word;
  hyphens: auto;
}
.basket-badge {
  background-color: var(--bs-secondary);
  color: #000;
  border: 1px solid var(--bs-dark);
}
.basket_footer {
  padding-left: 2rem;
  padding-right: 2rem;
}
.basket-total {
  display: flex;
  margin: 30px -12px 0;
  min-height: 20px;
  align-items: center;
  font-weight: 600;
}
.basket-navbar-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  margin-bottom: 6px;
}
@media (min-width: 62em) {
  .basket-navbar-icon {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 75em) {
  .basket-navbar-icon {
    width: 40px;
    height: 40px;
  }
}
@container basket-container (max-width: 400px) {
  .basket-item-row:has(+ .warning-incomplete) {
    border-bottom: 1px dashed var(--bs-dark) !important;
  }
}
.basket-item-quantity {
  vertical-align: middle;
  position: relative;
  font-size: 1.25rem;
  top: 20px;
  left: 45px;
  width: 30px;
  height: 30px;
}
@media (min-width: 48em) {
  .basket-item-quantity {
    font-size: 1.35rem;
    left: 20px;
    width: 35px;
    height: 35px;
  }
}
@media (min-width: 62em) {
  .basket-item-quantity {
    top: 30px;
    left: 45px;
  }
}
@media (min-width: 75em) {
  .basket-item-quantity {
    font-size: 1.5rem;
    top: 35px;
    left: 65px;
    width: 40px;
    height: 40px;
  }
}
.basket-image {
  max-width: 70px !important;
  height: auto !important;
}
.basket-image-container {
  display: flex;
  justify-content: start;
  align-items: center;
  min-height: 75px;
}
@media (min-width: 48em) {
  .basket-image {
    max-width: 50px !important;
  }
}
@media (min-width: 62em) {
  .basket-image {
    max-width: 75px !important;
  }
}
@media (min-width: 75em) {
  .basket-image {
    max-width: 100px !important;
  }
  .basket-image-container {
    min-height: 100px;
  }
}
.basket-image-sideorder {
  max-width: 50px !important;
  height: auto !important;
  justify-content: end;
}
.basket-image-sideorder-container {
  display: flex;
  justify-content: end;
  align-items: center;
  min-height: 75px;
}
@media (min-width: 48em) {
  .basket-image-sideorder {
    max-width: 35px !important;
  }
}
@media (min-width: 62em) {
  .basket-image-sideorder {
    max-width: 40px !important;
  }
}
@media (min-width: 75em) {
  .basket-image-sideorder {
    max-width: 60px !important;
  }
}

.badge-circle {
  position: relative;
  top: -5px;
  left: -15px;
}

.image-sideorder-container {
  max-width: 35px;
  height: auto;
}
@media (min-width: 48em) {
  .image-sideorder-container {
    max-width: 50px;
  }
}
@media (min-width: 62em) {
  .image-sideorder-container {
    max-width: 75px;
  }
}
@media (min-width: 75em) {
  .image-sideorder-container {
    max-width: 100px;
  }
}

.sideorder-item-quantity {
  vertical-align: middle;
  position: relative;
  font-size: 0.9rem;
  top: 20px;
  left: 25px;
  width: 21px;
  height: 21px;
}
@media (min-width: 48em) {
  .sideorder-item-quantity {
    font-size: 0.95rem;
    left: 10px;
    width: 25px;
    height: 25px;
  }
}
@media (min-width: 62em) {
  .sideorder-item-quantity {
    font-size: 0.95rem;
    left: 13px;
  }
}
@media (min-width: 75em) {
  .sideorder-item-quantity {
    font-size: 1.05rem;
    top: 25px;
    width: 28px;
    height: 28px;
  }
}

.card {
  width: 100%;
}

.quantity {
  margin: 3px 5px 0 5px;
  min-width: 2rem;
}

.no-user-select * {
  user-select: none;
}

.tax-box {
  margin: 0 16px 0 20px;
}
.tax-hint {
  font-size: 60%;
}
.tax-line {
  line-height: 1;
}

.total {
  font-size: 1.75rem !important;
}

.btn-edit-basket {
  width: 100%;
  padding: 1rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  box-shadow: none !important;
}

.editIcon {
  fill: var(--bs-primary);
}
.editIcon circle, .editIcon line {
  stroke: var(--bs-primary);
}
.editSvg {
  width: 40px;
  height: 40px;
}
.edit-article-modal {
  border: 1.5px solid var(--bs-dark);
}

.border-top-dashed {
  border-top-style: dashed;
  border-width: 1px;
  border-color: var(--bs-dark);
}

.icon-box {
  display: flex;
  flex-wrap: nowrap;
}
.icon-invert {
  filter: invert(100%) hue-rotate(180deg);
}
.icon-disabled {
  opacity: 30% !important;
  filter: grayscale(100%);
}
.icon-button:hover .icon-hover {
  filter: invert(100%) hue-rotate(180deg);
}
.icon-button:focus, .icon-button:active {
  box-shadow: none;
  outline: none;
}
.icon-button-submit {
  margin: 20px;
  width: 300px;
}
.icon-info-start {
  display: none !important;
}
@media (min-width: 320px) {
  .icon-info-start {
    display: flex !important;
  }
}
.icon-info-bottom {
  display: flex !important;
}
@media (min-width: 320px) {
  .icon-info-bottom {
    display: none !important;
  }
}
@media (min-width: 280px) {
  .icon-cart-button {
    padding-right: 0.5rem;
  }
}
@media (max-width: 400px) {
  .icon-info-button {
    padding-left: 0.2rem !important;
    padding-right: 0 !important;
  }
}

.input-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 320px) {
  .input-box {
    flex-wrap: nowrap;
  }
}
.input-quantity {
  width: 2.5rem;
  font-size: small;
}
@media (min-width: 400px) {
  .input-quantity {
    width: 3rem !important;
    font-size: medium;
  }
}
@media (min-width: 500px) {
  .input-quantity {
    width: 3.5rem !important;
    font-size: larger;
  }
}
.input-quantity-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.5rem;
}
@media (min-width: 320px) {
  .input-quantity-box {
    width: auto;
    padding: 0;
  }
}

[aria-describedby=article_to_basket] {
  height: 20px;
}

.btn.operation:hover {
  border-color: transparent !important;
}

.dropdown-menu-selectedItem {
  background-color: var(--bs-primary) !important;
}

#basketClearModal img {
  margin-right: 1rem;
}

.basket-item-quantity.animate, .sideorder-item-quantity.animate {
  animation: scaleUp 1s ease-in-out;
}

.message-popup {
  background-color: var(--bs-white);
  box-shadow: 10px 10px 60px #555;
  display: inline-block;
  height: auto;
  max-width: 551px;
  min-height: 100px;
  vertical-align: middle;
  width: 60%;
  position: relative;
  border-radius: 8px;
  padding: 15px 5%;
  font-size: medium;
}
.message-popup-container {
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: block;
  height: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10000;
  margin: 0;
  padding: 0;
}
.message-helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

#message-inner-container {
  height: 100vh;
}

#notifications {
  width: 80%;
  margin: auto;
  display: none;
}

.notification-confirm-button {
  cursor: pointer;
}

.btn-notify {
  margin-bottom: 20px !important;
}
.btn-onesignal {
  font-size: larger !important;
  font-weight: 600;
}

.message-text-color-primary {
  color: var(--bs-light);
}
.message-text-color-success {
  color: var(--bs-light);
}
.message-text-color-danger {
  color: var(--bs-light);
}
.message-text-color-warning {
  color: var(--bs-dark);
}
.message-text-color-info {
  color: var(--bs-light);
}
.message-text-color-secondary {
  color: var(--bs-dark);
}

#video-container {
  line-height: 0;
}

#cam-select {
  position: absolute;
  left: 20px;
  bottom: 20px;
}
#cam-select:focus {
  outline: none;
  box-shadow: none;
}

#flash-toggle {
  display: none;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
#flash-toggle:focus {
  outline: none;
  box-shadow: none;
}

.scan-button {
  display: none;
}

.notification-switch {
  margin-left: 1.5rem !important;
  text-align: start !important;
}

.green-hook {
  margin-left: 2rem;
}

#push_subscribe_button {
  display: none;
}
#push_subscribe_button > label {
  text-align: start;
}

#push_subscribe_switch {
  margin: 0;
}

#whatsapp_label {
  text-align: start;
  width: 100%;
}

.modal-footer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
  padding: 1rem 2rem;
  border: 1.5px solid var(--bs-dark);
  border-radius: 1rem;
  background-color: var(--bs-secondary);
  word-break: break-word;
  hyphens: auto;
}
.modal-footer-btn span {
  display: none;
}
.modal-footer-btn img {
  width: 60px;
  height: 60px;
  padding-left: 0.8rem;
}
.modal-footer-btn .confirm {
  display: inline-block;
  padding-top: 0.5rem;
}
@media (min-width: 576px) {
  .modal-footer-btn span {
    display: inline-block;
    text-align: center;
  }
  .modal-footer-btn img {
    width: 40px;
    height: 40px;
  }
  .modal-footer-btn .confirm {
    display: none;
  }
}

.notification-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--bs-dark);
  border: 1px solid black;
}

#footer-title {
  display: inline-block;
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  #footer-title {
    display: none;
  }
}

.notify-icon-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#no-notifications-warning-title span {
  word-break: break-word;
  hyphens: auto;
}

#whatsapp_subscribe_button {
  display: none;
}

.notification-label {
  display: block;
}

.notification-explanation {
  margin-top: 0.5rem;
  display: block;
  font-size: 1.2rem;
}

.green-hook {
  display: inline-block;
  align-self: flex-end;
}

.whatsapp-button-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accept-terms-box {
  padding: 1rem;
  border: 1px solid black;
  user-select: none;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#terms-input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

#terms-label {
  cursor: pointer;
  margin-top: 3px;
}

.accept-terms-checked {
  display: none;
}

.accept-terms-unchecked {
  display: inline;
}

.checkmark {
  margin-right: 1.5rem;
}

.accept-text {
  display: inline-block;
  padding-top: 0.4rem;
}

.here {
  margin-left: 1.5rem;
  padding-top: 0.4rem;
}

#termsValidationFeedback {
  text-align: center;
}

.basket-footer-button {
  position: fixed;
  padding: 1rem 1.5rem;
  border-radius: 0.4rem;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--bs-primary);
  z-index: 1050;
}
@media (min-width: 62em) {
  .basket-footer-button {
    display: none;
  }
}
.basket-footer-button .link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.basket-footer-button .badge {
  position: absolute;
  left: 3.5rem;
  top: 1rem;
  font-size: 100%;
  background-color: var(--bs-white);
  color: var(--bs-dark);
  border: 1.5px solid var(--bs-dark);
}
.basket-footer-button .basket-total {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 120%;
  font-weight: 600;
  line-height: 0.6rem;
  padding-top: 0.8rem;
  color: var(--bs-dark);
}

.history-main-title {
  margin: 1rem auto;
  font-size: 1.5rem;
}
.history-title {
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: var(--bs-dark) !important;
  text-align: left;
  padding: 5px 20px;
  margin: 0;
}
.history-button {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--bs-dark) !important;
}
.history-token {
  width: 100%;
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: var(--bs-dark) !important;
}

.accordion-item {
  width: 100%;
  margin: 0 auto 1rem auto;
  border-radius: 1rem !important;
  box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
}
@media (max-width: 48em) {
  .accordion-item {
    width: 100%;
  }
}
.accordion-item button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  position: relative;
}
.accordion-button {
  border-radius: 1rem 1rem 0 0 !important;
}
.accordion-button::after {
  margin-left: auto;
  position: absolute;
  bottom: 1.2rem;
  right: 1rem;
}
.accordion-button:active, .accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
}

@media (max-width: 62em) {
  #collapseDescription.collapse:not(.show) {
    display: block;
    height: 4.5em;
    overflow: hidden;
    background: -webkit-linear-gradient(var(--bs-gray-dark), #eee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  #collapseDescription.collapsing {
    height: 4.5em;
  }
}
.collapse-text.collapse:not(.show) {
  display: block;
  height: 6rem;
  overflow: hidden;
  background: -webkit-linear-gradient(var(--bs-gray-dark), #eee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.collapse-text.collapsing {
  height: 6rem;
}

.shift-footer-down {
  height: 50px !important;
}

.btn-grey {
  color: var(--bs-dark);
  background-color: #eee;
}

.btn-img {
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  position: relative;
}

.dc-select {
  padding-top: 5vh;
  max-width: 500px;
}
@media (min-width: 48em) {
  .dc-select {
    max-width: 720px;
    padding-top: 25vh;
  }
}
@media (min-width: 62em) {
  .dc-select {
    max-width: 800px;
  }
}
@media (min-width: 75em) {
  .dc-select {
    max-width: 1000px;
  }
}
@media (min-width: 100em) {
  .dc-select {
    max-width: 1400px;
  }
}
.dc-select .icon-container {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  min-height: 240px;
  min-width: 240px;
}
.dc-select .icon-container img {
  height: 100px;
}
.dc-select-modal {
  justify-content: center;
}
.dc-select-modal .icon-container {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
}
.dc-select-modal .icon-container img {
  height: 60px;
}
.dc-modal-border {
  border: 1px solid var(--bs-dark);
  border-radius: 0.3rem;
}
.dc-icons-mobile {
  background-color: var(--bs-secondary);
  padding-right: 0;
  justify-content: center;
  align-self: center;
}
.dc-icons-mobile .dc-icon {
  height: 30px;
  padding-top: 0;
}
@media (min-width: 62em) {
  .dc-icons-mobile .dc-icon {
    height: 30px;
    padding-top: 0;
  }
}
@media (min-width: 75em) {
  .dc-icons-mobile .dc-icon {
    height: 40px;
    padding-top: 0;
    left: 20px;
  }
}
.dc-icon {
  width: 40px;
  height: 30px;
  padding-top: 0;
}
@media (min-width: 62em) {
  .dc-icon {
    width: 36px;
    height: 30px;
    padding-top: 0;
  }
}
@media (min-width: 75em) {
  .dc-icon {
    width: 48px;
    height: 40px;
    padding-top: 0;
    left: 20px;
  }
}
.dc-icon-delivery {
  width: 40px;
  height: 30px;
  padding-top: 7px;
}
@media (min-width: 62em) {
  .dc-icon-delivery {
    width: 39px;
    height: 30px;
    padding-top: 8px;
  }
}
@media (min-width: 75em) {
  .dc-icon-delivery {
    width: 52px;
    height: 40px;
    padding-top: 10px;
  }
}
.dc-icon-icons-desktop .dc-button {
  padding: 0;
  margin: 0 0.25rem;
}
.dc-icon-shipping {
  width: 45px;
  height: 30px;
  padding-top: 9px;
}
@media (min-width: 62em) {
  .dc-icon-shipping {
    width: 39px;
    height: 32px;
    padding-top: 12px;
  }
}
@media (min-width: 75em) {
  .dc-icon-shipping {
    width: 65px;
    height: 40px;
    padding-top: 12px;
  }
}
.dc-change-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1rem 0.5rem 0.5rem 0.5rem;
}
.dc-change-icon-label {
  padding-top: 0.5rem;
  margin: 0;
  white-space: nowrap;
}
.dc-button {
  padding: 0;
}

.container-menu {
  margin: auto;
}
@media (min-width: 48em) {
  .container-menu {
    padding-left: 0;
    padding-right: 0;
  }
}
.container .card-side-container {
  padding: 0;
}

.icon-info {
  width: 25px;
  height: 25px;
}
@media (min-width: 400px) {
  .icon-info {
    width: 33px;
    height: 33px;
  }
}
.icon-submit {
  filter: invert(100%) hue-rotate(180deg);
}
.icon-button:hover .icon-hover {
  filter: invert(100%) hue-rotate(180deg);
}
.icon-button:focus, .icon-button:active {
  box-shadow: none;
  outline: none;
}

.pooling-article-buttons {
  max-width: 200px;
}
.pooling-articles {
  display: grid;
  grid-template-columns: repeat(auto-fill, 150px);
  justify-content: center;
  grid-gap: 10px;
}

.add-article-submit-group {
  width: 250px;
}
.add-article-submit-group button {
  width: 75%;
}
.add-article-submit-group input {
  height: auto;
}

.card-body a {
  font-size: xx-small;
  float: right;
}
.card-body ul {
  font-size: small;
}
.card-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 80%;
  margin: 0;
  padding: 0.4rem 0;
  line-height: 1rem;
  text-align: center;
}
.card-menu-title {
  display: flex;
  justify-content: start;
  align-items: center;
  border-radius: 0.4rem;
  background-color: var(--bs-white);
  position: absolute;
  bottom: 0.4rem;
  left: 1rem;
  border: 1.5px solid var(--bs-dark);
  padding: 0.3rem 0.5rem;
  color: var(--bs-dark);
}
.card-price {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.4rem;
  margin: 0 auto;
  font-size: 80%;
  background-color: var(--bs-white);
  position: absolute;
  line-height: 0.7rem;
  bottom: 0.4rem;
  right: 0.5rem;
  border: 1px solid var(--bs-dark);
  padding: 0.4rem;
}
.card-image {
  position: relative;
}
.card-image-side-order {
  height: 100px;
  width: 100px;
}
.card-image-side-order a {
  display: block;
  width: 100%;
  height: 100%;
}
.card-img-relative {
  display: inline-block;
}
.card-img-popover {
  padding: 0.2rem 0.3rem;
  position: absolute;
  top: 4px;
  right: -25px;
}
.card-footer {
  padding-top: 0;
}
@media (max-width: 400px) {
  .card-footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
    flex-wrap: nowrap;
    overflow: visible;
  }
}

button[aria-expanded=true] .chevron-down {
  display: none;
}
button[aria-expanded=false] .chevron-up {
  display: none;
}

.breadcrumb {
  background: none;
}

.header_price {
  color: var(--bs-primary);
  font-size: smaller;
}

.bg-card {
  background-color: transparent;
}

.no-pointers {
  pointer-events: none;
}

.preparation-method {
  width: 230px;
}
.preparation-radio-button {
  max-width: 100px;
  min-width: 90px;
}

.sideorder-btn {
  width: 24px;
  height: 24px;
}
.sideorder-op:hover {
  border-color: transparent !important;
}

.article-detail-info-button {
  padding: 2px !important;
}
.article-detail-info-button a {
  padding: 0 !important;
}

.information-icon {
  padding: 2px;
}
@media (max-width: 48em) {
  .information-icon {
    width: 20px;
    height: 20px;
  }
}

.btn-check:checked label {
  color: var(--bs-dark) !important;
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

.select-radio {
  color: var(--bs-dark);
  background-color: var(--bs-secondary) !important;
  border: 1.5px solid var(--bs-dark) !important;
}
.select-radio:hover {
  color: var(--bs-light);
  background-color: var(--bs-primary) !important;
  border: none !important;
}

.radio-button {
  background: transparent;
  color: #000;
  border: 0;
}

.dropdown-menu {
  min-width: 150px;
}

.article-description {
  font-size: small;
  word-break: break-word;
  hyphens: auto;
}

.article-teaser {
  word-break: break-word;
  hyphens: auto;
}

#collapseDescription {
  min-height: 9rem;
}

.article-quantity-list {
  width: 1.5rem;
}

.article-list-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  margin: 0 1rem;
  border-bottom: 1.5px solid var(--bs-dark);
}
.article-list-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0.5rem;
  max-width: 50px;
  max-height: 50px;
}
@media (min-width: 992px) {
  .article-list-image {
    max-width: 100px;
    max-height: 100px;
  }
}
.article-list-name {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 30%;
}
@media (min-width: 48em) {
  .article-list-name {
    width: 6rem;
  }
}
.article-list-teaser {
  display: none;
  align-items: center;
  justify-content: start;
  padding-right: 1rem;
}
@media (min-width: 62em) {
  .article-list-teaser {
    display: flex;
    width: 50%;
  }
}
.article-list-price {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 4rem;
}
.article-list-input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
}
.article-list-input .input-group {
  display: flex;
  flex-direction: column;
}
.article-list-input .input-quantity-list {
  width: 3rem;
  height: 1.5rem;
  margin: 0;
  text-align: center;
  border: 1.5px solid var(--bs-dark);
  border-radius: 0.5rem !important;
}
@media (min-width: 48em) {
  .article-list-input .input-quantity-list {
    width: 4rem;
    height: 2.5rem;
  }
}
.article-list-input .input-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  border: none;
  border-radius: 0.5rem !important;
  box-shadow: none;
  background-color: transparent;
}
.article-list-input .input-button .button-icon {
  width: 3rem;
  height: auto;
  padding: 0.2rem;
}
@media (min-width: 48em) {
  .article-list-input .input-button .button-icon {
    width: 4rem;
    height: auto;
  }
}

.container-menu {
  container-type: inline-size;
  container-name: container-menu;
}

.retail-list-row {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 10px;
  align-items: center;
  padding: 1rem 0;
  margin: 0 1rem;
  border-bottom: 1.5px solid var(--bs-dark);
}
.retail-list-image {
  max-width: 200px;
  max-height: 200px;
}
.retail-list-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.retail-list-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding: 0 0 0 1rem;
  width: 100%;
}
.retail-list-name {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.retail-list-teaser {
  margin-bottom: 0.5rem;
  word-break: break-word;
  hyphens: auto;
}
.retail-list-price {
  justify-self: center;
  align-self: center;
  margin-right: 0.5rem;
}
.retail-list-input {
  display: none;
  align-self: flex-end;
}
.retail-list-input .input-group {
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
}
.retail-list-input .input-group input {
  width: 3rem;
  height: 2rem;
  text-align: center;
  border: 1.5px solid var(--bs-dark);
  border-radius: 0.5rem;
}
.retail-list-input .input-group button {
  border: none;
  padding: 0 0.5rem !important;
  border-radius: 0.5rem;
}
.retail-list-input .input-group button img {
  padding: 0.3rem;
  width: 32px;
  height: 32px;
}
.retail-list-input-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.retail-list-input-column-price {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.retail-list-input-column .input-group {
  border-radius: 0.5rem !important;
}
.retail-list-input-column .input-quantity-list {
  width: 4rem;
  height: 2.5rem;
  border: 1.5px solid var(--bs-dark);
}
.retail-list-input-column .input-button {
  border: none;
  padding: 0 0.3rem !important;
  border-radius: 0.5rem;
}
.retail-list-input-column .input-button .button-icon {
  width: 4rem;
  height: 2.5rem;
  padding: 0.3rem;
}

@container container-menu (width < $breakpoint-md) {
  .retail-list-row {
    grid-template-columns: 100px 1fr;
  }
  .retail-list-image {
    max-width: 100px;
    max-height: 100px;
  }
  .retail-list-input-column {
    display: none;
  }
  .retail-list-input {
    display: flex;
    margin-top: 1rem;
  }
}
#container-agb img {
  height: 2rem;
}
@media (min-width: 48em) {
  #container-agb img {
    height: 2.5rem;
  }
}
@media (min-width: 62em) {
  #container-agb img {
    height: 3rem;
  }
}

@media (min-width: 48em) {
  .logo-oktopos img {
    width: 3rem;
  }
}
@media (min-width: 62em) {
  .logo-oktopos img {
    width: 6rem;
  }
}

.footer-legal {
  margin-bottom: 0 !important;
}

#customer-form-container {
  scroll-margin-top: 200px;
}

.container-payment {
  max-width: 850px;
}

.icon-payment {
  width: 90px;
  height: auto;
}
@media (min-width: 500px) {
  .icon-payment {
    width: 100px;
    height: auto;
  }
}
@media (min-width: 48em) {
  .icon-payment {
    width: 70px;
    height: auto;
  }
}
@media (min-width: 62em) {
  .icon-payment {
    width: 120px;
    height: auto;
  }
}
.icon-payment-creditcard {
  width: 60px;
  height: auto;
}
@media (min-width: 500px) {
  .icon-payment-creditcard {
    width: 75px;
    height: auto;
  }
}
@media (min-width: 48em) {
  .icon-payment-creditcard {
    width: 55px;
    height: auto;
  }
}
@media (min-width: 62em) {
  .icon-payment-creditcard {
    width: 100px;
    height: auto;
  }
}

.checkout-fields {
  margin-top: 20px;
  margin-bottom: 20px;
}
.checkout-button {
  width: 110px;
  height: 110px;
  border-radius: 20px;
}
@media (min-width: 500px) {
  .checkout-button {
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 48em) {
  .checkout-button {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 62em) {
  .checkout-button {
    width: 150px;
    height: 150px;
  }
}
.checkout-button-wider {
  width: 80vw;
  padding: 1rem 3rem;
}
.checkout-input {
  border: 1.5px solid #000 !important;
}

.payment-input {
  border: 1.5px solid #000 !important;
}
.payment-label {
  width: 130px;
  margin-left: auto;
  margin-right: auto;
  hyphens: auto;
}
@media (min-width: 800px) {
  .payment-label {
    width: 150px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 100em) {
  .payment-label {
    width: 170px;
    margin-left: auto;
    margin-right: auto;
  }
}
.payment-select {
  border: 1.5px solid #000;
  font-size: 1.35rem;
  width: 99%;
}
@media (min-width: 520px) {
  .payment-select {
    font-size: 1.15rem;
  }
}
@media (min-width: 62em) {
  .payment-select {
    font-size: 1rem;
  }
}

.credit-card {
  margin-right: 15px;
  padding: 2px;
}
.credit-card-visa {
  height: 20px;
}
.credit-card-highlighted {
  outline: 2px solid cornflowerblue;
}
.credit-card:last-child {
  margin-right: 0;
}

.email-optional {
  width: 50%;
  margin: auto;
}

.customer-input {
  border: 1.5px solid #000 !important;
}

.accept-terms:checked + label {
  color: var(--bs-dark) !important;
  background-color: var(--bs-secondary) !important;
  border-color: var(--bs-primary) !important;
}

.card-types-line {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}

#shop-home-link {
  display: flex;
  align-items: center;
  background-color: var(--bs-secondary);
  color: var(--bs-dark);
  padding: 2rem 4rem;
  border-radius: 1rem;
  border: 1.5px solid var(--bs-dark);
}
#shop-home-link span {
  display: inline-block;
  align-items: center;
  padding-left: 1rem;
}

.modal-title span {
  display: inline-block;
  padding-left: 2rem;
}

.button-wider-outer-div {
  display: flex;
  justify-content: center;
  align-content: center;
}

.payment-buttons:has(.button-wider-outer-div) {
  justify-content: center !important;
  padding-top: 0 !important;
}

.payment-select-message:has(+ .payment-buttons .button-wider-outer-div) {
  display: none;
}

.filter-button {
  margin: 0.3rem auto !important;
  display: block;
  width: 90%;
  font-size: large;
  color: var(--bs-dark);
  padding: 0.5rem 1rem;
}
.filter-button-input {
  display: block;
}
.filter-button-input + label {
  background-color: transparent !important;
  border-color: var(--bs-dark) !important;
}
.filter-button-input:checked + label {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}
.filter-button:hover {
  color: var(--bs-dark) !important;
  background-color: var(--bs-secondary) !important;
  border-color: var(--bs-dark) !important;
}
.filter-footer-button {
  width: 45%;
}

input:checked + .filter-button:hover {
  color: var(--bs-dark) !important;
  background-color: var(--bs-primary) !important;
}

.modal-footer-sticky {
  position: sticky;
  bottom: 0;
  background-color: inherit; /* [1] */
  z-index: 1055; /* [2] */
}

.filtered-item-image {
  position: relative;
  bottom: 1rem;
}

.tip-label {
  font-size: 1.75rem;
  text-align: start;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-weight: 400;
}
.tip-container {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 588px) {
  .tip-container {
    justify-content: space-around;
  }
}
@media (min-width: 850px) {
  .tip-container {
    justify-content: space-around;
  }
}
@media (min-width: 1350px) {
  .tip-container {
    justify-content: space-between;
  }
}
.tip-container input {
  height: auto;
  padding-bottom: 0.7rem;
  flex: 0 0 auto !important;
}
.tip-container input[type=radio] {
  display: none;
}
.tip-input {
  height: 5rem;
  max-width: 14rem;
  font-size: larger;
  margin-top: 3rem;
  justify-content: end;
  width: auto;
}
@media (min-width: 500px) {
  .tip-input {
    width: 100%;
  }
}
@media (min-width: 614px) {
  .tip-input {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .tip-input {
    width: auto;
    margin-top: 3rem;
  }
}
@media (min-width: 850px) {
  .tip-input {
    width: 100%;
    margin-top: 0;
  }
}
@media (min-width: 1350px) {
  .tip-input {
    width: auto;
    margin-top: 0;
  }
}
.tip-input:active, .tip-input:hover {
  filter: brightness(120%);
}
.tip-input-method {
  font-size: 1.75rem;
  width: 3rem !important;
  background-color: var(--bs-secondary);
}
.tip-input input {
  width: 5rem !important;
}
.tip-input button {
  width: 5rem !important;
}
.tip-method-select {
  display: flex;
  margin-bottom: 3rem;
}
@media (min-width: 500px) {
  .tip-method-select {
    margin-left: auto;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .tip-method-select {
    margin-left: 0;
    margin-bottom: 0;
    width: auto;
  }
}
@media (min-width: 850px) {
  .tip-method-select {
    margin-left: auto;
    margin-bottom: 3rem;
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 1350px) {
  .tip-method-select {
    margin-left: 0;
    margin-bottom: 0;
    width: auto;
  }
}
.tip-method-select > div {
  padding-left: 2rem;
}
.tip-percent {
  height: 5rem !important;
  width: 6rem;
  background-color: var(--bs-secondary);
  color: var(--bs-dark);
  border-radius: var(--bs-border-radius);
  padding: 1rem 1.5rem;
  border: 0;
  box-shadow: var(--bs-box-shadow);
}
.tip-percent-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: 300px;
}
@media (min-width: 500px) {
  .tip-percent-row {
    width: auto;
  }
}
@media (min-width: 768px) {
  .tip-percent-row {
    width: 500px;
  }
}
@media (min-width: 850px) {
  .tip-percent-row {
    width: auto;
  }
}
.tip-percent:not(:last-child) {
  margin-right: 1rem;
}
.tip-percent-group {
  display: flex;
  align-items: center;
}
.tip-percent-group label {
  font-size: 1.75rem;
  padding-left: 0.5rem;
}
.tip-percent:active, .tip-percent:hover {
  color: var(--bs-light);
  background-color: var(--bs-success);
}
.tip-value-group {
  display: flex;
  align-items: center;
}
.tip-value-group label {
  font-size: 1.75rem;
  padding-left: 0.5rem;
}
.tip-icon-submit {
  width: 40px;
  height: 40px;
}

#tipAmountInput::-webkit-outer-spin-button,
#tipAmountInput::-webkit-inner-spin-button,
#tip-method::-webkit-outer-spin-button,
#tip-method::-webkit-inner-spin-button {
  display: none !important;
}

#tipAmountInput {
  font-size: 1.75rem;
}

#tip-icon-percent-inactive,
#tip-icon-value-active {
  display: none;
}

#tip-icon-percent-active,
#tip-icon-value-inactive {
  display: inline-block;
}

.disclaimer-container {
  margin-top: 0.25rem;
  border-radius: 0.3rem;
  background-color: transparent;
  padding: 0.5rem;
  font-size: 60%;
  line-height: 0.55rem;
}

.comment-disclaimer {
  word-break: break-word;
  hyphens: auto;
}

@media (min-width: 48em) {
  .check-input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
}

.checkout-input {
  background-color: var(--bs-white);
  margin: 0 1.25rem;
  width: calc(100% - 2.5rem);
  padding: 0.5rem;
}
@media (min-width: 576px) {
  .checkout-input {
    margin: 0;
    width: 100%;
  }
}
.checkout-input-label > label {
  margin: 0 1.25rem;
  padding: 0;
}
@media (min-width: 576px) {
  .checkout-input-label > label {
    margin: 0;
  }
}

.basket-footer-button.animate {
  animation: scaleUp 1s ease-in-out;
  transform-origin: bottom right;
}

.warning-checkout {
  word-break: break-word;
  hyphens: auto;
}
.warning-top {
  display: flex !important;
}
.warning-inline {
  display: none !important;
}
.warning-incomplete-checkout {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bs-dark);
  padding: 0.3rem 1rem;
  border-radius: 10px;
  width: 13rem;
  grid-column: 6/8;
  justify-self: end;
}
.warning-incomplete-checkout img {
  width: 30px;
  height: 30px;
}
.warning-incomplete-checkout span {
  padding-left: 1rem;
}
.warning-incomplete-sidebar {
  cursor: pointer;
  position: relative !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 0 !important;
  padding: 1.5rem 0 1.5rem 0 !important;
}
.warning-incomplete-sidebar span {
  color: var(--bs-dark) !important;
}
@container basket-container (min-width: 400px) {
  .warning-top {
    display: none !important;
  }
  .warning-inline {
    display: flex !important;
    border-bottom: none;
  }
}

.basket-grid-container {
  display: grid;
  grid-template-columns: 5rem 10rem auto 45px 150px repeat(2, auto);
  align-items: center;
  width: 100%;
}
@media (min-width: 62em) {
  .basket-grid-container {
    grid-template-columns: 6.5rem 15rem auto 45px 150px repeat(2, auto);
  }
}
@media (min-width: 75em) {
  .basket-grid-container {
    grid-template-columns: 6.5rem 20rem auto 45px 150px repeat(2, auto);
  }
}
@media (min-width: 100em) {
  .basket-grid-container {
    grid-template-columns: 6.5rem 30rem auto 45px 150px repeat(2, auto);
  }
}

.column-header {
  display: flex;
  align-items: center;
  min-height: 75px;
  font-weight: 600;
  padding: 0.5rem 0;
  border-top: 1.5px solid var(--bs-dark);
}

.basket-grid-row {
  display: contents;
  padding: 0.5rem 0;
}

.row-borders {
  grid-column: 1/8;
  border-color: var(--bs-dark) !important;
}

.data-usage {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  padding: 0.5rem 0 0.5rem 0;
  font-size: 0.8rem;
}

.email-optional {
  min-width: 80%;
}

.invoice-via-email {
  background-color: #eee;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 0.3rem;
  font-size: 0.8rem;
  word-break: break-word;
  hyphens: auto;
}

.container-side-order-tunnel {
  width: 100%;
}
@media (min-width: 48em) {
  .container-side-order-tunnel {
    width: 75%;
    margin: 0 auto;
  }
}
@media (min-width: 62em) {
  .container-side-order-tunnel {
    width: 75%;
    margin: 0 auto;
  }
}
@media (min-width: 75em) {
  .container-side-order-tunnel {
    width: 50%;
    margin: 0 auto;
  }
}
.container-preparation-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.side-order-step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem 1rem 2rem;
}
.side-order-buttons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 17rem;
  gap: 0.7rem;
}
@media (min-width: 48em) {
  .side-order-buttons {
    margin-left: 2rem;
  }
}
.side-order-tunnel-header {
  position: sticky;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bs-white);
  z-index: 1;
}
.side-order-tunnel-placeholder {
  margin: 0;
  padding: 0;
  height: 12rem;
  width: 100vw;
}
.side-order-current-selection {
  display: flex;
  flex-wrap: nowrap;
  align-items: start;
  padding: 0;
  gap: 3px;
}
.side-order-selection {
  position: relative;
  padding-right: 5px;
  cursor: pointer;
  min-width: 80px;
}
.side-order-selection-quantity {
  position: absolute;
  font-size: 0.9rem;
  top: 5px;
  left: 0;
  width: 21px;
  height: 21px;
  padding: 4px 0 0 0;
  background-color: var(--bs-primary);
  border-radius: 50%;
}

.btn-sideorder {
  position: relative;
  background-color: transparent;
  color: var(--bs-dark);
}
.btn-sideorder img {
  display: block;
  max-width: 100%;
  height: auto;
  position: relative;
}
.btn-sideorder a {
  display: inline-block;
  z-index: 1000;
  position: absolute;
  top: 30%;
  text-decoration: none;
  color: var(--bs-dark);
}
.btn-sideorder:hover {
  background-color: var(--bs-danger);
  border-color: var(--bs-danger);
}
.btn-sideorder:hover a {
  color: var(--bs-light);
}
.btn-prev-inner {
  left: 30%;
}
.btn-next-inner {
  left: 15%;
}
.btn-step-nav {
  width: 8rem;
}
.btn-side-order-mask {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: -100;
}
.btn-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.3;
  filter: saturate(0%);
}
.btn-next-flash {
  animation: flash 1s infinite;
  background-color: var(--bs-info);
  border-color: var(--bs-info);
}
.btn-next-flash a {
  color: var(--bs-light);
}
.btn-flash {
  animation: flash 1s infinite;
  background-color: var(--bs-danger);
  border-color: var(--bs-danger);
}
.btn-flash a {
  animation: flashText 1s infinite;
}
.btn-prev.btn-flash {
  background-color: var(--bs-danger);
  border-color: var(--bs-danger);
}
.btn-next.btn-flash {
  background-color: var(--bs-success);
  border-color: var(--bs-success);
}

.card-side-container > card {
  box-shadow: 10px 10px 5px var(--bs-dark);
}

.sideorders-selected {
  margin: 0 1rem;
}

@keyframes flash {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: var(--bs-success);
  }
}
@keyframes flashText {
  0%, 100% {
    color: var(--bs-dark);
  }
  50% {
    color: var(--bs-light);
  }
}
.remove-icon {
  position: absolute;
  font-size: 0.9rem;
  height: 20px;
  width: 20px;
  left: 33px;
  top: 6px;
  background-color: var(--bs-white);
  border-radius: 50%;
}

.tunnel-basket {
  display: flex;
  flex-direction: row;
  justify-content: start;
  flex-wrap: wrap;
}

.incomplete .incomplete-hide {
  display: none;
}

.warning-checkout {
  text-align: start;
}
.warning-tooltip {
  --bs-tooltip-bg: var(--bs-danger);
}
@media (min-width: 75em) {
  .warning-tooltip {
    display: none;
  }
}
.warning-incomplete {
  cursor: pointer;
  position: absolute;
  top: 2.5rem;
  left: -0.2rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}
.warning-incomplete span {
  transform: translate(0, 0.5rem);
  color: var(--bs-dark);
}
@container basket-container (max-width: 400px) {
  .warning-incomplete {
    position: relative;
    top: 0;
    padding: 1.5rem 0 1.5rem 0 !important;
  }
  .warning-incomplete span {
    text-align: center;
  }
}
.warning-incomplete-desktop {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  max-width: 10rem;
  margin-right: 3rem;
  justify-content: end;
}
.warning-incomplete-desktop span {
  padding-left: 1rem;
  color: var(--bs-dark);
  max-width: 6rem;
}

.basket-item-row {
  position: relative;
}

.op-edit, .op-delete {
  position: relative;
  z-index: 100;
}

.incomplete-items-warning-container {
  border-radius: 10px;
  margin-top: 2rem;
}
.incomplete-items-warning-container form {
  display: flex;
  justify-content: center;
}
.incomplete-items-warning-container button {
  margin-top: 1rem;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  background-color: var(--bs-secondary);
}

.preparation-method-buttons {
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 1rem;
  padding-top: 2rem;
}
.preparation-method-radio-button {
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 20px;
  border: 1.5px solid var(--bs-dark);
  width: 100%;
  text-align: start;
  text-wrap: nowrap;
}

input[type=radio]:checked + label.preparation-method-radio-button {
  background-color: var(--bs-primary);
  color: var(--bs-dark);
  border-color: var(--bs-primary);
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
.side-order-selection-quantity.animated {
  animation: scaleUp 1s ease-in-out;
}

@keyframes moveToBasket {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--end-x) - var(--start-x)), calc(var(--end-y) - var(--start-y))) scale(0.5);
  }
}
.image-fly {
  position: absolute;
  z-index: 1000;
  animation: moveToBasket 1s forwards;
}

.op-sideorder-alternative-btn {
  color: var(--bs-body-color);
  border-color: var(--bs-body-color);
}
.op-sideorder-alternative-btn:hover {
  color: var(--bs-btn-active-color) !important;
  border-color: var(--bs-body-color);
  background-color: var(--bs-primary) !important;
}

.age-modal-title {
  padding: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.age-verification-modal-body {
  padding: 1rem;
}

.age-input {
  min-width: 3rem;
  height: 3rem;
  border: 1.5px solid var(--bs-primary);
  margin: 0.5rem;
  text-align: center;
}
@media (min-width: 400px) {
  .age-input {
    width: 4rem;
    height: 4rem;
  }
}
@media (min-width: 62em) {
  .age-input {
    width: 5rem;
    height: 5rem;
  }
}

#age-row {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 1rem 3rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.remember-year-container {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-content: center;
  width: 90%;
  margin: 0 auto;
}
