@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=latin-ext');
/*font-family: 'Montserrat', sans-serif;*/

/*GERAL*/
  html, body{
    height: 100%;
    position: relative;
    min-height: 100%;
  }
  body{
    font-family:"Montserrat", sans-serif;
    font-size: 22px;
    color:#919295;
    font-style: normal;
    font-weight: 300;
    line-height: 1.42857143;
    font-stretch: normal; 
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scrollbar-face-color: #FFFFFF;
    scrollbar-track-color: #ccc;
    scrollbar-arrow-color: #ccc;
    scrollbar-shadow-color: #ccc;
    scrollbar-highlight-color: #ccc;
    scrollbar-darkshadow-color: #FFFFFF;
    scrollbar-3dlight-color: #FFFFFF;
  }

  #contentor1{
    min-height: 100%;
    position: relative;
  }
  #asseccentro{
    /* Set the fixed height of the header*/
    padding-top: 0px;
    /* Set the fixed height of the footer here + 20px de padding a separar do conteudo */
    padding-bottom: 63px;
    /*background-color: #fff;
    min-height: 600px;*/
  }
  .loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /*background: #fff;*/
    background: url('./imagens/loader.svg') 50% 50% no-repeat rgb(249,249,249);
    visibility: hidden;
  }
  .divisor{
    font-family: 'Montserrat', sans-serif;
    color: #444444;
    font-size: 30px;
    line-height: 35px;
    font-weight: 400;
    text-align: left;
    text-transform: uppercase;
    border-bottom: 1px solid #444444;
    padding-bottom: 11px;
  }
  .pre-owl{
    padding: 0;
    margin: 0 15px;
  }
  .owl-container{
    position: relative;
    float: left;
    width: 100%;
  }
  ::selection {
    background: rgba(1, 157, 221, .65);
    color: #FFF;
  }
  ::focus {
    border: none;
    outline: none;
  }
  :focus {
    outline: none !important;
    outline-color: none;
    outline-style: none;
    outline-width: none;
  }
/*end GERAL*/

/*Vertical Align*/
  .vertical-table-wrapper{
    display: table;
    width: 100%;
    height: 100%;
  }
  .vertical-table-cell{
    display: table-cell;
    vertical-align: middle;
  }
  .vertical-cell{
    /*border: 1px solid #fff;
    padding: 10px;
    max-width: 500px;
    margin: 0 auto;*/
  }
  .vertical-bg{
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
  }
/*end Vertical Align*/

/*LOADER*/
  #loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
  }
  .spinner {
    width: 100%;
    text-align: center;
    display: block;
    position: relative;
    /* left: 60%; */
    top: 50%;
    margin: -135px 0 0 0;
    z-index: 1001;
  }
  .spinner > div {
    width: 14px;
    height: 14px;
    background-color: #00a6e7;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  }
  .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
  }
  .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
  }
  @-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
  }
  @keyframes sk-bouncedelay {
    0%, 80%, 100% { 
      -webkit-transform: scale(0);
      transform: scale(0);
    } 40% { 
      -webkit-transform: scale(1.0);
      transform: scale(1.0);
    }
  }
  #loader-wrapper .loader-section {
      position: fixed;
      top: 0;
      width: 51%;
      height: 100%;
      background: #fff;
      z-index: 1000;
      -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
      -ms-transform: translateX(0);  /* IE 9 */
      transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
  }
  #loader-wrapper .loader-section.section-left {
      left: 0;
  }
  #loader-wrapper .loader-section.section-right {
      right: 0;
  }
  /* Loaded */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }
    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */
      -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }
    .loaded .spinner {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
    }
    .loaded #loader-wrapper {
        visibility: hidden;
        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */
        -webkit-transition: all 0.3s 1s ease-out;  
                transition: all 0.3s 1s ease-out;
    }
    /* JavaScript Turned Off */
    .no-js #loader-wrapper {
        display: none;
    }
    .no-js h1 {
        color: #222222;
    }
/*end LOADER*/

/*Fix for WinPhone 8 and IE10*/
  @-webkit-viewport   { width: device-width; }
  @-moz-viewport      { width: device-width; }
  @-ms-viewport       { width: device-width; }
  @-o-viewport        { width: device-width; }
  @viewport           { width: device-width; }
/*end Fix for WinPhone 8 and IE10*/

/*SHARE buttons*/
  .social-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .social-container ul.menu.horizontal li {
    float: left;
    position: relative;
      margin-right: 10px;
  }
  .social-container .social_button a {
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    -ms-border-radius: 17px;
    -o-border-radius: 17px;
    border-radius: 17px;
    height: 32px;
    line-height: 20px;
    padding: 0.5em 1.5em;
  }
  .social-container .social_button a.social_facebook {
    border: 2px solid #6d84b4;
    color: #6D84B4;
    background-color: transparent;
  }
  .social-container .social_button a.social_facebook:hover {
    color: #FFFFFF;
    background-color: #6D84B4;
  }
  .social-container .social_button a.social_twitter {
    border: 2px solid #68AAEA;
    color: #68AAEA;
    background-color: transparent;
  }
  .social-container .social_button a.social_twitter:hover {
    color: #FFFFFF;
    background-color: #68AAEA;
  }
  .social-container .social_button a.social_google {
    border: 2px solid #CD4A30;
    color: #CD4A30;
    background-color: transparent;
  }
  .social-container .social_button a.social_google:hover {
    color: #FFFFFF;
    background-color: #CD4A30;
  }
  .social-container .social_button a.social_pinterest {
    border: 2px solid #DE2A28;
    color: #DE2A28;
    background-color: transparent;
  }
  .social-container .social_button a.social_pinterest:hover {
    color: #FFFFFF;
    background-color: #DE2A28;
  }
/*end SHARE buttons*/

/*IE FIX*/
  .carrinho-icon{
    height: 50px;
  }
/*end IE FIX*/

/*Animacoes*/
  .grid figure {
    position: relative;
    overflow: hidden;
    min-width: 100%;
    max-width: 480px;
    height: auto;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
  }
  .grid figure img {
    position: relative;
    display: block;
  }
  .grid figure figcaption {
    padding: 20px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .grid figure figcaption::before,
  .grid figure figcaption::after {
    pointer-events: none;
  }
  .grid figure figcaption,
  .grid figure figcaption > .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* Anchor will cover the whole item by default */
  /* For some effects it will show as a button */
  .grid figure figcaption > .hover {
    opacity: 0;
  }
  /*---------------*/
  /***** Julia *****/
  /*---------------*/
    figure.effect-julia {
      background: rgba(52, 152, 219, 0.5);
    }

    figure.effect-julia img {
      max-width: none;
      -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
      transition: opacity 0.35s, transform 0.35s;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }

    figure.effect-julia figcaption {
      text-align: right;
    }

    figure.effect-julia h2 {
      position: relative;
      padding: 0.5em 0;
    }
    figure.effect-julia .link_bg {
      opacity: 0;
      -webkit-transition: opacity 0.35s;
      transition: opacity 0.35s;
      position: absolute;
        bottom: 20px;
        right: 20px;
        z-index: 15;
    }
    figure.effect-julia p {
      display: inline-block;
      -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
      transition: opacity 0.35s, transform 0.35s;
      -webkit-transform: translate3d(90px,0,0);
      transform: translate3d(90px,0,0);
      margin-top: 25%;
    }

    figure.effect-julia p:first-child {
      -webkit-transition-delay: 0.15s;
      transition-delay: 0.15s;
    }

    figure.effect-julia p:nth-of-type(2) {
      -webkit-transition-delay: 0.1s;
      transition-delay: 0.1s;
    }

    figure.effect-julia p:nth-of-type(3) {
      -webkit-transition-delay: 0.05s;
      transition-delay: 0.05s;
    }

    figure.effect-julia:hover p:first-child {
      -webkit-transition-delay: 0s;
      transition-delay: 0s;
    }

    figure.effect-julia:hover p:nth-of-type(2) {
      -webkit-transition-delay: 0.05s;
      transition-delay: 0.05s;
    }

    figure.effect-julia:hover p:nth-of-type(3) {
      -webkit-transition-delay: 0.1s;
      transition-delay: 0.1s;
    }

    figure.effect-julia:hover img {
      opacity: 0.4;
      -webkit-transform: scale3d(1.05,1.05,1);
      transform: scale3d(1.05,1.05,1);
    }

    figure.effect-julia:hover p {
      opacity: 1;
      -webkit-transform: translate3d(0,0,0);
      transform: translate3d(0,0,0);
    }

    figure.effect-julia:hover .link_bg {
      opacity: 1;
      -webkit-transform: translate3d(0,0,0);
      transform: translate3d(0,0,0);
    }

  /*-----------------*/
  /***** Apollo *****/
  /*-----------------*/

    figure.effect-apollo {
      background: rgba(52, 152, 219, 0.5);
    }
    figure.effect-apollo img {
      opacity: 0.95;
      -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
      transition: opacity 0.35s, transform 0.35s;
      -webkit-transform: scale3d(1,1,1);
      transform: scale3d(1,1,1);
    }
    figure.effect-apollo figcaption::before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.5);
      content: '';
      -webkit-transition: -webkit-transform 0.6s;
      transition: transform 0.6s;
      -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
      transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
    }
    figure.effect-apollo p {
      opacity: 0;
      -webkit-transition: opacity 0.35s;
      transition: opacity 0.35s;
    }
    figure.effect-apollo .link_bg {
      opacity: 0;
      -webkit-transition: opacity 0.35s;
      transition: opacity 0.35s;
      position: absolute;
        bottom: 20px;
        left: 20px;
        z-index: 15;
    }
    figure.effect-apollo:hover img {
      opacity: 0.6;
      -webkit-transform: scale3d(1.05,1.05,1.05);
      transform: scale3d(1.05,1.05,1.05);
    }
    figure.effect-apollo:hover figcaption::before {
      -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
      transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
    }
    figure.effect-apollo:hover .link_bg {
      opacity: 1;
      -webkit-transition-delay: 0.1s;
      transition-delay: 0.1s;
    }
  
  /*-----------------*/
  /***** Goliath *****/
  /*-----------------*/

    figure.effect-goliath {
      background: #00ABD2;
    }

    figure.effect-goliath img,
    figure.effect-goliath h2 {
      -webkit-transition: -webkit-transform 0.35s;
      transition: transform 0.35s;
    }

    figure.effect-goliath img {
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }

    figure.effect-goliath h2,
    figure.effect-goliath p {
      position: absolute;
      bottom: 0;
      right: 0;
      margin: 0;
      z-index: 15;
      /* padding: 30px; */
    }

    figure.effect-goliath p {
      text-transform: none;
      font-size: 90%;
      opacity: 0;
      -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
      transition: opacity 0.35s, transform 0.35s;
      -webkit-transform: translate3d(0,50px,0);
      transform: translate3d(0,50px,0);
    }

    figure.effect-goliath:hover img {
      -webkit-transform: translate3d(0,-32px,0);
      transform: translate3d(0,-32px,0);
    }

    figure.effect-goliath:hover h2 {
      -webkit-transform: translate3d(0,-32px,0);
      transform: translate3d(0,-32px,0);
    }

    figure.effect-goliath:hover p {
      opacity: 1;
      -webkit-transform: translate3d(0,0,0);
      transform: translate3d(0,0,0);
    }
/*end Animacoes*/

/*Nav-bar*/
  .navbar{
    border: none;
    border-radius: 0;
  }
  .navbar-default{
    background-color: transparent;
    border-color: transparent;
  }
/*end Nav-bar*/

/*Tabelas*/
  .table{
    margin-top: 20px;
  }
  .table-bordered{
    border: 1px solid transparent;
  }
  .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    /*vertical-align: middle !important;*/
    border: 1px solid #DDDDDD !important;
    font-size: 80% !important;
  }
  .table tbody tr:first-child th {
    background-color: #00abc4;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
  }
  .table thead tr:first-child th {
    background-color: #00abc4;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
  }
  .table tbody tr:last-child th {
    background-color: #00abc4;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
  }

  /*tr:nth-child(even) {background: #CCC}
  tr:nth-child(odd) {background: #FFF}*/

  td.highlight {
    background-color: whitesmoke !important;
  }
  .table tbody tr.even:hover, .table tbody tr.even td.highlighted {
    background-color: #F7F7F9;
  }
  .table tbody tr.odd:hover, .table tbody tr.odd td.highlighted {
    background-color: #F7F7F9;
  }
  .table tr.even:hover {
    background-color: #F7F7F9;
  }
  .table tr.even:hover td.sorting_1 {
    background-color: #DDFF75;
  }
  .table tr.even:hover td.sorting_2 {
    background-color: #E7FF9E;
  }
  .table tr.even:hover td.sorting_3 {
    background-color: #E2FF89;
  }
  .table tr.odd:hover {
    background-color: #F7F7F9;
  }
  .table tr.odd:hover td.sorting_1 {
    background-color: #D6FF5C;
  }
  .table tr.odd:hover td.sorting_2 {
    background-color: #E0FF84;
  }
  .table tr.odd:hover td.sorting_3 {
    background-color: #DBFF70;
  }
  .table-striped > tbody > tr:nth-child(odd) {
      background-color: #FFFAE5;
  }
  div.dataTables_wrapper div.dataTables_length select{
    width: 50px;
  }
  .paginate_button{
    padding: 0 2px;
  }
  .paginate_button .previous{
    padding-right: 5px;
  }
  .paginate_button .next{
    padding-left: 5px;
  }
  td.numeric, th.numeric {
      /*text-align: right;*/
  }
  /*@media only screen and (max-width: 800px) {  
    .no-more-tables table, 
    .no-more-tables thead, 
    .no-more-tables tbody, 
    .no-more-tables th, 
    .no-more-tables td, 
    .no-more-tables tr { 
      display: block; 
    }
    .no-more-tables thead tr { 
      position: absolute;
      top: -9999px;
      left: -9999px;
    }
    .no-more-tables > tr { border: 1px solid #ccc; }
    .no-more-tables > td { 
      border: none !important;
      border-bottom: 1px solid #eee !important; 
      position: relative !important;
      white-space: normal !important;
      text-align:left !important;
    }
    .no-more-tables > td:before { 
      position: absolute !important;
      top: 6px !important;
      left: 6px !important;
      width: 20% !important; 
      padding-right: 10px !important; 
      white-space: nowrap !important;
      text-align:left !important;
      font-weight: bold !important;
    }
    .no-more-tables > td:before {
      content: attr(data-title);
    }
    .no-more-tables > td.change:before {
      content: attr(data-content);
    }
  }*/
/*END TABELA LIVROS*/

/*Agenda*/
  .dia_ocupado {
    color: #fff !important;
    background-color:  #57a4c6 !important;
  }
  .td_dia_ocupado{
    background-color:  #57a4c6 !important;
  }
  .ui-datepicker .ui-datepicker-header{
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
/*end Agenda*/

/*Caminho-breadcumbs*/
  #caminho{
    background-color: #F5F5F5;
    margin-bottom: 30px;
  }
  .breadcrumb{
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: transparent;
    padding:0;
    /*padding-left: 15px;*/
  }
  .breadcrumb a{
    font-size: 12px;
  }
/*end Caminho-breadcumbs*/

/*Tabs*/
  .tab-content{
    padding-top: 25px;
  }
  .nav-tabs > li{
    padding: 0 !important;
  }
  .nav-tabs > li > a {
    color:  #444444 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    text-align: center !important;
    border: none !important;
    border-radius: 0!important;
    padding: 10px !important;
  }
  .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus{
    color: #FFF !important;
    background-color: #00ABD2 !important;
    border: none !important;
    cursor: default !important;
  }
  .nav-tabs > li > a:hover, .nav-tabs > li > a:focus{
    background-color: transparent !important;
  }
  .nav-tabs {
    border-bottom: 1px solid #00ABD2 !important;
  }
/*end Tabs*/

/*Forms*/
  .form-control:focus {
    border-color: #00ABD2;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(234, 153, 35, .6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(234, 153, 35, .6);
  }
  .form-control{
    border-radius: 0px;
    color: #919295;
    font-size: 1em;
    font-weight: 300;
    line-height: 1em;
    margin-bottom: 10px;
    background-color: #FFFFFF;
    padding: 0 15px;
    height: 66px;
    border: 1px solid #919295;
    box-shadow: none;
  }
  .form-group .login-field-icon,
  .form-group .envelope-field-icon {
    font-size: 0.818em;
    position: absolute;
    right: 15px;
    top: 28px;
    transition: all 0.25s ease 0s;
    padding-top: 2%;
  }
/*end Forms*/

/*Footer*/
  .footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 43px;
    box-shadow: inset 0px 1px 0 #e6e9ed;
  }
  #footer{
    min-height: 20px;
    margin-bottom: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background-color: #F5F5F5;
  }
 .rodape{
    color: #FFF;
    text-align: center;
    font-size: 12px;
    margin: 0;
    font-size: 11px;
    margin: 0px;
    padding: 7px;
    text-align: center;
  }
  .bottom_block_text h5{
    margin-top: 0;
    /*font-size: 18px;
    line-height: 22px;
    text-align: center;*/
  }
  .bottom_block_text{
    /*font-size: 12px;*/
    line-height: 20px;
    text-align: center;
  }
  .bottom_block_face{
    text-align: center;
  }

  .svg_bottom{
    fill:#338A00;
    margin-left: 20px;
  }
  .svg_bottom:hover{
    fill:#FFF;
  }
  .menu_bottom {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .menu_bottom h6{
    font-size: 0.75em;
  }
  .menu_bottom a:hover h6, .menu_bottom a:focus h6{
    text-decoration: underline;
  }
  .current_bottom h6{
    text-decoration: underline;
  }
/*end Footer*/

/*COOKIE CONSENT*/
  .cc-theme-edgeless.cc-window{
    font-size: 13px !important;
    text-align: center;
    -webkit-box-shadow: 0 -1px 0 0 rgba(0,0,0,.1) !important;
    -moz-box-shadow: 0 -1px 0 0 rgba(0,0,0,.1) !important;
    box-shadow: 0 -1px 0 0 rgba(0,0,0,.1) !important;
    background-color: #1e73be !important;
    color: #FFF !important;
  }
  .cc-banner .cc-btn:last-child {
    min-width: 60px !important;
    color: #1e73be !important;
    background-color: #fffFFF !important;
    text-decoration: none;
  }
  .cc-link,
  .cc-link:active,
  .cc-link:visited{
    color: #FFFFFF !important;
    border-bottom: transparent;
  }
  .cc-color-override--262543416 .cc-btn:hover, .cc-color-override--262543416 .cc-btn:focus{
    color: #fffFFF !important;
    background-color: #CACACA !important;
  }
/*COOKIE CONSENT end*/

/*Botoes geral*/
  .btn{    
    border-bottom: 2px solid transparent;
  }
  .bootstrap-select .btn:focus{
    outline: none !important;
  }
  .btn:active{
    box-shadow:none;
  }
  .btn:focus{
    outline: none !important;
  }
  .btn-primary, .btn-success, .btn-info {
    background-color: #00ABD2 !important;
    border-color: #00ABD2  !important;
    border-radius: 0px;
    color: #FFF !important;
  }
  .btn-primary:hover, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary,
  .btn-info:hover,  .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info,
  .btn-success:hover,  .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success,
  .btn-success:focus, .btn-success.focus,
  .btn-primary:focus, .btn-info:focus, .btn-success.focus{
    background-color: #00ABD2  !important;
    border-color: #00ABD2  !important;
    outline: none !important;
    color: #FFF !important;
    opacity: 0.8;
  }
  .btn-especial{
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 6px 10px !important;
    border-radius: 0px !important;
  }
  .btn-continua{
    border-color: #CCC;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 15px;
  }
  .btn-nobutton{
    background-color: #FFF;
    border: 1px solid #E5E4E2;
    font-size: 30px !important;
    letter-spacing: 1px;
    color: #404040;
    text-transform: uppercase;
    padding: 10px 15px;
  }
  .btn-download{
    color: #4f4f4f !important;
    background-color: #f4f5f7 !important;
    font-size: 0.727em;
    border-bottom: 2px solid transparent;
    font-weight: 500;
  }
  .btn-download.disabled, .btn-download[disabled]{
    opacity: 1 !important;
  }
  .btn-download:hover, .btn-download:focus{
    color: #FFFFFF !important;
    background-color: rgba(0, 154, 216, 0.65) !important;
    border-bottom: 2px solid transparent;
  }
  .btn-continuar{
    padding: 18px 24px;
    display: inline-block;
    cursor: pointer;
    border: none;
    border-radius: 0;
    background: #ff8d00;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
  .btn-continuar.disabled, .btn-continuar[disabled]{
    opacity: 1 !important;
  }
  .btn-continuar:hover, .btn-continuar:focus{
    color: #FFF !important;
    background-color: #00ABD2 !important;
  }
  .btn-detalhes{
    background-color: #FFFFFF !important;
    border: 1px solid #444444 !important;
    font-size: 13px;
   font-family:"Montserrat", sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    color: #444444;
    text-transform: uppercase;
    padding: 10px 15px;
  }
  .btn-detalhes.disabled, .btn-detalhes[disabled]{
    opacity: 1 !important;
  }
  .btn-detalhes:hover, .btn-detalhes:focus{
    color: #FFF !important;
    background-color: #444444 !important;
  }
  .marginbotaoloja{
    margin-right: 620px;
  }
  .sobeedesce-norefresh{
    width: 113px;
    /* margin: 0 auto; */
    border: 1px solid #E5E4E2;
  }
  .checkbox{
    border-color: #919295;
  }
  .checkbox-primary input[type="checkbox"]:checked + label::before, .checkbox-primary input[type="radio"]:checked + label::before {
    background-color: #919295;
    border-color: #919295;
  }
  .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
    width: 16px;
    height: 16px;
    cursor: pointer;
  }
  .checkbox-primary input[type="checkbox"]:checked + label::after, .checkbox-primary input[type="radio"]:checked + label::after {
    color: #FFFFFF;
  }
  .checkbox label::before {
    border: 1px solid #919295;
    border-radius: 0;
  }
  .radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #919295;
    border-radius: 3px;
    background-color: #fff;
  }
  .btn-sobedesce{
    background-color: transparent;
  }
  .btn-refresh{
    background: transparent;
  }
/*end botoes-geral*/

/*Badges*/
  .badge{
    font-weight: 600;
    border-radius: 0;
    margin-bottom: 3px;
  }
  .sempromo{
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
  }
  .compromo{
    margin-right: 5px;
    font-size: 16px;
    font-weight: 600;
  }
/*end Badges*/

/*Font style*/
  td, .legenda,.legenda1 ,.legenda2 ,.fcaminho,.caminho{
    list-style: none;
  } 
  input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    background-color: #ccc !important;
  }
  input, textarea,select, option{
    color: #404040;
  }
  input{
    outline:none;
  }
  select:focus, input:focus, label:focus{
    outline:none!important;
    box-shadow: none!important;
  }
  ::-webkit-input-placeholder {
     color: #404040;
  }
  :-moz-placeholder { /* Firefox 18- */
    color: #404040;
  }
  ::-moz-placeholder {  /* Firefox 19+ */
     color: #404040;
  }
  :-ms-input-placeholder {  
     color: #404040; 
  }
  a{
    color: #111922;
    -webkit-transition: color ease-out 0.2s;
    -ms-transition: color ease-out 0.2s;
    transition: color ease-out 0.2s;
    border-bottom: 2px solid #ff8d00;
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;
    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
  #asseccentro p a {
    border-bottom: 2px solid #ff8d00;
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;
    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
  #asseccentro a:hover, #asseccentro a:focus{
    cursor: pointer;
    text-decoration: none;
    color: #ff8d00;
    outline: none;
    border-bottom: 2px solid transparent;
    -webkit-transition: color ease-out 0.2s;
    -ms-transition: color ease-out 0.2s;
    transition: color ease-out 0.2s;
  }
  #menu_superior_social p a {
    border-bottom: 0;
  }
  .osinputs input {
    line-height: normal;
    padding: 2px;
  }
  p {
      margin: 20px 0;
  }
  h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    line-height: 1.42857143;
  }
  .titulo-primario{
    color: #c3c3c3;
    font-size: 1.85em;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0em 0em 0.5em 0em;
    letter-spacing: 1.5px;
    line-height: 1em;
  }
  .titulo-secundario{
    color: #00ABD2;
    font-size: 1.85em;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0em 0em 0.5em 0em;
    letter-spacing: 1.5px;
    line-height: 1em;
  }
  .titulo-terciario{
    color: #ff8d00;
    font-size: 1.85em;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0em 0em 0.5em 0em;
    letter-spacing: 1.5px;
    line-height: 1em;
  } 
  .subtitulo-primario{
    color: #c3c3c3;
    font-size: 1.25em;
    font-weight: 900;
    line-height: 1em;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 1em 0em 0em 0em;
  }
  .subtitulo-secundario{
    color: #00ABD2;
    font-size: 1.25em;
    font-weight: 900;
    line-height: 1em;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 1em 0em 0em 0em;
  }
  .subtitulo-terciario{
    color: #ff8d00;
    font-size: 1.25em;
    font-weight: 900;
    line-height: 1em;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 1em 0em 0em 0em;
  }
  .subtitulo-gold{
    color: #D5AD6D;
    background: -webkit-linear-gradient(transparent, transparent), -webkit-linear-gradient(top, rgba(213,173,109,1) 0%, rgba(213,173,109,1) 26%, rgba(226,186,120,1) 35%, rgba(163,126,67,1) 45%, rgba(145,112,59,1) 61%, rgba(213,173,109,1) 100%);
    background: -o-linear-gradient(transparent, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.25em;
    font-weight: 900;
    line-height: 1em;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0em 0em 0.5em 0em;
    border-bottom: 0px;
  }
  .subtitulo-silver{
    background: -webkit-linear-gradient(#eee, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.25em;
    font-weight: 900;
    line-height: 1em;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0em 0em 0.5em 0em;
    border-bottom: 0px;
  }
  .cartaz-titulo{
    font-size: 2.5em;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    line-height: 1em;
    border: 0;
    color: #FFFFFF;
    text-shadow: 1px 2px 2px rgba(51, 51, 51, 0.5);
    padding: 10px;
  }
  .textoescuro{
    color: #111922;
    font-weight: 400;
  }
  .textoazul{
    color: #00ABD2;
    font-weight: 400;
  }
  .textolaranja{
    color: #ff8d00;
    font-weight: 400;
  }
  .data, .timestamp{
    font-size: 0.545em;
    text-transform: lowercase;
    color: #111922;
  }
  .spacer{
    letter-spacing: -.5px;
    line-height: 1.2em;
  }
  .smalltext{
    font-size: 13px;
    word-wrap: break-word;
  }
  .legenda, .legenda1 , .legenda2   {
    font-size: 0.618em;
  }
  .legenda2 { 
    font-size: 60%;
  }
  .sobconsulta{
    font-size: 12px;
  }
  .bold{
    font-weight: 700;
  }
  .semibold{
    font-weight: 600;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sup {
    top: -0.5em;
  }
  sub {
    bottom: -0.25em;
  }
/*end Font style*/

/*Padding & margin*/
  .no-gutter{padding-right:0 !important;padding-left:0 !important;}

  .margintop100{margin-top: 100px !important;}
  .margintop50{margin-top: 50px !important;}
  .margintop25{margin-top: 25px !important;}
  .margintop10{margin-top: 10px !important;;}
  .nomargintop{margin-top: 0 !important;}
  .marginbottom100{margin-bottom: 100px !important;}
  .marginbottom50{margin-bottom: 50px !important;}
  .marginbottom25{margin-bottom: 25px !important;}
  .marginbottom10{margin-bottom: 10px !important;}
  .nomarginbottom{margin-bottom: 0 !important;}
  .paddingtop15{padding-top: 15px !important;}
  .padding-bottom20{padding-bottom: 20px !important;}
  .nomargin{margin: 0 !important;}
  .nopadding{padding: 0 !important;}
  .nopaddingleft{padding-left: 0;}
  .gap-left{margin: 0px 0px 25px 25px;}
  .gap-right{margin: 0px 25px 25px 0px;}
/*end Padding & margin*/

/*Border radius*/
  .bordertopradius{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .borderadius{
    -moz-border-radius:5px;
    border-radius:5px;
  }
/*end Border radius*/

/*Colors*/
  .color-primary{color:#00ABD2 !important;} /*laranja escuro*/
  .color-secondary{color:#404040 !important;} /*cinza escuro*/
  .color-extra{color:#EA875A;} /*salmao*/
  .bolas{color:#DD6935 !important;}
  .gray{color:#7F8C8C !important;} /*cinza claro*/
  .white{color:#FFF !important;}
  .black{color:#000 !important;}
  .blue{color:#0098D1 !important;}
/*end Colors*/

/*Fancybox*/
  .fancybox-overlay {
  }
  .fancybox-overlay.fancybox-overlay-fixed {
    z-index: 1055;
  }
  .fancybox-type-iframe .fancybox-nav{
    height: 90% !important;
  }
  .fancybox-title{
    font-family:"Montserrat", sans-serif;
    font-size: 0.8em !important;
    font-weight: 700;
    line-height: 1em !important;
    text-align: center;
    font-style: normal;
    font-stretch: normal;
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .fancybox-title-inside-wrap {
    padding: 1em;
  }
  .fancybox-prev span {
    left: 0px;
  }
  .fancybox-next span{
    right: 0px;
  }
  .fancybox-close{
    border-bottom: transparent;
  }
  .fancybox-skin {
    padding: 0em;
    width: auto !important;
    height: auto !important;
  }
  .fancybox-opened .fancybox-skin {
    -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);
  }
  .zoomer:hover .overlay-zoom .zoom-icon{
    opacity:0.5;   
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    filter: alpha(opacity = 50);
  }
  .zoomer:hover .overlay-zoom .zoom-lupa{
    opacity: 1;
  }
  .zoomer:hover .overlay-zoom .zoom-video{
    opacity: 1;
  }
  .overlay-zoom {
    z-index: 90;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    overflow: hidden;
    position: relative;     
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .overlay-zoom .zoom-icon {
    top: 0;
    left: 0;
    opacity: 0; 
    z-index: 100;
    width: inherit;
    height: inherit;
    position: absolute;
    /*border-radius: 5px;*/
    background-color: rgba(30, 115, 190, 0.6);
    filter: alpha(opacity = 0);
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    /*-webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);*/
  }
  .overlay-zoom .zoom-lupa{
    opacity: 0;
    cursor: zoom-in;
    -webkit-transition: opacity 0.2s 0s ease-in-out;
    -moz-transition: opacity 0.2s 0s ease-in-out;
    -o-transition: opacity 0.2s 0s ease-in-out;
    -ms-transition: opacity 0.2s 0s ease-in-out;
    transition: opacity 0.2s 0s ease-in-out;
    -moz-transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    transition-delay: 0.2s;
    width: inherit;
    height: inherit;
    z-index: 9999;
    top: 0;
    left: 0;
    position: absolute;
    background-position: 50%;
    background-repeat: no-repeat;
    background-image:url(./imagens/zoom.svg);
  }
  .overlay-zoom .zoom-video{
    opacity: 0.5;
    -webkit-transition: opacity 0.2s 0s ease-in-out;
    -moz-transition: opacity 0.2s 0s ease-in-out;
    -o-transition: opacity 0.2s 0s ease-in-out;
    -ms-transition: opacity 0.2s 0s ease-in-out;
    transition: opacity 0.2s 0s ease-in-out;
    -moz-transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    transition-delay: 0.2s;
    width: inherit;
    height: inherit;
    z-index: 9999;
    top: 0;
    left: 0;
    position: absolute;
    background-position: 50%;
    background-repeat: no-repeat;
    background-image:url(./imagens/zoom-video.svg);
  }
/*end fancybox*/

/*Fototeca efeito*/
  .zoomin{
      text-decoration: none;
      display: block;
      -webkit-transform: scale(1,1);
      -webkit-transition-timing-function: ease-out;
      -webkit-transition-duration: 250ms;
      -moz-transform: scale(1,1);
      -moz-transition-timing-function: ease-out;
      -moz-transition-duration: 250ms;
  }
  .zoomin:hover{
      -webkit-transform: scale(1.05,1.07);
      -webkit-transition-timing-function: ease-out;
      -webkit-transition-duration: 250ms;
      -moz-transform: scale(1.05,1.07);
      -moz-transition-timing-function: ease-out;
      -moz-transition-duration: 250ms;
      position: relative;
      z-index: 99;
  }
/*end Fototeca*/

/*Fix images*/
  .img-responsive{
    width: 100%;
  }
/*end Fix images*/

/*Fix carousel blur*/
  .owl-carousel .owl-item{
    -webkit-perspective: 1000;
  }
/*end Fix carousel blur*/

/*Bootstrap fix*/
  .bootstrap-select:not([class*="span"]):not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn){
    width:auto;
  }
/*end Bootstrap fix*/

/*Scroll-top bottom*/
  .scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    color: #c3c3c3;
    width: 50px;
    height: 48px;
    line-height: 48px;
    right: 0px;
    bottom: 50px;
    padding-top: 2px;
    border-radius: 10px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .scroll-top-wrapper:hover {
    color: #575757;
  }
  .scroll-top-wrapper.show {
    visibility:visible;
    cursor:pointer;
    opacity: 1.0;
  }
  .scroll-top-wrapper i.fa {
    line-height: inherit;
  }

/*end scroll-top*/

/*Modal*/
  .close{
    float: right;
    font-size: 2em;
    font-weight: 400;
    line-height: 1;
    color: #242424;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    opacity: 1;
    background: #fff;
    border-radius: 50%;
    transition: color .4s cubic-bezier(.165,.84,.44,1);
  }
  .modal-header .close {
    margin-top: 0;
  }
  button.close {
    padding: 0;
    cursor: pointer;
    border: 0;
    position: absolute;
    color: #575757;
    background: #f6f6f6;
    top: 0;
    right: 0;
    -webkit-transform: translate(75%,-50%);
    -ms-transform: translate(75%,-50%);
    transform: translate(50%,-50%);
    transition: color .4s cubic-bezier(.165,.84,.44,1);
  }
  button.close:hover {
    color: #f6f6f6;
    background: #575757;
  }
  button.close::before {
    color: #aaa;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    transition: color .4s cubic-bezier(.165,.84,.44,1);
}
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=100);
    opacity: 1;
    outline: none;
    transition: color .4s cubic-bezier(.165,.84,.44,1);
  }
  .modal-title{
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
  }
  .logo-modal{
    width: 100px;
    margin-right: 20px;
    display: inline;
  }
  .login_modal_footer{
    margin-top:5px;
  }
  .form-group{
    position: relative;
  }
  .modal-dialog .form-group .login-field-icon,
  .modal-dialog .form-group .envelope-field-icon {
    font-size: 20px;
    position: absolute;
    right: 15px;
    top: 1px;
    transition: all 0.25s ease 0s;
    padding-top: 2%;
  }
  .login-modal{
    width:100%;
    padding-bottom: 0px;
  }
  .modal-register-btn{
    margin: 4% 33% 2% 33% ;
    width:100%;
  }
  .login-modal input{
  }
  .modal-body {
    position: relative;
    padding: 15px;
    font-size: 75%;
  }
  .modal-body-left{
    float:left;
    width:50%;
    padding-right:4%;
    border-right:4px solid #00ABD2;
  }
  .modal-body-right{
    float:right;
    width:47%;
  }
  .login-link{
    padding:0;
  }
  .modal-icons{
    margin-left: -10px;
    margin-right: 20px;
  }
  .modal-login-btn{
    width:100%;
    height:40px;
    margin-bottom:10px;
    color: #FFF;
  }
  .modal-login-btn:hover,.modal-login-btn:focus, .modal-login-btn:active{
  }
  .modal {
    text-align: center;
  }
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }
  .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
  }
  .modal-dialog-small{
    width: 430px;
  }
  .login_modal_header, .modal-header {
  }
  .modal-header {
    padding: 0px;
    border-bottom: 1px solid transparent;
  }
  .modal-content{
    padding: 20px;
    border-radius: 20px;
    border: 0;
  }
  .modal-footer {
    padding: 15px 15px 0px 15px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
  }
  .login_modal_footer{
    background-color: #0D578A;
    color: #FFF;
  }
  .modal-backdrop {
    background-color: #FFF;
  }
  .modal-backdrop.in {
    filter: alpha(opacity=75);
    opacity: .75;
  }
  .help-block.with-errors {
    font-size: 0.618em;
  }
  #form_registo .control-label{
    display: none;
  }
/*end Modal*/

/*Random*/
  .svg-defs {
    position: absolute;
    width: 0;
    height: 0;
  }
  .noresize {
    resize: none; 
  }
/*end random*/

/*TABELA LIVROS*/
  td.numeric, th.numeric {
      /*text-align: right;*/
  }
  @media only screen and (max-width: 800px) {  
      /* Force table to not be like tables anymore */
    .no-more-tables table, 
    .no-more-tables thead, 
    .no-more-tables tbody, 
    .no-more-tables th, 
    .no-more-tables td, 
    .no-more-tables tr { 
      display: block; 
    }
    
    /* Hide table headers (but not display: none;, for accessibility) */
    .no-more-tables thead tr { 
      position: absolute;
      top: -9999px;
      left: -9999px;
    }
   
    .no-more-tables tr { border: 1px solid #ccc; }
   
    .no-more-tables td { 
      /* Behave  like a "row" */
      border: none !important;
      border-bottom: 1px solid #eee !important; 
      position: relative !important;
      padding-left: 21% !important; 
      white-space: normal !important;
      text-align:left !important;
    }
   
    .no-more-tables td:before { 
      /* Now like a table header */
      position: absolute !important;
      /* Top/left values mimic padding */
      top: 6px !important;
      left: 6px !important;
      width: 20% !important; 
      padding-right: 10px !important; 
      white-space: nowrap !important;
      text-align:left !important;
      font-weight: bold !important;
    }
    /*
    Label the data
    */
    .no-more-tables td:before {
      content: attr(data-title);
    }
    .no-more-tables  td.change:before {
      content: attr(data-content);
    }
    #livros{
      border: 0px;
      padding: 0;
    }
    .checkbox {
      text-align: left;
    }
  }
/*END TABELA LIVROS*/

/*MENU LATERAL PRODUTOS*/
    .navbar-brand_produto{
      height: 50px;
      padding: 0;
      float: left;
      height: 50px;
      padding: 15px 15px;
      font-size: 18px;
      line-height: 20px;
    }
    #leftMenu a{
      color: #404040;
    }
    #leftMenu a:hover, #leftMenu a:focus {
      color: #00ABD2;
    }
    .activo{
      color: #00ABD2;
    }
    .navbar-menu-prod{
      width: 100%;
    }
    .navbar-menu-prod li{
      width: 100%;
    }
    .dropdown-menu a{
      width: 100%;
    }
    .navbar_product a{
      font-size: 16px;
      line-height: 25px;
    }
    .navbar_product .menu-lateral-familia{
      font-size: 14px;
      font-family: 'Montserrat', sans-serif;;
      font-weight: normal;
      line-height: 16px;
      text-transform: lowercase;
    }
    .fa-tag{
      padding-right: 10px;
    }
    .accordion-group{
      margin-bottom: 5px;
    }
    .accordion-inner ul{
      list-style: none;
      padding-left: 20px;
    }
/*END MENU LATERAL PRODUTOS*/

/*BANNER IMG SINGULAR*/
  .img-singular .vertical-cell {
    border: 0px solid #fff;
    max-width: 100%;
    margin: 0 auto;
  }
  .vertical-bg {
    background-color: transparent;
    text-align: center;
  }
  .img-singular {
    position: relative;
    height: 250px;
    margin-bottom: 2.5em;
    background-repeat: no-repeat;
    background-position: 50% 85%;
    background-size: cover;
    background-position: center center;
  }
  .img-singular:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .img-singular:before {
    background-color: #3f8dbf;
    opacity: .84;
    display: inline-block;
  }
  .img-singular .inner {
  }

  @media (max-width: 576px) {
    .img-singular{
      height: 150px;
      margin-bottom: 1em;
    }
  }
/*end BANNER IMG SINGULAR*/

/*SHORTCODES*/
  .marginbottom30{
    margin-bottom: 30px !important;
  }
/*end SHORTCODES*/
/*GAMAS*/
  .gamas{
    height: 60px;
    float: right;
    position: absolute;
    top: -6px;
    right: 0;
  }
  .gamas_hover img {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: top .2s ease-in-out,left .2s ease-in-out,opacity .2s ease-in-out,-webkit-transform .2s ease-in-out;
    -moz-transition: top .2s ease-in-out,left .2s ease-in-out,opacity .2s ease-in-out,-webkit-transform .2s ease-in-out;
    -o-transition: top .2s ease-in-out,left .2s ease-in-out,opacity .2s ease-in-out,-webkit-transform .2s ease-in-out;
    transition: top .2s ease-in-out,left .2s ease-in-out,opacity .2s ease-in-out,-webkit-transform .2s ease-in-out;
    margin-bottom: 10px;
    box-shadow: 0 0 10px #cacaca;
  }
  .gamas_hover:hover img{
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
  a.gamas_hover{
    /*margin: 0 5px;
    padding: 5px 15px;
    border-bottom: 2px solid transparent;*/
  }
  a.gamas_hover:hover{
    /*border: 1px solid #919295 !important;*/
  }
  .box-label {
      color: #575757;
      font-size: 0.545em;
      font-weight: 600;
      text-transform: uppercase;
      text-align: center;
  }
  .box-label-xs {
    color: #575757;
    font-size: 0.85em;
    line-height: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    padding-top: 20px;
  }
  .box-border {
      border-radius: 0px;
      color: #919295;
      font-weight: 300;
      line-height: 1em;
      margin-bottom: 10px;
      padding: 0 15px;
      border: 1px solid #919295;
      box-shadow: none;
  }
  .photo-label-xs {
    line-height: 0.85em;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    box-shadow: inset 0 -1px 0 #eee;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
/*end GAMAS*/
/*PDF*/
  .lista_pdf{
    font-size: 0.818em;
    color: #111922;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 10px 10px 20px;
    margin: 20px 0 0 20px;
    box-shadow: inset 0px 1px 0 #e6e9ed, inset 0px -1px 0 #e6e9ed, inset 10px 0px 0 #009ad8, inset -1px 0px 0 #e6e9ed;
    display: inline-block;
  }
/*end PDF*/
/*Floating Share Buttons Container*/
  .socialfloat {
    opacity: 1;
    display: block;
    position: fixed;
    right: 0;
    top: 25%;
    z-index: 998 !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .socialfloat .fbtn {
    width: 860px;
    height: 70px;
    display: block;
    color: transparent;
    text-align: center;
    float: right;
    margin-bottom: 5px;
    background-color: #fbfbfb;
    box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
    border-bottom: 0px;
    padding: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  .socialfloat .fbtn i {
    font-size: 20px;
    line-height: 42px;
    margin-right: 0em;
  }
  .socialfloat .fbtn img {
    height: 60px;
  }
  .socialfloat .fbtn:hover {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .bt_01, .bt_02, .bt_03, .bt_04 {
    width: 70px !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .bt_01:hover {
   width: 261px !important;
  }
  .bt_02:hover {
   width: 299px !important;
  }
  .bt_03:hover {
    width: 281px !important;
  }
  .bt_04:hover {
    width: 260px !important;
  }
  .socialfooter {
    display: none;
  }

  .divSocial {
    margin-top: 55px; 
    margin-bottom: 30px;
  }
  /* Media 800 px */
    @media screen and (max-width: 800px) {
      .socialfloat{
        display: none !important;
      }
      .socialfooter {
        display: inline-flex;
        position: fixed;
        right: unset;
        top: unset;
        bottom: 0;
        z-index: 999;
        width: 100%;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        background-color: #f6f6f6;
      }
      .socialfooter .fbtn {
        display: block;
        text-align: center;
        padding-top: 6px;
      }
      .socialfloat {
        display: inline-flex;
        position: fixed;
        right: unset;
        top: unset;
        bottom: 0;
        z-index: 999;
        width: 100%;
      }
      .socialfloat {
        width: 40px;
        height: 50px;
        display: block;
        float: right;
        color: #2e87cc;
        text-align: center;
        margin-bottom: 0px;
        background-color: #f5f5f5;
        border-radius: unset;
        box-shadow: unset;
      }
      .socialfloat .fbtn i {
        font-size: 20px;
        line-height: 42px;
        margin-right: 0em;
      }
      .socialfloat .fbtn img {
        height: 40px;
      }
      .socialfloat .fbtn:hover {
        background-color: #f5f5f5;
        color:#fff;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
      }
      a.fbtn {
       width: 33% !important;
      } 
      a.fbtn:hover {
       width: 33% !important;
      }
      a.bt_01, a.bt_01:hover {
        width: 33% !important;
        padding-left: 15px;
        border-bottom: 0;
      }
      a.bt_02, a.bt_02:hover {
        width: 33% !important;
        padding: 0 7.5px;
        border-bottom: 0;
      }
      a.bt_03, a.bt_03:hover {
        width: 33% !important;
        padding-right: 15px;
        border-bottom: 0;
      }
      .gamas_hover img {
        margin-bottom: 0px;
      }
      .socialfooter._fixed-bottom {
        margin-bottom: 40px;
      }
      .scroll-top-wrapper._fixed-bottom {
        margin-bottom: 40px;
      }
      .divSocial {
        margin-top: 40px; 
        margin-bottom: 80px;
      }
    }
      @media screen and (max-width: 548px){
        .divSocial {
          margin-top: 10px; 
          margin-bottom: 60px;
        }
      }
  /* FIM 800 px */

  .titulo-btn{
    color: #575757;
    font-size: 0.75em;
    font-weight: 900;
    text-align: left;
    padding: 0 0 0 10px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .subtitulo-btn{
    color: #575757;
    font-size: 0.55em;
    font-weight: 600;
    text-align: left;
    padding: 0 0 0 10px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .bt_01 .titulo-btn {
    width: 196px;
  }
  .bt_02 .titulo-btn {
    width: 234px;
  }
    .bt_03 .titulo-btn {
  width: 216px;
  }
    .bt_04 .titulo-btn {
  width: 191px;
  }
    .bt_textbox{
  display: block;
  padding: 10px 0;
  margin-right: 10px;
  background-color: #f6f6f6;
  box-shadow: inset 1px 1px 1px #e4e8ec, inset 1px -1px 1px #e4e8ec;
  }
/*end Floating Share Buttons Container*/
/*WELCOME PAGE*/
  .welcome_textarea_mote{
    padding: 0 40px 40px;
  } 
  .welcome_subtitle_mote{
    color: #c3c3c3;
    font-size: 2.364em;  
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    line-height: 1em;
  }
  .welcome_text_mote{
    color: #111922;
    font-size: 1.109em;
    font-weight: 300;
    line-height: 1.5em;
  }
  .welcome_text_mote a{
    border-bottom: 2px solid #ff8d00;
  }
  .welcome_icon_mote{
    color: #111922;
    font-size: 0.75em;
    font-weight: 400;
    line-height: 1.2em;
      text-transform: uppercase;
  }
  .welcome_icon_mote a{
    border-bottom: 2px solid #ff8d00 !important;
  }
  .welcome_text_mote a:hover{
    border-bottom-color: transparent;
  }
  .welcome_textarea{
    padding: 40px;
  } 
  .welcome_subtitle{
    color: #c3c3c3;
    font-size: 2.364em;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    line-height: 1em;
  }
  .welcome_text p {
    color: #919295;
    font-size: 1.18em;
    font-weight: 300;
    line-height: 1.35em;
    margin-bottom: 10px;
  }
  .welcome_text a{
    border-bottom: 2px solid #ff8d00;
  }
  .welcome_text a:hover{
    border-bottom-color: transparent;
  }
  .txt-btn {
    font-size: 0.727em;
    font-weight: 500;
    color: #111922;
    -webkit-transition: color ease-out 0.4s;
    -ms-transition: color ease-out 0.4s;
    transition: color ease-out 0.4s;
    border-bottom: 2px solid #ff8d00;
  }
  .txt-btn:hover {
    color: #ff8d00 !important;
  }
  .txt-btn > .fas.fa-arrow-right {
    margin-left: 5px;
    font-size: 75%;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
  }
  .txt-btn:hover > .fas.fa-arrow-right {
    margin-left: 10px;
  }
  .margintop50{
    margin-top: 50px;
  }
  ._banner_ {
    position: relative;
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: center center;
    margin-top: 50px;
  }
  ._banner_:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  ._banner_:before {
    background-color: #3f8dbf;
    opacity: .84;
    display: inline-block;
  }
  ._banner_ .inner {
    padding-top: 120px;
    padding-bottom: 120px;
    padding: 40px;
  }
  ._banner_ .inner h1 {
    color: #ffffff;
    font-size: 2.364em;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    line-height: 1em;
  }
  ._banner_ .inner p {
    color: #ffffff;
    font-size: 1.182em;
    font-weight: 300;
    line-height: 1.45em;
  }
  h5.address_subtitle{
    text-transform: uppercase;
    text-align: center;
    font-size: 1em;
    line-height: 1.5em;
  }
  p.address_text {
    font-size: 0.727em;
    font-weight: 400;
    vertical-align: top;
    line-height: 2em;
  }
  .address_text a{
    border-bottom: 2px solid #ff8d00;
  }
  .address_text a:hover{
    border-bottom-color: transparent;
  }
  @media screen and (max-width: 800px){
    .welcome_textarea_mote {
      padding: 0 40px ;
    }
    .welcome_subtitle{
      font-size: 1.75em;
    }
    .welcome_text p {
      font-size: 1em;
      line-height: 1.5em;
    }
    .welcome_subtitle_mote{
      font-size: 1.75em;
      margin-top: 0;
    }
    .welcome_text_mote{
      font-size: 1em;
    }
    h5.address_subtitle{
      font-size: 1em;
      line-height: 1.5em;
    }
    p.address_text {
      font-size: 0.85em;
    }
  }
  @media screen and (max-width: 480px){
    .welcome_textarea_mote {
      padding: 0 40px ;
    }
    .welcome_subtitle{
      font-size: 1.75em;
    }
    .welcome_text p {
      font-size: 1em;
      line-height: 1.5em;
    }
    .welcome_subtitle_mote{
      font-size: 1.75em;
      margin-top: 0;
    }
    .welcome_text_mote{
      font-size: 1em;
    }
    h5.address_subtitle{
      font-size: 1em;
      line-height: 1.5em;
    }
    p.address_text {
      font-size: 0.85em;
    }
  }
/*END WELCOME PAGE*/
/*LEGENDAS IMGS*/
  .name{
    font-size: 0.636em;
    text-align: center;
    font-weight: 600;
    border: 1px solid #E1E1E1;
    padding: 10px;
    display: block;
    clear: both;
    text-transform: uppercase;
    outline: none !important;
    color: #575757;
    }
  .name:hover{
    color: #01A3D4 !important;
    background-color: #eeeeee;
    border: 1px solid #eeeeee!important;
    }
/*LEGENDAS IMGS*/
/*CARTAZ - NOTICIAS*/
  #cartazindice{
    clear: both;
  }
  .title-text {
    margin-bottom: 30px;
    text-align: left;
    margin-left: 15px;
  }
  .current h2{
    color: #3D92B9 !important;
  }
  .link-noticia:hover h2{
    color: #3D92B9 !important;
  }
  #singlenews .titulo-primario {color: #575757; margin-top: 5px; letter-spacing: 0;}
  #singlenews {margin-top: 2.5em;}
  #singlenews hr{border-top: 1px solid #D9D9D9;}
  #noticiassingular .pager li > a,
  #noticiassingular .pager li > span{
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(30, 115, 190, 0.6);
    border: 0;
    border-radius: 0;
    color: #FFF;
  }
  .pager li > a:hover, .pager li > a:focus {
    text-decoration: none;
    border: 1px solid #1e73be;
    color: #ffffff !important;
    background-color: rgba(30, 115, 190, 1) !important;
  }
  .fb-share-button span{
    vertical-align: inherit !important;
  }
  .last_title{
    font-size: 0.65em;
    font-weight: 700;
    color: #575757;
    line-height: 1.2em;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
    clear: both;
    outline: none !important;
  }
  .current .last_title,
  .link-noticia:hover .last_title{
    color: #111922;
  }
  .block{
    border: 1px solid #E1E1E1;
    display: block;
    margin-top: 0;
    padding: 10px;
    clear: both;
    outline: none !important;
  }
  .block_title{
    font-size: 1em;
    font-weight: 600;
    color: #575757;
    line-height: 1.2em;
    text-transform: uppercase;
  }
  .block_text{
    font-size: 0.818em;
    font-weight: 400;
    color: #575757;
    line-height: 1.2em;
    box-shadow: inset 0px 1px 0 #e6e9ed;
    padding-top: 10px;
  }
  ul.list-noticias, ol.list-noticias {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    list-style: none !important;
    padding-left: 0 !important;    
  }

  .voltar {
    line-height: 0.54em;
    font-weight: 600;
    font-size: 0.54em;
    text-transform: uppercase;
  }

  .welcome_title {
    color: #575757;
    /* background-color: #009ad8; */
    font-size: 0.85em;
    font-weight: 900;
    text-transform: uppercase;
    /* text-align: center; */
    line-height: 1.1em !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
/*end CARTAZ - NOTICIAS*/

    .navbar-collapse {
      padding-top: 25px !important;
      padding-bottom: 25px !important;
    }

    .sandwich_lang {
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
      padding: 8px;
      text-align: right;
      font-size: 0.8em;
      text-align: right;
      font-weight: 500;
      margin: 0 21em 0.21em 0;
      -webkit-transition: all 0.2s ease-in-out;
      -moz-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out;
      margin: 0 15px 0 0;
    }
    .sandwich_lang a{
      padding: 0 2px;
    }

/*MEDIA QUERIES MIN*/
  @media (min-width: 1px){
    body{
      font-size: 16px;
    }
    .logo_assecsim{
      height: 10px;
    }
  }
  @media (min-width: 576px) {
    body{
      font-size: 16px;
    }
  }
  @media (min-width: 768px) {
    body{
      font-size: 18px;
    }
  }
  @media (min-width: 992px) {
    body{
      font-size: 20px;
    }
    #asseccentro {
      min-height: 640px !important;
    }
  }
  @media (min-width: 1200px) {
    body{
      font-size: 22px;
    }
  }
/*end MEDIA QUERIES MIN*/
/*MEDIA QUERIES MAX*/
  @media (max-width: 1200px) {}
  @media (max-width: 992px) {}
  @media (max-width: 768px) {}
  @media (max-width: 576px) {}
  @media (max-width: 1px) {}
/*end MEDIA QUERIES MAX*/
/*SHADOWS*/
  .shadow10pc {
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  }
/*end SHADOWS*/
