/*GENERAL*/

@font-face {
  font-family: Roboto;
  src: local(Roboto), url(/assets/font/Roboto-Regular.ttf) format("truetype");
  font-style: normal;
  font-stretch: normal;
  font-weight: 100;
}

:root {
  --color-one: rgb(8, 8, 8);
  --color-two: white;
  --color-three: white;
  --color-four: rgb(21, 21, 24);
}

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

*::-webkit-scrollbar {
  width: 0 !important;
  display: none !important;
}

::selection {
  background: white;
  color: black;
}

::-moz-selection {
  background: white;
  color: black;

  /* Gecko Browsers */
}

/* CSS */
/* Style the focused option in the datalist */
option::selection {
  background-color: #007bff; /* Change to the desired background color */
  color: white; /* Change to the desired text color */
}

select {
  font-size: 1rem;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  appearance: none;
  margin: 0 0 10px 0;
  cursor: pointer;
  min-width: 10px; /* Set a minimum width */
}

select::after {
  content: "\25BC";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

select:hover {
  background-color: #f0f0f0;
}

select:focus {
  background-color: #e0e0e0;
  width: auto;
}

option {
  background-color: #f0f0f0;
  color: #333;
}

html,
body {
  font-weight: 100;
  position: relative;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin: 0px;
  padding: 0px;
  font-size: 1.1rem;
  width: 100%;
  font-family: "Roboto", sans-serif;
  background: var(--color-four);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  scrollbar-width: none;
}

h1 {
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: 100;
  color: white;
}

h2 {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}

h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}

time {
  display: block;
  margin: 10px 0 10px 0;
}

button {
  background: silver;
  padding: 6px;
  border-radius: 10px;
  border: 2px solid white;
  margin: 0 8px 8px 0;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
}

mark {
  background: yellow;
  color: black;
  padding: 5px;
  width: fit-content;
  margin: 10px 0 10px 0;
  display: block;
}

mark a {
  color: black;
}

.info {
  color: white;
  margin: 20px 0 20px 0;
}

button:hover {
  background: black;
  color: white;
  border: 2px solid white;
}

button.active {
  background: black;
  color: white;
  border: 2px solid white;
}

button a {
  background: none;
}

strong {
  font-weight: 800;
}

a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

a[rel="external"] {
  font-weight: bold;
  color: #b5b4be;
}

a[rel="external"]:hover {
  font-weight: bold;
  color: #ffffff;
}

video {
  max-width: 600px;
}

img {
  width: 100%;
  display: block;
}

p {
  margin-bottom: 1rem;
}

li {
  list-style: none;
}

hr {
  height: 4px;
  background: white;
  margin: 0 0 1rem 0;
}

label {
  color: white;
}

option {
  background: white;
  color: blue;
  cursor: pointer;
}

input {
  padding: 10px;
  height: auto;
  margin: 0 10px 0px 0;
  color: black !important;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

input[type="submit"] {
  background: yellow;
  cursor: pointer;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

input[type="search"] {
  margin: 0 0px 0px 0;
  max-width: 80vw !important;
}

input.date {
  padding: 10px;
  height: 50px;
  margin: 0 5px 0px 0;
}

table {
  display: none;
  border-radius: 8px;
  min-width: 100%;
}

table,
th {
  border: 2px solid white;
  color: white;
  white-space: nowrap;
}

table,
th span {
  display: inline-block;
}

td {
  border: 2px solid white;
  padding: 5px;
  white-space: pre-line;
  position: relative;
}

table,
tr,
td,
th {
  border: 2px solid white;
  color: white;
}

th {
  background: white;
  color: black;
  font-size: 1.1rem;
  cursor: pointer;
}

tr.error {
  background: red;
  color: white;
}

tr.selected {
  background: green !important;
}

td.error {
  background: red;
  color: white;
}

.do-not-display {
  display: none !important;
}

section {
  margin: 0 0 50px 0;
}

.debug {
  outline: 2px solid red;
}
table caption {
  margin: 0 0 20px 0;
}

div#user-input {
  position: fixed;
  bottom: 0px;
  z-index: 900000;
  background: rgb(41, 40, 40);
  border-top: 3px solid white;
  width: 100%;
  padding: 20px;
  display: none;
}

div#user-input input {
  margin: 10px 0 10px 0;
  border-radius: 5px;
  border: 2px solid orange;
  padding: 10px;
  font-size: 1.2rem;
}

div#user-input label {
  margin: 10px 0 10px 0;
  font-size: 1.2rem;
}

div#side-toast {
  position: fixed;
  height: auto;
  overflow: none;
  background: orange;
  color: white;
  z-index: 100;
  padding: 8px;
  top: 70vh;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;

  transition: all 0.5s ease-in-out;
  transform-origin: left top;
  transform: translate(-100vw, 0px);
}

div#side-toast img {
  width: 30px;
}

/*///////////////////////////
///TOAST////////////////*/

div#toast {
  position: fixed;
  overflow: none;
  background: rgb(85, 197, 136);
  color: white;
  z-index: 1000000000;
  min-width: 100%;
  min-height: 62px;
  padding: 5px;
  top: 0px;

  transition: all 0.5s ease-in-out;
  transform-origin: left top;
  transform: translate(0px, -100px);
}

/*/ //////////////////////////
///MESSAGE////////////////*/

div#message {
  position: fixed;
  z-index: 1000;
  background: pink;
  padding: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  display: none;
  text-align: center;
}

div#message img {
  margin: 20px 25px 0 50%;
  max-width: 50px;
}

/*///////////////////////////
///POPUP////////////////*/

div#popup {
  position: fixed;
  z-index: 400000;
  min-width: 100%;
  min-height: 100%;
  background: rgb(255, 255, 255);
  padding: 30px;
  display: none;
}

div.popup-button {
  cursor: pointer;
}

div#popup div#value {
  margin: 50px;
  text-align: center;
}

div#popup div#close {
  background: red;
  color: white;
  min-width: 100% !important;
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 10px;
  height: 80px;
  font-size: 1.1rem !important;
  text-align: center;
  cursor: pointer;
}

.mc-picker table {
  display: table !important;
}

.picker__body table {
  display: table !important;
}

div#wrapper {
  position: relative;
  margin: 0px;
  padding: 120px 20px 20px 20px;
}

div#top-bar {
  margin: 0 0 50px 0;
}

div#download button {
  cursor: pointer;
  height: 50px;
  width: auto;
  margin: 0 0 0 10px;
}

div#download {
  cursor: pointer;
  height: 50px;
  width: auto;
  color: #fff;
  background: none;
}

.id {
  cursor: copy;
}

div#map-box {
  width: 100vw;
  height: 100vh;
  z-index: 5;
  position: fixed;
  display: block;
  top: -1000000px;
  left: 0px;
  overflow: hidden;
}

div#map-box #add-address-button {
  width: 100vw;
  z-index: 5;
  position: absolute;
  display: block;
  left: 0px;
  bottom: 30px;
  background: green;
  color: white;
  padding: 5px 5px 5px 5px;
  font-size: 1.2rem;
  display: none;
  border-radius: 0;
  outline: 0px;
}

div#map-info-box {
  width: 100vw;
  height: auto;
  z-index: 5;
  position: absolute;
  display: block;
  left: 0px;
  bottom: 0px;
  background: black;
  color: white;
  padding: 5px 5px 5px 5px;
  font-size: 1.2rem;
}

div#map-close {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 300000000000;
  display: none;
  width: 40px;
}

div#map-my-position {
  position: fixed;
  top: 20px;
  left: 70px;
  z-index: 300000000000;
  display: none;
  width: 40px;
}

div#map-layer-button {
  position: fixed;
  top: 20px;
  left: 120px;
  z-index: 300000000000;
  display: none;
  width: 40px;
}

div#map {
  width: 100vw;
  height: 100vh;
  z-index: 3;
  position: relative;
  display: block;
}

/*autocomplete*/

div#map-box .result-container .items {
  background: pink;
  padding: 7px;
  margin: 0 0 5px 0;
}

div#map-box #search {
  position: absolute;
  top: 70px;
  z-index: 2000000;
  width: 100%;
}

div#map-box #search input {
  padding: 5px 5px 5px 5px;
  font-size: 1rem !important;
  padding: 10px !important;

  border-radius: 10px;
  outline: 2px solid black;
  width: auto;
  margin: 0 0 10px 15px;
}

.loading-spinner {
  display: none;
  position: fixed;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;

  z-index: 5000000;
}
.loading-spinner div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid rgb(126, 11, 11);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: rgb(238, 27, 27) transparent transparent transparent;
}
.loading-spinner div:nth-child(1) {
  animation-delay: -0.45s;
}
.loading-spinner div:nth-child(2) {
  animation-delay: -0.3s;
}
.loading-spinner div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
} /* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(
    -50%
  ); /* Center the tooltip horizontally using Flexbox */
  margin-bottom: 5px;
  padding: 7px;
  width: auto;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(
    -50%
  ); /* Center the triangle horizontally using Flexbox */
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.marker {
  width: 25px;
  height: 25px;
  background-color: #e60776;
  border-radius: 50%;
  position: absolute;
  top: 43px;
  left: 43px;
  border: 5px solid black;
  -webkit-animation: pulsate 3s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation: pulsate 3s ease-out;
  animation-iteration-count: infinite;
}

img.default-marker {
  filter: hue-rotate(0deg);
}

img.selected-marker {
  filter: hue-rotate(120deg);
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.4, 0.4);
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.4, 1.4);
    opacity: 0;
  }
}

/*NAVIGATION*/

div#icon-bar {
  position: fixed;
  z-index: 1000000000;
  right: 70px;
  padding: 10px 10px 10px 10px;
  top: 1px;
  max-width: 300px;
  min-width: 300px;
  height: auto;
  background: none;
}

div#icon-bar > * {
  margin: -6px 0 0 10px;
  display: flex;
  align-content: space-around;
}

div#button-close {
  cursor: pointer;
  display: block;
  position: fixed;
  z-index: 2000000;
  left: 10px;
  top: 20px;
  width: 30px;
  height: 30px;
}

button#backButton {
  width: 30px;
  height: 30px;
}

a.backButton {
  width: 30px;
  height: 30px;
  margin: 0 10px 0 0;
}

div#button-close img.close-white {
  width: 20px;
  display: none;
}

div#button-close img.close-black {
  width: 20px;
  display: none;
}

div#button-failback {
  display: none;
}

div#button-print {
  cursor: pointer;
  display: none;
}
div#button-print img {
  width: 33px;
}

div#button-map {
  cursor: pointer;
  display: none;
}
div#button-map img {
  width: 40px;
}

nav button#lang-toggle {
  display: none;
}

nav {
  position: fixed;
  right: 0px;
  top: 0px;
  max-width: 300px;
  padding: 0px;
  height: 80px;
  z-index: 3000000000;
  background: none;
}

nav .icon {
  max-width: 30px;
}

nav #logo {
  max-width: 50px;
  margin: 0 0 50px -10px;
}

nav ul {
  margin: 10px 0 20px 0;
  padding: 10px;
  position: relative;
  height: auto;
}

nav ul li {
  margin: 0 0 20px 0;
}

nav ul li a {
  color: white;
  font-size: 1rem;
}

nav ul li a img:nth-child(2) {
  display: none;
}

nav ul li:hover a.active img:nth-child(1) {
  display: none;
}

nav ul li a.active img:nth-child(1) {
  display: none;
}

nav ul li a.active img:nth-child(2) {
  display: block;
}

nav ul li:hover a img:nth-child(2) {
  display: block;
}

nav ul li:hover a img:nth-child(1) {
  display: none;
}

nav input[type="checkbox"] {
  display: none !important;
}

div#navigation-content {
  background: black;
  min-width: 130px;
  min-height: 100vh;
  position: fixed;
  top: 0px;
  right: 0;
  z-index: 60000;
  display: none;
}

nav div#navigation-content div.inner {
  position: absolute;
  min-height: 99vh;
  right: 20px;
  width: auto;
  scrollbar-color: unset;
}

nav div#menu-button div#open-button {
  border-top: 7px solid white;
  border-bottom: 7px solid white;
  width: 50px;
  height: 30px;
  cursor: pointer;
  position: fixed;
  z-index: 4000000000;
  right: 10px;
  top: 6px;
}

nav div#menu-button div#open-button div {
  min-width: 50px;
  height: 5px;
  background: white;
  margin: 5px 0 0 0;
}

#search-bar {
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 10px;
  z-index: 3000;
  min-width: 100%;
  max-width: 100% !important;
  background: black;
}

#search-bar input[type="search"] {
  min-width: 50%;
  max-width: 50% !important;
}

div.search-header {
  margin: 0px 0 10px 0;
}

/*WHEN CLICKED*/

#desktop-icon:checked ~ label div#menu-button div#open-button {
  display: none;
}

#desktop-icon:checked ~ label + div#navigation-content {
  overflow: auto;
  top: 0px;
  right: 0px;
  display: block;
  position: fixed;
  z-index: 100000000000;
}

/*
TEAM-TEMPLATE
*/

div#team-template {
  display: none;
  padding: 1mm;
}

/*
RECEIPT-TEMPLATE
*/

div#receipt-template {
  display: none;
  position: fixed;
  z-index: 300000000;
  top: 0;
  left: 0;
  min-width: 100% !important;
  min-height: 100% !important;
  background: white !important;
  overflow: scroll;
  color: black;
  font-size: 0.6rem;
  margin: 0;
  padding: 2rem;
}

div#receipt-template div.content {
  font-size: 0.6rem;
  min-height: 15cm;
  max-width: 80%;
  margin: 4rem 0 0 0;
}

div#receipt-template div.content h1 {
  font-size: 0.8rem;
  color: black !important;
  margin: 0 0 0.9rem 0;
  font-weight: bold;
}

div#receipt-template div.content h2 {
  font-size: 0.7rem;
  color: black !important;
  margin: 0 0 0.7rem 0;
  font-weight: bold;
}

div#receipt-template div.content div.products {
  margin: 0cm 0 1.2rem 0;
  font-size: 0.6rem;
}

div#receipt-template div.content div#reference {
  margin: 0cm 0 1.2rem 0;
}

div#receipt-template div.content div.products ol {
  font-size: 0.6rem !important;
  list-style-type: decimal !important;
  list-style-position: inside !important;
}

div#receipt-template div.content div.products ol li {
  font-size: 0.6rem !important;
  list-style-position: inside !important;
}

div#receipt-template div.content div#address {
  margin: 0 0 1.2rem 0;
  font-size: 0.6rem;
}

div#receipt-template div.content div.products span {
  min-width: 50%;
  max-width: 50%;
  font-size: 0.6rem;
}

div#receipt-template div.header {
  color: black;
  margin: 0mm 0 1rem 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

div#receipt-template div.header-left {
  font-size: 0.6rem;
  max-width: 40% !important;
}

div#receipt-template div.header-left div.customer {
  margin: 0 0 2rem 0;
}

div#receipt-template div.header-left div.customer ul li:first-child {
  font-weight: bold;
  border: none;
}

div#receipt-template div.header-left div.payment {
  margin: 0 0 1rem 0;
  border-bottom: 0.5rem solid black;
  padding: 0 0 2rem 0;
  font-size: 0.6rem;
}

div#receipt-template div.header-right {
  font-size: 0.6rem;
  max-width: 40% !important;
}

div#receipt-template div.header-right ul {
  margin: 1rem 0 0 0;
}

div#receipt-template div.header-right div.icons-bar img.logo-img {
  width: 140px;
}

div#receipt-template div.header-right div img.twint-img {
  width: 100px;
  margin: 0.1cm 0 0 0;
}

div#receipt-template div.header-right div div.twint-title {
  margin: 0.5cm 0 0 0;
}

div#receipt-template #prices {
  border-top: 1px solid silver;
  padding: 20px 0 20px 0;
  font-size: 0.6rem;
}

div#receipt-template #prices div:last-child {
  padding: 20px 0 20px 0;
  border-top: 2px solid black;
}

div#receipt-template #prices div:nth-child(3) {
  padding: 0px 0 10px 0;
}

div#receipt-template div.content div.products span.price {
  text-align: right;
}

div#receipt-template div.content div.price-total {
  font-weight: bold;
}

div#receipt-template div.content div.price-mwst {
  padding: 0 0 0px 0;
}

div#receipt-template #prices .price-total span:last-child {
  font-size: 0.9rem;
}

div#receipt-template div.content div.products span.price {
  text-align: right;
}

/*
OFFER-TEMPLATE
*/

div#offer-template {
  display: none;
  padding: 10mm;
}

div#offer-template div.content {
  min-height: 15cm;
}

div#offer-template div.content div.products {
  margin: 0 0 0.5cm 0;
}

div#offer-template div.content div.text {
  margin: 0cm 0 1cm 0;
}

div#offer-template div.content div.products {
  margin: 1cm 0 1cm 0;
}

div#offer-template div.content div.price-total {
  font-weight: bold;
  margin: 1cm 0 0 0;
}

div#offer-template div.content div.products span {
  min-width: 50%;
  max-width: 50%;
}

div#offer-template div.content div.products span.price {
  text-align: right;
}

div#offer-template div.footer {
  position: fixed;
  bottom: 0;
}

div#offer-template div.icons-bar img {
  max-width: 160px;
  display: block;
}

div#offer-template div.header-right div.icons-bar img.logo-img {
  width: 140px;
}

div#offer-template div.header {
  color: black;
  margin: 0mm 0 2cm 0;
}

div#offer-template div.header-left {
  font-size: 0.6rem;
}

div#offer-template div.header-left div.customer ul li:first-child {
  font-size: 0.5rem;
  border-bottom: 1px solid black;
  margin: 0 0 2mm 0;
  padding: 0 0 0.5mm 0;
}

div#offer-template div.header-left div.payment {
  margin: 0 0 3mm 0;
  border-bottom: 0.5mm solid black;
  padding: 0 0 0.5mm 0;
  font-size: 1rem;
}

div#offer-template div.header-right {
  font-size: 0.6rem;
}

div#offer-template div.header-right ul {
  margin: 1cm 0 0 0;
}

div#offer-template div.footer {
  font-size: 0.7rem;
  padding: 1cm;
}

div#offer-template div.content {
  font-size: 0.7rem;
}

/*
FLYER-TEMPLATE
*/

div#flyer-template {
  display: none;
  padding: 5mm;
}

div#flyer-template div.content {
  min-height: 15cm;
}

div#flyer-template div.content div.products {
  margin: 0 0 0.5cm 0;
}

div#flyer-template div.content div.text {
  margin: 0cm 0 1cm 0;
}

div#flyer-template div.content div.products {
  margin: 1cm 0 1cm 0;
}

div#flyer-template div.content div.price-total {
  font-weight: bold;
  margin: 1cm 0 2cm 0;
}

div#flyer-template div.content div.products {
  margin: 1cm 0 0 0;
}

div#flyer-template div.icons-bar img {
  max-width: 160px;
  display: block;
}

div#flyer-template div.header-right div.icons-bar img.logo-img {
  width: 140px;
}

div#flyer-template div.header {
  color: black;
  margin: 0mm 0 2cm 0;
}

div#flyer-template div.header-left {
  font-size: 0.6rem;
}

div#flyer-template div.header-left div.customer ul li:first-child {
  font-size: 0.5rem;
  border-bottom: 1px solid black;
  margin: 0 0 2mm 0;
  padding: 0 0 0.5mm 0;
}

div#flyer-template div.header-left div.payment {
  margin: 0 0 3mm 0;
  border-bottom: 0.5mm solid black;
  padding: 0 0 0.5mm 0;
  font-size: 1rem;
}

div#flyer-template div.header-right {
  font-size: 0.6rem;
}

div#flyer-template div.header-right ul {
  margin: 1cm 0 0 0;
}

div#flyer-template div.content {
  font-size: 0.7rem;
}

div#flyer-template {
  display: none;
}

/*
PoD-TEMPLATE
*/

div#pod-template {
  display: none;
  position: fixed;
  z-index: 300000000;
  top: 0;
  left: 0;
  min-width: 100% !important;
  min-height: 100% !important;
  background: white !important;
  overflow: scroll;
  color: black;
  font-size: 0.6rem;
  margin: 0;
  padding: 2rem;
}

div#pod-template div.content {
  font-size: 0.6rem;
  min-height: 15cm;
  max-width: 80%;
  margin: 4rem 0 0 0;
}

div#pod-template div.content h1 {
  font-size: 0.8rem;
  color: black !important;
  margin: 0 0 0.9rem 0;
  font-weight: bold;
}

div#pod-template div.content h2 {
  font-size: 0.7rem;
  color: black !important;
  margin: 0 0 0.7rem 0;
  font-weight: bold;
}

div#pod-template div.content div.products {
  margin: 0cm 0 1.2rem 0;
  font-size: 0.6rem;
}

div#pod-template div.content div#reference {
  margin: 0cm 0 1.2rem 0;
}

div#pod-template div.content div.products ol {
  font-size: 0.6rem !important;
  list-style-type: decimal !important;
  list-style-position: inside !important;
}

div#pod-template div.content div.products ol li {
  font-size: 0.6rem !important;
  list-style-position: inside !important;
}

div#pod-template div.content div#address {
  margin: 0 0 1.2rem 0;
  font-size: 0.6rem;
}

div#pod-template div.content div.products span {
  min-width: 50%;
  max-width: 50%;
  font-size: 0.6rem;
}

div#pod-template div.header {
  color: black;
  margin: 0mm 0 1rem 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

div#pod-template div.header-left {
  font-size: 0.6rem;
  max-width: 40% !important;
}

div#pod-template div.header-left div.customer {
  margin: 0 0 2rem 0;
}

div#pod-template div.header-left div.customer ul li:first-child {
  font-weight: bold;
  border: none;
}

div#pod-template div.header-left div.payment {
  margin: 0 0 1rem 0;
  border-bottom: 0.5rem solid black;
  padding: 0 0 2rem 0;
  font-size: 0.6rem;
}

div#pod-template div.header-right {
  font-size: 0.6rem;
  max-width: 40% !important;
}

div#pod-template div.header-right ul {
  margin: 1rem 0 0 0;
}

div#pod-template div.header-right div.icons-bar img.logo-img {
  width: 140px;
}

div#pod-template #prices {
  border-top: 1px solid silver;
  padding: 20px 0 20px 0;
  font-size: 0.6rem;
}

div#pod-template #prices div:last-child {
  padding: 20px 0 20px 0;
  border-top: 2px solid black;
}

div#pod-template #prices div:nth-child(3) {
  padding: 0px 0 10px 0;
}

div#pod-template div.content div.products span.price {
  text-align: right;
}

div#pod-template div.content div.price-total {
  font-weight: bold;
}

div#pod-template div.content div.price-mwst {
  padding: 0 0 0px 0;
}

div#pod-template #prices .price-total span:last-child {
  font-size: 0.9rem;
}

div#pod-template div.content div.products span.price {
  text-align: right;
}
/*STATIONBOARD*/

#stationboard-table {
  margin: 20px 0 0 0;
}

.stationboard .search-input {
  min-width: 80vw !important;
  height: 50px !important;
}

/* L O G I N */

div.login {
  background-image: url("/assets/image/background/background.jpg");

  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  max-height: 100vh;
}

div.login div.inner {
  width: 100%;
  padding: 1rem;
  background: none;
}

div.login div form input {
  width: 100%;
  margin: 0 0 5px 0;
  height: auto;
  border-radius: 0 !important;
}

div.login div form input[type="submit"] {
  background: yellow;
  cursor: pointer;
}

div.login div#error-message {
  color: white;
  display: block;
  font-size: 0.8rem;
}

/*FLYER */

table.flyer {
  min-width: 800px;
}

/*Stationboard*/

div.realtime {
  color: rgb(212, 26, 57);
}
div.sub-menu {
  position: fixed;
  background: black;
  top: 0px;
  z-index: 5;
  padding: 30px;
}

div.sub-menu button {
  font-size: 1rem;
}
/* T O D O */

.error {
  background: rgb(235, 8, 8);
}

div.shifts-page section#filter-buttons button {
  background: gray;
  padding: 8px;
  border-radius: 10px;
  margin: 0 8px 8px 0;
  color: white;
  cursor: pointer;
  height: auto;
  font-size: 1rem;
}

div.shifts-page section#filter-buttons {
  background: none;
  padding: 10px;
}

div.shifts-page div#content {
  margin: 0 0 0 0;
}

div.shift-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin: 0px 0 0 0;
}

/* W E L C O M E */

div.welcome-guide-page ul li {
  list-style-type: disc !important;
  list-style-position: inside !important;
  margin: 0 0 15px 0;
}

div.welcome-guide-page ul {
  display: list-item;
  padding: 0 0 0 15px;
}

div.welcome-guide-page table td {
  color: black;
}

div.welcome-guide-page div#inner {
  padding: 0px;
  background: white !important;
}

div.welcome-guide-page {
  padding: 20px;
  background: white !important;
}

div.welcome-guide-page h1 {
  display: block;
  color: black;
  margin: 0 0 10px 0;
  font-size: 1rem;
  font-weight: bold;
}

div.welcome-guide-page h2 {
  display: block;
  color: black;
  margin: 0 0 10px 0;
  font-size: 1rem;
  font-weight: bold;
}

div.welcome-guide-page section div {
  display: block;
  color: rgb(73, 69, 69);
  background: white !important;
}

div.welcome-guide-page div a {
  color: black;
}

div.welcome-guide-page section {
  margin: 0 0 70px 0;
  background: white !important;
}

/*TODO*/

.global-info {
  position: fixed;
  left: 0px;
  background: none;
}

.user-cash-icon {
  position: fixed;
  left: 10px;
}

.not-read-notes {
  position: fixed;
  right: 10px;
}

#teamwork-shift-icon {
  position: fixed;
  right: 40px;
}

#summary-content {
  background: black !important;
  color: white;
  display: block;
  position: fixed;
}

#summary-content > * {
  background: black !important;
  color: white;
  display: block;
  min-width: 100vw;
}

#summary-content {
  background: black !important;
  color: white;
  display: block;
  min-width: 100vw;
  left: 0;
  position: fixed;
  height: 100vh;
}

button.timer {
  min-width: 100%;
  color: rgb(255, 255, 255) !important;
}

button.timer-running {
  min-width: 100%;
  background: red !important;
  color: rgb(255, 255, 255);
}

#call-button {
  background: none;
  color: white;
  position: fixed;
  bottom: 40px;
  width: fit-content;
}

#call-button a {
  color: white;

  margin: 20px 0 20px 0;
  background: black;
  color: white;
  padding: 10px;
  border-radius: 20px;
  border: 2px solid white;
  font-size: 1rem;
}

div.coworker {
  border-top: 5px solid white;
  padding: 15px 0 15px 0;
  background: rgba(170, 14, 118, 0.4);
  border-bottom: 5px solid white;
  margin: 10px 0 10px 0;
}

#daycontrol-print-list {
  display: none;
}

.radio-icon {
  width: 20px;
  height: 20px;
}

div.todo {
  background: dodgerblue;
}

div.todo nav {
  background: none;
}

div.todo div#content {
  margin: 100px 0;
  position: relative;
  background: dodgerblue;
}

div.todo article {
  color: white;
  margin: 0 0 10px 0 !important;
  padding: 10px 10px 10px 10px;
  position: relative;
  background: black;
  min-width: 100%;
}

div.todo article details {
  margin: 10px 0 10px 0px;
}

div.todo header summary {
  display: block;
  margin: 10px 0 0px 0;
  text-align: center;
}

div.todo article div.timestamp {
  display: none;
}

div.todo article div.date {
  display: none;
}

div.swipe-zone {
  min-height: 30px;
  min-width: 100%;
  height: 30px;
  position: relative;
}
div.swipe-zone .point {
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

div.todo article div.price {
  display: none;
}

div.todo article button {
  font-size: 1rem;
}

div.todo article div.customer-note {
  margin: 0 0 10px 0 !important;
}

div.todo article div.status {
  display: none;
}

div.todo article div.customer {
  font-weight: bold;
  margin: 0 0 10px 0;
}

div.todo article div.description {
  margin: 10px 0 10px 0;
  line-break: normal;
}

@keyframes color-change {
  0% {
    color: white;
  }

  10% {
    color: blue;
  }

  20% {
    color: green;
  }
  50% {
    color: yellow;
  }

  70% {
    color: pink;
  }
  100% {
    color: rgb(0, 0, 0);
  }
}

div.todo article.ticket {
  background: rgb(0, 0, 0);
  color: white;
  padding: 10px 10px 10px 10px;
}

div.todo article.ticket button {
  margin: 10px 0 10px 0;
  background: black;
  color: white;
  padding: 5px 5px 5px 5px;
  border-radius: 10px;
  border: 2px solid white;
  display: block;
}

div.todo article.ticket div.vip {
  animation: color-change 5s infinite;
}

div.todo article div.product-added-after {
  background: yellow;
  color: black;
  width: fit-content;
  padding: 5px;
}

div.todo article.at-all div.job-type {
  display: none;
}

div.todo article.at-all time {
  display: none !important;
}

div.todo article.at-all details {
  display: none !important;
}

div.todo article.at-all .total {
  display: none !important;
}

div.todo article.at-all .customer {
  display: none !important;
}

div.todo article.at-all .customerReference {
  display: none !important;
}

div.todo article.at-all .price-product-collection {
  display: none !important;
}

div.todo article.at-all a {
  color: black;
}

div.todo article[data-type="task"] {
  color: black;
  background: white;
}

div.todo header {
  top: 0;
  position: fixed;
  z-index: 6;
}

div.todo header div {
  padding: 5px;
  background: pink !important;
}

div.todo header div.mate-name {
  padding: 5px;
  height: auto;
  width: 100vw;
  background: pink !important;
}

div.todo header div a.active {
  color: black;
}

div.todo header div a.hover {
  color: black;
}

div.todo article.at-all a {
  color: black;
}

div.todo article div.job-type {
  width: 100%;
  padding: 0px 0px 10px 0;
  position: relative;
}

div.todo article div.job-type::first-letter {
  text-transform: uppercase;
}

div.todo article.start {
  border-top: 5px solid white;
}

div.todo article.end {
  border-bottom: 5px solid white;
  margin: 0 0 20px 0 !important;
}

.splitted-order {
  position: relative;
  background-color: #3498db;
  color: white;
  padding: 5px;
}

.splitted-order::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: repeating-linear-gradient(
    -45deg,
    #fff,
    #fff 10px,
    #3498db 10px,
    #3498db 20px
  );
}

div.todo article div.products-prices {
  margin: 10px 0 10px 0;
}

div.todo div.detail-content button {
  margin-left: 10px;
}

div.todo #done-popup {
  width: 100vw;
  height: 100vh;
  background: black;
  position: fixed;
  display: none;
}

div.todo #done-popup img {
  width: 80px;
}

@keyframes grow {
  0% {
    opacity: 100;
  }
  100% {
    opacity: 0;
  }
}

@keyframes toggleOpacity {
  50% {
    opacity: 1;
  } /* Turn off */
  50.001% {
    opacity: 0.4;
  }

  /* Keep off state for a short period */

  52.999% {
    opacity: 0.4;
  } /* Turn back on */
  53% {
    opacity: 1;
  }
}

/*shaking element*/

@keyframes tilt-shaking {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0eg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

div.todo article.animation {
  animation-name: grow;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
}

div.todo article[data-accepted="0"] {
  background: red !important;
  color: white;
  padding: 10px 10px 0px 10px;
}

div.todo article button.read-button {
  display: none !important;
}

div.todo article[data-accepted="0"] button.read-button {
  display: block !important;
}

div.todo article[data-accepted="0"] > div.swipe-zone {
  display: none !important;
}

div.todo article[data-accepted="1"] {
  background: black !important;
  color: white;
}

div.todo article[data-accepted="2"] {
  background: black !important;
  color: white;
}

div.todo article[data-payment="cash"] {
  background: rgb(15, 158, 177) !important;
}

div.todo article.express {
  background: rgb(231, 40, 206) !important;
}

div.todo article.wrong-sc {
  background: rgb(227, 37, 107);
}

div.todo article.error {
  background: rgb(227, 37, 107);
}

div.todo article.pinned {
  order: -1;
  background: rgb(27, 185, 125) !important;
}

div.todo div.id {
  position: absolute;
  top: 10px;
  right: 80px;
  font-size: 0.9rem;
  cursor: pointer;
}

div.todo article div.customerReference {
  display: none !important;
}

div.todo div.sc-id {
  margin: 10px 0 0 0;
  opacity: 0;
}

div.todo article.ticket.pre-dispatched {
  display: none !important;
}

div.sub-menu div#close-button {
  position: fixed;
  z-index: 300000000000000;
  top: 0px;
  right: 20px;
  max-width: 120px;
}

div.sub-menu div#close-button img {
  max-width: 120px;
}

/*mate list*/
div.todo .radio-icon {
  margin: 0 10px 0 0;
}

div.todo #mate-list {
  min-width: 100%;
}

div.todo #mate-list article {
  margin: 0 0 10px 0 !important;
  height: auto;
}

div.todo #mate-list article.extra {
  padding: 20px 10px 20px 10px;
}

div.todo article.mate a {
  padding: 10px;
}

div.todo article.run-etl {
  padding: 20px !important;
  color: dodgerblue;
  font-weight: bold;
}

div.todo article.mate a:hover {
  color: pink;
}

div.todo article.mate {
  background: black;
  font-size: 1.1rem;
  min-width: 100% !important;
}

div.todo article.ticket.at-all {
  background: white !important;
  color: black !important;
  padding: 5px 5px 0px 5px;
}

div.todo article.ticket.at-all time {
  display: none !important;
}

div.todo article.error {
  background: rgb(218, 78, 78) !important;
}

div.todo article.express {
  background: rgb(2, 0, 36) !important;
  background: linear-gradient(
    90deg,
    rgb(36, 26, 0) 0%,
    rgba(144, 99, 64, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  ) !important;
}

div.todo article.pod {
  background: rgb(2, 0, 36) !important;
  background: radial-gradient(
    circle,
    rgba(63, 94, 251, 1) 10%,
    rgba(167, 70, 252, 1) 100%
  ) !important;
}

div.todo article[data-type="task"] {
  color: black;
  background: white !important;
}

div.done-page div#content article.ticket.executed {
  display: block;
}

div.done-page div#content article.ticket.dispatched {
  display: none;
}

div.todo-page div#content article.ticket.executed {
  display: none;
}

div.todo-page div#content article.dispatched {
  display: block !important;
}

/*Shifts-page*/

div.shifts-page section {
  margin: 0 0 0px 0;
  background: white;
}

div.shifts-page section div.row {
  position: relative;
  color: black;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}
div.shifts-page section div.row:nth-child(even) {
  background-color: white;
}
div.shifts-page section div.row:nth-child(odd) {
  background-color: silver;
}

div.shifts-page section div.row span {
  color: black;
  padding: 20px;
}

div.shifts-page section div.row span.shift-name {
  font-weight: bold;
}

div.shifts-page section div.date {
  background: black;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

div.shifts-page div#month {
  color: white;
  font-size: 2rem !important;
  margin: 0 0 20px 0;
}

div.shifts-page section div.date .day {
  background: black;
  color: white;
}

div.shifts-page section div {
  margin: 0 0px 10px 0;
}

/*
RECURRENCE
*/

div.recurrence table tr.disabled {
  opacity: 0.7;
}

/*
Missions
*/

div.missions table tr.hidde {
  display: none;
}
td.pdf-button {
  padding: 10px;
}

td.pdf-button button {
  width: 40px;
  background: none;
  padding: 10px;
  border: none;
}

td.pdf-button button img {
  width: 40px;
}

/*
QR
*/

div#qr-screen {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 30000;
  display: none;
  background: black;
}

div#qr-screen video {
  min-height: 100vh;
  min-width: 100vw;
}

/*
Stats
*/

.vis-major {
  display: none;
}

div.stats #visualization {
  margin: 20px 0 50px 0;
}

.vis-inner {
  color: rgb(
    238,
    241,
    238
  ) !important; /* Change the color to whatever you prefer */
  font-weight: bold; /* You can add more styling if needed */
  padding: 3px;
}

.vis-text {
  color: rgb(
    238,
    241,
    238
  ) !important; /* Change the color to whatever you prefer */
  font-weight: bold; /* You can add more styling if needed */
  padding: 3px;
}

table#shifts-workload tr.fix td.payment-1 {
  color: black;
}
table#shifts-workload tr.fix td.payment-2 {
  color: black;
}

table#shifts-workload tr.fix td.payment-dif {
  color: black;
}

table#shifts-workload tr.fix td.payment-dif-total {
  color: black;
}

div.stats {
  background: rgb(31, 30, 30) !important;
}

div.stats article {
  background: rgb(41, 39, 39);
  color: white;
  font-size: 1rem;
  outline: 3px solid rgb(95, 93, 93);
  padding: 5px;
  border-radius: 3px;
  margin: 0 0 10px 0;
}

div.stats div.graph-stats article {
  margin: 0px 10px 10px 0;
}

div.stats article#products-stats {
  height: auto;
}

div.stats table#days tr.last {
  background: yellow;
}

div#info-box {
  margin: 0 10px 0 0;
}

div#info-box article {
  margin: 0 0px 10px 0;
  padding: 10px;
}
div.stats h3.chart {
  padding: 5px;
}

div.stats div#button-print {
  display: none;
}
div.stats div#button-list {
  display: none;
}
div.stats div#button-map {
  display: none;
}

table#recurrences-table {
  display: none;
}
/*
SWISSCONNECT
*/

div.clearing div#button-list {
  display: none;
}

div.clearing div#button-print {
  display: none;
}

div.clearing div#button-map {
  display: none;
}

/*
MISSIONS
*/

div.missions div#top-bar {
  margin: 0 0 50px 0;
}

div.missions div#top-bar div {
  margin: 0 0 20px 0;
}

div.missions table {
  border-collapse: collapse;
}

button[class*="download"] {
  padding: 10px;
  background: rgb(75, 224, 142);
  color: white;
  cursor: pointer;
  font-size: 1rem;
  margin: 0 5px 0 0;
}

button[class*="download"]:hover {
  background: rgb(151, 229, 186);
}

div.missions #submenu-month {
  position: fixed;
  z-index: 20000000000;
  top: 0px;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: black;
  padding: 50px;
  display: none;
}

/*
    import
    */

div.import tr[data-not-today="1"] {
  opacity: 0.7 !important;
}

div.import tr[data-not-today="1"]:hover {
  opacity: 1 !important;
}

/*
    training
    */
.training div#tourplan-menu {
  display: none;
}

div#mates-button-list button {
  margin: 0 10px 10px 0;
}

/*
    tourplan
    */

div.tourplan div#button-list {
  display: none;
}
div.tourplan div#button-map {
  display: none;
}

div#table-title {
  display: none;
  margin: 0 0 10px 0;
}
td.job-active {
  background: green;
}

td.cancelled-day {
  background: red;
}

td.additional-day {
  background: limegreen;
}

div#tourplan-menu {
  margin: 0 0 50px 0;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset !important;
}

div#search-form div#price {
  margin: 0 0 0 10px;
  padding: 5px;
  background: none;
  font-size: 0.9rem;
}

div#search-form button {
  background: black;
  font-size: 1rem;
  color: white;
  border-radius: 3px;
  padding: 3px;
}

div#search-form label {
  color: black;
}

div#search-form div#distance {
  margin: 0 0 0 10px;
  padding: 5px;
  font-size: 0.9rem;
  background: none;
}

div#search-form div#distance div {
  width: 60px;
  text-align: right;
  padding: 0 5px 0 0;
}

div#search-form div#price div {
  width: 60px;
  text-align: right;
  padding: 0 5px 0 0;
}

div#order-form-wrapper {
  display: none;
}

div#order-form {
  position: absolute;
  left: 100px;
  z-index: 2000000;
}

#swissconnect-todo td {
  position: relative;
}

table#sc-todo tr[data-not-today="1"] {
  opacity: 0.3 !important;
}

table#sc-todo tr[data-not-today="1"]:hover {
  opacity: 1 !important;
}

div.autocomplete-suggestion {
  background: black !important;
  overflow: auto;
  cursor: pointer;
  margin: 10px 0 0 0;
  padding: 5px;
  color: white !important;
  position: relative;
  display: block;
  min-height: 40px;
}

div.autocomplete-suggestion:hover {
  background: white !important;
  cursor: pointer;
  color: black !important;
}

.autocomplete-box {
  position: absolute;
  z-index: 20;
  height: auto;
  width: 98%;
  overflow: none;
  background: rgb(0, 0, 0);
  overflow: none;
  outline: 5px solid red;
}

div#messages {
  display: none;
}

img.ok-icon {
  width: 10px;
  position: absolute;
  right: 5px;
  top: 5px;
  display: none;
}

/*PRINT*/

@page {
  size: A4;
  margin: 0mm;
  padding: 0mm;
}
@media print {
  html,
  body {
    width: 210mm;
    height: 297mm;
    margin: 0mm;
    padding: 0mm;
    background: white !important;
  }

  div#wrapper {
    position: relative;
    margin: 0px !important;
    padding: 8mm !important;
    background: white !important;
  }

  .not-print {
    display: none !important;
  }

  button {
    display: none;
  }

  div#team-template {
    display: block;
  }

  #daycontrol-print-list {
    display: block;
    padding: 1cm 0 0 0;
  }

  #daycontrol-print-list #inner {
    margin-top: -1.5cm;
    width: 100%;
  }

  #daycontrol-print-list img {
    position: fixed;
    top: 4mm;
    left: 1cm;
    width: 2cm;
  }

  #daycontrol-print-list div.input {
    border: 0.5mm solid black;
    border-bottom: 0.8mm solid black;
    border-left: 0.8mm solid black;
    margin: 0 0 1cm 0;
    position: relative;
  }

  #daycontrol-print-list div.input.dash-check {
    border-bottom: 0.8mm solid red;
    border-left: 0.8mm solid red;
  }

  #daycontrol-print-list div.input.highlight {
    border-bottom: 0.8mm solid blue;
    border-left: 0.8mm solid blue;
  }

  #daycontrol-print-list div.row {
    margin: 0 0 0.3cm 0;
    height: 1.7cm;
    break-inside: avoid;
  }
  #daycontrol-print-list div.row div.input span {
    font-size: 2mm;
    color: gray;
    position: absolute;
    bottom: 1mm;
    left: 4mm;
  }

  #daycontrol-print-list div.row div.input {
    width: 1.5cm;
    margin: 0 0 0 0.3cm;
    padding: 2mm;
    height: 1.5cm;
    position: relative;
    overflow: hidden;
  }

  #daycontrol-print-list div.row div.name {
    width: 1.1cm;
    font-weight: 600;
    font-size: 10pt !important;
    padding: 5mm 0 0 0cm;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #daycontrol-date {
    font-size: 12pt;
    position: fixed;
    top: 4mm;
    right: 5mm;
  }

  #daycontrol-print-list #readme {
    font-size: 8pt;
    margin: 1cm 0 0 1.3cm;
  }

  #button-print {
    display: none !important;
  }

  table,
  th,
  td {
    border: 2px solid black;
    color: black;
  }

  div.flyer div.icons-bar img.logo-img {
    display: block;
  }

  div.bill {
    display: none;
  }

  div.icons-bar {
    display: block;
  }
  div.payment {
    color: black;
  }

  .print-me {
    display: block !important;
    color: black;
    padding: 5mm;
  }

  div#bill-template {
    display: block;
  }

  div#offer-template {
    display: block;
  }

  div#offer-template div#address {
    margin: 0 0 1cm 0;
  }

  div#offer-template div#product-list {
    margin: 0 0 1cm 0;
  }

  div#offer-template div#product-list div.products {
    margin: -1cm 0 0cm 0;
  }

  div#offer-template div#price {
    margin: 1cm 0 1cm 0;
  }

  /*Flyer Template*/

  div#flyer-template {
    display: block;
  }

  div#flyer-template table {
    display: table;
    border: none;
    font-size: 12pt;
    margin: 0 0 1cm 0;
    width: 80%;
  }

  div#flyer-template table td,
  tr,
  th {
    font-size: 12pt;
    border: none;
    width: 50%;
    text-align: left;
  }

  div#receipt-template {
    display: none;
    background: black;

    position: fixed;
    top: 0px;
    left: 0px;
  }
}

@media screen and (min-width: 0px) and (max-width: 1200px) {
  html,
  body {
    font-size: 1rem;
    width: 100vw;
  }

  div.login {
    background-image: url("/assets/image/background/background-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    max-height: 100vh;
  }

  /* L O G I N */
  div.login div.inner {
    width: 50%;
    margin: 30vh 0 5px 0;
    overflow: hidden;
  }

  div.login div form {
    text-align: center;
  }

  div.login div form input {
    min-width: 100% !important;
    margin: 0 0 15px 0;
    font-size: 1rem;
    border-radius: 0 !important;
  }

  div.login div#error-message {
    color: white;
    display: block;
    font-size: 1rem;
    text-align: center;
  }

  div.login div#wrapper div.inner {
    width: 100%;
    margin: 30vh 0 5px 0;
  }

  div#logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    display: none;
  }

  div#logo img {
    width: 80px;
  }

  nav div#navigation-content {
    height: 100vh;
    padding: 0px;
  }

  nav div#navigation-content div.inner {
    height: 100vh;
    padding: 30px;
  }

  nav div#navigation-content ul {
    margin: 0px 0px 0px 0px;
    overflow: scroll;
    position: relative;
    height: 100vh;
  }

  nav div#navigation-content ul li {
    margin: 0 0 20px 0px;
  }

  nav div#navigation-content ul li a {
    color: white;
    font-size: 1rem;
  }

  /*TODO*/

  div.todo header div {
    padding: 5px;
    background: pink;
    font-size: 1.2rem;
  }

  div.todo div.id {
    display: none;
  }

  button.read-button {
    font-size: 1.1rem;
    width: auto;
    padding: 10px;
    border-radius: 20px;
    margin: 50px 0 20px 50px;
  }

  button.read-button.animation {
    font-size: 1.1rem;
    padding: 20px;
    border-radius: 20px;
    margin: 50px 0 20px 50px;
    animation: tilt-shaking 0.25s infinite;
  }

  article.read button.read-button {
    display: none !important;
  }

  article.ticket {
    background: red !important;
    color: white;
  }

  article.read {
    background: black !important;
  }

  article.ticket[data-type^="pick"] {
    border-left: 3px solid rgb(9, 240, 124);
  }

  article.ticket[data-type^="drop"] {
    border-left: 3px solid rgb(226, 15, 245);
  }

  article div.job-type {
    display: none;
  }

  div.todo article {
    min-width: 100vw !important;
  }

  div.todo-page div#content article.ticket {
    display: block !important;
  }

  div.done-page article.ticket {
    display: none !important;
  }

  div.done-page div#content article.ticket.executed {
    display: none !important;
  }

  div.todo-page div#content article.ticket.done-by-user {
    display: none !important ;
  }

  div.done-page div#content article.ticket.done-by-user {
    display: block !important ;
  }

  article button.read-button {
    background: rgb(0, 0, 0) !important;
    color: white;
  }

  div.todo div#button-list {
    display: none;
  }

  div.todo div#button-print {
    display: none !important;
  }

  nav div#button-map {
    display: none !important;
  }

  article.only-desktop {
    display: none !important;
  }

  div.welcome-guide-page div#filter-buttons {
    position: fixed;
    top: 80px;
    left: 0px;
    z-index: 3000000;
    max-width: 100vw !important;
    width: 100vw;
    overflow: hidden;
    background: black;
  }

  div.welcome-guide-page div#filter-buttons div {
    margin: 0 0 0 30px;
  }
}
