@charset "UTF-8";
/**** IMPORTS ****/
@import url("https://fonts.googleapis.com/css?family=Titillium+Web");
@import url("https://fonts.googleapis.com/css?family=Oswald:300,400,700");
/**** VARIAVEIS ****/
/**** FUNÇÕES ****/
.cd-panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url("../../../img/bg/white-06.png") repeat;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.6s;
  -moz-transition: visibility 0s 0.6s;
  transition: visibility 0s 0.6s;
  z-index: 999; }
  .cd-panel::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    -webkit-transition: background 0.3s 0.3s;
    -moz-transition: background 0.3s 0.3s;
    transition: background 0.3s 0.3s; }
  .cd-panel.is-visible {
    visibility: visible;
    z-index: 1900;
    -webkit-transition: visibility 0s 0s;
    -moz-transition: visibility 0s 0s;
    transition: visibility 0s 0s; }
    .cd-panel.is-visible::after {
      background: rgba(0, 0, 0, 0.6);
      -webkit-transition: background 0.3s 0s;
      -moz-transition: background 0.3s 0s;
      transition: background 0.3s 0s; }
  .cd-panel .cd-panel-close::before {
    -webkit-animation: cd-close-1 0.6s 0.3s;
    -moz-animation: cd-close-1 0.6s 0.3s;
    animation: cd-close-1 0.6s 0.3s;
    font-family: "Font-Awesome";
    content: " "; }
  .cd-panel .cd-panel-close::after {
    -webkit-animation: cd-close-2 0.6s 0.3s;
    -moz-animation: cd-close-2 0.6s 0.3s;
    animation: cd-close-2 0.6s 0.3s; }

.cd-panel-header {
  position: fixed;
  height: 60px;
  line-height: 60px;
  color: #fff;
  background: #de8c25;
  z-index: 2;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  -webkit-transition: top 0.3s 0s;
  -moz-transition: top 0.3s 0s;
  transition: top 0.3s 0s; }
  .cd-panel-header a {
    color: #fbfbfb !important; }
  .cd-panel-header h1 {
    font-weight: 100;
    font-family: "Titillium Web", sans-serif;
    width: 100%;
    padding-left: 5%;
    text-align: left;
    color: #fff;
    font-size: 30px; }
    .cd-panel-header h1 i {
      color: #fbfbfb; }

.from-right .cd-panel-header, .from-left .cd-panel-header {
  top: -50px; }

.from-right .cd-panel-header {
  right: 0; }

.from-left .cd-panel-header {
  left: 0; }

.is-visible .cd-panel-header {
  top: 0;
  -webkit-transition: top 0.3s 0.3s;
  -moz-transition: top 0.3s 0.3s;
  transition: top 0.3s 0.3s; }

.cd-panel-close {
  color: #fbfbfb;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60px;
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap; }
  .cd-panel-close a::before {
    content: "\f00d";
    font-family: 'FontAwesome';
    margin-right: 10px;
    color: #fff; }
  .cd-panel-close::before, .cd-panel-close::after {
    position: absolute;
    top: 22px;
    left: 20px;
    height: 3px;
    width: 20px;
    background-color: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }

.no-touch .cd-panel-close:hover {
  background-color: #320c0a; }

.no-touch .cd-panel-close:hover::before, .no-touch .cd-panel-close:hover::after {
  background-color: #fff; }

.cd-panel-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background: #de8c25;
  z-index: 1;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s; }
  .cd-panel-container label {
    color: #fff !important; }
  .cd-panel-container .btn-pesquisa {
    text-align: center;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px;
    font-weight: 500;
    background-color: transparent;
    text-transform: uppercase;
    margin-bottom: 10px;
    -webkit-transition: all 550ms ease-in-out;
    -moz-transition: all 550ms ease-in-out;
    -o-transition: all 550ms ease-in-out;
    transition: all 550ms ease-in-out;
    background: linear-gradient(to right, transparent 50%, #964a47 50%);
    background-size: 200% 100%;
    background-position: left bottom;
    cursor: pointer; }
    .cd-panel-container .btn-pesquisa:hover {
      background-color: #320c0a;
      background-position: right bottom;
      color: #fff;
      border: 1px solid #320c0a; }
    .cd-panel-container .btn-pesquisa:active {
      color: #fff; }

.from-right .cd-panel-container {
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.from-left .cd-panel-container {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.is-visible .cd-panel-container {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
  overflow: auto; }

@media only screen and (min-width: 320px) {
  .cd-panel-header h1 {
    font-size: 20px; }

  .cd-panel-header, .cd-panel-container {
    width: 100%; } }
@media only screen and (min-width: 768px) {
  .cd-panel-header h1 {
    font-size: 30px; }

  .cd-panel-header, .cd-panel-container {
    width: 70%; } }
@media only screen and (min-width: 1170px) {
  .cd-panel-header h1 {
    font-size: 30px; }

  .cd-panel-header, .cd-panel-container {
    width: 50%; } }
.cd-panel-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 70px 5%;
  -webkit-overflow-scrolling: touch; }
  .cd-panel-content h3 {
    font-family: "Titillium Web", sans-serif;
    font-size: 40px;
    letter-spacing: -2px;
    color: #fbfbfb;
    margin-bottom: 40px; }
  .cd-panel-content p {
    font-size: 14px;
    font-size: 0.875rem;
    color: #fff;
    line-height: 1.4;
    margin: 2em 0; }
    .cd-panel-content p:first-of-type {
      margin-top: 0; }

@media only screen and (min-width: 768px) {
  .cd-panel-content p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6; } }
.panel-group .panel-heading {
  background-color: transparent; }
  .panel-group .panel-heading a i {
    color: #fbfbfb;
    opacity: 0,5; }

.panel-body .form-control {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
  margin-bottom: 10px;
  height: 44px;
  text-transform: uppercase; }
.panel-body select {
  background: transparent url("../../../img/bg/ddl-style-pesquisa.PNG") no-repeat right !important; }
  .panel-body selectoption {
    color: #964a47;
    text-transform: uppercase; }

/*# sourceMappingURL=style.css.map */
