﻿.divPrecio {
    width: 100%;
    padding: 5px;
    display: flex;
    justify-content: start;
}

    .divPrecio .precio {
        border: 1px solid #0b3f62;
        outline: none;
        border-radius: 25px;
    }

.precio::placeholder {
    color: #0139aa;
}

.seleccionPrecios {
    position: relative;
    left: -85px;
    top: -5px;
    display: none;
    border: thin solid #0b3f62;
    border-radius: 8px;
    height: 350px;
    width: 400px;
    background-color: white;
    -webkit-box-shadow: 4px 4px 6px 0px rgba(140,127,140,0.6);
    -moz-box-shadow: 4px 4px 6px 0px rgba(140,127,140,0.6);
    box-shadow: 4px 4px 6px 0px rgba(140,127,140,0.6);
}

.inputPrecio {
    outline: none;
    outline-color: #c1ccd5;
    border-width: thin;
    border-color: #c1ccd5;
    border: 1px solid #c1ccd5;
    padding: 10px;
    height: 25px;
}

.inputMinimo {
    border-radius: 8px 0 0 8px;
}

.inputMaximo {
    border-radius: 0 8px 8px 0;
    position: relative;
    left: -1px;
}

.textoPrecio {
    border-radius: 25px;
    outline: none;
    padding: 10px 10px 10px 37px;
    position: relative;
    left: -50px;
    width: 250px;
    font-size: 16px;
    color: #0139aa;
}


/* Estilos para checkbox como switch control */
/* https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_switch */

.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 12px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .5s;
    transition: .5s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 10px;
        width: 10px;
        left: 4px;
        bottom: 1px;
        background-color: white;
        -webkit-transition: .5s;
        transition: .5s;
    }

input:checked + .slider {
    background-color: #2e6287;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 24px;
}

    .slider.round:before {
        border-radius: 50%;
    }