﻿body {
}
.stl_net-label-1{
    grid-column:span 4;
    font-size:16px;
    font-weight:600;
}

.content-input input,
.content-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}


.content-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

    /* Eliminamos la fecha que por defecto aparece en el desplegable */
    .content-select select::-ms-expand {
        display: none;
    }
.content-select {
    max-width: 250px;
    position: relative;
}

    .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-select select:hover {
            background: #B1E8CD;
        }

    /* 
Creamos la fecha que aparece a la izquierda del select.
Realmente este elemento es un cuadrado que sólo tienen
dos bordes con color y que giramos con transform: rotate(-45deg);
*/
    .content-select i {
        position: absolute;
        right: 20px;
        top: calc(50% - 13px);
        width: 16px;
        height: 16px;
        display: block;
        border-left: 4px solid #2AC176;
        border-bottom: 4px solid #2AC176;
        transform: rotate(-45deg); /* Giramos el cuadrado */
        transition: all 0.25s ease;
    }

    .content-select:hover i {
        margin-top: 3px;
    }


/********************************************************************************************/

.stl_net_textBox-1 {
    width: 100%;
    border: none;
    background: none;
    font-size: 15px;
    color: #282828;
    font-family:Arial;
    margin:0;
    padding:0;
}
.stl_net_text-h3 {
    width: 100%;
    color: #000000;
    font-size: 26px;
    font-weight: 600;
    padding: 0px;
    display: block;
    margin: 10px 0px;
    padding:0px;
    background: none;
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
.stl_net_text-1 {
    width: 100%;
    color: #282828;
    font-size: 20px;
    font-weight: 100;
    padding: 0px;
    display: block;
    margin: 10px 0px;
    padding: 0px;
    background: none;
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
.stl_net_btn_1 {
    width: 200px;
    background: #09ab9b;
    color: #ffffff;
    border: 0;
    text-transform: uppercase;
    padding: 20px;
    margin:10px 0px;
    cursor: pointer;
}
.stl_net_btn_2 {
    width: 140px;
    height: 40px;
    background-color: #057b6f;
    color: #ffffff;
    border: 0;
    text-transform: uppercase;
    padding: 0px;
    margin: 0px 0px 0px 50px;
    cursor: pointer;
}
    .stl_net_btn_2:hover {
        background-color: #ff0101;
    }
    /******************************************************************/
    .stl_net_ibt {
        width: 32px;
        height: 32px;
        background-color: #2ab2bd;
        margin: 0px;
        padding: 6px;
        cursor: pointer;
        border-radius: 4px 4px 4px 4px;
        -moz-border-radius: 4px 4px 4px 4px;
        -webkit-border-radius: 4px 4px 4px 4px;
        border: 0px solid #000000;
        -webkit-transition: all 0.5s 0s ease;
        -moz-transition: all 0.5s 0s ease;
        -o-transition: all 0.5s 0s ease;
        transition: all 0.5s 0s ease;
    }
    .stl_net_ibt:hover {
        background-color: #e1aa12;
    }

/********************************* Inicio Radio Button *********************************/

.stl_net_ckb_1,
.stl_net_rdb_1 {
    margin: 0px;
    padding: 0px;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    justify-content: start;
    align-items: center;
    gap: 10px;
    color: #000000;
    padding: 10px;
    font-weight: 600;

    -webkit-transition: all 0.5s 0s ease;
    -moz-transition: all 0.5s 0s ease;
    -o-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
}
    .stl_net_ckb_1:hover,
    .stl_net_rdb_1:hover {
        color: #000000;
    }
    .stl_net_ckb_1 input[ type=checkbox],
    .stl_net_rdb_1 input[type=radio] {
        display: block;
        width: 16px;
        height: 16px;
    }
    .stl_net_ckb_1 label,
    .stl_net_rdb_1 label {
        font-size: 16px;
        text-align: left;
        cursor: pointer;
        font-weight: 400;
        border: 1px solid #37b9ac;
        padding: 10px 20px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
        font-weight: 400;
        -webkit-transition: all 0.5s 0s ease;
        -moz-transition: all 0.5s 0s ease;
        -o-transition: all 0.5s 0s ease;
        transition: all 0.5s 0s ease;
    }
    .stl_net_ckb_1 label:hover,
    .stl_net_rdb_1 label:hover {
        background-color:#ffffff;
    }
    .stl_net_ckb_1 input[ type=checkbox]:focus + label,
    .stl_net_rdb_1 input[ type=radio]:focus + label {
        color: #000000;
        padding: 10px 20px;
        border: 1px solid #38b9ac;
    }
    .stl_net_ckb_1 input[ type=checkbox]:checked + label,
    .stl_net_rdb_1 input[ type=radio]:checked + label {
        font-weight: 400;
        background-color: #37b9ac;
        padding: 10px;
        color: #ffffff;
        padding: 10px 20px;
        border: 1px solid #38b9ac;
        background-color: #38b9ac;
    }

    .stl_net_ckb_2,
    .stl_net_rdb_2 {
        margin: 0px;
        padding: 0px;
        cursor: pointer;
        display: flex;
        flex-flow: row nowrap;
        justify-content: start;
        align-items: center;
    }
    .stl_net_ckb_2 input[ type=checkbox],
    .stl_net_rdb_2 input[type=radio] {
        display: block;
        width: 16px;
        height: 16px;
    }
    .stl_net_ckb_2 label,
    .stl_net_rdb_2 label {
        font-size: 16px;
        text-align: left;
        cursor: pointer;
        font-weight: 400;
        padding: 0px 10px;
        font-weight: 400;
        -webkit-transition: all 0.5s 0s ease;
        -moz-transition: all 0.5s 0s ease;
        -o-transition: all 0.5s 0s ease;
        transition: all 0.5s 0s ease;
    }
    .stl_net_ckb_2 label:hover,
    .stl_net_rdb_2 label:hover {
        background-color: #ffffff;
    }
        .stl_net_ckb_2 input[ type=checkbox]:focus + label,
        .stl_net_rdb_2 input[ type=radio]:focus + label {
            color: #000000;
        }
    .stl_net_ckb_2 input[ type=checkbox]:checked + label,
    .stl_net_rdb_2 input[ type=radio]:checked + label {
        font-weight: 400;
        color: #057b6f;
    }

/********************************* Fin Radio Button *********************************/
.stl_net_FileLoad {
    background-color: #ffffff;
    -webkit-transition: all 0.5s 0s ease;
    -moz-transition: all 0.5s 0s ease;
    -o-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
}
    .stl_net_FileLoad:hover {
        background-color: #37b9ac;
        color:#ffffff;
    }
.stl_net_FileLoad_1 {
    background-color: #ffffff;
    margin:10px 0px;
    -webkit-transition: all 0.5s 0s ease;
    -moz-transition: all 0.5s 0s ease;
    -o-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
}

    .stl_net_FileLoad_1:hover {
        background-color: #37b9ac;
        color: #ffffff;
    }