input[type="checkbox"] {
    left: auto !important;
}

input[type="number"] {
    height: 45px;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    padding: 0 20px;
    vertical-align: middle;
    font-size: 15px;
    color: #8c8c8c;
    font-family: 'Roboto', sans-serif;
}

#addtobasket {
    margin: 15px auto;
    display: block;
}

.mobile-flyout-wrapper {
    display: none !important;
}


#updatequantity, #removefromcart {
    display: inline-block;
    border: none;
    height: 45px;
    line-height: 45px;
    padding: 0 25px;
    margin: 0 2px;
    background-color: #f1f1f1;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #8c8c8c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .1s ease;
}

@media (min-width: 1025px) {
    input[type="text"], input[type="number"] {
        width: 75px;
    }
}

@media (max-width: 1024px) {
    .quickaddtobasket-buttons {
        padding-bottom: 20px !important;
    }

    .quickaddtobasket-buttons button {
        margin-bottom: 10px !important;
    }

    .td-title {
        margin-bottom: 0px !important;
    }

    .cart tr {
        padding-bottom: 0px;
    }

    .cart td.unit-price {
        position: relative;
        bottom: 0px;
        float: none;
        padding: 5px 20px 5px 20px;
        width: 100%;
        text-align: center;
    }

    .cart td.quantity {
        position: relative;
        height: 90px;
        width: 100%;
    }

    input[type="text"], input[type="number"] {
        width: 75%;
    }
}