input[type="range"] {
    width: 19.5em;
    margin: 1em;
    background: var(--color-bg-primary);
    -webkit-appearance: none;
    border-radius: 2em;
    padding: 5px;
    transition: opacity 0.5s;
    position: relative;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border-radius: 100%;
    background: var(--color-bg-secondary);
    z-index: 1;
    width: 3em;
    position: relative;
    height: 3em;
    background-image: url('/assets/img/svg/arrow-right-solid.svg'), none;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: 50%;
}

input[type="range"]::before {
    content: "deslizar para confirmar";
    color: #8a8a8a;
    position: absolute;
    left: 3.5em;
    top: .7em;
    z-index: 1;
    font-size: 1.3em;
}

input[type="range"].load::before {
    content: "Cargando...";
    color: #8a8a8a;
    position: absolute;
    left: 3.5em;
    top: .7em;
    z-index: 1;
    font-size: 1.3em;
}

input[type="range"].load::-webkit-slider-thumb {
    -webkit-appearance: none;
    border-radius: 100%;
    background: var(--color-bg-secondary);
    z-index: 1;
    width: 3em;
    position: relative;
    height: 3em;
    background-image: url('/assets/img/gif/spinner2.gif'), none;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: 50%;
}

input[type="range"]::-webkit-slider-thumb::before {
    color: red;
    position: absolute;
    left: 5px;
    top: -10px;
    z-index: 999999;
    font-size: 56px;
    font-weight: bold;
    content: "→";
}


@media only screen and (max-width: 374px) {
    input[type="range"] {
        width: 12em;
    }

    input[type="range"]::before {
        content: "deslizar para confirmar";
        color: #8a8a8a;
        position: absolute;
        left: 4.4em;
        top: .4em;
        font-size: 1em;
    }
}

@media (min-width: 375px) and (max-width: 1200px) {

    input[type="range"] {
        width: 15.5em;
    }

    input[type="range"]::before {
        content: "deslizar para confirmar";
        color: #8a8a8a;
        position: absolute;
        left: 4em;
        top: 1.2em;
        font-size: 1em;
    }

    .responsive-datatable{
        display: table  ;
    }
}