/*
 * React checkout — interakce, loadery, animace.
 * Scoped pod .rc-checkout; barvy vychází z palety webu (core/_variables.sass):
 * zelená #37a038 / #267226, světle zelená #e5f3e5, červená #ce2027,
 * amber #fcaa45 / #ffe6cb, bordery #cfcccb.
 */

.rc-checkout {
    --rc-green: #37a038;
    --rc-green-dark: #267226;
    --rc-green-light: #e5f3e5;
    --rc-red: #ce2027;
    --rc-red-light: #fbeaea;
    --rc-amber: #b06f10;
    --rc-amber-light: #fff3e2;
    --rc-border: #cfccca;
    --rc-radius: 8px;
}

/* ---------- inputy: plynulý focus, stavové ikony ---------- */

.rc-checkout .form-control {
    transition: border-color .18s ease, box-shadow .18s ease, background-color .3s ease;
    border-radius: var(--rc-radius);
}

.rc-checkout .form-control:focus {
    border-color: var(--rc-green);
    box-shadow: 0 0 0 3px rgba(55, 160, 56, .15);
    outline: none;
}

.rc-checkout .has-error .form-control {
    border-color: var(--rc-red);
}

.rc-checkout .has-error .form-control:focus {
    box-shadow: 0 0 0 3px rgba(206, 32, 39, .12);
}

.rc-input-wrap {
    position: relative;
}

.rc-input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    pointer-events: none;
    animation: rc-fade-in .18s ease;
}

.rc-input-icon--valid {
    color: var(--rc-green);
}

/* ---------- spinner ---------- */

.rc-spinner {
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    vertical-align: -.15em;
    animation: rc-spin .7s linear infinite;
}

@keyframes rc-spin {
    to { transform: rotate(360deg); }
}

/* ---------- validační hlášky: fade + slide ---------- */

.rc-msg {
    animation: rc-fade-slide .22s ease;
    margin: 4px 0 0;
}

@keyframes rc-fade-slide {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes rc-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ---------- animované rozbalování sekcí ---------- */

.rc-collapse {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s cubic-bezier(.4, 0, .2, 1);
}

.rc-collapse--open {
    grid-template-rows: 1fr;
}

.rc-collapse__inner {
    overflow: hidden;
    min-height: 0;
    visibility: hidden;
    transition: visibility 0s .3s;
}

.rc-collapse--open .rc-collapse__inner {
    visibility: visible;
    transition: visibility 0s;
}

/* ---------- VAT stavový box ---------- */

.rc-vat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--rc-radius);
    border: 1px solid var(--rc-border);
    margin: 6px 0 14px;
    animation: rc-fade-slide .25s ease;
}

.rc-vat__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin-top: 1px;
}

.rc-vat--loading {
    background: #f7f6f5;
    color: #5b6268;
}

.rc-vat--valid {
    background: var(--rc-green-light);
    border-color: var(--rc-green);
    color: var(--rc-green-dark);
}

.rc-vat--valid .rc-vat__icon {
    background: var(--rc-green);
}

.rc-vat--invalid {
    background: var(--rc-red-light);
    border-color: var(--rc-red);
    color: var(--rc-red);
}

.rc-vat--invalid .rc-vat__icon {
    background: var(--rc-red);
}

.rc-vat--warn {
    background: var(--rc-amber-light);
    border-color: #fcaa45;
    color: var(--rc-amber);
}

.rc-vat--warn .rc-vat__icon {
    background: #fcaa45;
}

.rc-vat p {
    margin: 0 0 6px;
}

.rc-vat .radio-inline {
    margin-right: 16px;
    cursor: pointer;
}

/* ---------- flash zvýraznění autofillnutých polí ---------- */

.rc-checkout .rc-flash {
    animation: rc-flash-bg 1.1s ease;
}

@keyframes rc-flash-bg {
    0%   { background-color: var(--rc-green-light); border-color: var(--rc-green); }
    100% { background-color: #fff; }
}

/* ---------- skeleton při načítání katalogu ---------- */

.rc-skeleton {
    padding: 8px 0;
}

.rc-skeleton__bar {
    height: 14px;
    border-radius: 6px;
    margin: 0 0 10px;
    background: linear-gradient(90deg, #eceae8 25%, #f7f6f5 45%, #eceae8 65%);
    background-size: 300% 100%;
    animation: rc-shimmer 1.3s ease-in-out infinite;
}

.rc-skeleton__bar--input {
    height: 38px;
    border-radius: var(--rc-radius);
    margin-bottom: 18px;
}

.rc-skeleton__bar--title {
    width: 35%;
    height: 20px;
    margin: 22px 0 14px;
}

.rc-skeleton__bar--label {
    width: 20%;
}

@keyframes rc-shimmer {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* ---------- submit tlačítko ---------- */

.rc-checkout .btn {
    transition: opacity .18s ease, transform .12s ease;
}

.rc-checkout .btn:active:not(:disabled) {
    transform: scale(.98);
}

.rc-checkout .btn:disabled {
    opacity: .65;
    cursor: not-allowed;
}

.rc-btn-spinner {
    margin-right: 8px;
}

/* ---------- boční souhrn (BasketSummary ostrov) ---------- */

/* počet kusů jako decentní badge oddělený od názvu */
.recap-orders__item__num {
    display: inline-block;
    background: #edeae8;
    border: 1px solid #dcd9d7;
    border-radius: 999px;
    padding: 0 8px;
    margin: 0 6px 2px 0;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    color: #363636;
    white-space: nowrap;
}

/* ---------- VIES tlačítko vedle pole VAT ID ---------- */

/* sedí v help slotu Fieldu (.basket__help má padding-top 2.2rem) — dorovnání
   na 2.9rem výšky labelu, aby lícoval s inputem jako .btn--bottom v plain sloupci */
.rc-vies-btn {
    margin-top: .7rem;
}

/* ---------- respektovat reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    .rc-checkout *,
    .rc-collapse,
    .rc-msg,
    .rc-vat {
        animation: none !important;
        transition: none !important;
    }
}

/*
 * React krok 2 košíku (doprava a platba) — scoped pod .dpr.
 * Paleta navazuje na checkout.css / core/_variables.sass.
 */

.dpr {
    --dpr-green: #37a038;
    --dpr-green-dark: #267226;
    --dpr-green-light: #e5f3e5;
    --dpr-red: #ce2027;
    --dpr-red-light: #fbeaea;
    --dpr-border: #cfccca;
    --dpr-radius: 8px;
    position: relative;
}

/* ---------- výběr země ---------- */

.dpr-country {
    margin-bottom: 1.5rem;
}

.dpr-country__select {
    position: relative;
    max-width: 420px;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.dpr-country__select .form-control {
    border-radius: var(--dpr-radius);
    transition: border-color .18s ease, box-shadow .18s ease;
}

.dpr-country__select .form-control:focus {
    border-color: var(--dpr-green);
    box-shadow: 0 0 0 3px rgba(55, 160, 56, .15);
    outline: none;
}

.dpr-country__note {
    margin: .5rem 0 0;
    font-size: .875em;
    color: #777;
}

/* ---------- sloupce ---------- */

.dpr-panel {
    border: 0;
    padding: 0;
    margin: 0 0 1.5rem;
    transition: opacity .2s ease;
}

.dpr-panel--busy {
    opacity: .55;
    pointer-events: none;
}

.dpr-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

@media (max-width: 767px) {
    .dpr-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.dpr-col {
    padding: 0;
    min-width: 0;
}

.dpr-col__title {
    color: var(--dpr-red);
    font-size: 2rem;
    margin: 0 0 1rem;
}

.dpr-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

/* ---------- karta dopravy/platby ---------- */

.dpr-card {
    border: 0;
    border-radius: 12px;
    background: #f6f6f4;
    overflow: hidden;
    transition: background .18s ease, box-shadow .18s ease;
    animation: dpr-fade-in .25s ease both;
}

.dpr-card:hover:not(.dpr-card--disabled):not(.dpr-card--selected) {
    background: #efefec;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
}

.dpr-card--selected {
    background: var(--dpr-green-light);
    box-shadow: inset 0 0 0 1.5px var(--dpr-green);
}

/* nedostupná volba: ztlumená, ale klikatelná — klik odebere konfliktní protistranu */
.dpr-card--disabled {
    opacity: .55;
    filter: grayscale(1);
    transition: opacity .18s ease, filter .18s ease;
}

.dpr-card--disabled:hover {
    opacity: .85;
    filter: grayscale(.4);
}

.dpr-card__btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    background: none;
    border: 0;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.dpr-card__btn:disabled {
    cursor: default;
}

.dpr-card__radio {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border: 2px solid var(--dpr-border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color .18s ease;
    background: #fff;
}

.dpr-card--selected .dpr-card__radio {
    border-color: var(--dpr-green);
}

.dpr-card__radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    transition: background .18s ease, transform .18s ease;
    transform: scale(.4);
}

.dpr-card--selected .dpr-card__radio-dot {
    background: var(--dpr-green);
    transform: scale(1);
    animation: dpr-pop .25s ease;
}

.dpr-card__logo {
    flex: 0 0 68px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dpr-card__logo img {
    max-width: 68px;
    max-height: 50px;
}

.dpr-card__body {
    flex: 1 1 auto;
    min-width: 0;
}

.dpr-card__name {
    display: block;
    font-weight: 700;
}

.dpr-card__desc {
    display: block;
    font-size: .9em;
    color: #666;
    margin-top: .25rem;
}

/* důvod nedostupnosti na ztlumené kartě */
.dpr-card__conflict {
    display: block;
    font-size: .85em;
    font-weight: 700;
    color: #7a4d00;
    margin-top: .25rem;
}

.dpr-card__price {
    font-weight: 700;
    white-space: nowrap;
}

.dpr-card__price--free {
    color: var(--dpr-green-dark);
    text-transform: uppercase;
}

/* vybraná pobočka pod kartou */

.dpr-card__branch {
    padding: 0 1rem 1rem 3.7rem;
    display: flex;
    flex-direction: column;
    gap: .15rem;
    animation: dpr-fade-in .25s ease both;
}

.dpr-card__branch-name {
    font-weight: 700;
}

.dpr-card__branch-address {
    color: #666;
    font-size: .9em;
}

.dpr-card__branch-change {
    align-self: flex-start;
    background: none;
    border: 0;
    padding: 0;
    color: var(--dpr-red);
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
    font-size: .9em;
}

/* podmožnosti platby */

.dpr-suboptions {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding: 0 1rem 1rem 3.7rem;
    margin: 0;
}

.dpr-suboption {
    border: 0;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    padding: .35rem .9rem;
    cursor: pointer;
    font: inherit;
    transition: background .18s ease, box-shadow .18s ease;
}

.dpr-suboption--selected {
    background: var(--dpr-green-light);
    box-shadow: inset 0 0 0 1.5px var(--dpr-green);
}

/* ---------- poznámka, chyby, akce ---------- */

.dpr-note {
    margin: 1rem 0 0;
    font-size: 1.2rem;
    color: #444;
}

.dpr-errors {
    margin-bottom: 1rem;
    animation: dpr-fade-in .25s ease both;
}

.dpr-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.dpr-actions__continue {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.dpr-btn-spinner {
    width: 16px;
    height: 16px;
}

/* ---------- modal poboček ---------- */

.dpr-modal {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.dpr-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    animation: dpr-fade-in .2s ease both;
}

.dpr-modal__dialog {
    position: relative;
    background: #fff;
    border-radius: var(--dpr-radius, 8px);
    width: min(1200px, 100%);
    height: min(880px, calc(100vh - 2rem));
    display: flex;
    flex-direction: column;
    animation: dpr-slide-up .25s ease both;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
}

.dpr-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #cfccca;
}

.dpr-modal__title {
    font-weight: 700;
    font-size: 1.1em;
}

.dpr-modal__close {
    background: none;
    border: 0;
    font-size: 1.6em;
    line-height: 1;
    cursor: pointer;
    color: #888;
    transition: color .15s ease, transform .15s ease;
}

.dpr-modal__close:hover {
    color: #333;
    transform: scale(1.1);
}

.dpr-modal__search {
    padding: 1rem 1.25rem 0;
}

.dpr-modal__search label {
    display: block;
    margin-bottom: .4rem;
}

.dpr-modal__searchrow {
    display: flex;
    gap: .5rem;
    align-items: stretch;
}

.dpr-modal__searchrow .form-control {
    flex: 1 1 auto;
}

.dpr-modal__locate {
    flex: 0 0 auto;
    width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #cfccca;
    border-radius: 6px;
    font-size: 1.1em;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}

.dpr-modal__locate:hover:not(:disabled) {
    border-color: #37a038;
    background: #e5f3e5;
}

.dpr-modal__locate:disabled {
    opacity: .6;
    cursor: default;
}

.dpr-modal__content {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem 1.25rem;
    flex: 1 1 auto;
    min-height: 0;
}

.dpr-modal__list {
    overflow-y: auto;
    min-height: 0;
    scrollbar-width: thin;
}

.dpr-modal__map {
    border-radius: var(--dpr-radius, 8px);
    height: 100%;
    min-height: 480px;
}

@media (max-width: 767px) {
    .dpr-modal__content {
        grid-template-columns: 1fr;
    }

    .dpr-modal__map {
        display: none;
    }

    .dpr-modal__content--map .dpr-modal__list {
        display: none;
    }

    .dpr-modal__content--map .dpr-modal__map {
        display: block;
    }
}

@media (min-width: 768px) {
    .dpr-modal__switch {
        visibility: hidden;
    }
}

.dpr-modal__loading {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
}

.dpr-modal__hint {
    margin-top: 0.75rem;
    text-align: center;
}

.dpr-map-info {
    max-width: 220px;
    font-size: 13px;
    line-height: 1.35;
    color: #000;
}

.dpr-map-info strong {
    display: block;
    margin-bottom: 2px;
}

.dpr-map-info__select {
    display: block;
    width: 100%;
    margin-top: 8px;
}

.dpr-branch__select {
    display: block;
    width: 100%;
    margin: 4px 0 10px;
}

.dpr-branches {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.dpr-branch {
    display: flex;
    align-items: center;
    gap: .75rem;
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid #cfccca;
    border-radius: 6px;
    padding: .6rem .75rem;
    cursor: pointer;
    font: inherit;
    transition: border-color .15s ease, background .15s ease;
}

.dpr-branch:hover {
    border-color: #37a038;
}

.dpr-branch--selected {
    border-color: #37a038;
    background: #e5f3e5;
    box-shadow: 0 0 0 1px #37a038;
}

.dpr-branch__logo {
    flex: 0 0 44px;
    display: inline-flex;
    justify-content: center;
}

.dpr-branch__logo img {
    max-width: 44px;
    max-height: 32px;
}

.dpr-branch__text {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.dpr-branch__name {
    font-weight: 700;
}

.dpr-branch__subtitle {
    color: #666;
    font-size: .9em;
}

.dpr-branch__distance {
    color: #267226;
    font-size: .85em;
    margin-top: 2px;
}

.dpr-branch__price {
    white-space: nowrap;
    font-weight: 700;
}

.dpr-branch__price--free {
    color: #267226;
    text-transform: uppercase;
}

.dpr-modal__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-top: 1px solid #cfccca;
}

.dpr-modal__confirm {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

/* ---------- skeletony a animace ---------- */

.dpr-skeleton {
    background: linear-gradient(90deg, #eee 25%, #f7f7f7 50%, #eee 75%);
    background-size: 200% 100%;
    animation: dpr-shimmer 1.2s linear infinite;
    border-radius: 8px;
}

.dpr-skeleton--title {
    height: 28px;
    width: 40%;
    margin-bottom: 1rem;
}

.dpr-skeleton--card {
    height: 74px;
}

.dpr-skeleton--row {
    height: 46px;
}

.dpr-skeleton-rows {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 100%;
}

.dpr--skeleton .dpr-columns {
    gap: 1.5rem;
}

@keyframes dpr-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Bez `to` — animace doběhne do opacity z kaskády, takže nepřebije
   ztlumení .dpr-card--disabled (animovaná vlastnost jinak vyhrává). */
@keyframes dpr-fade-in {
    from { opacity: 0; }
}

@keyframes dpr-slide-up {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes dpr-pop {
    0% { transform: scale(.4); }
    60% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

/*
 * Zákaznické vratky — scoped pod .vr.
 * Paleta navazuje na checkout.css / core/_variables.sass.
 */

.vr {
    --vr-green: #37a038;
    --vr-green-btn: #008600; /* $btn-bg — základ tlačítka, hover je světlejší --vr-green jako u .btn--custom-1 */
    --vr-green-dark: #267226;
    --vr-green-light: #e5f3e5;
    --vr-red: #ce2027;
    --vr-red-light: #fbeaea;
    --vr-blue: #1a6fa8;
    --vr-blue-light: #e7f1f8;
    --vr-border: #cfccca;
    --vr-radius: 8px;
    max-width: 720px;
    /* ať obsah nekončí nalepený na patičce ani u krátkých kroků */
    min-height: 55vh;
    padding: 1rem 0 3rem;
}

.vr-heading {
    margin-bottom: 1.25rem;
}

/* ---------- volba vratka/reklamace ---------- */

.vr-choices {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.vr-choices .vr-card {
    flex: 1 1 240px;
}

.vr-card {
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    background: #fff;
}

.vr-card__title {
    margin: 0 0 .5rem;
}

.vr-card--product {
    position: relative;
    background: #fafaf9;
}

.vr-card__action {
    float: right;
    margin-left: 1rem;
}

.vr-card__subtitle {
    color: #777;
    font-size: .9em;
}

/* ---------- krok formuláře = bílá karta ---------- */

.vr-step {
    background: #fff;
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius);
    padding: 1.5rem 1.75rem 1.75rem;
}

.vr-step h3 {
    margin: 0 0 1.25rem;
}

/* ---------- formulářové prvky ---------- */

.vr-step .form-control {
    border-radius: var(--vr-radius);
    padding: .55rem .75rem;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.vr-step .form-control:focus {
    border-color: var(--vr-green);
    box-shadow: 0 0 0 3px rgba(55, 160, 56, .15);
    outline: none;
}

.vr-field {
    margin-bottom: 1.35rem;
}

.vr-field > label {
    display: block;
    font-weight: 600;
    margin-bottom: .45rem;
}

.vr-required {
    color: var(--vr-red);
    margin-left: .15rem;
}

.vr-check {
    display: flex;
    align-items: center;
    margin-top: .75rem;
    padding: .15rem 0;
    cursor: pointer;
    font-weight: 400;
}

.vr-check input {
    width: 1.05rem;
    height: 1.05rem;
    margin: 0 .6rem 0 0;
    flex-shrink: 0;
    accent-color: var(--vr-green);
    cursor: pointer;
}

.vr-amount {
    max-width: 150px;
}

/* ---------- hlášky ---------- */

.vr-alert {
    border-radius: var(--vr-radius);
    padding: .75rem 1rem;
    margin: 1rem 0;
}

.vr-alert--danger {
    background: var(--vr-red-light);
    border: 1px solid var(--vr-red);
    color: var(--vr-red);
}

.vr-alert--info {
    background: var(--vr-blue-light);
    border: 1px solid var(--vr-blue);
}

/* ---------- tlačítka ---------- */

.vr-actions {
    display: flex;
    gap: .75rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eceae8;
}

.vr-btn {
    border: 0;
    border-radius: var(--vr-radius);
    padding: .6rem 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease;
}

.vr-btn:disabled {
    opacity: .55;
    cursor: default;
}

.vr-btn--primary {
    background: var(--vr-green-btn);
    color: #fff;
}

.vr-btn--primary:hover:not(:disabled) {
    background: var(--vr-green);
}

.vr-btn--secondary {
    background: #fff;
    border: 1px solid var(--vr-border);
    color: #333;
}

.vr-btn--secondary:hover:not(:disabled) {
    background: #f4f2f0;
    border-color: #b5b2af;
}

/* ---------- souhrn ---------- */

.vr-summary {
    margin: 0 0 1rem;
}

.vr-summary dt {
    font-weight: 600;
    margin-top: .75rem;
}

.vr-summary dd {
    margin: .15rem 0 0;
}

/* ---------- dokončeno + tisk štítku ---------- */

.vr-finished__address {
    font-style: normal;
    margin: .5rem 0 1rem;
}

.vr-finished__label {
    font-size: 1.25em;
}

.vr-finished__image {
    display: block;
    max-width: 400px;
    width: 100%;
    margin-top: 1rem;
}

.vr-print-card .vr-print-label {
    margin-bottom: 1rem;
}

@media print {
    /* tiskne se pouze štítek */
    body * {
        visibility: hidden;
    }

    .vr-print-label,
    .vr-print-label * {
        visibility: visible;
    }

    .vr-print-label {
        position: absolute;
        top: 0;
        left: 0;
        margin: 100px;
        font-size: 25pt;
    }
}


/*# sourceMappingURL=react.min.css.map*/