/* =========================================================
   PRESKRIPCE
   SPOLEČNÝ VZHLED SEZNAMU A DETAILU
========================================================= */


/* =========================================================
   1. HLAVNÍ KONTEJNER
========================================================= */

.ik-preskripce {

    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    padding: 0;

    box-sizing: border-box;

    color: var(--ik-text);

    min-width: 0;
}


/*
 * Vše uvnitř komponenty musí respektovat
 * její skutečnou šířku.
 */

.ik-preskripce *,
.ik-preskripce *::before,
.ik-preskripce *::after {

    box-sizing: border-box;

    min-width: 0;
}


/*
 * Ochrana proti přetékání
 */

.ik-preskripce img {

    display: block;

    max-width: 100%;

    height: auto;
}


/*
 * Všechny hlavní karty mají stejnou
 * šířkovou logiku.
 */

.ik-preskripce-list,
.ik-preskripce-detail-inner {

    width: 100%;
    max-width: 1100px;

    margin-left: auto;
    margin-right: auto;

    box-sizing: border-box;

    min-width: 0;
}


/* =========================================================
   2. SPOLEČNÁ KARTA
========================================================= */

.ik-preskripce-list,
.ik-preskripce-detail-inner {

    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e2eeee;
    border-radius: 16px;

    box-shadow:
        0 8px 30px rgba(0, 96, 100, 0.08);

    color: var(--ik-text);

    box-sizing: border-box;

    min-width: 0;
}


/* =========================================================
   3. SEZNAM – NADPIS
========================================================= */

.ik-preskripce-list-title {

    margin: 0 0 25px;

    color: var(--ik-primary);

    font-size: 28px;
    font-weight: 700;

    line-height: 1.25;

    overflow-wrap: anywhere;
}


/* =========================================================
   4. VYHLEDÁVÁNÍ
========================================================= */

.ik-preskripce-search {

    width: 100%;

    margin: 0 0 25px;
}


.ik-preskripce-search input {

    display: block;

    width: 100%;
    max-width: 100%;

    margin: 0;

    padding: 13px 15px;

    box-sizing: border-box;

    border: 1px solid #ccdcdc;
    border-radius: 8px;

    background: #ffffff;

    color: var(--ik-text);

    font-size: 15px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}


.ik-preskripce-search input:focus {

    border-color: var(--ik-primary);

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(0, 96, 100, 0.10);
}


.ik-preskripce-search input::placeholder {

    color: #8a999a;
}


/* =========================================================
   5. PRODUKTY – SEZNAM
========================================================= */

.ik-preskripce-products {

    display: flex;

    flex-direction: column;

    gap: 10px;

    width: 100%;

    min-width: 0;
}


/* =========================================================
   6. JEDEN PRODUKT V SEZNAMU
========================================================= */

.ik-preskripce-product {

    display: flex;

    align-items: center;

    width: 100%;
    max-width: 100%;

    gap: 18px;

    padding: 15px 17px;

    box-sizing: border-box;

    border: 1px solid #dfeaea;
    border-radius: 10px;

    background: #ffffff;

    color: var(--ik-text);

    overflow: hidden;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;
}


.ik-preskripce-product:hover {

    border-color: var(--ik-secondary);

    background: #f8fcfb;

    box-shadow:
        0 3px 12px rgba(0, 96, 100, 0.07);

    transform: translateY(-1px);
}


/* =========================================================
   7. INFORMACE O PRODUKTU
========================================================= */

.ik-preskripce-product-info {

    flex: 1 1 auto;

    width: auto;
    min-width: 0;

    overflow: hidden;
}


/* =========================================================
   8. NÁZEV
========================================================= */

.ik-preskripce-product-name {

    display: block;

    margin: 0;

    color: var(--ik-primary);

    font-size: 16px;
    font-weight: 700;

    line-height: 1.35;

    overflow-wrap: anywhere;
    word-break: break-word;
}


/* =========================================================
   9. POPIS
========================================================= */

.ik-preskripce-product-description {

    margin: 4px 0 0;

    color: #718183;

    font-size: 13px;

    line-height: 1.4;

    overflow-wrap: anywhere;
    word-break: break-word;
}


/* =========================================================
   10. SÚKL
========================================================= */

.ik-preskripce-product-sukl {

    margin: 4px 0 0;

    color: #536466;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.3;

    overflow-wrap: anywhere;
}


/* =========================================================
   11. META INFORMACE
========================================================= */

.ik-preskripce-product-meta {

    display: flex;

    align-items: center;

    gap: 15px;

    flex: 0 0 auto;

    min-width: 0;

    color: #657577;

    font-size: 13px;
}


/* =========================================================
   12. ODKAZ NA DETAIL
========================================================= */

.ik-preskripce-product-link {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding: 8px 14px;

    box-sizing: border-box;

    border: 1px solid var(--ik-primary);
    border-radius: 7px;

    background: var(--ik-primary);

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;
}


.ik-preskripce-product-link:hover {

    border-color: var(--ik-secondary);

    background: var(--ik-secondary);

    color: #ffffff;

    box-shadow:
        0 3px 8px rgba(0, 96, 100, 0.15);
}


.ik-preskripce-product-link:active {

    transform: translateY(1px);
}


/* =========================================================
   13. PRÁZDNÝ SEZNAM
========================================================= */

.ik-preskripce-empty {

    width: 100%;

    padding: 20px;

    border: 1px solid #dfeaea;
    border-radius: 10px;

    background: #f8fbfb;

    color: #718183;

    font-size: 14px;

    line-height: 1.5;

    text-align: center;
}


/* =========================================================
   14. STRÁNKOVÁNÍ
========================================================= */

.ik-preskripce-pagination {

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 7px;

    width: 100%;

    margin-top: 25px;
}


.ik-preskripce-pagination a,
.ik-preskripce-pagination span {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 38px;
    min-height: 38px;

    padding: 7px 11px;

    border: 1px solid #d9e6e6;
    border-radius: 7px;

    background: #ffffff;

    color: var(--ik-text);

    font-size: 14px;
    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}


.ik-preskripce-pagination a:hover {

    border-color: var(--ik-secondary);

    background: var(--ik-light);

    color: var(--ik-primary);
}


.ik-preskripce-pagination .current {

    border-color: var(--ik-primary);

    background: var(--ik-primary);

    color: #ffffff;
}


/* =========================================================
   15. DETAIL PRODUKTU
========================================================= */

.ik-preskripce-detail {

    width: 100%;
	
    margin: 0 auto;

    color: var(--ik-text);

    box-sizing: border-box;

    min-width: 0;
}


/* =========================================================
   16. NADPIS DETAILU
========================================================= */

.ik-preskripce-detail-title {

    margin: 0 0 18px;

    color: var(--ik-primary);

    font-size: 30px;
    font-weight: 700;

    line-height: 1.25;

    overflow-wrap: anywhere;
    word-break: break-word;
}


/* =========================================================
   17. POPIS DETAILU
========================================================= */

.ik-preskripce-detail-popis {

    width: 100%;

    margin: 0 0 25px;

    color: #536466;

    font-size: 15px;

    line-height: 1.65;

    overflow-wrap: anywhere;
}


.ik-preskripce-detail-popis p {

    margin: 0 0 10px;
}


.ik-preskripce-detail-popis p:last-child {

    margin-bottom: 0;
}


/* =========================================================
   ZÁKLADNÍ INFORMACE
========================================================= */

.ik-preskripce-detail-basic {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px;

    width: 100%;
    max-width: 100%;

    margin: 0 0 18px;

    box-sizing: border-box;
}


.ik-preskripce-detail-basic-item {

    min-width: 0;

    padding: 12px 14px;

    border: 1px solid #dceaea;

    border-radius: 8px;

    background: var(--ik-light);

    color: #526365;

    line-height: 1.4;

    overflow-wrap: anywhere;
}


.ik-preskripce-detail-basic-item strong {

    display: block;

    margin-bottom: 4px;

    color: #657577;

    font-size: 12px;

    font-weight: normal;

    line-height: 1.3;
}


.ik-preskripce-detail-basic-item span {

    display: block;

    color: var(--ik-text);

    font-size: 15px;

    font-weight: 600;

    line-height: 1.35;

    overflow-wrap: anywhere;
}


/* =========================================================
   PŘEDEPISUJÍCÍ LÉKAŘ
========================================================= */

.ik-preskripce-detail-doctor {

    display: flex;

    align-items: center;

    gap: 8px;

    width: 100%;
    max-width: 100%;

    margin: 0 0 30px;

    padding: 12px 14px;

    border: 1px solid #dceaea;
    

    border-radius: 8px;

    

    color: #526365;

    font-size: 13px;

    line-height: 1.5;

    overflow-wrap: anywhere;

    box-sizing: border-box;
}


.ik-preskripce-detail-doctor strong {

    color: #657577;

    flex: 0 0 auto;
}


.ik-preskripce-detail-doctor span {

    min-width: 0;

    overflow-wrap: anywhere;
	
	color: var(--ik-text);
}


/* =========================================================
   20. ÚHRADY
========================================================= */

.ik-preskripce-detail-uhrady {

    width: 100%;
    max-width: 100%;

    margin-top: 5px;

    min-width: 0;
}


.ik-preskripce-detail-uhrady > h2 {

    margin: 0 0 25px;

    color: var(--ik-primary);

    font-size: 24px;
    font-weight: 700;

    line-height: 1.3;
	
}


/* =========================================================
   STUPEŇ INKONTINENCE
========================================================= */

.ik-preskripce-stupen {

    width: 100%;
    max-width: 100%;

    margin: 0 0 25px;

    padding: 22px;

    border: 1px solid #dceaea;

    border-radius: 12px;

    background: #f8fbfb;

    box-sizing: border-box;
}


.ik-preskripce-stupen:last-child {

    margin-bottom: 0;
}


.ik-preskripce-stupen h3 {

    margin: 0 0 18px;

    color: var(--ik-primary);

    font-size: 19px;

    font-weight: 700;

    line-height: 1.3;
	text-align: center;
}


/* =========================================================
   TABULKA ÚHRAD
========================================================= */

.ik-preskripce-table-wrapper {

    display: block;

    width: 100%;
    max-width: 100%;

    margin: 0;

    overflow-x: hidden;

    box-sizing: border-box;
}


.ik-preskripce-table {

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    border-collapse: collapse;
    border-spacing: 0;

    table-layout: fixed;

    box-sizing: border-box;
	text-align: center;
}


/* =========================================================
   23. HLAVIČKA TABULKY
========================================================= */

.ik-preskripce-table thead th {

    width: 33.333%;

    padding: 11px 10px;

    border: 1px solid #d8e9e7;

    background: var(--ik-light);

    color: var(--ik-primary);

    font-size: 13px;
    font-weight: 700;

    line-height: 1.3;

    

    overflow-wrap: anywhere;
    word-break: break-word;
}


/* =========================================================
   24. BUŇKY TABULKY
========================================================= */

.ik-preskripce-table tbody td {

    width: 33.333%;

    vertical-align: top;

    padding: 16px 13px;

    border: 1px solid #dfeaea;

    background: #ffffff;

    color: var(--ik-text);

    line-height: 1.4;

    overflow-wrap: anywhere;
    word-break: break-word;

    min-width: 0;
}


/*
 * Jemné zvýraznění při najetí.
 */

.ik-preskripce-table tbody td:hover {

    background: var(--ik-light);
}


/* =========================================================
   25. POČET BALENÍ
========================================================= */

.ik-preskripce-cell-packs {

    margin: 0 0 7px;

    color: var(--ik-primary);

    font-size: 17px;

    line-height: 1.3;

    overflow-wrap: anywhere;
	
}


.ik-preskripce-cell-packs strong {

    font-weight: 700;
}


/* =========================================================
   26. POČET KUSŮ
========================================================= */

.ik-preskripce-cell-pieces {

    margin: 0 0 14px;

    color: #718183;

    font-size: 13px;

    line-height: 1.3;

    overflow-wrap: anywhere;
}


/* =========================================================
   27. ÚHRADA POJIŠŤOVNY
========================================================= */

.ik-preskripce-cell-insurance {

    padding-top: 10px;

    border-top: 1px solid #edf2f2;

    color: #657577;

    font-size: 13px;

    line-height: 1.4;
}


.ik-preskripce-cell-insurance strong {

    display: block;

    margin-top: 3px;

    color: var(--ik-text);

    font-size: 13px;
    font-weight: normal;

    white-space: normal;

    overflow-wrap: anywhere;
}


/* =========================================================
   28. DOPLATEK
========================================================= */

.ik-preskripce-cell-deductible {

    margin-top: 10px;

    padding-top: 10px;

    border-top: 1px solid #edf2f2;

    color: #657577;

    font-size: 13px;

    line-height: 1.4;
}


.ik-preskripce-cell-deductible strong {

    display: block;

    margin-top: 3px;

    color: var(--ik-text);

    font-size: 13px;
    font-weight: 700;

    white-space: normal;

    overflow-wrap: anywhere;
}


/* =========================================================
   DALŠÍ INFORMACE
========================================================= */

.ik-preskripce-detail-other {

    width: 100%;
    max-width: 100%;

    margin: 30px 0 0;

    padding: 22px;

    border: 1px solid #dceaea;
    border-radius: 12px;

    background: #f8fbfb;

    box-sizing: border-box;
}


.ik-preskripce-detail-other h2 {

    margin: 0 0 15px;

    color: var(--ik-primary);

    font-size: 20px;
    font-weight: 700;

    line-height: 1.3;
}


.ik-preskripce-detail-other-item {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    width: 100%;
    max-width: 100%;

    padding: 10px 0;

    border-top: 1px solid #e0eeee;

    color: #657577;

    font-size: 14px;

    line-height: 1.4;

    box-sizing: border-box;
}


.ik-preskripce-detail-other-item:first-of-type {

    border-top: 0;
}


.ik-preskripce-detail-other-item strong {

    color: #526365;

    font-weight: normal;

    flex: 0 0 auto;
}


.ik-preskripce-detail-other-item span {

    min-width: 0;

    color: var(--ik-text);

    font-weight: 500;

    text-align: right;

    overflow-wrap: anywhere;
}


/* =========================================================
   30. ODKAZY
========================================================= */

.ik-preskripce a {

    color: var(--ik-primary);

    transition:
        color 0.2s ease;
}


.ik-preskripce a:hover {

    color: var(--ik-secondary);
}


/* =========================================================
   TABLET
   701–1024 px
========================================================= */

@media (max-width: 1024px) {

    .ik-preskripce {

        max-width: 100%;

        padding-left: 20px;
        padding-right: 20px;
    }


    .ik-preskripce-list,
    .ik-preskripce-detail,
    .ik-preskripce-detail-inner {

        max-width: 100%;
    }


    .ik-preskripce-list {

        padding: 25px;

        border-radius: 14px;
    }


    .ik-preskripce-detail-inner {

        padding: 25px;

        border-radius: 14px;
    }


    .ik-preskripce-stupen {

        padding: 19px;
    }


    .ik-preskripce-detail-basic {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBIL
   do 700 px
========================================================= */

@media (max-width: 700px) {

    .ik-preskripce-table-wrapper {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .ik-preskripce-table {
        display: table;

        width: 100%;
        max-width: 100%;

        table-layout: fixed;
        border-collapse: collapse;
        border-spacing: 0;
    }

    .ik-preskripce-table thead {
        display: table-header-group;
    }

    .ik-preskripce-table tbody {
        display: table-row-group;
    }

    .ik-preskripce-table tr {
        display: table-row;
    }

    .ik-preskripce-table th,
    .ik-preskripce-table td {
        display: table-cell;

        width: 33.333%;

        box-sizing: border-box;
        vertical-align: top;
    }

    .ik-preskripce-table thead th {
        padding: 9px 4px;

        font-size: 11px;
        line-height: 1.25;

        text-align: center;
    }

    .ik-preskripce-table tbody td {
        padding: 12px 5px;

        text-align: center;

        overflow-wrap: anywhere;
        word-break: normal;
    }

    .ik-preskripce-cell-packs {
        font-size: 14px;
    }

    .ik-preskripce-cell-pieces {
        font-size: 12px;
    }

    .ik-preskripce-cell-insurance {
        font-size: 11px;
    }

    .ik-preskripce-cell-insurance strong {
        display: block;

        font-size: 13px;

        white-space: normal;
    }

    .ik-preskripce-cell-deductible {
        font-size: 11px;
    }

    .ik-preskripce-cell-deductible strong {
        display: block;

        font-size: 13px;

        white-space: normal;
    }
}





/*
 * =================================
 * PRESKRIPČNÍ KARTA
 * =================================
 */

.ik-preskripcni-karta {

    width: 100%;

}


/*
 * =================================
 * JEDEN PRODUKT
 * =================================
 */

.ik-preskripcni-produkt {

    display: grid;

    grid-template-columns:

        100px

        minmax(260px, 1.5fr)

        minmax(150px, 1fr)

        minmax(150px, 1fr)

        minmax(150px, 1fr);

    gap: 0;

    width: 100%;

    box-sizing: border-box;

    margin-bottom: 12px;

    padding: 18px 16px;

    border: 1px solid rgba(0, 96, 100, 0.10);

    border-radius: 8px;

    background-color: rgba(0, 96, 100, 0.018);

    color: inherit;

    text-decoration: none;

    cursor: pointer;

    transition:

        background-color 0.15s ease,

        border-color 0.15s ease,

        box-shadow 0.15s ease;

}

.ik-preskripcni-produkt:hover {

    background-color: rgba(0, 96, 100, 0.045);

    border-color: rgba(0, 96, 100, 0.18);

    box-shadow:

        0 2px 8px rgba(0, 0, 0, 0.04);

}


/*
 * =================================
 * SÚKL
 * =================================
 */

.ik-preskripcni-produkt-sukl {

    padding: 4px 16px 4px 0;

    color:
        var(--ik-text);

    font-size: 14px;

    line-height: 1.4;

}


.ik-preskripcni-produkt-sukl
.ik-preskripcni-label {

    display: block;

    margin-bottom: 3px;

    color: #777;

    font-size: 12px;
	font-weight: normal;

}


.ik-preskripcni-produkt-sukl strong {

    color:
        var(--ik-primary);

    font-size: 15px;

}


/*
 * =================================
 * INFORMACE O PRODUKTU
 * =================================
 */

.ik-preskripcni-produkt-info {

    min-width: 0;

    padding: 2px 20px 2px 0;

}


/*
 * NÁZEV
 * =================================
 */

.ik-preskripcni-produkt-nazev {

    margin: 0;

    color:
        var(--ik-primary);

    font-size: 17px;

    line-height: 1.35;

}


/*
 * POPIS
 * =================================
 */

.ik-preskripcni-produkt-popis {

    margin-top: 5px;

    color:
        var(--ik-text);

    font-size: 13px;
	font-weight: normal;

    line-height: 1.4;

}


/*
 * =================================
 * VÍCE INFORMACÍ
 * =================================
 */

.ik-preskripcni-produkt-akce {

    margin-top: 8px;

}


.ik-preskripcni-vice {

    color:
        var(--ik-primary);

    font-size: 13px;

    text-decoration: none;

}


.ik-preskripcni-vice:hover {

    text-decoration: underline;

}


/*
 * =================================
 * STUPEŇ INKONTINENCE
 * =================================
 */

.ik-preskripcni-stupen {

    min-width: 0;

    padding: 2px 16px;

    border-left:
        1px solid
        rgba(0, 96, 100, 0.10);
	

}


/*
 * NADPIS STUPNĚ
 * =================================
 */

.ik-preskripcni-stupen h4 {

    margin: 0 0 10px 0;

    color:
        var(--ik-primary);

    font-size: 14px;

    line-height: 1.3;

}


/*
 * =================================
 * MĚSÍCE
 * =================================
 *
 * Hodnoty jsou vedle sebe:
 *
 * 2/60   4/120   6/180
 *
 */

.ik-preskripcni-mesice {

    display: flex;

    align-items: center;

    gap: 15px;

    width: 100%;

}


/*
 * =================================
 * JEDEN MĚSÍC
 * =================================
 */

.ik-preskripcni-mesic {

    display: block;

    line-height: 1.3;

}


/*
 * =================================
 * NÁZEV MĚSÍCE
 * =================================
 *
 * Názvy měsíců nechceme zobrazovat.
 *
 */

.ik-preskripcni-mesic-nazev {

    display: none;

}


/*
 * =================================
 * POČET BALENÍ / KUSŮ
 * =================================
 *
 * Například:
 *
 * 2/60
 * 4/120
 * 6/180
 *
 */

.ik-preskripcni-mnozstvi {

    display: block;

    color:
        var(--ik-primary);

    font-size: 15px;

    font-weight: 600;

    white-space: nowrap;

}


/*
 * =================================
 * POSLEDNÍ SLOUPEC
 * =================================
 */

.ik-preskripcni-stupen:last-child {

    padding-right: 0;

}

/*
 * =================================
 * MOBIL
 * =================================
 */

@media (max-width: 700px) {


    /*
     * =================================
     * JEDEN PRODUKT
     * =================================
     */

    .ik-preskripcni-produkt {

        display: grid;

        grid-template-columns: 1fr;

        width: 100%;

        box-sizing: border-box;

        margin-bottom: 12px;

        padding: 18px 16px;

        border: 1px solid rgba(0, 96, 100, 0.10);

        border-radius: 8px;

        background-color: rgba(0, 96, 100, 0.018);

    }
	
	.ik-preskripcni-produkt:hover {

        background-color: rgba(0, 96, 100, 0.045);

        border-color: rgba(0, 96, 100, 0.18);

    }
	
	/*

     * Poslední produkt

     */

    .ik-preskripcni-produkt:last-child {

        margin-bottom: 0;

    }


    /*
     * =================================
     * SÚKL
     * =================================
     */

    .ik-preskripcni-produkt-sukl {

        padding: 0;

        margin-bottom: 8px;

    }


    .ik-preskripcni-produkt-sukl
    .ik-preskripcni-label {

        margin-bottom: 2px;

        font-size: 12px;

    }


    .ik-preskripcni-produkt-sukl strong {

        font-size: 14px;

    }


    /*
     * =================================
     * INFORMACE O PRODUKTU
     * =================================
     */

    .ik-preskripcni-produkt-info {

        padding: 0;

        margin-bottom: 16px;

    }


    /*
     * NÁZEV
     */

    .ik-preskripcni-produkt-nazev {

        font-size: 17px;

        line-height: 1.35;

    }


    /*
     * POPIS
     */

    .ik-preskripcni-produkt-popis {

        margin-top: 5px;

        font-size: 13px;

        line-height: 1.4;

    }


    /*
     * =================================
     * STUPNĚ
     * =================================
     */

    .ik-preskripcni-stupen {

        padding: 12px 0;

        border-left: none;

        border-top:

            1px solid

            rgba(0, 96, 100, 0.10);

    }


    /*
     * NADPIS STUPNĚ
     */

    .ik-preskripcni-stupen h4 {

        margin: 0 0 8px 0;

        font-size: 14px;

    }


    /*
     * =================================
     * MĚSÍCE
     * =================================
     */

    .ik-preskripcni-mesice {

        display: flex;

        align-items: center;

        justify-content: flex-start;

        gap: 22px;

        width: 100%;

    }


    /*
     * =================================
     * HODNOTA
     * =================================
     */

    .ik-preskripcni-mnozstvi {

        font-size: 15px;

    }


    /*
     * =================================
     * POSLEDNÍ STUPEŇ
     * =================================
     */

    .ik-preskripcni-stupen:last-child {

        padding-right: 0;

    }

}

/* =========================================================
   TLAČÍTKO – GENEROVAT PDF
========================================================= */

.ik-preskripcni-karta-header {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    width: 100%;

    margin-bottom: 20px;

}


/*
 * Tlačítko
 */

.ik-preskripcni-karta-pdf {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 40px;

    padding: 9px 15px;

    box-sizing: border-box;

    border: 1px solid var(--ik-primary);

    border-radius: 7px;

    background: var(--ik-primary);

    color: #ffffff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.2;

    text-decoration: none;

    white-space: nowrap;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;

}


/*
 * Ikona PDF
 */

.ik-preskripcni-karta-pdf i {

    font-size: 14px;

    line-height: 1;

}


/*
 * Hover
 */

.ik-preskripcni-karta-pdf:hover {

    border-color: var(--ik-secondary);

    background: var(--ik-secondary);

    color: #ffffff;

    box-shadow:
        0 3px 8px rgba(0, 96, 100, 0.15);

}


/*
 * Kliknutí
 */

.ik-preskripcni-karta-pdf:active {

    transform: translateY(1px);

}


/*
 * Stav – generování PDF
 */

.ik-preskripcni-karta-pdf.ik-pdf-loading {

    cursor: wait;

    opacity: 0.85;

    box-shadow: none;

}


/*
 * Disabled
 */

.ik-preskripcni-karta-pdf:disabled {

    cursor: wait;

}


/*
 * =========================================================
 * MOBIL
 * =========================================================
 */

@media (max-width: 700px) {

    .ik-preskripcni-karta-header {

        align-items: stretch;

        flex-direction: column;

        gap: 15px;

        margin-bottom: 18px;

    }


    .ik-preskripcni-karta-pdf {

        width: 100%;

        min-height: 42px;

    }

}
