/* viditelnost ikonky účtu pro přihlášené */
:where(body.ums_a11y_login--on) .top-nav-button-account::before {
    color: #000;
}

/* oprava b2b info v informačním proužku */
.text > .b2b-login-info {
    align-items: center;
}

.text > .b2b-login-info p {
    line-height: 1.4;
}

.text .b2b-login-info__btn {
    white-space: nowrap;
}

@media (max-width: 767px) {
    .text > .b2b-login-info {
        flex-wrap: wrap;
    }
}

/* naposledy navštívené vycentrované */
.dkLabVisitedProductsNew h2 {
    text-align: center;
}

@media (min-width: 992px) {
    .dkLabVisitedProductsNew .dvpnProducts {
        --products: 3;

        grid-template-columns: repeat(auto-fit, minmax(calc((100% / var(--products)) - 10px), 1fr)) !important;
        max-width: 100%;
        width: fit-content;
        margin-inline: auto;
    }

    .dkLabVisitedProductsNew .dvpnProducts--4 {
        --products: 4;
    }

    .dkLabVisitedProductsNew .dvpnProducts--5 {
        --products: 5;
    }

    .dkLabVisitedProductsNew .dvpnProducts--6 {
        --products: 6;
    }

    .dkLabVisitedProductsNew .dvpnProducts--7 {
        --products: 7;
    }

    .dkLabVisitedProductsNew .dvpnProducts--8 {
        --products: 8;
    }

    .dkLabVisitedProductsNew .dvpnProducts--9 {
        --products: 9;
    }

    .dkLabVisitedProductsNew .dvpnProducts--10 {
        --products: 10;
    }

    .dkLabVisitedProductsNew .dvpnProducts__item {
        max-width: 210px;
        justify-self: center;
    }

}

/* barvy tlačítek */
.type-detail .btn.btn-cart, .type-detail .btn.btn-conversion, .type-detail a.btn.btn-cart, .type-detail a.btn.btn-conversion, .btn.btn-cart, .btn.btn-conversion, a.btn.btn-cart, a.btn.btn-conversion {
    background-color: #0056d2;
    border-color: #0056d2;
    color: #fff;
    border-radius: 999em;
}

:is(.type-detail .btn.btn-cart, .type-detail .btn.btn-conversion, .type-detail a.btn.btn-cart, .type-detail a.btn.btn-conversion, .btn.btn-cart, .btn.btn-conversion, a.btn.btn-cart, a.btn.btn-conversion):hover {
    background-color: #fff;
    color: #0056d2;
    border-color: #0056d2;
}


/* kontakty v košíku */
.contact-wrapper {
    padding: 20px;
    border: 1px solid #e7e7e7;
    margin-block: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-wrapper h3 {
    margin: 0;
}

.contact-wrapper a {
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .contact-wrapper a {
        flex-basis: 100%;
    }
}

@media (min-width: 992px) {
    .contact-wrapper a:first-of-type {
        margin-left: auto;
    }
}

.contact-wrapper a:hover {
    text-decoration: none;
}

.form-contact-wrapper {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.form-contact-wrapper > form .co-box{
    margin-bottom: 0;
}

.form-contact-wrapper .contact-wrapper {
    margin: 0;
}

.form-contact-wrapper .contact-wrapper a {
    flex-basis: 100%;
}

@media (min-width: 992px) {
    .form-contact-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}