/* TYPE TEXT */
/*
<input id="xxx" name="selector1" value="0" checked="" type="radio">
*/

input[type="text"] {
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
}

input[type="text"]:focus {
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
}

input[type="radio"]:checked ~ .check::before {
    background: #f10c1d none repeat scroll 0 0;
}

/* TYPE RADIO */
/*
<input id="cxxx" name="selector1" value="0" checked="" type="radio">
<label for="xxx">Não</label>
<div class="check">
    <div class="inside"></div>
</div>
*/

.radio {
    color: #666;
    display: block;
    float: left;
    height: 50px;
    position: relative;
    width: 100%;
}
div input[type="radio"] {
    position: absolute;
    visibility: hidden;
}
div label {
    cursor: pointer;
    display: block;
    font-size: 15px;
    font-weight: 300;
    height: 30px;
    width:100%;
    position: relative;
    text-align: left;
    top: 2px;
    transition: all 0.25s linear 0s;
    z-index: 9;
}
div:hover label {
    color: #666;
}
div .check {
    border: 5px solid #666;
    border-radius: 100%;
    display: block;
    height: 20px;
    left: 20px;
    position: absolute;
    top: -5px;
    transition: border 0.25s linear 0s;
    width: 20px;
    z-index: 5;
}
div:hover .check {
    border: 5px solid #666;
}
div .check::before {
    border-radius: 100%;
    content: "";
    display: block;
    height: 10px;
    left: 5px;
    margin: auto;
    position: absolute;
    top: 5px;
    transition: background 0.25s linear 0s;
    width: 10px;
}
input[type="radio"]:checked ~ .check {
    border: 5px solid #f10c1d;
}
input[type="radio"]:checked ~ .check::before {
    background: #f10c1d none repeat scroll 0 0;
}
input[type="radio"]:checked ~ label {
    color: #f10c1d;
}


/* TYPE SELECT */
/*
<label class="simpleSelectLabel">
<select id="con_client_type0" class="simpleSelect" style="width:100%;" disabled="">
</label>
*/

:focus {
    outline: medium none;
}
*::-moz-focus-inner {
    border: medium none;
}
select.simpleSelect {
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #acacac;
    border-radius: 0;
    color: #666;
    cursor: pointer;
    font-family: Arial,Calibri,Tahoma,Verdana;
    font-size: 13px;
    font-weight: 500;
    height: 40px;
    outline: medium none;
    padding-right: 20pt;
    text-align: left;
    text-indent: 3px;
    vertical-align: middle;
    width: 100%;
}
select.simpleSelect option {
    font-size: 11pt;
    font-weight: normal;
    outline: medium none;
    padding: 4px;
}
select.simpleSelect option[selected] {
    font-weight: bold;
}
select.simpleSelect option:nth-child(2n) {
    background-color: #f5f5f5;
}
select.simpleSelect:hover {
}
select.simpleSelect:focus {
}
label.simpleSelectLabel {
    display: inline-block;
    position: relative;
}
label.simpleSelectLabel::after {
    background: transparent none repeat scroll 0 0;
    border-radius: 0 2px 2px 0;
    bottom: 0;
    color: #666;
    content: "▼";
    line-height: 18pt;
    outline: medium none;
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: center;
    top: 10px;
    vertical-align: middle;
    width: 20pt;
}
select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

/* BUTTONS */
/*
<div class="bt-function" type="button" >XXX</div>
*/

.bt-function {
    background-color: red;
    border: 1px solid red;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    float: right;
    font-family: Arial;
    font-size: 13px;
    margin-right: 2px;
    padding: 10px;
    position: relative;
    font-weight:600
}
.bt-function:hover {
    background-color: #333;
    border: 1px solid #333;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    float: right;
    font-family: Arial;
    font-size: 13px;
    margin-right: 2px;
    padding: 10px;
    position: relative;
}
