html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}

@font-face {
  font-family: "OpenSansRegular";
  src: url(OpenSans-Regular-webfont.eot);
  src: url(OpenSans-Regular-webfont.eot?#iefix) format("embedded-opentype"),
    url(OpenSans-Regular-webfont.woff) format("woff"),
    url(OpenSans-Regular-webfont.ttf) format("truetype"),
    url(OpenSans-Regular-webfont.svg#open_sansregular) format("svg");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  font-family: "OpenSansRegular";
  transition: all 0.3s ease-out;
}

body {
  margin: 8px;
}

.boxForm {
  width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea,
select {
  position: relative;
  width: 100%;
  height: 35px;
  padding: 0 0 0 12px;
  margin: 0 0 5px 0;
  border-radius: 0px;
  border: 2px solid #ececec;
  background-color: #ffffff;
  color: #000;
  font-size: 14px;
  font-family: "OpenSansRegular", sans-serif;
  box-sizing: border-box;
  /* box-shadow: -1px 1px 1px 1px rgba(0,0,0,0.2); */
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  /* background-color: #fff; */
  box-shadow: 3px 3px 8px -1px rgba(0, 0, 0, 0.4);
  z-index: 9;
}

input[type="text"] {
}
input[type="email"] {
}
input[type="tel"] {
}

select {
  width: 100%;
  height: 34px;
  padding: 0 0 0 8px;
  cursor: pointer;
}

textarea {
  width: 100%;
  max-width: 100%;
  height: 70px;
  max-height: 70px;
  padding-top: 8px;
  margin-bottom: 5px;
}

input[type="checkbox"] {
  width: 20px;
  height: 38px;
  margin-right: 4px;
  cursor: pointer;
}

input[type="submit"],
button {
  width: 100%;
  height: 45px;
  margin-top: 0px;
  color: #ffffff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.28);
  font-size: 18px;
  cursor: pointer;
  clear: both;
  border: none;
  border-radius: 0px;
  background-color: #299e0c;
  word-wrap: break-word;
  transition: background-color 0.3s ease-out;
  text-transform: uppercase;
}

input[type="submit"]:hover,
button:hover {
  background-color: #006929;
}

input[type="submit"]:active,
button:active {
  box-shadow: inset 0 0 32px 0 #333;
}

/* Estilos do PLACEHOLDER (Media: 0px) */
::-webkit-input-placeholder {
  color: #000 !important;
}
:-moz-placeholder {
  color: #000 !important;
}
::-moz-placeholder {
  color: #000 !important;
}
:-ms-input-placeholder {
  color: #000 !important;
}

/* Estilo da mensagem de obrigado e erro (Media: 0px) */
#msgObrigado {
  color: #000;
  height: 62px;
  margin: 20px 10px 0 10px;
  text-align: center;
  padding-top: 35px;
  border-radius: 7px;
  font-size: 23px;
  font-family: "OpenSansRegular", sans-serif;
}

#msgErro {
  color: #000;
  height: 100px;
  margin: 20px 10px 0 6px;
  text-align: center;
  padding-top: 35px;
  border-radius: 7px;
  font-size: 24px;
  font-family: "OpenSansRegular", sans-serif;
}

#msgErro b {
  color: #f00;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

#outroFormulario {
  padding-top: 10px;
}

#outroFormulario a {
  text-decoration: none;
  font-size: 16px;
  font-family: "OpenSansRegular", sans-serif;
  line-height: 24px;
  color: #000;
}

#outroFormulario a:hover {
  text-decoration: underline;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0px;
  margin-bottom: 5px;
}

.gridComAnexo {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0px;
}

/* Media Query de caixa ate 301px de width */
@media (min-width: 301px) {
  .boxForm {
    width: 100%;
  }

  input[type="text"]:focus,
  input[type="tel"]:focus,
  input[type="email"]:focus,
  input[type="number"]:focus,
  input[type="password"]:focus,
  select:focus,
  textarea:focus {
    /* background-color: #fff; */
    box-shadow: 3px 3px 8px -1px rgba(0, 0, 0, 0.4);
    z-index: 9;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="number"],
  input[type="password"],
  textarea,
  select {
    height: 34px;
    width: 100%;
    margin: 0 7px 7px 0;
    float: left;
    transition: all 0.3s ease-out;
  }

  input[type="text"] {
  }
  input[type="email"] {
  }
  input[type="tel"] {
  }

  textarea {
    width: 100%;
    max-width: 100%;
    height: 80px;
    max-height: 80px;
    padding-top: 8px;
    float: none;
  }

  select {
    width: 100%;
    height: 34px;
    padding: 0 0 0 8px;
    cursor: pointer;
  }

  input[type="submit"],
  button {
    width: 100%;
    height: 45px;
    border-radius: 0px;
    margin-top: 0px;
  }

  #msgObrigado {
    margin: 50px 10px 0px 0px !important;
  }

  #msgErro {
    margin: 50px 30px 0px 20px !important;
  }

  #msgErro b {
    color: #f00;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  }
}

/* Media Query de caixa ate 400px de width */
@media (min-width: 400px) {
  .jfilestyle {
    /* margin: 5px 0px 10px 0px !important; */
  }

  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
  }

  .gridComAnexo {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 5px;
  }

  .boxForm {
    width: 100%;
  }

  div.jfilestyle label {
    padding: 10px 7px !important;
    height: 35px;
  }

  input[type="text"]:focus,
  input[type="tel"]:focus,
  input[type="email"]:focus,
  input[type="number"]:focus,
  input[type="password"]:focus,
  select:focus,
  textarea:focus {
    /* background-color: #fff; */
    box-shadow: 3px 3px 8px -1px rgba(0, 0, 0, 0.4);
    z-index: 9;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="number"],
  input[type="password"],
  textarea,
  select {
    height: 35px;
    width: 100%;
    margin: 0 0px 0px 0;
    line-height: 30px;
    border-radius: 0px;
    border-color: #dedede;
    background-color: #ffffff;
    color: #000;
    /* font-style: italic; */
    /* box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.22); */
    /* text-transform: uppercase; */
    transition: all 0.3s ease-out;
  }

  textarea {
    width: 100%;
    min-width: 100%;
    height: 70px;
    max-height: 70px;
    padding-top: 7px;
    padding-right: 10px;
    line-height: 15px;
    float: none;
    margin-bottom: 5px;
  }

  select {
    width: 100%;
    height: 35px;
    padding: 0 0 0 12px;
    cursor: pointer;
  }

  input[type="submit"],
  button {
    width: 100%;
    height: 45px;
    margin-top: -1px;
    text-transform: uppercase;
    font-size: 19px;
    letter-spacing: 2px;
    border-radius: 0px;
  }

  /* Estilo da mensagem de obrigado e erro (Media: ate 400px width) */
  #msgObrigado {
    margin: 10px 20px 0px 0px !important;
    color: #000;
  }

  #msgErro {
    margin: 10px 20px 0px 0px !important;
    height: 0px;
    color: #000;
  }

  #outroFormulario {
    padding-top: 10px;
  }

  #outroFormulario a {
    line-height: 50px;
    color: #000;
  }

  #msgErro b {
    color: #f00;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  }

  /* Estilos do PLACEHOLDER (Media: ate 400px width) */
  ::-webkit-input-placeholder {
    color: #000 !important;
  }
  :-moz-placeholder {
    color: #000 !important;
  }
  ::-moz-placeholder {
    color: #000 !important;
  }
  :-ms-input-placeholder {
    color: #000 !important;
  }
}

/* Estilo somente para o firefox */
@-moz-document url-prefix("") {
}

/*
 * jquery-filestyle
 * doc: http://markusslima.github.io/jquery-filestyle/
 * github: https://github.com/markusslima/jquery-filestyle
 *
 * Copyright (c) 2015 Markus Vinicius da Silva Lima
 * Version 1.5.1
 * Licensed under the MIT license.
 */
.jfilestyle {
  display: inline-block;
  margin: 0px 0px 5px 0px;
  padding: 0px;
  position: relative;
  border-collapse: separate;
  width: 100%;
  cursor: pointer;
}

div.jfilestyle label,
div.jfilestyle input {
  font-family: sans-serif;
}

div.jfilestyle input {
  border: 1px solid #c0c0c0;
  background: #d9d9d9;
  margin: 0px -5px 0px 0px;
  vertical-align: middle;
  padding: 7px 14px;
  font-size: 14px;
  border-radius: 4px;
  color: #8d8d8d;
  cursor: default;
  line-height: normal;
}

div.jfilestyle label {
  display: inline-block;
  border: 0px solid rgba(5, 5, 14, 0.2);
  background-color: #df9f31;
  padding: 10px 3px;
  color: #fcfdff;
  vertical-align: middle;
  line-height: normal;
  text-align: center;
  margin: 0px;
  font-size: 12px;
  width: 100%;
  border-radius: 0px;
  font-weight: normal;
  box-sizing: border-box;
  margin-bottom: 0px;
  cursor: pointer;
}

div.jfilestyle.jfilestyle-corner input:first-child {
  border-right: 0;
}

div.jfilestyle.jfilestyle-corner input:last-child {
  border-left: 0;
}

div.jfilestyle.jfilestyle-corner input:first-child,
div.jfilestyle.jfilestyle-corner span:first-child > label {
  border-radius: 4px 0 0 4px;
}

div.jfilestyle.jfilestyle-corner input:last-child,
div.jfilestyle.jfilestyle-corner span:last-child > label {
  border-radius: 0 4px 4px 0;
}

div.jfilestyle label[disabled] {
  pointer-events: none;
  opacity: 0.6;
  filter: alpha(opacity=65);
  cursor: not-allowed;
}

div.jfilestyle label:hover {
  cursor: pointer;
  opacity: 1;
  background-color: #1fb378;
}

div.jfilestyle .count-jfilestyle {
  background: #4a6ba7;
  color: #fff;
  border-radius: 4px;
  padding: 0px 5px 2px 5px;
  font-size: 12px;
  vertical-align: middle;
  font-weight: bold;
}

.bar {
  display: none;
  background-color: rgba(35, 132, 11, 0.75);
  height: 45px;
  text-align: center;
  padding: 0px;
  line-height: 45px;
  margin-top: -45px;
  position: relative;
}
.percent {
  display: none;
  color: #ffffff;
  font-size: 14px;
  /* padding: 22px 2px; */
  /* position: absolute; */
  text-align: center;
}

input[type="radio"] {
  display: none;
}

.label6 {
  padding: 8px 0px 7px 0px;
  background-color: #ffffff;
  border: 2px solid #dedede;
}
.coresul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 5px;
}

.coresul:after {
  content: "";
  clear: both;
}

.corli {
  border: 1px solid #ccc;
  float: left;
  height: 26px;
  position: relative;
  width: 100%;
  border-radius: 6px;
}
.corli label {
  background: #fff no-repeat center center;
  bottom: 1px;
  cursor: pointer;
  display: block;
  font-size: 0;
  left: 1px;
  position: absolute;
  right: 1px;
  text-indent: 100%;
  top: 1px;
  white-space: nowrap;
  border-radius: 4px;
}
.coresul input:focus + label {
  outline: 2px dotted #557d06;
}
.coresul input:checked + label {
  box-shadow: 0px 0px 0px 4px #737373;
}
.coresul input:checked + label:after {
  bottom: -10px;
  content: "";
  display: inline-block;
  height: 20px;
  position: absolute;
  right: -10px;
  width: 20px;
}

.caixa {
  overflow-y: unset;
  width: 100%;
  max-width: 260px;
  height: 165px;
  padding: 5px;
  background-color: #ffffff;
  border: 2px solid #aeaeae;
  border-radius: 8px;
  float: left;
  box-shadow: 3px 3px 10px -3px #0000003b;
  display: none;
  position: absolute;
  z-index: 9;
}

/* Todas as cores */
.cor1 label {
  background-color: #ffffff;
}
.cor2 label {
  background-color: #fffce9;
}
.cor3 label {
  background-color: #e7dab9;
}
.cor4 label {
  background-color: #ceb795;
}
.cor5 label {
  background-color: #aa9d33;
}
.cor6 label {
  background-color: #bc9d29;
}
.cor7 label {
  background-color: #ffeb00;
}
.cor8 label {
  background-color: #fff7a6;
}
.cor9 label {
  background-color: #ffca02;
}
.cor10 label {
  background-color: #75543d;
}
.cor11 label {
  background-color: #f26b21;
}
.cor12 label {
  background-color: #f8cce0;
}
.cor13 label {
  background-color: #d01a6e;
}
.cor14 label {
  background-color: #d50000;
}
.cor15 label {
  background-color: #840000;
}
.cor16 label {
  background-color: #4d0000;
}
.cor17 label {
  background-color: #4f217d;
}
.cor18 label {
  background-color: #9384bc;
}
.cor19 label {
  background-color: #f4c1aa;
}
.cor20 label {
  background-color: #006837;
}
.cor21 label {
  background-color: #4d4f30;
}
.cor22 label {
  background-color: #b4dfc3;
}
.cor23 label {
  background-color: #7dc11a;
}
.cor24 label {
  background-color: #22295f;
}
.cor25 label {
  background-color: #0c85bd;
}
.cor26 label {
  background-color: #70a1d4;
}
.cor27 label {
  background-color: #9bd3f2;
}
.cor28 label {
  background-color: #3e414b;
}
.cor29 label {
  background-color: #686a76;
}
.cor30 label {
  background-color: #272971;
}
.cor31 label {
  background-color: #000000;
}

.fundo form .labels {
  height: 30px;
  width: 300px;
  line-height: 30px;
  position: absolute;
  color: #3a5b04;
  background-color: #adcb7f;
  text-align: center;
}
