@charset "utf-8";
/* CSS Document */

/* Estilo para ferramenta de formulários */

#formulario input[type="submit"] {
    background-color: #e5e5e5;
    border: 1px solid #999;
    border-radius: 3px;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}
#formulario input[type="submit"]:hover {
    background-color: #f2f2f2 !important;
}
.input-daterange input:first-child{border-radius:0;}
#formulario input[type="text"], textarea {
    font-family:Arial,Helvetica,sans-serif !important;
	border: 1px solid #ccc;
   /* border-radius: 4px !important;*/
    color: #555;
    font-size: 14px !important;
    padding: 4px 10px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}
#formulario input[type="text"] {
    height: 20px;
}
#formulario input[type="text"]:focus, textarea:focus {
    background-color: #fff;
    border-color: #66afe9;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}
#formulario .form-custom-select::before {
    border-color: #555555 transparent transparent;
    border-style: solid;
    border-width: 5px;
    content: "";
    height: 0;
    margin-left: 5px;
    margin-top: -2px;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
    width: 0;
    z-index: 2;
}
#formulario *::after, *::before {
    box-sizing: border-box;
}
#formulario .form-custom-select::after {
    background-color: #e5e5e5;
    border-left: 1px solid #ccc;
    content: "";
    height: inherit;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    z-index: 1;
}
#formulario *::after, *::before {
    box-sizing: border-box;
}
#formulario .form-custom-select {
    padding-right: 0;
}
#formulario .form-custom-select {
    background: white none repeat scroll 0 0;
    border: 1px solid #ccc;
    /*border-radius: 4px;*/
    cursor: pointer;
    display: inline-block;
    height: 28px;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
}
#formulario .form-custom-select select {
    -moz-appearance: none;
    background: white none repeat scroll 0 0;
    border: medium none;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    color: #555555;
    display: inline-block;
    font-size: 14px;
    height: inherit;
    padding: 5px 42px 5px 10px;
    position: relative;
    width: 100%;
    z-index: 1;
	*width: 125%;
	*z-index: 2;
	cursor:pointer;
}
/* hack para IE */
*#formulario .form-custom-select select {
	width: 125%;
	/*z-index: 2;*/
}
/* hack para Chrome */
@media screen and (-webkit-min-device-pixel-ratio:0) {
#formulario .form-custom-select select {
	width: 100%;
    z-index: 1;
}
}

#formulario [type="checkbox"]:not(:checked), #formulario [type="checkbox"]:checked {
    left: -9999px;
    position: absolute;
}
#formulario [type="checkbox"]:not(:checked) + label, #formulario [type="checkbox"]:checked + label {
    cursor: pointer;
    padding-left: 25px;
    position: relative;
}
#formulario [type="checkbox"]:not(:checked) + label::before, #formulario [type="checkbox"]:checked + label::before {
    background: #f8f8f8 none repeat scroll 0 0;
    border: 1px solid #aaa;
   /* border-radius: 3px;*/
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
    content: "";
    height: 17px;
    left: 0;
    position: absolute;
    top: 2px;
    width: 17px;
}
#formulario [type="checkbox"]:not(:checked) + label::after, #formulario [type="checkbox"]:checked + label::after {
    color: #777;
    content: "✔";
    font-size: 18px;
    left: 4px;
    line-height: 0.8;
    position: absolute;
    top: 3px;
    transition: all 0.2s ease 0s;
}
#formulario [type="checkbox"]:not(:checked) + label::after {
    opacity: 0;
    transform: scale(0);
}
#formulario [type="checkbox"]:checked + label::after {
    opacity: 1;
    transform: scale(1);
}
#formulario[type="checkbox"]:disabled:not(:checked) + label::before, #formulario [type="checkbox"]:disabled:checked + label::before {
    background-color: #ddd;
    border-color: #bbb;
    box-shadow: none;
}
#formulario [type="checkbox"]:disabled:checked + label::after {
    color: #999;
}
#formulario [type="checkbox"]:disabled + label {
    color: #aaa;
}
#formulario [type="checkbox"]:checked:focus + label::before, #formulario [type="checkbox"]:focus:not(:checked) + label::before {
    background-color: #fff;
    border-color: #66afe9;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}
#formulario label:hover::before {
    border: 1px solid #4778d9 !important;
}
#formulario [type="radio"]:not(:checked), #formulario [type="radio"]:checked {
    left: -9999px;
    position: absolute;
}
#formulario [type="radio"]:not(:checked) + label, #formulario [type="radio"]:checked + label {
    cursor: pointer;
    padding-left: 25px;
    position: relative;
}
#formulario [type="radio"]:not(:checked) + label::before, #formulario [type="radio"]:checked + label::before {
    background: #f8f8f8 none repeat scroll 0 0;
    border: 1px solid #aaa;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset;
    content: "";
    height: 17px;
    left: 0;
    position: absolute;
    top: 2px;
    width: 17px;
}
#formulario [type="radio"]:not(:checked) + label::after, #formulario [type="radio"]:checked + label::after {
    color: #09ad7e;
    content: "●" !important;
    font-size: 18px;
    left: 3px;
    line-height: 0.7;
    position: absolute;
    top: 3px;
    transition: all 0.2s ease 0s;
}
#formulario [type="radio"]:not(:checked) + label::after {
    opacity: 0;
    transform: scale(0);
}
#formulario [type="radio"]:checked + label::after {
    opacity: 1;
    transform: scale(1);
}
#formulario [type="radio"]:disabled:not(:checked) + label::before, #formulario [type="radio"]:disabled:checked + label::before {
    background-color: #ddd;
    border-color: #bbb;
    box-shadow: none;
}
#formulario [type="radio"]:disabled:checked + label::after {
    color: #999;
}
#formulario [type="radio"]:disabled + label {
    color: #aaa;
}
#formulario [type="radio"]:checked:focus + label::before, #formulario [type="radio"]:focus:not(:checked) + label::before {
    background-color: #fff;
    border-color: #66afe9;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}
