.container {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.main {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;

    padding: 0 60px;
}

.cart {
    width: 100%;
}

table {
    width: 100%;

    border-collapse: collapse;
    
    table-layout: fixed;
}

thead {
    background: #f2f3f7;
}

tr:not(.column-row):not(tr:first-child) {
    border-top: 1px solid #f2f3f7;
}

th {
    padding: 20px;

    text-align: left;
    text-transform: uppercase;
}

th:first-child {
    border-radius: 5px 0 0 5px;
}

th:last-child {
    border-radius: 0 5px 5px 0;
}

td {
    font-weight: lighter;

    padding: 20px;
}

.cart-product-quantity > input {
    width: 60px;

    border: none;
    border-radius: 5px;

    background: #f2f3f7;

    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;

    outline: none;
}

.cart-product-remove-from-cart-btn {
    width: min-content;
    
    border-radius: 5px;

    color: #ffffff;
    background: #c81508;
    
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;

    cursor: pointer;
}

.details {
    width: 100%;

    border-radius: 5px;
}

#order-form {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#comment {
    width: 100%;
    min-height: 100px;

    border: none;
    border-radius: 5px;

    background: #f2f3f7;

    font-size: 14px;

    padding: 10px;

    resize: none;
    outline: none;
}

.report-box {
    text-align: center;
    text-transform: uppercase;

    display: none;
}

.make-order-box {
    width: 100%;
    
    display: flex;
    align-items: center;
    gap: 20px;
}

.make-order-box > input {
    width: 100%;

    border: none;
    border-radius: 5px;

    color: #ffffff;
    background: #1c242d;

    font-size: 14px;

    padding: 10px;

    outline: none;
}

@media only screen and (max-width: 900px) {
    .main {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 700px) {
    .column-row {
        display: none;
    }

    tr {
        display: flex;
        flex-direction: column;
    }

    td {
        width: 100%;

        font-size: 14px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 10px;

        text-align: right;
    }

    td::before {
        content: attr(data-column);

        color: initial;

        text-transform: capitalize;
    }
}