.prepocet {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    align-items: center;
    padding: 10px;
    border-bottom: solid 1px #dadada;
}

.prepocet .text {
    padding-right: 20px;
    width: calc(100% - 150px);
    font-weight: 550;
}

.prepocet .input {
    width: 150px;
}

@media (max-width: 480px) {
    .p-to-cart-block .quantity {
        display: block;
    }

    .p-to-cart-block {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .p-add-to-cart-wrapper {
        margin-top: 10px;
    }

    .prepocet {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        text-align: center;
    }

    .prepocet>* {
        width: 100% !important;
        padding: 0 !important;
    }
}