.big_tip, .big_tip_1, .big_tip_2 {color: #F00000; /*font-size: 105%;*/ cursor: pointer; }
.big_tip_1{color: #1434d4;}
.big_tip_2{color: #16a34a;}

.tip {  
    width: 152px;  

    height: 70px; 
    display: none;  
    position: absolute; 
    z-index: 9999999;
    
   background-color: #D25757;
   color: #FFFFFF;
   font-weight: bold;   
    
     
    padding: 10px 5px 10px 10px;
   
     -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    
  }  
  
  /* big{color: #F00000; font-size: 105%; cursor: pointer; } */

.tip {  
    width: 152px;  

    height: 70px; 
    display: none;  
    position: absolute; 
    z-index: 9999999;
    
   background-color: #D25757;
   color: #FFFFFF;
   font-weight: bold;   
    
     
    padding: 10px 5px 10px 10px;
   
     -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    
  }  
  

  
/*-------------------------------tilttip ----------*/
/* základ – společný pro všechny */
.tooltip {
  position: relative;
  display: inline-flex;
  cursor: help;
}
.tooltip__box {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: 220px;
  padding: 8px 12px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 10;
}
.tooltip__box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
}
.tooltip:hover .tooltip__box,
.tooltip:focus-within .tooltip__box {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ---- barevné varianty ---- */

/* červ */
.tooltip { color: #bc2525; }
.tooltip .tooltip__box { background: #962230; }
.tooltip .tooltip__box::after { border-top-color: #741d60; }

/* modrá */
.tooltip01 { color: #2563eb; }
.tooltip01 .tooltip__box { background: #2563eb; }
.tooltip01 .tooltip__box::after { border-top-color: #2563eb; }

/* zelená */
.tooltip02 { color: #16a34a; }
.tooltip02 .tooltip__box { background: #16a34a; }
.tooltip02 .tooltip__box::after { border-top-color: #16a34a; }

/* oranžová / akční */
.tooltip03 { color: #ea580c; }
.tooltip03 .tooltip__box { background: #ea580c; }
.tooltip03 .tooltip__box::after { border-top-color: #ea580c; }

/* tmavá / neutrální */
.tooltip04 { color: #1e293b; }
.tooltip04 .tooltip__box { background: #1e293b; }
.tooltip04 .tooltip__box::after { border-top-color: #1e293b; }




/* image-pop-up */

.image-pop-up {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.image-pop-up figure {
  margin: 0;
  text-align: center;
  max-width: 214px;
}
.image-pop-up figure img {
  width: 100%;
  height: auto;
  cursor: zoom-in;
  transition: opacity .2s ease;
}
.image-pop-up figure img:hover { opacity: .85; }

/* lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox:target { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
}