/* Nastavení písma, velikosti a barvy textu pro celý web korenov new */
body {
  font-family: Roboto;, Ariel, Verdana, Arial, sans-serif;
  //font-size: 16px;
  color: #000;
}

/* Přidání animace pro přilétání konkrétního obrázku z zleva s ID=obrazek1 */
@keyframes slide-in-from-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

#obrazek1 {
  animation: slide-in-from-left 1.5s ease-out;
}


@keyframes flyInFromRight {
  0% {
    transform: translateX(100%) scale(0.5);
    opacity: 0;
  }
  100% {
    transform: translateX(0%) scale(1);
    opacity: 1;
  }
}

.box {
  animation: flyInFromRight 1s ease-out;
}



/* Přidání animace pro přilétání boxu zleva */
@keyframes flyInFromLeft {
  0% {
    transform: translateX(-100%) scale(0.5);
    opacity: 0;
  }
  100% {
    transform: translateX(0%) scale(1);
    opacity: 1;
  }
}

/* Aplikace animace na kontejner box right col */
.box-container {
  /* Přidání původního kontejnerového stylu */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 230px;
  //max-height: 400px;
  background-color: rgba(255, 255, 255, 0.1); /* Poloprůhledné pozadí */
  margin: auto;
  overflow: hidden;

/* Úpravy */
  border: 1px solid rgba(0,0,0,0.5);
  box-shadow:0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19);
  
  /* Přidání animace */
  animation: flyInFromLeft 1s ease-out;
}


/* Aplikace animace na kontejner box left col */
.box-container-left {
  /* Přidání původního kontejnerového stylu */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 180px;
  //max-height: 400px;
  background-color: rgba(255, 255, 255, 0.1); /* Poloprůhledné pozadí */
  margin: 0px;
  overflow: hidden;

/* Úpravy */
  border: 1px solid rgba(0,0,0,0.5);
  box-shadow:0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19);
  
  /* Přidání animace */
  animation: flyInFromRight 1s ease-out;  
}


/* Hlavička boxu */
.box-header {
  width: 100%;
  background-color: #c0c8f0; /* #2940b0; #000; */
  color: #000;
  text-align: center;
  padding: 10px 0;
  
 // text-shadow: 1px 1px 4px #474747, 2px 2px 2px rgba(192,200,240,0); 
  //font: Roboto;  
  font-weight: 900;
  //letter-spacing: 1px;
}

/* Tělo boxu */
.box-body {
  background-color: #fff; /* #e0e1ff; #f0f0f0; */
  color: #000;
  width: 100%;
  text-align: justify;
  padding: 10px;
  box-sizing: border-box;
  overflow: auto;
  
  //font: Roboto, Verdana;
  //font-size: 100%;
  font-size: font-small;
  //line-height: 1em;
}

/* Patička boxu */
.box-footer {
  width: 100%;
  background-color: #c0c8f0; /* #2940b0; #2940b0; */
  color: #000;
  text-align: center;
  padding: 10px 0;
  
   //text-shadow: 1px 1px 4px #474747, 2px 2px 2px rgba(192,200,240,0); 
  //font: Roboto;  
  font-weight: 900;
  letter-spacing: 1px;
}

/* další styly */
/* písmo */
html {
  font-size: 16px; /* Nastavení základní velikosti písma */
}

/* Velikosti písma */
.font-xx-small {
  font-size: 0.6rem;
}

.font-x-small {
  font-size: 0.75rem;
}

.font-small {
  font-size: 0.875rem;
}

.font-tiny {
  font-size: 1rem;
}

.font-medium {
  font-size: 1.125rem;
}

.font-large {
  font-size: 1.5rem;
}

.font-x-large {
  font-size: 2rem;
}

.font-xx-large {
  font-size: 2.5rem;
}
/*  konec písma */


/* box na zvětšení a zmenšení písma */
.font-resizer {
  position: fixed;
  top: 10px;
  right: 10px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.font-resizer button {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 3px 5px;
  font-size: 1rem;
  cursor: pointer;
  margin: 0 5px;
}

.font-resizer span {
  font-size: 1rem;
}
/* konec boxu na zvětšení a zmenšení písma */


		/* nová patička */

.tableFooter {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  table-layout: fixed;
  
  line-height: 1em;
}

.tdFooter {
  width: 25%;
  padding: 20px;
  box-sizing: border-box;
}

.transparent-box-footer {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 10px 10px 10px 10px; /* 20px */ 
}
		/* konec nové patička */





/* modální okno pro chatbota */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* konec - modální okno pro chatbota */

/* chatbot řešení bez modálního okna */
.chatbot-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2196f3;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 999;
}

.chatbot-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.chatbot-icon {
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  position: relative;
}

.chatbot-icon::before,
.chatbot-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #2196f3;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  animation: pulsate 2s infinite;
}

.chatbot-icon::before {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  animation-delay: -1s;
}

.chatbot-icon::after {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.chatbot-text {
  color: white;
  font-size: 18px;
  margin-left: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

.chatbot-button:hover .chatbot-text {
  opacity: 1;
}

@keyframes pulsate {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
/* konec - chatbot řešení bez modálního okna */



/* modální okno pro chatbota */
/*
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
*/
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* konec - modální okno pro chatbota */


