body {
    background: white;
}

a {
    color: dodgerblue;
}

.parrafo {
    line-height: 30px;
    font-size: 18px;
    font-weight: bold;
}

/* ESTILOS PARA EL CHECKBOX */
input[type=checkbox] {
    visibility: hidden !important;
}

.checkbox-JASoft {
    display: inline-block;
    position: relative;
    width: 70px;
    height: 30px;
    background: #555;
    border-radius: 15px;
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.6), 0px 1px 0px rgba(255, 255, 255, 0.3);
}

.checkbox-JASoft label {

    /* aspecto */
    display: block;
    width: 34px;
    height: 20px;
    border-radius: 17px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.35);
    background: #fcfff4;
    background: linear-gradient(to top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
    cursor: pointer;

    /* Posicionamiento */
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;

    /* Comportamiento */
    transition: all .4s ease;

    /* ocultar el posible texto que tenga */
    overflow: hidden;
    text-indent: 35px;
    transition: text-indent 0s;
}

/* estado activado */
.checkbox-JASoft input[type=checkbox]:checked+label {
    left: auto;
    right: 5px;
}

.checkbox-JASoft:after {
    content: 'NO';
    font: 12px/30px Arial, sans-serif;
    color: rgb(184, 174, 174);
    position: absolute;
    right: 10px;
    z-index: 0;
    font-weight: bold;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, .20);
}

.checkbox-JASoft:before {
    content: 'SÍ';
    font: 12px/30px Arial, sans-serif;
    color: lime;
    position: absolute;
    left: 10px;
    z-index: 0;
    font-weight: bold;
}

/* Select */

.content-select select {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 7px 10px;
    height: 42px;
    outline: 0;
    border: 0;
    border-radius: 0;
    background: #f0f0f0;
    color: #7b7b7b;
    font-size: 1em;
    color: #999;
    font-family: 'Quicksand', sans-serif;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    position: relative;
    transition: all 0.25s ease;
}

.content-input input, .content-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

* {
    box-sizing: border-box;
}

user agent stylesheet select:not(:-internal-list-box) {
    overflow: visible !important;
}