@charset "UTF-8";

/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* BACKGROUND GRADIENT */
/* BACKGROUND HORIZONTAL */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BACKGROUND COLOR OPACITY */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSFORM STYLE */
/* TRANSITION */
/* TRIPLE BORDERS */
/* KEYFRAMES */
/* ANIMATION */
/* Position */
/* TOOLSET */
a,
label,
button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

:focus {
  outline: 0;
}

*,
*:hover,
*:active {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

noscript {
  text-align: center;
  width: 100%;
  height: 50px;
  display: block;
  font-size: 16px;
  padding: 15px;
  border: red 1px solid;
  text-decoration: underline;
  font-family: arial;
  background: white;
  color: black;
}

/* Sem margem */
.no-margin {
  margin: 0 !important;
}

.no-right {
  margin-right: 0 !important;
}

.no-left {
  margin-left: 0 !important;
}

.no-top {
  margin-top: 0 !important;
}

.no-botton {
  margin-bottom: 0 !important;
}

/* Lista sem Marcadores */
.clear-list {
  display: block;
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-size: 0;
}

.clear-list li {
  display: inline-block;
  margin: 0px;
  padding: 0px;
  font-size: medium;
}

/* Clearfix */
.clearfix:before,
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: block;
}

/* Text Justify */
.text-justify {
  text-align: justify !important;
  text-indent: 0px !important;
}

/* Text Center */
.text-center {
  text-align: center !important;
  text-indent: 0px !important;
}

.text-left {
  text-align: left !important;
  text-indent: 0px !important;
}

.text-right {
  text-align: right !important;
  text-indent: 0px !important;
}

.text-bottom {
  vertical-align: text-bottom;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-strike {
  text-decoration: line-through;
}

/* Font Italic */
.font-italic {
  font-style: italic !important;
}

.font-bold {
  font-style: bold !important;
}

/* Bloco */
.block {
  display: block !important;
}

.i-block {
  display: inline-block !important;
  *display: inline;
}

/*None*/
.none {
  display: none !important;
}

/* Relativo */
.relative {
  position: relative !important;
}

/* IMG Replacement */
.replace {
  overflow: hidden !important;
  text-indent: -999em;
}

/* Visualiza├º├Áes */
.show {
  display: block !important;
  visibility: visible;
}

.hide,
.qq-upload-list {
  display: none !important;
  visibility: hidden;
}

.no-hand {
  cursor: default;
}

.no-border {
  border: none !important;
}

/* Flutua├º├Áes */
.to-left {
  float: left !important;
}

.to-right {
  float: right !important;
}

/* Text Overflow Ellipsis  */
.text-ellipsis {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

/* wid */
.w-100p {
  width: 100% !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
}

.hidden,
[hidden],
template {
  display: none !important;
  visibility: hidden !important;
}

@media print {
  .no-print {
    display: none !important;
  }

  .container_12 .print_12 {
    width: 940px !important;
  }

  .print {
    display: block !important;
  }
}

.pont {
  pointer-events: none;
}

.no-padding {
  padding: 0px !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.bottom-none {
  border-bottom: none !important;
}

.c-white {
  color: white;
}

.c-black {
  color: black;
}

.b-black {
  background-color: black;
}

.b-white {
  background-color: white;
}

.feedback {
  margin: 10px 0;
  font: 13px/10px Arial;
}

.fb-comments.fb_iframe_widget_loader.fb_iframe_widget.fb_hide_iframes {
  left: 0px !important;
}

/* SELECAO */
::-moz-selection {
  color: #FFF;
  background-color: #ff5a00;
}

::selection {
  color: #FFF;
  background-color: #ff5a00;
}

/* FORM PADRAO */
.campo {
  resize: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* CONTAINER */
.container-fluido>.col:first-child {
  padding-left: 0 !important;
  padding-right: 15px !important;
}

.container-fluido>.col:last-child {
  padding-right: 0 !important;
  padding-left: 15px !important;
}

/* MAPA */
.mapa {
  height: 100%;
  width: 100%;
}

/* SCROLL */
body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-thumb {
  background-color: #362e2c;
}

body::-webkit-scrollbar-track {
  background-color: #FFF;
  border-left: 1px solid #e2e2e2;
}

.tab-pane::-webkit-scrollbar {
  width: 6px;
}

.tab-pane::-webkit-scrollbar-thumb {
  background-color: #362e2c;
}

.tab-pane::-webkit-scrollbar-track {
  background-color: #ed6042;
}

.w-webflow-badge {
  display: none !important;
}

.botao-buscar {
  text-indent: -9999px;
}

/* CHECK GERAL */
.opcao {
  position: absolute;
  opacity: 0;
}

.opcao+label {
  position: relative;
  cursor: pointer;
  padding: 0;
}

.opcao+label:before {
  content: '';
  margin-right: 7px;
  border-radius: 0px;
  float: left;
  display: inline-block;
  vertical-align: text-top;
  width: 15px;
  height: 15px;
  margin-top: 0px;
  border: 2px solid #8C8C8C;
}

.opcao:hover+label:before {
  background: #05b555;
  border-color: #05b555;
}

.opcao:focus+label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.opcao:checked+label {
  color: #666666;
  font-weight: bold;
}

.opcao:checked+label:before {
  background: #05b555;
  border: 2px solid #05b555;
}

.opcao:checked+label:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  margin-top: -2px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-add-video {
  float: right;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #ff5a00;
  color: white;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

.btn-remove-video {
  float: right;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #ff0000;
  color: white;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

#boxvideouser {
  float: left;
  width: 100%;
}

.mt-60 {
  margin-top: 60px;
}

.div-block-38-copy-copy .w-slider {
  height: 125px;
  background-color: transparent;
  margin: 20px 0;
}

.div-block-38-copy-copy .w-slider .link-block-11 {
  height: 100%;
  width: 100%;
}

.div-block-38-copy-copy .w-slider .link-block-11 .image-14 {
  max-height: 100%;
  max-width: 100%;
}

.div-block-38-copy-copy .w-slider .w-slider-nav {
  position: initial;
}

.div-block-38-copy-copy .w-slider .w-slider-dot {
  background-color: transparent;
  border: 2px solid #000;
}

.div-block-38-copy-copy .w-slider .w-slider-dot.w-active {
  background-color: #000;
}

.div-block-38-copy-copy .w-slider .w-slider-dot:hover {
  border: 2px solid #ff5a00;
  background-color: #ff5a00;
}

/* FIM */
.btn-deletar,
.btn-editar {
  height: 40px;
  width: 40px;
  font-size: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  display: block;
  float: left;
  margin-top: -20px;
  padding: 0;
}

.btn-deletar:before,
.btn-editar:before {
  content: "";
  content: "";
  background-size: 22px;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: block;
}

.btn-editar {
  right: 40px;
  background-color: #62a01e;
}

.btn-editar:before {
  background-image: url('/images/icone_editar.svg');
}

.btn-deletar {
  background-color: #d90000;
}

.btn-deletar:before {
  background-image: url('/images/icone_deletar.svg');
}

.loading {
  position: fixed;
  z-index: 99999999999999;
  top: 0;
  left: 0;
  display: block;
  background: #FFF url(/images/loading.gif) center no-repeat;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .mt-30 {
    margin-top: 30px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1350px) {
  .container {
    width: 900px;
  }

  .item-menu {
    font-size: 13px;
  }

  .nav-menu {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .item-login {
    width: 170px;
  }

  .botao-acessar {
    width: 100px;
    font-size: 13px;
  }

  .form-busca {
    width: 200px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1360px) {
  .bloco-info {
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .container-fluido>.col:first-child {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .container-fluido>.col:last-child {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

.nav-categoria>.w-nav-overlay {
  position: relative;
  height: auto !important;
}

@media print {

  .rodape,
  .div-block-18,
  .div-block,
  .div-block-39,
  .navbar,
  .submit-button-2,
  .div-block-31,
  .div-block-55-copy,
  .link-5,
  .paragraph-30,
  .paragraph-31,
  .heading-10 {
    display: none;
  }

  .col {
    padding: 0 !important;
  }

  .bgprint {
    background-color: #fff !important;

    -webkit-print-color-adjust: exact;
  }

  .div-block-32 {
    width: 100%;
    padding: 0;
  }

  html,
  body {
    height: auto;
  }
}

@media (max-width: 992px) {
  .div-block-38-copy-copy .w-slider {
    height: 68px;
  }
}

@media (max-width: 479px) {
  .div-block-38-copy-copy .w-slider {
    height: 36px;
  }

  .w-slider-arrow-left,
  .w-slider-arrow-right {
    width: 30px;
  }

  .w-icon-slider-left,
  .w-icon-slider-right {
    font-size: 23px;
  }
}

/*# sourceMappingURL=style.css.map */
.successMessage,
.warningMessage,
.errorMessage,
.alert-danger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  min-width: 300px;
  padding: 1rem 3rem 1rem 1rem;
  background-color: #fff;
  border: 3px solid transparent;
  border-radius: 0.375rem;
  transition: opacity .15s linear;
  background-color: #fff;
}

.successMessage {
  color: #0f512b;

  border-color: #0f512b;
}

.warningMessage,
.alert-danger {
  color: #664d03;
  border-color: #664d03;
}

.errorMessage {
  color: #a9211c;
  border-color: #a9211c;
}