.plotovky-popis-ikony-blok {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   gap: 20px;
   width: 100%;
   max-width: 1500px;
   margin: 15px 0 75px 0;
   padding: 15px;
   background-color: white;
   border: 1px dotted grey;
   border-radius: 30px;
   text-align: center;
}

.plotovky-popis-ikony-sloupec {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 120px;
   max-width: 100%;
   padding: 10px;
   box-sizing: border-box;
}

.plotovky-popis-ikony-sloupec img {
   width: 60px;
   height: auto;
   margin-bottom: 10px;
}

.produkt-popis {
            margin: 15px;
            padding: 30px;
            text-align: left;
        }
.sekce-odstavec {
    border: 0px dotted grey;
    margin: 10px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.img-container-popis {
    height: 400px;
    width: 500px;
    margin: 10px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-container-popis img {
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.text-container-popis {
    flex: 1;
    text-align: left;
    padding: 15px;
}
        @media (max-width: 770px) {
    .sekce-odstavec {
        flex-direction: column;
        align-items: flex-start;
    }

    .img-container-popis {
        width: 100%;
        height: auto;
        margin: 0;
    }

    .text-container-popis {
        width: 100%;
        padding: 10px 0;
    }
}
hr.popis_deleni {
  border-top: 1px dotted grey;
}