/* OSS tooltip ikonka */
.oss-price-notification {
    transform: scale(1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    max-width: 14px !important;
    max-height: 14px !important;
    font-size: 12px !important;
    line-height: 14px !important;
    padding: 0 !important;
    margin-left: 4px !important;
    vertical-align: middle !important;
    overflow: hidden !important;
}
/* Checkout summary layout */
#cart-wrapper .cart-content.summary-wrapper .price-wrapper {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) max-content !important;
    grid-template-areas:
        "oss oss"
        "label price"
        "vatlabel vatprice" !important;
    width: 100% !important;
    max-width: 100% !important;
    column-gap: 16px !important;
    row-gap: 2px !important;
    align-items: start !important;
    overflow: visible !important;
}
/* International delivery */
#cart-wrapper .cart-content.summary-wrapper .price-wrapper > .oss-price-notification__wrapper {
    grid-area: oss !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    width: fit-content !important;
    max-width: 100% !important;
    white-space: nowrap !important;
    margin-bottom: 10px !important;
}
/* labels */
#cart-wrapper .cart-content.summary-wrapper .price-wrapper > .price-label.price-primary {
    grid-area: label !important;
    justify-self: start !important;
    text-align: left !important;
    white-space: nowrap !important;
}
#cart-wrapper .cart-content.summary-wrapper .price-wrapper > .price-label.price-secondary {
    grid-area: vatlabel !important;
    justify-self: start !important;
    text-align: left !important;
    white-space: nowrap !important;
}
/* prices */
#cart-wrapper .cart-content.summary-wrapper .price-wrapper > .price.price-primary {
    grid-area: price !important;
    justify-self: end !important;
    text-align: right !important;
    white-space: nowrap !important;
    min-width: max-content !important;
    max-width: none !important;
}
#cart-wrapper .cart-content.summary-wrapper .price-wrapper > .price.price-secondary {
    grid-area: vatprice !important;
    justify-self: end !important;
    text-align: right !important;
    white-space: nowrap !important;
    min-width: max-content !important;
    max-width: none !important;
}
/* Mobile: cena nesmí být useknutá */
@media (max-width: 767px) {
    #cart-wrapper .cart-content.summary-wrapper .price-wrapper {
        grid-template-columns: minmax(0, 1fr) max-content !important;
        column-gap: 8px !important;
    }
    #cart-wrapper .cart-content.summary-wrapper .price-wrapper > .price.price-primary {
        font-size: 30px !important;
    }
    #cart-wrapper .cart-content.summary-wrapper .price-wrapper > .price.price-secondary {
        font-size: 18px !important;
    }
}
