    .clase_table {
        border-collapse: separate;
        border-spacing: 10;
        border: 1px solid black;
        border-radius: 15px;
        -moz-border-radius: 20px;
        padding: 2px;
    }
    .linventario {
        overflow: scroll;
        height: 320px;
        width: 100%;
    }
    .m-progress {
        position: relative;
        opacity: .8;
        color: transparent !important;
        text-shadow: none !important;
    }
    .m-progress:hover, .m-progress:active, .m-progress:focus {
        cursor: default;
        color: transparent;
        outline: none !important;
        box-shadow: none;
    }
    .m-progress:before {
        content: '';
        display: inline-block;
        position: absolute;
        background: transparent;
        border: 1px solid #fff;
        border-top-color: transparent;
        border-bottom-color: transparent;
        border-radius: 50%;
        box-sizing: border-box;
        top: 50%;
        left: 50%;
        margin-top: -12px;
        margin-left: -12px;
        width: 24px;
        height: 24px;
        -webkit-animation: ld 1s ease-in-out infinite;
        -moz-animation: ld 1s ease-in-out infinite;
        -o-animation: ld 1s ease-in-out infinite;
        animation: ld 1s ease-in-out infinite;
    }
    .wi-5 {
        width: 5%;
    }
    .wi-10 {
        width: 10%;
    }
    .wi-20 {
        width: 20%;
    }
    .wi-30 {
        width: 30%;
    }
    .bg-1 {
        background: #F2CBF8FF;
        font-size: 12px;
    }
    .bg-2 {
        background: #1B91D5FF;
        font-size: 12px;
    }
    .bg-3 {
        background: #AFD2AAFF;
        font-size: 12px;
    }
    .bg-4 {
        background: #FDE9A9FF;
        font-size: 12px;
    }
    .bg-5 {
        background: #76C5C9FF;
        font-size: 12px;
    }
    .bg-6 {
        background: #FFD74CFF;
        font-size: 12px;
    }
    .bg-7 {
        background: #1B9432FF;
        font-size: 12px;
    }
    .wi-100 {
        width: 200px;
    }
    .wi-75 {
        width: 100px;
    }
    @media screen and (max-width: 600px) {
        table {
            width: 80%;
        }
        thead {
            display: none;
        }
        tr td:first-child {
            font-weight: bold;
            font-size: 1.3em;
        }
        tbody td {
            display: block;
            text-align: center;
        }
        tbody td:before {
            content: attr(data-th);
            display: block;
            text-align: center;
        }
    }
    .upload-btn-wrapper {
        position: relative;
        overflow: hidden;
        display: inline-block;
    }
    .upload-btn-wrapper input[type=file] {
        font-size: 100px;
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
    }
    .material-switch>input[type="checkbox"] {
        display: none;
    }
    .material-switch>label {
        cursor: pointer;
        height: 0px;
        position: relative;
        width: 40px;
    }
    .material-switch>label::before {
        background: rgb(0, 0, 0);
        box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
        border-radius: 8px;
        content: '';
        height: 16px;
        margin-top: -8px;
        position: absolute;
        opacity: 0.3;
        transition: all 0.4s ease-in-out;
        width: 40px;
    }
    .material-switch>label::after {
        background: rgb(255, 255, 255);
        border-radius: 16px;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
        content: '';
        height: 24px;
        left: -4px;
        margin-top: -8px;
        position: absolute;
        top: -4px;
        transition: all 0.3s ease-in-out;
        width: 24px;
    }
    .material-switch>input[type="checkbox"]:checked+label::before {
        background: inherit;
        opacity: 0.5;
    }
    .material-switch>input[type="checkbox"]:checked+label::after {
        background: inherit;
        left: 20px;
    }
    /*switch on-off */

    .toggle-label {
        position: relative;
        width: 300px;
        height: 30px;
        margin-top: 10px;
    }
    .toggle-label input[type=checkbox] {
        opacity: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
    .toggle-label input[type=checkbox]+.back {
        position: absolute;
        width: 100%;
        height: 30px;
        left: 0;
        top: 0;
        border-radius: 50px;
        border: 1px solid #000;
        transition: background 150ms linear;
    }
    .toggle-label input[type=checkbox]:checked+.back {
        border: 1px solid #000;
        background: white;
        cursor: pointer;
    }
    .toggle-label input[type=checkbox]+.back .toggle {
        display: block;
        position: absolute;
        content: ' ';
        background: red;
        width: 50%;
        height: 100%;
        transition: margin 150ms linear;
        border: 1px solid #808080;
        border-radius: 50px;
    }
    .toggle-label input[type=checkbox]:checked+.back .toggle {
        margin-left: 150px;
        background: green;
    }
    .toggle-label .label {
        display: block;
        position: absolute;
        width: 50%;
        color: #ddd;
        line-height: 24px;
        text-align: center;
        font-size: 10px;
    }
    .toggle-label .label.on {
        left: 0px;
    }
    .toggle-label .label.off {
        right: 0px;
    }
    .toggle-label input[type=checkbox]:checked+.back .label.on {
        color: #000;
    }
    .toggle-label input[type=checkbox]+.back .label.off {
        color: #000;
        cursor: pointer;
    }
    .toggle-label input[type=checkbox]:checked+.back .label.off {
        color: #ddd;
    }
    /*switch on-off */