/*
========================
======================== RESET
========================
*/

*{
    margin: 0;
    padding: 0;
    outline: 0;
    font-family: sans-serif;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

th{
  text-align: center;
}

html{
  background-color: #F3F3F3;
  font-family: sans-serif;
}

object,
embed,
video,
iframe,
iframe['style']{
    max-width: 100%;
    height: auto;
}

img{
    max-width: 100%;
    vertical-align: middle;
    margin: 0;
}

a img {
    border: none;
    margin: 0;
}

a {
    text-decoration: none;
}

ul{
    list-style: none;
}

/*
========================
======================== FORMS
========================
*/

/* RESET GERAL */
fieldset{
    border: 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="number"],
input[type="datetime"],
select,
textarea{
    font-size: 0.875em;
    padding: 13px;
    width: 100%;
    border: 1px solid #ccc;

    border-radius: 0;
    -webkit-border-radius:0;
    -moz-border-radius:0;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="datetime"]:focus,
select:focus,
textarea:focus{
    border: 1px solid #66afe9;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}

input.btn{
    width: auto;
    cursor: pointer;
}

.label{
    display: block;
    margin-bottom: 15px;
}

/* SELECT */
.select {
    width: 100%;
    position: relative;
}

.select .arr {
    background: #FFF;
    bottom: 5px;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    pointer-events: none;
}

.select .arr:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 6px;
    margin-top: -5px;
    pointer-events: none;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.select .arr:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -2px;
    pointer-events: none;
    border-top: 6px solid #374ea1;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.select select {
    outline: none;
    -webkit-appearance: none;
    display: block;
    margin: 0;
    padding: 13px 13px 12px;
}

/* RADIO/CHECK */
.label_radio,
.label_check{
    cursor: pointer;
    display: block;
    padding: 6px 0;
    font-size: 0.875em;
    cursor: pointer;
    position: relative;
    width: auto;
}

input[type="radio"],
input[type="checkbox"] {
    display: inline-block;
    height: 14px;
    width: 14px;
    border: 1px solid #ccc;
    overflow: hidden;
    margin: -4px 2px 0 0;
    vertical-align: middle;
    outline: 0;
    background: transparent;

    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="radio"] {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

input[type=radio]:before,
input[type=checkbox]:before {
    display: block;
}

input[type=radio]:checked:before,
input[type=checkbox]:checked:before{
    content: '';
    width: 8px;
    height: 8px;
    margin: 2px auto 0;
    background: #374EA1;

    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

input[type=checkbox]:checked:before{
    border-radius: 0!important;
    -webkit-border-radius: 0!important;
    -moz-border-radius: 0!important;
}

/* INPUT ANEXO */
.label_anexo{
    height: auto;
    display: block;
    margin-bottom: 15px;
    position: relative;
}

.label_anexo .mascara_upload{
    background: #FFF url(../../img/global/custom/icon_upload.png) center right 12px no-repeat;
    height: 100%;
}

.label_anexo .arquivo{
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

/*FORM VALIDAÇÃO*/
.alertField {
    border: 1px solid #a94442;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #a94442;
}

/*
========================
======================== BUTTONS
========================
*/



/*
========================
======================== HIGHLIGHTING
========================
*/

/* PLACEHOLDER */
::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

/* SELECTION */
::selection {
    background:#dcdcdc;
    color: #000;
}

::-webkit-selection{
    background:#dcdcdc;
    color: #000;
}

::-moz-selection {
    background:#dcdcdc;
    color: #000;
}

/*
========================
======================== CUSTON SWEETALERT
========================
*/

.sweet-alert button.confirm {
    background: #475b9f !important;

    transition: background-color 300ms ease-out;
    -webkit-transition: background-color 300ms ease-out;
    -moz-transition: background-color 300ms ease-out;
}
.sweet-alert button.confirm:hover {
    background: #122563 !important;
}

main{
  margin: 0 20%;
}
