@charset "UTF-8";
/* version: 0.3 */
body, body.dark {
  --ion-color-primary: #e25304;
  /* #428cff; */
  --ion-color-primary-rgb: 226, 83, 3;
  /* 66,140,255; */
  --ion-color-primary-contrast: #fff;
  --ion-color-primary-contrast-rgb: 255, 255, 255;
  --ion-color-primary-shade: #e25304;
  /* #3a7be0; */
  --ion-color-primary-tint: #eadaad;
  /* #5598ff; */
  --ion-item-background: #f8f2e2;
  --ion-font-family: "Inter";
}

body.rotation-90 {
  transform: rotate(90deg) translateY(-100%);
}

body.rotation90 {
  transform: rotate(-90deg) translateX(-100%);
}

button.alert-button.alert-button-ok {
  background-color: var(--ion-color-primary);
  color: var(--ion-color-primary-contrast);
}

.full-screen {
  width: 100vw;
  height: 100vh;
}

.no-scroll {
  --overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-pagination-bullet-active {
  background: #e25304;
  /* Barva pro aktivní bullet */
}

/* fix spodni listy, kvuli iOS */
ion-tab-bar {
  height: 60px;
}
ion-tab-bar ion-tab-button ion-label {
  margin-bottom: 1rem;
}

.fixed-bottom-container {
  position: fixed;
  bottom: 2rem;
  left: 0;
  width: 100%;
  text-align: center;
  /* Centruje tlačítko, pokud je to potřeba */
  padding: 10px;
  /* Přidá padding pro odsazení od okraje obrazovky */
  z-index: 999;
  /* Zajistí, že bude nad ostatními prvky */
}

xx.container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100%; */
  flex-wrap: wrap;
}
xx.container ion-card {
  min-width: 10rem;
}
xx.container ion-card-content {
  padding: 0;
}

/* tab header */
#header-tab1 {
  transition: 0.3s ease-in-out;
  /* Animace při transformaci */
}

.header-scroll {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  /* Změňte podle vašich potřeb */
  z-index: 1;
  /* Zajistí, aby byl header nad obsahem */
  /* border-bottom: 1px rgba(0, 0, 0, 0.28) solid; */
}

.content-margin {
  margin-top: 5rem;
}

.tab-header-logo {
  height: 3rem;
  margin: 1rem;
  transition: 0.3s ease-in-out;
  /* Animace při transformaci */
}

.tab-header-logo-small {
  height: 1.5rem;
  /* Změní velikost loga při scrollování */
}

.tab-header-info {
  font-size: 0.9rem;
  margin-right: 1rem;
  color: grey;
  zoom: 1;
  transition: transform 0.3s ease-in-out;
  /* Animace při transformaci */
}

.tab-header-ico {
  margin-right: 1rem;
  color: grey;
  zoom: 1;
  transition: transform 0.3s ease-in-out;
  /* Animace při transformaci */
}

.off {
  /* zoom: 0.000001; */
  transform: scale(0.00001);
}

ion-modal#mm {
  --height: auto;
}

/* ripple efekt */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transform: scale(0);
  /*    animation: ripple-animation 0.5s linear infinite; /* infinite způsobí opakování */
  animation: ripple-animation 5s ease-in-out infinite;
  /* Animace trvá celkem 3 sekundy */
  /*    animation-delay: 0.5s; /* Počáteční zpoždění 0,5 sekundy */
}

.dark .ripple {
  background: rgba(0, 0, 0, 0.4);
}

@keyframes ripple-animation {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  15% {
    transform: scale(4);
    opacity: 0.7;
  }
  35% {
    transform: scale(4);
    opacity: 0;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
/* reload button */
#reloadButt {
  --border-radius: 50%;
  width: 56px;
}

#reloadButt.expanded {
  width: 150px;
  --border-radius: 25px;
  animation: expanded-change 0.3s ease-in-out;
}

#reloadButt.collapsed {
  width: 56px;
  --border-radius: 50%;
  animation: collapsed-change 0.3s ease-in-out;
}

@keyframes expanded-change {
  0% {
    --border-radius: 25px;
    width: 56px;
  }
  100% {
    --border-radius: 25px;
    width: 150px;
  }
}
@keyframes collapsed-change {
  0% {
    --border-radius: 25px;
    width: 150px;
  }
  100% {
    --border-radius: 25px;
    width: 56px;
  }
}
/*
 * Plateo CSS
 * -----------------------------------
*/
/* Posunuti elementu nad zobrazenou klavesnici */
.keyboard-open {
  bottom: 40vh !important;
}

.keyboard-open #foodDescription {
  max-height: 35vh;
}

.header-ios ion-toolbar:last-of-type {
  --border-width: 0;
}

ion-content[role=main] {
  --background: #eadaad;
}

ion-header {
  box-shadow: none !important;
}

ion-toolbar {
  --color: var( --ion-color-primary);
  --background: var( --ion-color-primary-tint);
  --min-height: 70px;
}

ion-menu ion-toolbar ion-title {
  margin: 2rem 0.5rem 0 0.5rem;
}

ion-menu ion-toolbar,
ion-menu ion-content {
  --background: white;
  font-size: 2rem !important;
  --ion-padding: 2rem;
}

ion-menu ion-content .list-md,
ion-menu ion-content .list-ios {
  background: white;
}

ion-menu ion-content ion-item {
  --background: white;
  --color: var( --ion-color-primary);
  --border-color: var( --ion-color-primary);
  --padding-start: 0;
  /*--ripple-color: blue; */
}

.md ion-modal {
  --border-radius: 4px;
}
.md ion-modal h3 {
  margin-top: 0;
  text-align: left;
  color: black;
}
.md ion-modal .body-modal {
  color: var(--ion-color-step-550, var(--ion-text-color-step-450, #737373));
  display: block;
  overflow: scroll;
}
.md ion-modal .buttons-modal {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.md ion-modal ion-button {
  --background: var(--ion-color-primary);
  --box-shadow: none;
  --border-radius: 2px;
  --margin-end: 8px;
  --margin-start: 0;
  --margin-top: 0;
  --margin-bottom: 0;
  --padding-end: 10px;
  --padding-start: 10px;
  --padding-top: 10px;
  --padding-bottom: 10px;
  --color: white;
  font-weight: 500;
  font-size: 16px;
}
.md ion-modal ion-button[fill=clear] {
  --color: var(--ion-color-primary);
  --background: transparent;
}

.ios ion-modal {
  --border-radius: 13px;
}
.ios ion-modal h3 {
  margin-top: 0;
  text-align: center;
  color: var(--ion-text-color, #000);
  /*        font-size: max(17px, 1.0625rem); */
  font-weight: 600;
}
.ios ion-modal .body-modal {
  /*        font-size: max(13px, 0.8125rem); */
  display: block;
  overflow: scroll;
}
.ios ion-modal .buttons-modal {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.creditCount {
  font-size: 1.2rem;
  padding: 0.2rem;
  font-weight: normal;
  line-height: 1.2;
}

.ios #userEmailButt {
  min-height: 2.1rem;
  padding-bottom: 0.2rem;
  padding-top: 0.2rem;
  width: 2.1rem;
}

/* input area */
.input-area {
  position: fixed;
  width: 100%;
  bottom: 0px;
  padding: 0 10px 20px 10px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, rgba(234, 218, 173, 0), rgba(234, 218, 173, 0) 10%, rgba(234, 218, 173, 0.8) 40%, #eadaad);
}
.input-area ion-textarea {
  --highlight-height: 0px;
}

.ios .area-button ion-button {
  width: 34px;
}

#foodDescription {
  border: none !important;
  outline: none !important;
  background-color: #fff;
  border-radius: 20px;
  padding: 15px;
  max-height: 70vh;
}

#foodDescription:focus,
#foodDescription:focus-visible {
  border: none !important;
  box-shadow: none !important;
}

.area-button-container {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  /* Přidání mezery mezi textarea a tlačítky */
  gap: 15px;
}

.area-button {
  display: flex;
  flex-direction: column;
  color: var(--ion-color-primary);
  font-size: small;
  text-align: center;
  align-items: center;
}

/* chat bubbless */
.chat-bubbles {
  padding-bottom: 190px;
  /* Prostor pro input area */
}

.bubble-ask {
  background-color: white;
  /* Barva pozadí odpovědi */
  color: black;
  border-radius: 20px;
  /* Zaoblení bubliny */
  padding: 10px;
  max-width: 70%;
  /* Maximální šířka bubliny */
  position: relative;
  margin: 0 auto;
  margin-right: 10px;
}

.bubble-container {
  display: flex;
  align-items: flex-end;
  /* Zarovná tlačítka k dolnímu okraji bubliny */
  gap: 10px;
  /* Mezera mezi bublinou a tlačítky */
}

.bubble {
  background-color: var(--ion-color-primary);
  /* Barva pozadí odpovědi */
  color: white;
  border-radius: 20px;
  /* Zaoblení bubliny */
  padding: 10px;
  margin: 10px;
  max-width: 70%;
  /* Maximální šířka bubliny */
  flex-grow: 1;
}

.button-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Zarovnání tlačítek dolů */
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

/* timeline */
.timeline-container {
  position: relative;
  margin: 20px;
  padding-left: 20px;
  margin-bottom: 100px;
  border-left: 3px solid var(--ion-color-primary);
}

.timeline-entry {
  position: relative;
  margin-bottom: 30px;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: -3px;
  width: 20px;
  height: 20px;
  background-color: var(--ion-color-primary);
  border-radius: 50%;
  border: 3px solid var(--ion-color-primary-tint);
  z-index: 1;
}

.timeline-date {
  font-weight: bold;
  margin-bottom: 5px;
}

.timeline-items {
  margin-left: 10px;
}

/* ananlysis */
#analysisContent {
  margin-bottom: 100px;
}

.graf-radek {
  margin-bottom: 8px;
}

.graf-nazev {
  margin-bottom: 4px;
  font-weight: bold;
}

.graf-container {
  background-color: #eee;
  height: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.graf-pruh {
  height: 100%;
  background-color: var(--ion-color-primary);
  text-align: right;
  padding-right: 5px;
  line-height: 20px;
  color: white;
  border-radius: 10px 0 0 10px;
}

/* fab button */
.plateo-fab {
  --background: transparent;
  --box-shadow: none;
  --background-activated: transparent;
}

/* wait screen */
.wait-screen {
  text-align: center;
  margin-top: 20px;
}

/*# sourceMappingURL=main.css.map */
