* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.provider-order {
    padding: 10px 15px;
    width: 100%;
}

    .provider-order > h3 {
        border-bottom: 3px solid #000;
        padding-bottom: 1vh;
    }

    .sides-info-block {
        display: flex;
        flex-direction: column;
        width: 100%;        
    }

        .sides-info-block__item {
            display: flex;
            flex-direction: row;
            gap: 1%;
        }

            .sides-info-block__item > label {
                width: 10%;
            }

            .sides-info-block__item > input {
                width: 88%;
                border: none;
            }

            .sides-info-block__item > input:focus {
                outline: none;
            }

.product-info-block {
    margin-top: 2vh;
    padding-bottom: 2vh;
    border-bottom: 3px solid #000;
}

    .product-info-block__headers-list {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: 2%;
        list-style: none;
        border: 2px solid #000;
        border-right: none;
    }

        .product-info-block__headers-list > li {
            text-align: center;
            border-right: 2px solid #000;
        }

        .product-info-block__headers-list > li:nth-child(1) {
            width: 10%;
        }

        .product-info-block__headers-list > li:nth-child(2) {
            width: 64%;
        }

        .product-info-block__headers-list > li:nth-child(3) {
            width: 10%;
        }

        .product-info-block__headers-list > li:nth-child(4) {
            width: 10%;
        }

    .product-info-block__values-list {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        list-style: none;
    }

        .product-info-block__values-list > li {
            display: flex;
            flex-direction: row;
            gap: 2%;
            text-align: center;
            border: 1px solid #000;
            border-top: none;
            border-right: none;
        }

            .product-info-block__values-list > li:last-child {
                border: none;
            }

                .product-info-block__values-list > li:last-child > p {
                    border: none;
                    font-weight: bold;
                }
        
            .product-info-block__values-list > li > p {
                border-right: 1px solid #000;
                margin: 0;
                padding: 0;
            }

                .product-info-block__values-list > li > p:nth-child(1) {
                    width: 10%;
                }

                .product-info-block__values-list > li > p:nth-child(2) {
                    width: 64%;
                }

                .product-info-block__values-list > li > p:nth-child(3) {
                    width: 10%;
                }

                .product-info-block__values-list > li > p:nth-child(4) {
                    width: 10%;
                }

.footer-block {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px 15px;
    gap: 6%;
}

    .footer-block > label {
        width: 5%;
        font-weight: bold;
    }

    .footer-block > input {
        border: none;
        border-bottom: 2px solid #000;
        width: 12%;
    }