@font-face {
  font-family: tt-regular;
  src: url("/assets/fonts/TTNorms-Regular.woff2") format("opentype");
}
@font-face {
  font-family: tt-light;
  src: url("/assets/fonts/TTNorms-Light.woff2") format("opentype");
}
@font-face {
  font-family: tt-medium;
  src: url("/assets/fonts/TTNorms-Medium.woff2") format("opentype");
}
@font-face {
  font-family: tt-bold;
  src: url("/assets/fonts/TTNorms-Bold.woff2") format("opentype");
}
@font-face {
  font-family: tt-extrabold;
  src: url("/assets/fonts/TTNorms-ExtraBold.woff2") format("opentype");
}
.header {
  background-color: black;
  padding: 1.5rem 0 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
.header__logo {
  height: 35px;
}
.header__logo--newtab {
  width: 20px;
  margin-left: 14px;
  margin-top: -4px;
}
.header__name {
  font-family: tt-bold;
  color: white;
  margin: 0;
}
.header__name--role {
  font-family: tt-regular;
}
.header__wrapper {
  display: flex;
  align-items: center;
}
.header__wrapper--settings {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  margin-right: 6px;
}
.header__logout {
  color: white;
  text-decoration: none;
  position: relative;
  font-family: tt-regular;
}
.header__logout:hover {
  color: white;
  text-decoration: underline;
}
.header__logout::after {
  content: "";
  background: url("/assets/img/logout.svg") no-repeat center/15px;
  width: 15px;
  height: 25px;
  display: block;
  position: absolute;
  top: 57%;
  transform: translateY(-50%);
  left: -20px;
}

html {
  scroll-behavior: smooth;
  position: relative;
  font-family: "TT Norms", sans-serif;
}

body {
  font-weight: 400;
  margin: 0;
  padding: 0;
  font-variant-ligatures: no-common-ligatures;
  background-color: #F5F5F5;
  font-family: "TT Norms", sans-serif;
}

h1 {
  font-family: tt-bold;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

h2 {
  font-family: tt-bold;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

p {
  font-family: tt-regular;
}

span {
  font-family: tt-regular;
}

button {
  font-family: tt-regular;
}

strong {
  font-family: tt-bold;
}

a {
  color: black;
  transition: all 0.35s ease-in-out;
  text-decoration: none;
  font-family: tt-regular;
}
a:hover {
  color: black;
  transition: all 0.35s ease-in-out;
}

input[type=text], input[type=email], input[type=number] {
  font-variant-ligatures: no-common-ligatures;
}

textarea {
  width: 100%;
  border: 0;
  border-radius: 6px;
  background-color: #F5F5F5;
  padding: 1rem;
  font-family: tt-light;
  resize: none;
  font-variant-ligatures: no-common-ligatures;
}
textarea:focus-visible {
  outline: none;
}

.row > * {
  padding-left: 8px;
  padding-right: 8px;
}

.bg-black {
  background-color: black;
}

.highlight-text {
  color: #c8b595;
  font-family: tt-bold;
  font-size: 1.5rem;
}

.container__wrapper {
  padding: 1rem;
  background-color: white;
  border-radius: 6px;
}

.form-control {
  font-variant-ligatures: no-common-ligatures;
}

.breadcrumb__item {
  position: relative;
  margin-right: 32px;
}
.breadcrumb__item:hover {
  text-decoration: underline;
}
.breadcrumb__item::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 20px;
  height: 10px;
  display: block;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  pointer-events: none;
}
.breadcrumb__item:last-of-type::after {
  display: none;
}

.btn {
  background-color: #A80932;
  border-radius: 6px;
  color: white;
  font-family: tt-regular;
  padding: 0.1rem 1.6rem;
  transition: all 0.35s ease-in-out;
  font-variant-ligatures: no-common-ligatures;
  cursor: pointer;
  border: 0;
}
@media (max-width: 1200px) {
  .btn {
    font-size: 0.9rem;
  }
}
.btn:hover {
  transition: all 0.35s ease-in-out;
  background-color: #c8b595;
  color: white;
}
.btn.neg {
  color: black;
  background-color: transparent;
  border: 1px solid black;
}

label {
  font-family: tt-regular;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked + label::after {
  background: url("/assets/img/select-active.svg") no-repeat center/15px;
}
input[type=checkbox] + label {
  cursor: pointer;
  font-family: tt-bold;
  position: relative;
  margin-left: 1.7rem;
  font-size: 1rem;
  height: fit-content;
}
input[type=checkbox] + label::after {
  content: "";
  background: url("/assets/img/select-inactive.svg") no-repeat center/15px;
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dashboard__select {
  position: relative;
  width: fit-content;
  font-size: 2rem;
  font-family: tt-bold;
}
.dashboard__select::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 17px;
  height: 15px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}
.dashboard__select--content {
  border: 0;
  background-color: transparent;
  appearance: none;
  margin-left: 20px;
  line-height: 1.2;
  cursor: pointer;
}
.dashboard__opening {
  display: flex;
  margin-bottom: 1rem;
}
.dashboard__opening input[type=radio] {
  display: none;
}
.dashboard__opening input[type=radio]:checked + label.open {
  color: #29A335;
}
.dashboard__opening input[type=radio]:checked + label.open::before {
  content: "";
  background: url("/assets/img/store-open.svg") no-repeat center/15px;
}
.dashboard__opening input[type=radio]:checked + label.closed {
  color: #A80932;
}
.dashboard__opening input[type=radio]:checked + label.closed::before {
  content: "";
  background: url("/assets/img/store-closed.svg") no-repeat center/15px;
}
.dashboard__opening label {
  position: relative;
  font-family: tt-regular;
  cursor: pointer;
}
.dashboard__opening label.open {
  margin-right: 40px;
  margin-left: 1.7rem;
}
.dashboard__opening label.open, .dashboard__opening label.closed {
  color: black;
}
.dashboard__opening label.open::before, .dashboard__opening label.closed::before {
  content: "";
  background: url("/assets/img/select-inactive.svg") no-repeat center/15px;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
}
.dashboard__wrapper--shortcuts--time {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.dashboard__wrapper--shortcuts--time p {
  margin-bottom: 0;
}
.dashboard__wrapper--shortcuts--time--button {
  display: flex;
  align-items: center;
}
.dashboard__wrapper--shortcuts--time--button--timer {
  margin: 0 12px;
}
.dashboard__wrapper--shortcuts--time--button .negative {
  background-color: transparent;
  border: 0;
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 23px;
  height: 12px;
  transform: rotateZ(90deg);
  padding: 0;
}
.dashboard__wrapper--shortcuts--time--button .positive {
  background-color: transparent;
  border: 0;
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 23px;
  height: 12px;
  transform: rotateZ(-90deg);
  padding: 0;
}
.dashboard__wrapper--shortcuts--onlydeliver {
  margin-bottom: 1rem;
}
.dashboard__wrapper--shortcuts--notice label {
  margin-bottom: 1rem;
}
.dashboard__wrapper--orders--header {
  border-bottom: 2px solid #D9D9D9;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.dashboard__wrapper--orders--header p {
  font-family: tt-bold;
  margin-bottom: 0.5rem;
}
.dashboard__wrapper--orders--order {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.dashboard__wrapper--orders--order:last-of-type {
  margin-bottom: 0;
}
.dashboard__wrapper--orders--order p {
  font-size: 0.8rem;
  margin-bottom: 0;
}
.dashboard__wrapper--orders--order--customer--name {
  color: #A0A0A0;
}
.dashboard__wrapper--orders--order--customer--number {
  color: #A0A0A0;
}
.dashboard__wrapper--orders--order--customer--img {
  height: 40px;
}
.dashboard__wrapper--orders--order--customer--street {
  padding-right: 0.1rem;
}
.dashboard__wrapper--allorders {
  display: flex;
  justify-content: flex-end;
}
.dashboard__subnav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  margin-top: 2rem;
}
.dashboard__subnav--item {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 6px;
  margin-right: 0.8rem;
  margin-bottom: 0.5rem;
  padding: 0.1rem 2rem;
  cursor: pointer;
}
.dashboard__subnav--item p {
  margin-bottom: 0;
}
.dashboard__subnav--item img {
  height: 15px;
  margin-right: 0.5rem;
}

.edit-areas__title {
  display: flex;
}
.edit-areas__title--img {
  width: 31px;
  height: 35px;
  margin-right: 15px;
}
.edit-areas__add--button img {
  width: 30px;
  margin: 1rem 0 1rem 16px;
}
.edit-areas__add--wrapper {
  display: flex;
}
.edit-areas__add--wrapper input[type=text] {
  border: 0;
  background-color: #F5F5F5;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
}
.edit-areas__add--wrapper input[type=text]:focus-visible {
  outline: none;
}
.edit-areas__add--wrapper .border-left {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.edit-areas__add--wrapper .border-right {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.edit-areas__add--wrapper--search {
  position: relative;
  width: 200px;
}
@media (max-width: 1200px) {
  .edit-areas__add--wrapper--search {
    width: 140px;
  }
}
.edit-areas__add--wrapper--search::after {
  position: absolute;
  content: "";
  background: url("/assets/img/search.svg") no-repeat center/15px;
  width: 15px;
  height: 15px;
  display: block;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.edit-areas__add--wrapper--search input[type=text] {
  background-color: #F5F5F5;
  border: 0;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
  border-radius: 6px;
}
.edit-areas__add--wrapper--search input[type=text]:focus-visible {
  outline: none;
}
.edit-areas__streets {
  background: #F5F5F5;
  height: 500px;
  border-radius: 6px;
  overflow-y: scroll;
  padding: 1rem 0;
}
.edit-areas__streets--street {
  display: flex;
}
.edit-areas__streets--street--item {
  padding: 0 1rem;
}
.edit-areas__streets--street--item:last-of-type {
  display: flex;
  justify-content: flex-end;
}
.edit-areas__streets--street--item a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.35s ease-in-out;
}
.edit-areas__streets--street--item a:hover {
  background-color: #c5c7cd;
  transition: all 0.35s ease-in-out;
}
.edit-areas__streets--street--item a img {
  width: 20px;
  height: 20px;
}
.edit-areas__delete {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.edit-areas__delete--wrapper {
  background-color: white;
  width: 443px;
  padding: 2rem;
  position: relative;
  border-radius: 6px;
}
.edit-areas__delete--wrapper--title {
  font-size: 1.5rem;
  font-family: tt-bold;
}
.edit-areas__delete--wrapper--img {
  position: absolute;
  top: -25px;
  right: 50%;
  transform: translateX(50%);
  width: 50px;
  height: 50px;
}
.edit-areas__delete--wrapper--line {
  position: absolute;
  top: 0;
  width: 450px;
  right: 50%;
  transform: translateX(50%);
}

.allergen input[type=text] {
  border: 0;
  background-color: #F5F5F5;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
  border-radius: 6px;
}
.allergen input[type=text]:focus-visible {
  outline: none;
}
.allergen label {
  width: 30%;
}
.allergen__wrapper {
  display: flex;
  margin-bottom: 0.5rem;
  align-items: center;
  padding: 0 0.3rem;
}

.category .container__wrapper {
  width: 100%;
}
.category input[type=text],
.category input[type=number] {
  border: 0;
  background-color: #F5F5F5;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
  border-radius: 6px;
}
.category input[type=text]:focus-visible,
.category input[type=number]:focus-visible {
  outline: none;
}
.category label {
  width: 75%;
}
.category__title {
  font-family: tt-bold;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.category__options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.category__options input[type=checkbox] + label {
  font-family: tt-regular;
  width: 22%;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  height: fit-content;
}
.category__img--wrapper--highlight--img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  position: relative;
}
.category__img--wrapper--edit {
  position: absolute;
  bottom: 0;
  right: 0;
}
.category__img--wrapper--edit.highlight {
  bottom: 1rem;
  right: 1rem;
}
.category__img--wrapper--edit--button {
  border: 0;
  background-color: white;
  border-radius: 6px;
  position: relative;
  width: 30px;
  height: 30px;
}
.category__img--wrapper--edit--button::after {
  content: "";
  background: url("/assets/img/edit-red.svg") no-repeat center/20px;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translate(50%, -50%);
  position: absolute;
  right: 50%;
}
.category__wrapper {
  display: flex;
  margin-bottom: 0.5rem;
  align-items: center;
  padding: 0 0.3rem;
}
.category__wrapper p {
  width: 28%;
  margin-bottom: 0;
}
.category__wrapper--select {
  position: relative;
  background: #F5F5F5;
  border-radius: 6px;
  width: 100%;
}
.category__wrapper--select.small {
  width: 32%;
  margin-right: 0.3rem;
}
.category__wrapper--select.small:last-of-type {
  margin-right: 0;
}
.category__wrapper--select::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  display: block;
  width: 15px;
  height: 11px;
  position: absolute;
  right: 8px;
  top: 55%;
  transform: translateY(-50%);
}
.category__wrapper--select select {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 6px;
  background-color: #f5f5f5;
  width: 100%;
  padding: 0.1rem 1rem 0.1rem 1rem;
  height: 28px;
  font-family: tt-regular;
  font-variant-ligatures: no-common-ligatures;
  appearance: none;
}

.edit-content #editorjs {
  border: 0;
  border-radius: 6px;
  background-color: #F5F5F5;
  padding: 0.1rem 1rem;
  font-family: tt-regular;
  width: 100%;
}
.edit-content input {
  border: 0;
  border-radius: 6px;
  background-color: #F5F5F5;
  padding: 0.1rem 1rem;
  font-family: tt-regular;
  width: 100%;
}
.edit-content__select {
  position: relative;
  background: #F5F5F5;
  border-radius: 6px;
}
.edit-content__select select {
  background: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 6px;
  background-color: #f5f5f5;
  width: 100%;
  padding: 0.1rem 1rem;
  height: 28px;
  appearance: none;
}
.edit-content__select::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  display: block;
  width: 15px;
  height: 11px;
  position: absolute;
  right: 15px;
  top: 55%;
  transform: translateY(-50%);
}
.edit-content__list {
  padding: 0;
  list-style: none;
}
.edit-content__list__group-name {
  border-bottom: 1px solid gray;
  margin-bottom: 0.5rem;
}
.edit-content__list-item {
  padding-left: 1rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.edit-content__list-item__title__field-count {
  color: #aaa;
}
.edit-content__list--options {
  display: flex;
  list-style: none;
  justify-content: space-between;
  padding: 1rem;
}
.edit-content__list__footer:hover {
  transition: all 0.35s ease-in-out;
  color: #c8b595;
}

.entity__image__input {
  display: none;
}

.entity__image {
  border: 0;
  background: none;
  border-radius: 14px 14px 0 0;
  display: flex;
  padding: 0;
  position: relative;
  outline: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.entity__image i {
  background: #fff;
  border-radius: 50%;
  font-size: 20pt;
  padding: 8px;
  opacity: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease-in-out;
  top: 50%;
  left: 50%;
}

.empty-image {
  background: none;
  color: #ccc;
  display: flex;
  position: relative;
  align-items: stretch;
  justify-content: stretch;
  min-width: 250px;
  min-height: 250px;
  width: 100%;
  height: 100%;
}
.empty-image__wrapper {
  background: #eee;
  border-radius: 14px;
  border: 0;
  box-shadow: 0 15px 40px 0 rgba(166, 173, 201, 0.2), 0 5px 10px 0 rgba(154, 160, 185, 0.05);
  width: 100%;
}
.empty-image img {
  object-fit: cover;
  width: 100%;
}
.empty-image img[src=""] {
  display: none;
}
.empty-image img[src=""] + .icon {
  display: flex;
}
.empty-image .icon {
  display: none;
  color: #ccc;
  flex-direction: column;
  position: absolute;
  font-size: 13pt;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.empty-image .icon:hover i {
  opacity: 1;
}

.coupon .container__wrapper {
  width: 100%;
}
.coupon input[type=text] {
  border: 0;
  background-color: #F5F5F5;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
  border-radius: 6px;
}
.coupon input[type=text]:focus-visible {
  outline: none;
}
.coupon input[type=checkbox] {
  border: 0;
  background-color: #F5F5F5;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
  border-radius: 6px;
}
.coupon input[type=checkbox] + label {
  margin-left: 2.1rem;
  margin-right: 1rem;
}
.coupon__title {
  font-family: tt-bold;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.coupon__wrapper--inner {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.coupon__wrapper--inner p {
  width: 35%;
  margin-bottom: 0;
}
.coupon__wrapper--select {
  position: relative;
  background: #F5F5F5;
  border-radius: 6px;
  width: 100%;
}
.coupon__wrapper--select.small {
  width: 34%;
  margin-right: 3px;
}
.coupon__wrapper--select.small:last-of-type {
  margin-right: 0;
}
.coupon__wrapper--select::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  display: block;
  width: 15px;
  height: 11px;
  position: absolute;
  right: 8px;
  top: 55%;
  transform: translateY(-50%);
}
.coupon__wrapper--select select {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 6px;
  background-color: #f5f5f5;
  width: 100%;
  padding: 0.1rem 3rem 0.1rem 1rem;
  height: 28px;
  font-family: tt-regular;
  font-variant-ligatures: no-common-ligatures;
  appearance: none;
}
.coupon__wrapper--cart {
  display: flex;
}
.coupon__wrapper--cart--inner {
  display: flex;
  align-items: center;
}
.coupon__wrapper--cart input[type=text] {
  width: 33%;
}
.coupon__wrapper--availability {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.coupon__wrapper--availability--item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid black;
  border-radius: 6px;
  padding: 0rem 0.4rem 0 1rem;
  margin: 0 8px 8px 0;
}
.coupon__wrapper--availability--item p {
  margin-bottom: 0;
}
.coupon__wrapper--availability--item button {
  border: 0;
  background: transparent;
  width: 17px;
  height: 17px;
  display: flex;
  margin-left: 0.5rem;
}
.coupon__wrapper--availability--item button img {
  margin-top: 0.1rem;
}
.coupon__wrapper--availability--edit {
  background-color: transparent;
  border: 0;
  padding: 0;
  width: 20px;
  height: 20px;
}
.coupon__orders {
  display: flex;
  justify-content: space-between;
}
.coupon__orders--order p {
  margin-bottom: 0;
}

.edit-highlights-details__title {
  font-family: tt-bold;
  font-size: 1.3rem;
}
.edit-highlights-details__options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.edit-highlights-details__options input[type=checkbox] + label {
  font-family: tt-regular;
  width: 22.8%;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  height: fit-content;
}

.edit-highlights input[type=text] {
  border: 0;
  background-color: #F5F5F5;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
  border-radius: 6px;
}
.edit-highlights input[type=text]:focus-visible {
  outline: none;
}
.edit-highlights ul {
  padding-left: 1rem;
  font-family: tt-regular;
}
.edit-highlights ul li {
  margin-bottom: 0.5rem;
}
.edit-highlights hr {
  opacity: 0.3;
  background-color: black;
}
.edit-highlights .container__wrapper {
  flex-grow: 1;
}
.edit-highlights label {
  font-family: tt-regular;
  margin-right: 12px;
}
.edit-highlights__title {
  display: flex;
  align-items: center;
}
.edit-highlights__status {
  display: flex;
}
.edit-highlights__status p {
  margin-bottom: 0;
  margin-right: 12px;
}
.edit-highlights__status input[type=checkbox] {
  display: none;
}
.edit-highlights__status input[type=checkbox] + label {
  font-family: tt-regular;
}
.edit-highlights__status input[type=checkbox]:checked + label {
  color: #29A335;
}
.edit-highlights__status input[type=checkbox]:checked + label::after {
  content: "";
  background: url("/assets/img/store-open.svg") no-repeat center/15px;
}
.edit-highlights__categorys--title {
  font-family: tt-bold;
}
.edit-highlights__categorys--wrapper {
  display: flex;
  justify-content: space-between;
}
.edit-highlights__categorys--wrapper--inner {
  display: flex;
}
.edit-highlights__categorys--wrapper--category {
  border: 1px solid black;
  border-radius: 6px;
  padding: 0.2rem 0.8rem;
  margin-right: 0.5rem;
}
.edit-highlights__categorys--wrapper--category:last-of-type {
  margin-right: 0;
}
.edit-highlights__categorys--wrapper--category p {
  margin-bottom: 0;
}
.edit-highlights__categorys--wrapper--edit img {
  width: 20px;
  height: 20px;
}

.job label {
  width: 40%;
}
.job__title {
  font-family: tt-bold;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.job__wrapper {
  display: flex;
  margin-bottom: 0.5rem;
  align-items: center;
  padding: 0 0.3rem;
}
.job__wrapper--select {
  position: relative;
  background: #F5F5F5;
  border-radius: 6px;
  width: 100%;
}
.job__wrapper--select.small {
  width: 32%;
  margin-right: 0.3rem;
}
.job__wrapper--select.small:last-of-type {
  margin-right: 0;
}
.job__wrapper--select::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  display: block;
  width: 15px;
  height: 11px;
  position: absolute;
  right: 8px;
  top: 55%;
  transform: translateY(-50%);
}
.job__wrapper--select select {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 6px;
  background-color: #f5f5f5;
  width: 100%;
  padding: 0.1rem 3rem 0.1rem 1rem;
  height: 28px;
  font-family: tt-regular;
  font-variant-ligatures: no-common-ligatures;
  appearance: none;
}

.news .container__wrapper {
  width: 100%;
}
.news input[type=text] {
  border: 0;
  background-color: #F5F5F5;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
  border-radius: 6px;
}
.news input[type=text]:focus-visible {
  outline: none;
}
.news label {
  width: 40%;
}
.news__title {
  font-family: tt-bold;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.news__wrapper {
  display: flex;
  margin-bottom: 0.5rem;
  align-items: center;
  padding: 0 0.3rem;
}
.news__wrapper p {
  width: 28%;
  margin-bottom: 0;
}
.news__wrapper--select {
  position: relative;
  background: #F5F5F5;
  border-radius: 6px;
  width: 100%;
}
.news__wrapper--select.small {
  width: 32%;
  margin-right: 0.3rem;
}
.news__wrapper--select.small:last-of-type {
  margin-right: 0;
}
.news__wrapper--select::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  display: block;
  width: 15px;
  height: 11px;
  position: absolute;
  right: 8px;
  top: 55%;
  transform: translateY(-50%);
}
.news__wrapper--select select {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 6px;
  background-color: #f5f5f5;
  width: 100%;
  padding: 0.1rem 1rem 0.1rem 1rem;
  height: 28px;
  font-family: tt-regular;
  font-variant-ligatures: no-common-ligatures;
  appearance: none;
}
.news__img--wrapper--highlight--img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  position: relative;
}
.news__img--wrapper--edit {
  position: absolute;
  bottom: 0;
  right: 0;
}
.news__img--wrapper--edit.highlight {
  bottom: 1rem;
  right: 1rem;
}
.news__img--wrapper--edit--button {
  border: 0;
  background-color: white;
  border-radius: 6px;
  position: relative;
  width: 30px;
  height: 30px;
}
.news__img--wrapper--edit--button::after {
  content: "";
  background: url("/assets/img/edit-red.svg") no-repeat center/20px;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translate(50%, -50%);
  position: absolute;
  right: 50%;
}

.edit-overview h2 {
  margin-bottom: 1rem;
}
.edit-overview a {
  display: flex;
  width: 100%;
  margin-bottom: 16px;
}
.edit-overview__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  min-height: 78px;
}
.edit-overview__wrapper--img {
  width: 30px;
  height: 30px;
  margin-right: 1rem;
}
.edit-overview__wrapper--title {
  font-family: tt-bold;
  font-size: 1.3rem;
  margin-bottom: 0;
  line-height: 1;
}
.edit-overview__wrapper--subtitle {
  margin-bottom: 0;
}
.edit-overview__wrapper--handle {
  position: absolute;
  width: 12px;
  right: 12px;
  bottom: 10px;
}
.edit-overview__wrapper--sort {
  pointer-events: none;
  user-select: none;
  height: 115px;
  border: 1px dashed #ccc;
}
.edit-overview__wrapper--sort * {
  visibility: hidden;
}

.prices input[type=text] {
  border: 0;
  border-radius: 6px;
  background-color: #F5F5F5;
  padding: 0.1rem 1rem;
  font-family: tt-regular;
}
.prices input[type=text]:focus-visible {
  outline: none;
}
.prices__title {
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
}
.prices__title h1 {
  line-height: 1;
  margin: 0;
}
.prices__title--add {
  display: block;
  margin-left: 16px;
}
.prices__title--add img {
  width: 30px;
  height: 30px;
}
.prices__options {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  justify-content: space-between;
  position: sticky;
  top: 70px;
  background: white;
  padding: 1rem;
  margin: 0;
  margin-right: 0px;
  margin-left: 0px;
  margin-left: -16px;
  margin-right: -16px;
  z-index: 1;
}
.prices__options p {
  margin: 0;
}
.prices__options--pagination {
  display: flex;
}
.prices__options--pagination--button {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.prices__options--pagination--button--timer {
  margin: 0 12px;
}
.prices__options--pagination--button .negative {
  background-color: transparent;
  border: 0;
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 23px;
  height: 12px;
  transform: rotateZ(90deg);
  padding: 0;
}
.prices__options--pagination--button .positive {
  background-color: transparent;
  border: 0;
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 23px;
  height: 12px;
  transform: rotateZ(-90deg);
  padding: 0;
}
.prices__options--search {
  position: relative;
  width: 200px;
}
.prices__options--search::after {
  position: absolute;
  content: "";
  background: url("/assets/img/search.svg") no-repeat center/15px;
  width: 15px;
  height: 15px;
  display: block;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.prices__options--search input[type=text] {
  background-color: #F5F5F5;
  border-radius: 6px;
  border: 0;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
}
.prices__options--search input[type=text]:focus-visible {
  outline: none;
}
.prices__roles {
  display: flex;
  flex-wrap: wrap;
}
.prices__roles--role {
  padding: 0.1rem 1.6rem;
  margin-right: 12px;
  transition: all 0.35s ease-in-out;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.prices__roles--role.active {
  border: 1px solid black;
}
.prices__roles--role.active:hover {
  background-color: white;
}
.prices__roles--role:hover {
  background-color: #f5f5f5;
  transition: all 0.35s ease-in-out;
}
.prices__select {
  display: flex;
  align-items: center;
}
.prices__select p {
  margin-bottom: 0;
  margin-right: 12px;
}
.prices__select--inner {
  position: relative;
  width: fit-content;
  background: #F5F5F5;
  border-radius: 6px;
}
.prices__select--inner::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  display: block;
  width: 15px;
  height: 11px;
  position: absolute;
  right: 15px;
  top: 55%;
  transform: translateY(-50%);
}
.prices__select--inner select {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 6px;
  background-color: #f5f5f5;
  width: 100%;
  padding: 0.1rem 2.5rem 0.1rem 1rem;
  height: 28px;
  appearance: none;
}
.prices table {
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
}
.prices table p {
  margin-bottom: 0;
}
.prices table thead {
  background-color: black;
  color: white;
}
.prices table thead th {
  padding: 0.2rem 1rem;
}
.prices table thead th p {
  font-family: tt-light;
}
.prices table tbody td {
  padding: 1rem 1rem;
}
.prices__table--entry {
  display: flex;
  align-items: center;
}
.prices__table--edit {
  display: flex;
  justify-content: flex-end;
}
.prices__table--edit a {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease-in-out;
  border-radius: 50%;
}
.prices__table--edit a:hover {
  transition: all 0.35s ease-in-out;
  background: #ccc;
}
.prices__table--edit img {
  width: 20px;
}
.prices__pagination {
  margin: 1rem 0;
  display: flex;
  justify-content: space-between;
}
.prices__pagination p {
  margin-bottom: 0;
}
.prices__pagination--nav {
  display: flex;
  align-items: center;
}
.prices__pagination--nav--pager img {
  width: 20px;
  height: 30px;
  transform: rotate(90deg);
  margin-right: 12px;
}
.prices__pagination--nav--pager img.forward {
  transform: rotate(-90deg);
  margin-left: 12px;
}
.prices__pagination--nav--item {
  margin-right: 24px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prices__pagination--nav--item p {
  margin-bottom: 0;
}
.prices__pagination--nav--item.active, .prices__pagination--nav--item:hover {
  color: #fff;
  background-color: #A80932;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prices__pagination--nav--total {
  margin-bottom: 0;
}
.prices__price {
  margin-bottom: 0.5rem;
}
.prices__price:last-of-type {
  margin-bottom: 1rem;
}
.prices__price p {
  margin-bottom: 0.2rem !important;
}
.prices__price--inner {
  display: flex;
  justify-content: space-between;
}
.prices__price--inner input {
  margin-right: 12px;
}

.product-detail .container__wrapper {
  width: 100%;
}
.product-detail__img--wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}
.product-detail__img--wrapper.discounted::after {
  content: "";
  background: url("/assets/img/percent.svg") no-repeat center/100px;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -1.2rem;
  left: -1rem;
}
.product-detail__img--wrapper.seasonal::after {
  content: "";
  background: url("/assets/img/season.svg") no-repeat center/100px;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -1.2rem;
  left: -1rem;
}
.product-detail__img--wrapper.veggie::after {
  content: "";
  background: url("/assets/img/veggie.svg") no-repeat center/100px;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -1.2rem;
  left: -1rem;
}
.product-detail__img--wrapper.vegan::after {
  content: "";
  background: url("/assets/img/vegan.svg") no-repeat center/100px;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -1.2rem;
  left: -1rem;
}
.product-detail__img--wrapper.new::after {
  content: "";
  background: url("/assets/img/new.svg") no-repeat center/100px;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -1.2rem;
  left: -1rem;
}
.product-detail__img--wrapper--product--img {
  width: 175px;
  height: auto;
}
.product-detail__img--wrapper--highlight--img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  position: relative;
}
.product-detail__img--wrapper--edit {
  position: absolute;
  bottom: 0;
  right: 0;
}
.product-detail__img--wrapper--edit.highlight {
  bottom: 1rem;
  right: 1rem;
}
.product-detail__img--wrapper--edit--button {
  border: 0;
  background-color: white;
  border-radius: 6px;
  position: relative;
  padding: 0.2rem 3rem 0.2rem 1rem;
}
.product-detail__img--wrapper--edit--button::after {
  content: "";
  background: url("/assets/img/edit-red.svg") no-repeat center/20px;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 1rem;
}
.product-detail__general--wrapper {
  display: flex;
  flex-direction: column;
}
.product-detail__general--wrapper textarea {
  resize: vertical;
}
.product-detail__general--wrapper--title {
  font-family: tt-bold;
  font-size: 1.3rem;
}
.product-detail__general--wrapper--input {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.product-detail__general--wrapper--input input {
  width: 60%;
  border: 0;
  border-radius: 6px;
  background-color: #F5F5F5;
  padding: 0.1rem 1rem;
  font-family: tt-regular;
  width: 60%;
}
.product-detail__general--wrapper--input input:focus-visible {
  outline: none;
}
.product-detail__general--wrapper--select {
  position: relative;
  width: 60%;
  background: #F5F5F5;
  border-radius: 6px;
}
.product-detail__general--wrapper--select::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  display: block;
  width: 15px;
  height: 11px;
  position: absolute;
  right: 15px;
  top: 55%;
  transform: translateY(-50%);
}
.product-detail__general--wrapper--select select {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 6px;
  background-color: #f5f5f5;
  width: 100%;
  padding: 0.1rem 1rem;
  height: 28px;
  appearance: none;
}
.product-detail__general--wrapper--options {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.product-detail__general--wrapper--options label {
  margin-bottom: 0.5rem;
}
.product-detail__general--wrapper--ingredients {
  display: flex;
  flex-wrap: wrap;
  font-family: tt-regular;
  padding-left: 1rem;
  margin-left: 0.5rem;
}
.product-detail__general--wrapper--ingredients li {
  width: 30%;
  margin-bottom: 1rem;
}
.product-detail__general--wrapper--ingredients li span.not-removable {
  position: relative;
}
.product-detail__general--wrapper--ingredients li span.not-removable::after {
  content: "";
  position: absolute;
  background: url("/assets/img/not-removable.svg") no-repeat center/15px;
  width: 15px;
  height: 15px;
  display: block;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
}
.product-detail__general--wrapper--ingredients--indication {
  display: flex;
  justify-content: space-between;
}
.product-detail__general--wrapper--ingredients--indication--inner {
  padding: 0rem 1rem 0.1rem 1rem;
  border-radius: 6px;
  border: 1px solid black;
  width: fit-content;
  display: flex;
  align-items: center;
}
.product-detail__general--wrapper--ingredients--indication--inner img {
  width: 15px;
  height: 15px;
  margin-right: 0.5rem;
  margin-top: 0.1rem;
}
.product-detail__general--wrapper--ingredients--indication--inner p {
  margin: 0;
}
.product-detail__general--wrapper--ingredients--edit {
  background-color: transparent;
  border: 0;
  padding: 0;
  width: 20px;
  height: 20px;
}
.product-detail__general--wrapper--category {
  display: flex;
  margin-bottom: 2rem;
}
.product-detail__general--wrapper--category--item {
  display: flex;
  align-items: center;
  border: 1px solid black;
  border-radius: 6px;
  padding: 0rem 0.4rem 0 1rem;
}
.product-detail__general--wrapper--category--item p {
  margin-bottom: 0;
}
.product-detail__general--wrapper--category--item button {
  border: 0;
  background: transparent;
  width: 17px;
  height: 17px;
  display: flex;
  margin-left: 0.5rem;
}
.product-detail__general--wrapper--category--item button img {
  margin-top: 0.1rem;
}
.product-detail__general--wrapper--category--edit {
  background-color: transparent;
  border: 0;
  padding: 0;
  width: 20px;
  height: 20px;
}
.product-detail__general--wrapper--category--seasonal {
  display: flex;
  justify-content: space-between;
}
.product-detail__general--wrapper--variations--variation {
  background-color: #F5F5F5;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
}
.product-detail__general--wrapper--variations--variation--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 4rem;
  position: relative;
  cursor: pointer;
}
.product-detail__general--wrapper--variations--variation--inner::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.product-detail__general--wrapper--variations--variation--sku {
  font-family: tt-bold;
  margin-bottom: 0;
}
.product-detail__general--wrapper--variations--variation--gastroid {
  margin-bottom: 0;
}
.product-detail__general--wrapper--variations--variation--prices hr {
  margin: 0.5rem 0;
  color: black;
  opacity: 1;
}
.product-detail__general--wrapper--variations--variation--prices--item {
  display: flex;
  margin: 1rem 0;
  align-items: center;
}
.product-detail__general--wrapper--variations--variation--prices--item:first-of-type {
  margin-top: 1.5rem;
}
.product-detail__general--wrapper--variations--variation--prices--item:last-of-type {
  margin-bottom: 0;
}
.product-detail__general--wrapper--variations--variation--prices--item input[type=text] {
  background: transparent;
  border: 0;
  border-radius: 6px;
  width: 100%;
  padding: 0.3rem 0.5rem;
  font-family: tt-regular;
}
.product-detail__general--wrapper--variations--variation--prices--item--title {
  width: 50%;
}
.product-detail__general--wrapper--variations--variation--prices--item--price {
  display: flex;
  align-items: center;
  width: 8%;
}
.product-detail__general--wrapper--variations--variation--prices--item--price p {
  margin-bottom: 0;
}
.product-detail__general--wrapper--variations--variation--prices--item--title, .product-detail__general--wrapper--variations--variation--prices--item--price {
  margin-bottom: 0;
}
.product-detail__general--wrapper--variations--variation--prices--item--further {
  width: 23px;
  height: 30px;
  display: block;
  border: 0;
  background: rgba(0, 0, 0, 0);
  margin-left: 1rem;
  padding-top: 0.4rem;
}
.product-detail__general--wrapper--availability {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.product-detail__general--wrapper--availability--item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid black;
  border-radius: 6px;
  padding: 0rem 0.4rem 0 1rem;
  margin: 0 8px 8px 0;
}
.product-detail__general--wrapper--availability--item p {
  margin-bottom: 0;
}
.product-detail__general--wrapper--availability--item button {
  border: 0;
  background: transparent;
  width: 17px;
  height: 17px;
  display: flex;
  margin-left: 0.5rem;
}
.product-detail__general--wrapper--availability--item button img {
  margin-top: 0.1rem;
}
.product-detail__general--wrapper--availability--edit {
  background-color: transparent;
  border: 0;
  padding: 0;
  width: 20px;
  height: 20px;
}
.product-detail__general--wrapper--noshow--item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid black;
  border-radius: 6px;
  width: fit-content;
  padding: 0rem 0.4rem 0 1rem;
  margin: 0 8px 8px 0;
}
.product-detail__general--wrapper--noshow--item p {
  margin-bottom: 0;
}
.product-detail__general--wrapper--noshow--item button {
  border: 0;
  background: transparent;
  width: 17px;
  height: 17px;
  display: flex;
  margin-left: 0.5rem;
}
.product-detail__general--wrapper--noshow--item button img {
  margin-top: 0.1rem;
}
.product-detail__general--wrapper--noshow--edit {
  border: 0;
  background: transparent;
  width: 17px;
  height: 17px;
  display: flex;
  margin-left: 0.5rem;
}
.product-detail__general--wrapper--noshow--edit img {
  margin-top: 0.1rem;
}

.promotion .container__wrapper {
  width: 100%;
}
.promotion input[type=text] {
  border: 0;
  background-color: #F5F5F5;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
  border-radius: 6px;
}
.promotion input[type=text]:focus-visible {
  outline: none;
}
.promotion__title {
  font-family: tt-bold;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.promotion__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.promotion__wrapper.period {
  display: flex;
  justify-content: flex-start;
  margin-top: 6px;
}
.promotion__wrapper.period:first-of-type {
  margin-top: 0;
}
.promotion__wrapper.period select {
  padding: 0.1rem 1rem 0.1rem 1rem;
}
.promotion__wrapper.period label {
  width: 20%;
}
.promotion__wrapper.product {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.promotion__wrapper.product label {
  width: 30%;
}
.promotion__wrapper label {
  margin-right: 12px;
}
.promotion__wrapper--status {
  display: flex;
}
.promotion__wrapper--status p {
  margin-right: 12px;
  margin-bottom: 0;
}
.promotion__wrapper--inner {
  width: 49%;
  display: flex;
  align-items: center;
}
.promotion__wrapper--select {
  position: relative;
  background: #F5F5F5;
  border-radius: 6px;
  width: 100%;
}
.promotion__wrapper--select.small {
  width: 18%;
  margin-right: 3px;
}
.promotion__wrapper--select.small:last-of-type {
  margin-right: 0;
}
.promotion__wrapper--select.product {
  width: 49%;
}
.promotion__wrapper--select::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  display: block;
  width: 15px;
  height: 11px;
  position: absolute;
  right: 8px;
  top: 55%;
  transform: translateY(-50%);
}
.promotion__wrapper--select--spacer {
  margin-right: 3px;
}
.promotion__wrapper--select select {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 6px;
  background-color: #f5f5f5;
  width: 100%;
  padding: 0.1rem 3rem 0.1rem 1rem;
  height: 28px;
  font-family: tt-regular;
  font-variant-ligatures: no-common-ligatures;
  appearance: none;
}
.promotion__wrapper--days label {
  width: 17%;
}

.shop-details .h-50-4 {
  display: flex;
  height: 50%;
  padding-bottom: 8px;
}
.shop-details .h-50-4.spacer {
  padding-top: 8px;
  padding-bottom: 0;
}
.shop-details h2 {
  font-size: 1.3rem;
  margin-bottom: 0;
}
.shop-details__deliveryarea {
  display: flex;
  align-items: center;
  position: relative;
}
.shop-details__deliveryarea--img {
  width: 31px;
  height: 35px;
  margin-right: 15px;
}
.shop-details__deliveryarea::after {
  content: "";
  background: url("/assets/img/arrow-red.svg") no-repeat center/13px;
  display: block;
  width: 15px;
  height: 25px;
  position: absolute;
  right: 0;
}
.shop-details__opening {
  display: flex;
  align-items: center;
  position: relative;
}
.shop-details__opening h2 {
  margin-bottom: 0;
}
.shop-details__opening--img {
  width: 31px;
  height: 35px;
  margin-right: 15px;
}
.shop-details__opening--wrapper--time {
  margin: 1.5rem 0;
}
.shop-details__opening--wrapper--time--item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.shop-details__opening--wrapper--time--item--day {
  position: relative;
  width: fit-content;
}
.shop-details__opening--wrapper--time--item--day::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  display: block;
  width: 15px;
  height: 11px;
  position: absolute;
  right: 5px;
  top: 55%;
  transform: translateY(-50%);
}
.shop-details__opening--wrapper--time--item--day select {
  font-family: tt-regular;
  border: 0;
  background: transparent;
  appearance: none;
  font-variant-ligatures: no-common-ligatures;
  margin-right: 30px;
}
.shop-details__opening--wrapper--time--item--hours {
  position: relative;
  margin: 0 1rem;
}
.shop-details__opening--wrapper--time--item--hours::after {
  content: "-";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background-color: #F5F5F5;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.shop-details__opening--wrapper--time--item--hours--item {
  border: 0;
  width: 100px;
  background-color: #F5F5F5;
  text-align: center;
  font-family: tt-regular;
}
.shop-details__opening--wrapper--time--item--hours--item:first-of-type {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  padding: 0.2rem 1rem;
}
.shop-details__opening--wrapper--time--item--hours--item:last-of-type {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 0.2rem 1rem;
}
.shop-details__opening--wrapper--time--item--hours--item:focus-visible {
  outline: none;
}
.shop-details__opening--wrapper--time--item--delete--button {
  border: 0;
  background-color: transparent;
  width: 20px;
  height: 20px;
  display: block;
}
.shop-details__onlydelivery--wrapper--notice {
  margin-bottom: 0.5rem;
}
.shop-details__onlydelivery--wrapper--notice--label {
  font-size: 1.2rem !important;
}
.shop-details__paypal--label {
  font-family: tt-regular;
  margin-top: 0.5rem;
}
.shop-details__paypal--input {
  border: 0;
  width: 100%;
  background-color: #F5F5F5;
  text-align: center;
  font-family: tt-regular;
  border-radius: 6px;
}
.shop-details__paypal--input:focus-visible {
  outline: none;
}
.shop-details__import {
  position: relative;
}
.shop-details__import::after {
  content: "";
  background: url("/assets/img/download.svg") no-repeat center/25px;
  display: block;
  height: 25px;
  width: 25px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-80%);
  pointer-events: none;
}
.shop-details__import--title {
  margin-bottom: 1rem !important;
}
.shop-details__import--content {
  margin-bottom: 1rem;
  font-family: tt-regular;
  border: 0;
  background: transparent;
  appearance: none;
  font-variant-ligatures: no-common-ligatures;
  margin-right: 25px;
  width: 100%;
}
.shop-details__export {
  margin-top: 1rem;
  background: transparent;
  border: 0;
  font-variant-ligatures: no-common-ligatures;
  position: relative;
  width: 100%;
  text-align: start;
  padding: 0;
}
.shop-details__export::after {
  content: "";
  background: url("/assets/img/download.svg") no-repeat center/25px;
  display: block;
  height: 25px;
  width: 25px;
  position: absolute;
  right: 0;
  top: 0;
}
.shop-details__details--title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.shop-details__details--title img {
  width: 31px;
  height: 35px;
  margin-right: 15px;
}
.shop-details__details--content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0 0.2rem;
}
.shop-details__details--content input[type=text],
.shop-details__details--content input[type=number],
.shop-details__details--content input[type=email] {
  border: 0;
  border-radius: 6px;
  background-color: #F5F5F5;
  padding: 0.1rem 1rem;
  font-family: tt-regular;
  width: 60%;
  font-variant-ligatures: no-common-ligatures;
}
.shop-details__details--content input[type=text]:focus-visible,
.shop-details__details--content input[type=number]:focus-visible,
.shop-details__details--content input[type=email]:focus-visible {
  outline: none;
}
.shop-details__details--content--select {
  position: relative;
  width: 60%;
}
.shop-details__details--content--select select {
  background: transparent;
  border: 0;
  border-radius: 6px;
  background-color: #F5F5F5;
  width: 100%;
  padding: 0.1rem 1rem;
  height: 28px;
  appearance: none;
}
.shop-details__details--content--select::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.shop-details__details--shortcuts--time p {
  margin-bottom: 0;
}
.shop-details__details--shortcuts--time--button {
  display: flex;
  align-items: center;
}
.shop-details__details--shortcuts--time--button--timer {
  margin: 0;
  border: 0;
  -moz-appearance: textfield;
  width: 30px;
  text-align: center;
}
.shop-details__details--shortcuts--time--button--timer::-webkit-outer-spin-button, .shop-details__details--shortcuts--time--button--timer::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.shop-details__details--shortcuts--time--button .negative {
  background-color: transparent;
  border: 0;
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 23px;
  height: 12px;
  transform: rotateZ(90deg);
  padding: 0;
}
.shop-details__details--shortcuts--time--button .positive {
  background-color: transparent;
  border: 0;
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 23px;
  height: 12px;
  transform: rotateZ(-90deg);
  padding: 0;
}
.shop-details__details--methods {
  display: flex;
  flex-direction: column;
}
.shop-details__details--methods--title {
  margin-bottom: 1rem;
}
.shop-details__details--methods--method {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}
.shop-details__details--methods--method:last-of-type {
  margin-bottom: 0;
}
.shop-details__details--methods--method label {
  font-family: tt-regular !important;
}
.shop-details__location {
  display: flex;
}
.shop-details__location--img {
  width: 130px;
}
.shop-details__location--title {
  margin-bottom: 1rem !important;
}
.shop-details__location--link {
  display: flex;
  flex-direction: column;
  margin-left: 24px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.shop-details__location--link--input {
  border: 0;
  background-color: #F5F5F5;
  padding: 0.1rem 1rem;
  font-family: tt-regular;
  border-radius: 6px;
  width: 100%;
}
.shop-details__location--link--input:focus-visible {
  outline: none;
}
.shop-details__location--link--img {
  width: 70px;
  margin-bottom: 1rem;
}
.shop-details__gastro {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.shop-details__gastro--input {
  border: 0;
  background-color: #F5F5F5;
  padding: 0.1rem 1rem;
  font-family: tt-regular;
  border-radius: 6px;
}
.shop-details__gastro--input:focus-visible {
  outline: none;
}

.extra-detail .container__wrapper {
  width: 100%;
}
.extra-detail__img--wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}
.extra-detail__img--wrapper--product--img {
  width: 175px;
  height: auto;
}
.extra-detail__img--wrapper--highlight--img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  position: relative;
}
.extra-detail__img--wrapper--edit {
  position: absolute;
  bottom: 0;
  right: 0;
}
.extra-detail__img--wrapper--edit.highlight {
  bottom: 1rem;
  right: 1rem;
}
.extra-detail__img--wrapper--edit--button {
  border: 0;
  background-color: white;
  border-radius: 6px;
  position: relative;
  padding: 0.2rem 3rem 0.2rem 1rem;
}
.extra-detail__img--wrapper--edit--button::after {
  content: "";
  background: url("/assets/img/edit-red.svg") no-repeat center/20px;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 1rem;
}
.extra-detail__general--wrapper {
  display: flex;
  flex-direction: column;
}
.extra-detail__general--wrapper textarea {
  resize: vertical;
}
.extra-detail__general--wrapper--title {
  font-family: tt-bold;
  font-size: 1.3rem;
}
.extra-detail__general--wrapper--input {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.extra-detail__general--wrapper--input input {
  width: 60%;
  border: 0;
  border-radius: 6px;
  background-color: #F5F5F5;
  padding: 0.1rem 1rem;
  font-family: tt-regular;
  width: 60%;
}
.extra-detail__general--wrapper--input input:focus-visible {
  outline: none;
}
.extra-detail__general--wrapper--select {
  position: relative;
  width: 60%;
  background: #F5F5F5;
  border-radius: 6px;
}
.extra-detail__general--wrapper--select::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  display: block;
  width: 15px;
  height: 11px;
  position: absolute;
  right: 15px;
  top: 55%;
  transform: translateY(-50%);
}
.extra-detail__general--wrapper--select select {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 6px;
  background-color: #f5f5f5;
  width: 100%;
  padding: 0.1rem 1rem;
  height: 28px;
  appearance: none;
}
.extra-detail__general--wrapper--options {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.extra-detail__general--wrapper--options label {
  margin-bottom: 0.5rem;
}
.extra-detail__general--wrapper--ingredients {
  display: flex;
  flex-wrap: wrap;
  font-family: tt-regular;
  padding-left: 1rem;
}
.extra-detail__general--wrapper--ingredients li {
  width: 30%;
  margin-bottom: 1rem;
}
.extra-detail__general--wrapper--ingredients li span.not-removable {
  position: relative;
}
.extra-detail__general--wrapper--ingredients li span.not-removable::after {
  content: "";
  position: absolute;
  background: url("/assets/img/not-removable.svg") no-repeat center/15px;
  width: 15px;
  height: 15px;
  display: block;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
}
.extra-detail__general--wrapper--ingredients--indication {
  display: flex;
  justify-content: space-between;
}
.extra-detail__general--wrapper--ingredients--indication--inner {
  padding: 0rem 1rem 0.1rem 1rem;
  border-radius: 6px;
  border: 1px solid black;
  width: fit-content;
  display: flex;
  align-items: center;
}
.extra-detail__general--wrapper--ingredients--indication--inner img {
  width: 15px;
  height: 15px;
  margin-right: 0.5rem;
  margin-top: 0.1rem;
}
.extra-detail__general--wrapper--ingredients--indication--inner p {
  margin: 0;
}
.extra-detail__general--wrapper--ingredients--edit {
  background-color: transparent;
  border: 0;
  padding: 0;
  width: 20px;
  height: 20px;
}
.extra-detail__general--wrapper--category {
  display: flex;
  margin-bottom: 2rem;
}
.extra-detail__general--wrapper--category--item {
  display: flex;
  align-items: center;
  border: 1px solid black;
  border-radius: 6px;
  padding: 0rem 0.4rem 0 1rem;
}
.extra-detail__general--wrapper--category--item p {
  margin-bottom: 0;
}
.extra-detail__general--wrapper--category--item button {
  border: 0;
  background: transparent;
  width: 17px;
  height: 17px;
  display: flex;
  margin-left: 0.5rem;
}
.extra-detail__general--wrapper--category--item button img {
  margin-top: 0.1rem;
}
.extra-detail__general--wrapper--category--edit {
  background-color: transparent;
  border: 0;
  padding: 0;
  width: 20px;
  height: 20px;
}
.extra-detail__general--wrapper--category--seasonal {
  display: flex;
  justify-content: space-between;
}
.extra-detail__general--wrapper--variations--variation {
  background-color: #F5F5F5;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
}
.extra-detail__general--wrapper--variations--variation--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 4rem;
  position: relative;
  cursor: pointer;
}
.extra-detail__general--wrapper--variations--variation--inner::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.extra-detail__general--wrapper--variations--variation--sku {
  font-family: tt-bold;
  margin-bottom: 0;
}
.extra-detail__general--wrapper--variations--variation--gastroid {
  margin-bottom: 0;
}
.extra-detail__general--wrapper--variations--variation--prices hr {
  margin: 0.5rem 0;
  color: black;
  opacity: 1;
}
.extra-detail__general--wrapper--variations--variation--prices--item {
  display: flex;
  margin: 1rem 0;
  align-items: center;
}
.extra-detail__general--wrapper--variations--variation--prices--item:first-of-type {
  margin-top: 1.5rem;
}
.extra-detail__general--wrapper--variations--variation--prices--item:last-of-type {
  margin-bottom: 0;
}
.extra-detail__general--wrapper--variations--variation--prices--item input[type=text] {
  background: transparent;
  border: 0;
  border-radius: 6px;
  width: 100%;
  padding: 0.3rem 0.5rem;
  font-family: tt-regular;
}
.extra-detail__general--wrapper--variations--variation--prices--item--title {
  width: 50%;
}
.extra-detail__general--wrapper--variations--variation--prices--item--price {
  display: flex;
  align-items: center;
  width: 8%;
}
.extra-detail__general--wrapper--variations--variation--prices--item--price p {
  margin-bottom: 0;
}
.extra-detail__general--wrapper--variations--variation--prices--item--title, .extra-detail__general--wrapper--variations--variation--prices--item--price {
  margin-bottom: 0;
}
.extra-detail__general--wrapper--variations--variation--prices--item--further {
  width: 23px;
  height: 30px;
  display: block;
  border: 0;
  background: rgba(0, 0, 0, 0);
  margin-left: 1rem;
  padding-top: 0.4rem;
}
.extra-detail__general--wrapper--availability {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.extra-detail__general--wrapper--availability--item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid black;
  border-radius: 6px;
  padding: 0rem 0.4rem 0 1rem;
  margin: 0 8px 8px 0;
}
.extra-detail__general--wrapper--availability--item p {
  margin-bottom: 0;
}
.extra-detail__general--wrapper--availability--item button {
  border: 0;
  background: transparent;
  width: 17px;
  height: 17px;
  display: flex;
  margin-left: 0.5rem;
}
.extra-detail__general--wrapper--availability--item button img {
  margin-top: 0.1rem;
}
.extra-detail__general--wrapper--availability--edit {
  background-color: transparent;
  border: 0;
  padding: 0;
  width: 20px;
  height: 20px;
}
.extra-detail__general--wrapper--noshow--item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid black;
  border-radius: 6px;
  width: fit-content;
  padding: 0rem 0.4rem 0 1rem;
  margin: 0 8px 8px 0;
}
.extra-detail__general--wrapper--noshow--item p {
  margin-bottom: 0;
}
.extra-detail__general--wrapper--noshow--item button {
  border: 0;
  background: transparent;
  width: 17px;
  height: 17px;
  display: flex;
  margin-left: 0.5rem;
}
.extra-detail__general--wrapper--noshow--item button img {
  margin-top: 0.1rem;
}
.extra-detail__general--wrapper--noshow--edit {
  border: 0;
  background: transparent;
  width: 17px;
  height: 17px;
  display: flex;
  margin-left: 0.5rem;
}
.extra-detail__general--wrapper--noshow--edit img {
  margin-top: 0.1rem;
}

.highlights__title {
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
}
.highlights__title h1 {
  line-height: 1;
  margin: 0;
}
.highlights__title--add {
  display: block;
  margin-left: 16px;
}
.highlights__title--add img {
  width: 30px;
  height: 30px;
}
.highlights__options {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  justify-content: space-between;
  position: sticky;
  top: 70px;
  background: white;
  padding: 1rem;
  margin: 0;
  margin-right: 0px;
  margin-left: 0px;
  margin-left: -16px;
  margin-right: -16px;
  z-index: 1;
}
.highlights__options p {
  margin: 0;
}
.highlights__options--pagination {
  display: flex;
}
.highlights__options--pagination--button {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.highlights__options--pagination--button--timer {
  margin: 0 12px;
}
.highlights__options--pagination--button .negative {
  background-color: transparent;
  border: 0;
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 23px;
  height: 12px;
  transform: rotateZ(90deg);
  padding: 0;
}
.highlights__options--pagination--button .positive {
  background-color: transparent;
  border: 0;
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 23px;
  height: 12px;
  transform: rotateZ(-90deg);
  padding: 0;
}
.highlights__options--search {
  position: relative;
  width: 200px;
}
.highlights__options--search::after {
  position: absolute;
  content: "";
  background: url("/assets/img/search.svg") no-repeat center/15px;
  width: 15px;
  height: 15px;
  display: block;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.highlights__options--search input[type=text] {
  background-color: #F5F5F5;
  border-radius: 6px;
  border: 0;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
}
.highlights__options--search input[type=text]:focus-visible {
  outline: none;
}
.highlights table {
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
}
.highlights table p {
  margin-bottom: 0;
}
.highlights table thead {
  background-color: black;
  color: white;
}
.highlights table thead th {
  padding: 0.2rem 1rem;
}
.highlights table thead th p {
  font-family: tt-light;
}
.highlights table tbody td {
  padding: 1rem 1rem;
}
.highlights table tbody td:first-of-type {
  width: 75%;
}
.highlights__table--entry {
  display: flex;
  align-items: center;
}
.highlights__table--entry--title {
  font-family: tt-bold;
  font-size: 1.3rem;
}
.highlights__table--status {
  font-family: tt-bold;
}
.highlights__table--status.online {
  color: #29A335;
}
.highlights__table--status.offline {
  color: #A80932;
}
.highlights__table--edit {
  display: flex;
  justify-content: flex-end;
}
.highlights__table--edit a {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease-in-out;
  border-radius: 50%;
}
.highlights__table--edit a:hover {
  transition: all 0.35s ease-in-out;
  background: #ccc;
}
.highlights__table--edit img {
  width: 20px;
}
.highlights__pagination {
  margin-top: 1rem;
}

.login__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}
.login__form {
  display: flex;
  flex-direction: column;
  width: 500px;
}
.login__form__logo {
  display: flex;
  animation: loginFadeIn 2s ease-in-out;
  align-items: center;
  justify-content: center;
}
.login__form__content {
  animation: loginFadeIn 2s ease-in-out;
}
.login__form__greeting {
  color: #fff;
  font-size: 40pt;
  font-weight: bold;
  margin: 64px 0 40px;
  text-align: center;
}
.login__form__line {
  padding: 0 100px;
  margin: 0 0 24px;
}
.login__form__line p {
  color: #fff;
  text-align: center;
}
.login__form__line input[type=email], .login__form__line input[type=password] {
  width: 100%;
}
.login__form input {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 4px !important;
  box-shadow: none;
  font-weight: 600;
  padding: 12px;
}
.login__form button {
  background: none;
  border: 1px solid #fff;
  border-radius: 4px;
  box-shadow: none;
  font-weight: 300;
  outline: 0 !important;
  padding: 12px;
  transition: background 0.8s ease-in-out, color 0.8s ease-in-out;
}
.login__form button:hover, .login__form button:focus {
  background: #fff;
  border: 1px solid #fff;
  box-shadow: none;
  color: #000 !important;
  outline: 0;
}

@keyframes loginFadeIn {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.nav {
  margin-top: 110px;
  margin-bottom: 30px;
}
.nav__wrapper {
  border-radius: 6px;
  text-align: center;
}
.nav__wrapper--link {
  transition: all 0.35s ease-in-out;
  background-color: transparent;
  display: flex;
  justify-content: center;
  padding: 0.3rem 0;
}
.nav__wrapper--link p {
  margin: 0;
  width: fit-content;
}
.nav__wrapper--link .dash {
  position: relative;
}
.nav__wrapper--link .dash::before {
  content: "";
  background: url("/assets/img/dashboard-inactive.svg") no-repeat center/20px;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.nav__wrapper--link .content {
  position: relative;
}
.nav__wrapper--link .content::before {
  content: "";
  background: url("/assets/img/content-inactive.svg") no-repeat center/20px;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.nav__wrapper--link.middle {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
.nav__wrapper--link.middle-right {
  border-left: 1px solid black;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
.nav__wrapper--link.right {
  border: 1px solid black;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.nav__wrapper--link.left {
  border: 1px solid black;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.nav__wrapper--link.active, .nav__wrapper--link:hover {
  transition: all 0.35s ease-in-out;
  background-color: black;
  color: white;
}
.nav__wrapper--link.active .dash::before, .nav__wrapper--link:hover .dash::before {
  background: url("/assets/img/dashboard.svg") no-repeat center/20px;
}
.nav__wrapper--link.active .content::before, .nav__wrapper--link:hover .content::before {
  background: url("/assets/img/content.svg") no-repeat center/20px;
}

.settings input[type=checkbox] {
  display: none;
}
.settings input[type=checkbox] + label {
  font-family: tt-regular;
}
.settings input[type=checkbox]:checked + label {
  color: #29A335;
}
.settings input[type=checkbox]:checked + label::after {
  content: "";
  background: url("/assets/img/store-open.svg") no-repeat center/15px;
}
.settings a {
  display: flex;
  width: 100%;
  margin-bottom: 16px;
}
.settings .cache {
  font-family: tt-bold;
  color: white;
  border: 0;
  background: transparent;
  background-color: #A80932;
  padding: 1.5rem 6rem 1.5rem 4rem;
  position: relative;
  font-size: 1.3rem;
  border-radius: 6px;
  margin-top: 5rem;
  transition: all 0.35s ease-in-out;
}
.settings .cache:hover {
  background-color: #c8b595;
  transition: all 0.35s ease-in-out;
}
.settings .cache::before {
  content: "";
  background: url("/assets/img/delete-white.svg") no-repeat center/30px;
  width: 25px;
  height: 35px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.settings__wrapper {
  display: flex;
  justify-content: space-between;
}
.settings__wrapper--inner {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  min-height: 78px;
}
.settings__wrapper--img {
  height: 30px;
  margin-right: 1rem;
}
.settings__wrapper--title {
  font-family: tt-bold;
  font-size: 1.3rem;
  margin-bottom: 0;
  line-height: 1;
}
.settings__wrapper--subtitle {
  margin-bottom: 0;
}
.settings__wrapper--handle {
  position: absolute;
  width: 12px;
  right: 12px;
  bottom: 10px;
}
.settings__wrapper--sort {
  pointer-events: none;
  user-select: none;
  height: 115px;
  border: 1px dashed #ccc;
}
.settings__wrapper--sort * {
  visibility: hidden;
}

.overview {
  margin-bottom: 1rem;
}
.overview__title {
  display: flex;
  align-items: center;
}
.overview__title h1 {
  line-height: 1;
  margin: 0;
}
.overview__title--add {
  display: block;
  margin-left: 16px;
}
.overview__title--add img {
  width: 30px;
  height: 30px;
}
.overview__filter--inner {
  display: flex;
  margin-bottom: 0.5rem;
  align-items: center;
}
.overview__filter--inner p {
  margin-bottom: 0;
  width: 10%;
  margin-right: 15px;
}
.overview__filter--date {
  display: flex;
  margin-bottom: 0.5rem;
}
.overview__filter--date--option {
  display: flex;
  margin-right: 12px;
}
.overview__filter--date--option label {
  margin-right: 45px;
}
@media (max-width: 1200px) {
  .overview__filter--date--option label {
    margin-right: 12px;
  }
}
.overview__filter--date input[type=date] {
  border: 0;
  background-color: #F5F5F5;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
  border-radius: 6px;
  height: 28px;
}
.overview__filter--date input[type=date]:focus-visible {
  outline: none;
}
.overview__filter--select {
  position: relative;
  background: #F5F5F5;
  border-radius: 6px;
  width: 100%;
}
.overview__filter--select.small {
  width: 32%;
  margin-right: 0.3rem;
}
.overview__filter--select.small:last-of-type {
  margin-right: 0;
}
.overview__filter--select::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  display: block;
  width: 15px;
  height: 11px;
  position: absolute;
  right: 8px;
  top: 55%;
  transform: translateY(-50%);
}
.overview__filter--select select {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 6px;
  background-color: #f5f5f5;
  width: 100%;
  padding: 0.1rem 1rem 0.1rem 1rem;
  height: 28px;
  font-family: tt-regular;
  font-variant-ligatures: no-common-ligatures;
  appearance: none;
}
.overview__options {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  justify-content: space-between;
  position: sticky;
  top: 70px;
  background: white;
  padding: 1rem;
  margin: 0;
  margin-right: 0px;
  margin-left: 0px;
  margin-left: -16px;
  margin-right: -16px;
  z-index: 1;
}
.overview__options p {
  margin: 0;
}
.overview__options--pagination {
  display: flex;
}
.overview__options--pagination--button {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.overview__options--pagination--button--timer {
  margin: 0 12px;
}
.overview__options--pagination--button .negative {
  background-color: transparent;
  border: 0;
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 23px;
  height: 12px;
  transform: rotateZ(90deg);
  padding: 0;
}
.overview__options--pagination--button .positive {
  background-color: transparent;
  border: 0;
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 23px;
  height: 12px;
  transform: rotateZ(-90deg);
  padding: 0;
}
.overview__options--search {
  position: relative;
  width: 200px;
}
.overview__options--search::after {
  position: absolute;
  content: "";
  background: url("/assets/img/search.svg") no-repeat center/15px;
  width: 15px;
  height: 15px;
  display: block;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.overview__options--search input[type=text] {
  background-color: #F5F5F5;
  border-radius: 6px;
  border: 0;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
}
.overview__options--search input[type=text]:focus-visible {
  outline: none;
}
.overview table {
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
}
.overview table#orders-overview {
  margin-top: 1rem;
}
.overview table#orders-overview tbody td {
  font-size: 0.9rem;
}
.overview table#orders-filter {
  margin: 0;
  width: 100%;
}
.overview table#orders-filter input[type=text] {
  border: 0;
  background-color: #F5F5F5;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 90%;
  border-radius: 6px;
}
.overview table#orders-filter .select {
  position: relative;
  width: 90%;
}
.overview table#orders-filter .select select {
  background: transparent;
  border: 0;
  border-radius: 6px;
  background-color: #F5F5F5;
  width: 100%;
  padding: 0.1rem 1rem;
  height: 28px;
  appearance: none;
}
.overview table#orders-filter .select::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.overview table.coupons {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.overview table p {
  margin-bottom: 0;
}
.overview table thead {
  background-color: black;
  color: white;
}
.overview table thead th {
  padding: 0.2rem 1rem;
}
.overview table thead th p {
  font-family: tt-light;
}
.overview table tbody tr {
  border: 0;
  border-color: transparent;
}
.overview table tbody td {
  padding: 1rem 1rem;
}
.overview__table {
  overflow-y: scroll;
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
}
.overview__table--entry {
  display: flex;
  align-items: center;
}
.overview__table--entry span {
  display: block;
  border-radius: 50%;
  padding: 2px;
  width: 52px;
  height: 52px;
  margin-right: 12px;
}
.overview__table--entry.open span {
  border: 2px solid #29A335;
}
.overview__table--entry.closed span {
  border: 2px solid #A80932;
}
.overview__table--entry--indication {
  width: 50px;
}
.overview__table--entry--title {
  font-family: tt-bold;
}
.overview__table--entry--edited {
  color: rgba(0, 0, 0, 0.3);
  display: block;
}
.overview__table--entry--image {
  width: 50px;
  border-radius: 50%;
  margin-right: 12px;
}
.overview__table--entry--log {
  color: #c8b595;
  font-family: tt-bold;
  cursor: pointer;
}
.overview__table--entry--icon {
  background: #A5A5A5;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 16pt;
  margin: 0;
  position: relative;
}
.overview__table--entry--icon::after {
  content: "";
  background: url("/assets/img/filialdetails-white.svg") no-repeat center/25px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.overview__table--wrapper {
  overflow-x: scroll;
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
  padding: 0 16px;
}
.overview__table--status {
  font-family: tt-bold;
}
.overview__table--status.online {
  color: #29A335;
}
.overview__table--status.offline {
  color: #A80932;
}
.overview__table--status--button {
  color: white;
  background-color: #A80932;
  border: 0;
  border-radius: 6px;
  padding: 0.1rem 1.6rem;
  transition: all 0.35s ease-in-out;
}
.overview__table--status--button.active {
  background: #29A335;
  transition: all 0.35s ease-in-out;
}
.overview__table--notremovable {
  width: 20px;
  height: 20px;
}
.overview__table--edit {
  display: flex;
}
.overview__table--edit.end {
  justify-content: flex-end;
}
.overview__table--edit.between {
  justify-content: space-between;
}
.overview__table--edit a {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease-in-out;
  border-radius: 50%;
}
.overview__table--edit a:hover {
  transition: all 0.35s ease-in-out;
  background: #ccc;
}
.overview__table--edit img {
  width: 20px;
}
.overview__pagination {
  margin-top: 1rem;
}

.users-address-edit__title {
  font-size: 1.3rem;
  font-family: tt-bold;
  margin-bottom: 1.5rem;
}
.users-address-edit__street {
  display: flex;
}
.users-address-edit__street--inner {
  width: 75%;
  display: flex;
  flex-direction: column;
  margin-right: 12px;
}
.users-address-edit__number--inner {
  width: 25%;
  display: flex;
  flex-direction: column;
}
.users-address-edit__address {
  display: flex;
}
.users-address-edit__address--inner {
  display: flex;
  flex-direction: column;
  margin-right: 12px;
}
.users-address-edit label {
  font-family: tt-regular;
}
.users-address-edit input[type=text], .users-address-edit input[type=number] {
  border: 0;
  background-color: #F5F5F5;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.users-address-edit input[type=text]:focus-visible, .users-address-edit input[type=number]:focus-visible {
  outline: none;
}

.users-address-overview .container__wrapper {
  flex-grow: 1;
}
.users-address-overview__wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.users-address-overview__wrapper--inner {
  display: flex;
  flex-grow: 1;
  align-items: flex-end;
}
.users-address-overview__wrapper--link {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.users-address-overview__wrapper--link:hover {
  background-color: #f5f5f5;
  border-radius: 50%;
}
.users-address-overview__wrapper--link img {
  width: 20px;
  height: 20px;
}
.users-address-overview__wrapper--header {
  display: flex;
  justify-content: space-between;
}
.users-address-overview__wrapper--header a {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.users-address-overview__wrapper--header a:hover {
  background-color: #f5f5f5;
  border-radius: 50%;
}
.users-address-overview__wrapper--header a img {
  width: 20px;
  height: 20px;
}
.users-address-overview__wrapper--title {
  font-size: 1.2rem;
  font-family: tt-bold;
  margin-bottom: 1rem;
}
.users-address-overview__wrapper--plz, .users-address-overview__wrapper--firm {
  margin-bottom: 0;
}
.users-address-overview__wrapper--add {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.users-address-overview__wrapper--add img {
  width: 25px;
  height: 25px;
}

.users-edit__title {
  font-family: tt-bold;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.users-edit__roles {
  margin-bottom: 1rem;
}
.users-edit__roles--options {
  padding: 0;
  list-style: none;
}
.users-edit__roles--options li {
  margin-bottom: 0.5rem;
}
.users-edit__roles--options li span a {
  color: white;
}
.users-edit__roles--role {
  padding: 0.1rem 1.6rem;
  margin-right: 12px;
  transition: all 0.35s ease-in-out;
  border-radius: 6px;
}
.users-edit__roles--role.active {
  border: 1px solid black;
}
.users-edit__roles--role.active:hover {
  background-color: #f5f5f5;
}
.users-edit__roles--role:hover {
  background-color: white;
  transition: all 0.35s ease-in-out;
}
.users-edit label {
  font-family: tt-regular;
}
.users-edit input[type=text], .users-edit input[type=email], .users-edit input[type=password] {
  border: 0;
  background-color: #F5F5F5;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.users-edit input[type=text]:focus-visible, .users-edit input[type=email]:focus-visible, .users-edit input[type=password]:focus-visible {
  outline: none;
}
.users-edit__select {
  display: flex;
  position: relative;
  margin-bottom: 1rem;
}
.users-edit__select select {
  background: transparent;
  border: 0;
  border-radius: 6px;
  background-color: #F5F5F5;
  width: 100%;
  font-family: tt-regular;
  font-variant-ligatures: no-common-ligatures;
  padding: 0.2rem 1rem;
  appearance: none;
}
.users-edit__select::after {
  content: "";
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.users-edit__password {
  position: relative;
}
.users-edit__password::after {
  content: "";
  background: url("/assets/img/edit.svg") no-repeat center/20px;
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 15px;
  top: 55%;
  transform: translateY(-50%);
  pointer-events: none;
}
.users-edit__orders {
  width: 100%;
}
.users-edit__orders--wrapper {
  overflow-y: scroll;
  max-height: 350px;
  scrollbar-color: black lightgray;
  scrollbar-width: thin;
}
.users-edit__orders--wrapper--order {
  display: flex;
  width: 100%;
}
.users-edit__orders--wrapper--order--date {
  margin-right: 3rem;
}

.users__title {
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
}
.users__title h1 {
  line-height: 1;
  margin: 0;
}
.users__title--add {
  display: block;
  margin-left: 16px;
}
.users__title--add img {
  width: 30px;
  height: 30px;
}
.users__options {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  justify-content: space-between;
  position: sticky;
  top: 70px;
  background: white;
  padding: 1rem;
  margin: 0;
  margin-right: 0px;
  margin-left: 0px;
  margin-left: -16px;
  margin-right: -16px;
  z-index: 1;
}
.users__options p {
  margin: 0;
}
.users__options--pagination {
  display: flex;
}
.users__options--pagination--button {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.users__options--pagination--button--timer {
  margin: 0 12px;
}
.users__options--pagination--button .negative {
  background-color: transparent;
  border: 0;
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 23px;
  height: 12px;
  transform: rotateZ(90deg);
  padding: 0;
}
.users__options--pagination--button .positive {
  background-color: transparent;
  border: 0;
  background: url("/assets/img/arrow.svg") no-repeat center/15px;
  width: 23px;
  height: 12px;
  transform: rotateZ(-90deg);
  padding: 0;
}
.users__options--search {
  position: relative;
  width: 200px;
}
.users__options--search::after {
  position: absolute;
  content: "";
  background: url("/assets/img/search.svg") no-repeat center/15px;
  width: 15px;
  height: 15px;
  display: block;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.users__options--search input[type=text] {
  background-color: #F5F5F5;
  border-radius: 6px;
  border: 0;
  padding: 0.2rem 1rem;
  font-family: tt-regular;
  width: 100%;
}
.users__options--search input[type=text]:focus-visible {
  outline: none;
}
.users__roles {
  display: flex;
  margin-bottom: 1rem;
}
.users__roles--role {
  padding: 0.1rem 1.6rem;
  margin-right: 12px;
  transition: all 0.35s ease-in-out;
  border-radius: 6px;
}
.users__roles--role.active {
  border: 1px solid black;
}
.users__roles--role.active:hover {
  background-color: white;
}
.users__roles--role:hover {
  background-color: #f5f5f5;
  transition: all 0.35s ease-in-out;
}
.users table {
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
}
.users table p {
  margin-bottom: 0;
}
.users table thead {
  background-color: black;
  color: white;
}
.users table thead th {
  padding: 0.2rem 1rem;
}
.users table thead th:first-of-type {
  width: 25%;
}
.users table thead th:nth-child(2n) {
  width: 35%;
}
.users table thead th p {
  font-family: tt-light;
}
.users table tbody td {
  padding: 1rem 1rem;
}
.users__table--entry {
  display: flex;
  align-items: center;
}
.users__table--edit {
  display: flex;
  justify-content: flex-end;
}
.users__table--edit a {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease-in-out;
  border-radius: 50%;
}
.users__table--edit a:hover {
  transition: all 0.35s ease-in-out;
  background: #ccc;
}
.users__table--edit img {
  width: 20px;
}
.users__pagination {
  margin: 1rem 0;
  display: flex;
  justify-content: space-between;
}
.users__pagination p {
  margin-bottom: 0;
}
.users__pagination--nav {
  display: flex;
  align-items: center;
}
.users__pagination--nav--pager img {
  width: 20px;
  height: 30px;
  transform: rotate(90deg);
  margin-right: 12px;
}
.users__pagination--nav--pager img.forward {
  transform: rotate(-90deg);
  margin-left: 12px;
}
.users__pagination--nav--item {
  margin-right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 0.5rem;
}
.users__pagination--nav--item p {
  margin-bottom: 0;
  line-height: 1;
}
.users__pagination--nav--item.active, .users__pagination--nav--item:hover {
  color: #fff;
  background-color: #A80932;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 0.5rem;
}
.users__pagination--nav--total {
  margin-bottom: 0;
}
