* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}


html, body {
  /* font-size: 10px; */
  font-size: 62.5%;
  font-family: Verdana, Geneva, sans-serif; }

body {
  --bg1:#ffffff;
  --bg2:#b9f3ff;

  background: linear-gradient(
    90deg,
    var(--bg1) 0%,
    var(--bg2) 15%,
    var(--bg2) 85%,
    var(--bg1) 100%
  );
}

p { color: black; font-size: 1.8rem; padding: 2px; margin: 15px; text-align: justify; }
a { color: black; font-size: 1.8rem; text-decoration: none; }
.center { text-align: center; vertical-align: middle; }

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; }

h4, h5, h6,
.polozka .nazev,
.polozka .popis,
.cena { font-family: Verdana, Geneva, sans-serif; }

h1 { color:#1E88E5; font-size:3rem; margin:40px 15px 15px; line-height:1.2; }
h2 { color:#1B74C8; font-size:2.5rem; margin:35px 15px 15px; line-height:1.2; }
h3 { color:#175FAE; font-size:2rem; margin:30px 15px 15px; line-height:1.2; }
h4 { color:#124A94; font-size:1.75rem; margin:25px 15px 15px; line-height:1.2; }
h5 { color:#0D367E; font-size:1.5rem; margin:20px 15px 15px; line-height:1.2; }
h6 { color:#082F6A; font-size:1.25rem; margin:15px 15px 15px; line-height:1.2; }

.poznamka {color: black; font-size: 1.6rem; padding: 2px; margin: 0; text-align: center; }
.poznamka-15-margin { margin: 15px 0; }

.container {
  margin: 0 auto;
  padding: 0;
  border: 0px solid #1658cd;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 0 10px rgba(22,88,205,0.1);
  width: 95%;
  max-width: 1600px;
}

.container_top {
  margin-top: 30px;
}

.container_content {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.container_content_top,
.container_content_webcams,
.container_content_last_records {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 10px;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.container_content_last_records h3 {
  width: 100%;
  text-align: center;
  color: #1658cd;
  font-size: 2.6rem;
  margin: 40px 0 20px 0;
}

.container_content_last_records .cell,
.container_content_webcams .cell {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 3px 3px 5px rgba(0,0,0,0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  gap: 5px;
  max-width: 320px;
}
.cell {
  margin: 8px;
}
.cell a div .button_small {
  display: inline-block;
}

.container_content_last_records .cell:hover,
.container_content_webcams .cell:hover {
  transform: scale(1.02);
}

.container_content_last_records .cell img,
.container_content_webcams .cell img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}

.cell p {
  color: #1658cd;
  text-align: center;
  font-size: 1.6rem;
  margin: 5px 10px;
  font-weight: 500;
  line-height: 1.6rem;
  margin-bottom: 15px;
}

.cell {
    background: white;
    border: 1px solid #ccc;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    overflow: hidden;
    max-width: 340px;
    margin: 15px;
    transition: transform .25s ease;
}

.cell:hover {
    transform: translateY(-4px);
}

.cell img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.cell-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cell-title {
    padding: 20px 15px 25px 15px;
    text-align: center;
}

.cell-title span {
    display: inline-block;
    padding: 12px 22px;
    background: #1658cd;
    color: white;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
}
.cell div {
text-align: center;
}
.contents-index {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
}



.button_small {
  display: inline-block;          /* inline-block pro správné zalamování */
  padding: 10px 20px;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 15px;
  background-color: #1658cd;
  color: #fff;
  border: 1px solid white;
  min-width: 120px;               /* fixní šířka pro stabilní zalamování */
  text-decoration: none;
  margin-bottom: 15px;
  margin-top: 10px;
  width: 90%;
  margin: 10px auto;
}

.button_small:hover {
  color: #1658cd;
  background-color: white;
  border: 1px solid #1658cd;
  transition: 0.3s;
  cursor: pointer;
}

.button_region {
  background-color: #1658cd;
  color: white;
  border-radius: 15px;
  padding: 10px 25px;
  margin: 2px;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid white;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.button_region:hover {
  background-color: white;
  color: #1658cd;
  border: 1px solid #1658cd;
  transition: 0.3s;
}

.button {
  display: inline-block;          /* inline-block pro správné zalamování */
  padding: 10px 20px;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 15px;
  background-color: #1658cd;
  color: #fff;
  border: 1px solid white;
  min-width: 120px;               /* fixní šířka pro stabilní zalamování */
  text-decoration: none;
  margin-bottom: 15px;
  margin-top: 10px;
  width: 90%;
  margin: 10px 20px;
}

.button:hover {
  color: #1658cd;
  background-color: white;
  border: 1px solid #1658cd;
  transition: 0.3s;
  cursor: pointer;
}

.buttons_area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;                        
}


ul{
    list-style:none;              /* odstraní výchozí odrážky */
    padding:0;                    /* odstraní odsazení uvnitř seznamu */
    margin:0 auto;   
    width: 100%;        
    max-width:500px;              /* maximální šířka seznamu pro čitelnost */
} 

ul li{
    margin-bottom:12px;           /* mezera mezi jednotlivými položkami */
    padding:10px 12px;            /* prostor uvnitř položky (vertikálně 12px, horizontálně 16px) */
    border-radius:6px;            /* zaoblení rohů položek */
    font-size:2.0rem;             /* velikost písma */
}



.upozorneni {
  width: 100%; height: 60px; border: 0px solid red; margin: 10px 0px 0px; padding: 0px 0px;
}

.upozorneni h4 {
  font-family: Arial; font-size: 1,6vw; color:black; text-align: center;
}

.place { font-size: 1.6rem;
  padding: 20px 12px;
}

.section  { width: 1300px;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: white;
    border-radius: 8px; 
}

.section li {
    padding: 0;                   /* NESMÍ MÍT padding */
    margin: 0 0 6px 0;
    background-color: #e1ecf7ff;    
}

.section li a {
    display: block; 
    padding: 12px 16px;
    font-size: 1.8rem;
    color: inherit;               /* inherit */
    text-decoration: none;
}

.section li:hover {
    color: #fff;
}

/* ===============================
   HLAVNÍ STYLY PROFILU
================================ */
.profile__content {
  font-family: Arial, sans-serif;
  width: 100%;
  margin: 0;
  padding: 3rem 6%;
  line-height: 1.6;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  position: relative;
}

/* Typografie */
.profile__subtitle {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.profile__content h2 {
  font-size: 1.9rem;
  margin: 3rem 0 1.2rem;
  padding-left: 1rem;
  border-left: 8px solid;
}

.profile__content h3 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
}

.profile__content p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1rem auto;
}

.profile__content p a:hover {
  text-decoration: underline;
}

/* Boxy a sekce */
section {
  margin-bottom: 2.5rem;
}

.box-dark, .box-light {
  padding: 1.6rem;
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
}

.box-dark:hover, .box-light:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Seznamy */
.profile__content ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem auto 0;
  max-width: 520px;
}

.profile__content ul li {
  margin: 0.5rem 0;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.6rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.profile__content ul li:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Tlačítka obecně */
.profile__content .btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-weight: bold;
  font-size: 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #0a3f3b;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .profile__content {
    padding: 2rem 1.2rem;
  }

  .profile__content .btn {
    width: 100%;
    font-size: 1.4rem;
  }
}




@media screen and (max-width: 599px) {
  h1 { font-size:2.6rem; line-height:1.2; }
  h2 { font-size:2.2rem; line-height:1.2; }
  h3 { font-size:2.0rem; line-height:1.2; }
  h4 { font-size:1.8rem; line-height:1.2; }
  h5 { font-size:1.6rem; line-height:1.2; }
  h6 { font-size:1.4rem; line-height:1.2; }
  p, a { font-size:1.4rem; line-height:1.4; }


  .container_content_last_records,
  .container_content_webcams {
    grid-template-columns: 1fr;
  }

  .button_small {
    font-size: 1.4rem;
  }

  .menu-vizitka {
    grid-template-columns: 1fr;
  }
}



@media screen and (min-width: 600px) and (max-width: 999px) {
  h1 { font-size: 3.0rem; }
  h2 { font-size: 2.6rem; }
  h3 { font-size: 2.2rem; }
  h4 { font-size: 1.8rem; }
  h5 { font-size: 1.6rem; }
  h6 { font-size: 1.4rem; }
  p, a { font-size: 1.5rem; }

  .container_content_last_records,
  .container_content_webcams {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}


@media screen and (min-width: 1000px) {
  h1 { font-size: 3.4rem; }
  h2 { font-size: 3.0rem; }
  h3 { font-size: 2.4rem; }
  h4 { font-size: 1.8rem; }
  h5 { font-size: 1.6rem; }
  h6 { font-size: 1.4rem; }
  p, a { font-size: 1.6rem; }




  .container_content_last_records,
  .container_content_webcams {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* ← UPRAVENO */
  }
}


.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1877F2 0%, #1658cd 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 12px 28px;
  gap: 12px;
  box-shadow: 0 4px 10px rgba(0, 64, 128, 0.25);
  transition: all 0.25s ease-in-out;
}

.share-button:hover {
  background: linear-gradient(180deg, #1a65e0 0%, #0f4dbd 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 64, 128, 0.35);
}

.share-button:active {
  transform: scale(0.98);
  box-shadow: 0 3px 6px rgba(0, 64, 128, 0.25);
}
.fb {
  display:flex;
  justify-content:center;
  margin-top: 20px;
  margin-bottom: 40px;
}
.fb-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.fb-logo img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.fb-text {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.default_img {
  border-radius: 5px;
  width: 100%;
  height: auto;
}

.hlavni-tabulka-vizitka {
width: 95%;
border-radius: 15px;
border: 1px solid silver;
background-color:white;
box-shadow:5px 5px 5px silver;
margin: 0 auto;
}


#produkty-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 10px;
}

.produkt-karta {
    display: block;
    width: 320px;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    text-decoration: none;
    color: black;
    border: 2px solid #22a246;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    position: relative;
}

.produkt-karta:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
    border-color: #39d55d;
}

.produkt-karta img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #22a246;
}

.produkt-karta h3 {
    font-size: 18px;
    text-align: center;
    padding: 10px;
    color: #0c7228;
    font-weight: 600;
}
.produkt-badge {
    background: #22a246;
    color: white;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

#akce-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 10px;
}

.akce-karta {
    display: block;
    width: 320px;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    text-decoration: none;
    color: black;
    border: 2px solid #e23030;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    position: relative;
}

.akce-karta:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
    border-color: #ff4848;
}

.akce-karta img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #e23030;
}

.akce-karta h3 {
    font-size: 18px;
    text-align: center;
    padding: 8px 10px;
    color: #9a1010;
    font-weight: 600;
}

.akce-datum {
    font-size: 16px;
    color: #ff4242;
    font-weight: bold;
    text-align: center;
    margin: 5px 0;
}

.akce-misto {
    font-size: 14px;
    color: #444;
    text-align: center;
    margin-bottom: 12px;
}

.akce-badge {
    background: #e23030;
    color: white;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

#prace-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 10px;
}

#prace-wrapper a {
  display: inline;
}

.prace-karta {
    display: block;
    width: 320px;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    text-decoration: none;
    color: black;
    border: 2px solid #1658cd;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    position: relative;
}

.prace-karta:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
    border-color: #2e7dff;
}

.prace-karta img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #1658cd;
}

.prace-karta h3 {
    font-size: 18px;
    text-align: center;
    padding: 10px;
    color: #1658cd;
    font-weight: 600;
}

.prace-badge {
    background: #1658cd;
    color: white;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

#doporucujeme-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 10px;
}

.doporucujeme-karta {
    display: inline;
    width: 240px;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    text-decoration: none;
    color: black;
    border: 2px solid #1658cd;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    position: relative;
}

.doporucujeme-karta:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
    border-color: #2e7dff;
}

.doporucujeme-karta img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #1658cd;
}

.doporucujeme-karta h3 {
    font-size: 18px;
    text-align: center;
    padding: 10px;
    color: #1658cd;
    font-weight: 600;
}

#doporucujeme-odkazy {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 10px;
}

.doporucujeme-odkazy a {
    display: inline;
    margin: 40px;
}

.doporucujeme-badge {
    background: #1658cd;
    color: white;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

.seznam_dlazdic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px;
    max-width: 1250px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .seznam_dlazdic {
        grid-template-columns: 1fr;
    }
}

.dlazdice {
    background: white;
    border-radius: 15px;
    border: 1px solid black;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 480px;
    height: 100%;

    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.dlazdice h3 {
    margin-top: 0;
    font-size: 2.2rem;
    color: #1658cd;
    text-align: center;
}

.mate-dotaz form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.mate-dotaz input[type=text],
.mate-dotaz textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #1658cd;
    border-radius: 8px;
    font-size: 1.6rem;
}

.mate-dotaz input[type=submit] {
    background: #1658cd;
    color: white;
    padding: 13px;
    border-radius: 10px;
    border: none;
    font-size: 1.7rem;
    cursor: pointer;
    margin-top: auto;
}

.mate-dotaz input[type=submit]:hover {
    background: white;
    color: #1658cd;
    border: 1px solid #1658cd;
}

.kontakty_stred {
    text-align: center;
    flex-grow: 1;
}

.kontakty_stred p {
    margin: 8px 0;
    font-size: 1.7rem;
}

.kontakty_stred img {
    width: 34px;
    height: 34px;
    margin: 6px;
    transition: transform 0.25s;
}

.kontakty_stred img:hover {
    transform: scale(1.2);
}

.mapa-vizitka {
    width: 100%;
    height: 400px;
    border: 1px solid #999;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
    margin-bottom: 10px;
}
.telefon {
font-weight: 700;
color: #1658cd;
font-family: Arial;
font-size: 24px;
display: block;
font-weight: normal;
text-align: center;
}
.telefon_text {
    display: block;
    color: black;
    font-family: Arial;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
}

.email {
font-weight: 700;
color: #1658cd;
font-family: Arial;
font-size: 16px;
text-align: center;
display: block;
}
.adresa {
font-family: Arial;
}

.social {
width: 40px;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  max-width: 400px;
  background-color: gray;
  border: 1px solid black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  font-size: 18px;
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}


.www {
    display: inline;
    text-align: center;
}
.otviraci-doba-nazev {
text-align: center;
display: block;

}
.otviraci-doba-nonstop {
color: red;
font-weight: bold;
}
.kontakty-stred {
width: 100%;
}

.kontakty-stred a {
border: 1px solid red;
}

.otviraci-doba-casy {
  color: rgb(78, 78, 78);
  padding: 2px;
  margin: 5px;
  font-size: 1.8rem;
}

.map-container {
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 480px;
    border: 0;
}

  .vizitka-text {
  padding: 20px;
  font-size: 1.8rem;
  }

.produkt_top {
    display: flex;
    flex-direction: row;
    width: 95%;
    margin: 0 auto;
    gap: 40px;
}

/* LEVÝ BLOK – PC + TABLET */
.produkt_top_levy {
    width: 60%;
}

/* PRAVÝ BLOK – PC + TABLET */
.produkt_top_pravy {
width: 40%;
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: white;
    border-radius: 15px;
}
.produkt_top img {
  width: 100%;
}

@media (max-width: 1200px) {
    .produkt_top {
        flex-direction: column;
    }

    .produkt_top_levy,
    .produkt_top_pravy {
        width: 100%;
    }
}
.produkt_popis {
  background-color: white;
  border: 1px solid black;
  border-radius: 8px;
  width: 95%;
  margin: 0 auto;
  padding: 15px;
  font-size: 1.8rem;
}

#fotogalerie {
  margin: 20px;
}

.galerie-container {
    width: 90%;
    margin: 0 auto;
}

.fotogalerie {
    border-radius: 10px;
    transition: transform .25s ease, box-shadow .25s ease;
    margin: 8px;
}

.fotogalerie:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
}

@media screen and (max-width: 999px) {
    .galerie-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
        place-items: center;
    }

    .galerie-container img {
        width: 97%;
        height: auto;
    }
}

@media screen and (min-width: 1000px) {
    .galerie-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;

        justify-content: center;
        place-items: center;
    }

    .galerie-container img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 10px;
    }
}


.map_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px auto;
}

.map_container .mapa,
.map_container .partner {
    width: 48%;
    height: 500px;
    margin: 15px auto;
    border-radius: 15px;
    box-shadow: 5px 5px 5px silver;
}

.map_container .mapa {
    background-color: #f8f8f8;
}

.map_container .partner {
    background-color: white;
    border: 1px solid gray;
    text-align: center;
}

.map_container .partner .name {
    font-size: 30px;
    margin: 15px 0 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map_container .partner .image img {
    width: 100%;
    max-height: 360px;
  }

@media screen and (max-width: 768px) {
    .map_container {
        flex-direction: column;
    }

    .map_container .mapa,
    .map_container .partner {
        width: 100%;
        height: 400px;
        margin: 10px 0;
    }
    .map_container .partner .image img {
    width: 100%;
    max-height: 320px;
  }
}



/*
ul li::before{
    content:"*";                /* symbol odrážky před textem
    color:#007BFF;            /* barva odrážky 
    display:inline-block;       /* aby šlo přesně nastavit šířku a umístění 
    width:1em;                  /* rezervuje prostor pro tečku 
    margin-left: 0.5em;           /* posune tečku mimo text, aby to vypadalo jako klasická odrážka 
    margin-right: 0.8em;
}
*/
