@media only screen and (max-width: 800px) {
    table#cart-table {
        width: 100%;
        text-align: left;
        border-collapse: collapse;
        margin-top: 10px;
    }
    /* Force table to not be like tables anymore */
    #cart-table table, #cart-table thead, #cart-table tbody, #cart-table th, #cart-table td, #cart-table tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    #cart-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    #cart-table tr {
        border-bottom: 1px solid #ccc;
    }
    #cart-table td {
        /* Behave  like a "row" */
        border: none;
        position: relative;
        padding-left: 50%;
        padding-top: 5px;
        padding-bottom: 5px;
        white-space: normal;
        text-align: left;
    }
    #cart-table td:last-child {
        padding-bottom: 15px;
    }
    #cart-table td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 0px;
        left: 15px;
        width: 40%;
        padding-left: 25px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        background: #28B5C5;
        color: #FFFFFF;
        height: 100%;
        padding-top: 5px;
    }
    /*
	Label the data
	*/
    #cart-table td:before {
        content: attr(data-title);
    }
}

@media only screen and (min-width: 800px) {
    table#cart-table {
        width: 100%;
        text-align: left;
        border-collapse: collapse;
    }
    table#cart-table td {
        padding: 20px 9px;
    }
    table#cart-table th {
        padding: 12px 9px;
    }
    table#cart-table tbody td {
        font-size: 14px;
        border-bottom: 1px solid #8888;
    }
    table#cart-table thead {
        background: #28B5C5;
    }
    table#cart-table thead th {
        font-size: 15px;
        font-weight: bold;
        color: #FFFFFF;
        text-align: left;
    }
}

.edit-btn {
    padding: 5px 10px;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5x;
    cursor: pointer;
    border: 0px none;
    background-color: #28B5C5;
    color: white;
}

.control-btn-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.control-btn {
    width: 180px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5x;
    font-size: 20px;
    cursor: pointer;
    border: 0px none;
    background-color: #F04A8D;
    color: #ffffff;
}

/* Customize the label (the container) */

.container-check {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */

.container-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: -7px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #FFFFFF;
}

/* On mouse-over, add a grey background color */

.container-check:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */

.container-check input:checked~.checkmark {
    background-color: #F04A8D;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */

.container-check input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */

.container-check .checkmark:after {
    left: 9px;
    top: 2px;
    width: 9px;
    height: 16px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

a.edit-btn, a.control-btn {
    color: white;
}

table#user-info-table {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

table#user-info-table thead {
    background: #28B5C5;
}

table#user-info-table thead th {
    font-size: 15px;
    font-weight: bold;
    color: #FFFFFF;
    text-align: left;
}

table#user-info-table td {
    padding: 2px 9px;
    font: 13px;
}

table#user-info-table th {
    padding: 12px 9px;
}

/* .radio-toolbar input[type="radio"] {
    display: none;
}

.radio-toolbar label {
    display: inline-block;
    background-color: #ddd;
    padding: 10px 20px;
    font-family: Arial;
    font-size: 16px;
    border-radius: 4px;
}

.radio-toolbar input[type="radio"]:checked+label {
    background-color: #28B5C5;
    color: white;
}

.radio-toolbar label:hover {
    background-color: #98d9e0;
} */

textarea:focus {
    outline: none;
}