/*BARRA DE NAVEGACAO NO HEADER*/
.tn-box-navBar {
  position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--tn-tx-red);
    z-index: 1;
  }
  .tn-box-navBar .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
   .tn-navBar {
    width: 100%;
    margin-right: 1.5rem;
  }
  
  .tn-navBar > ul {
    display: flex;
    justify-content: start;
    align-items: center;
    list-style: none;
    height: 35px;
  }
  .tn-navBar > ul > li{
    padding: 0 15px;
  }
  
   .tn-navBar > ul > li > a {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "lato", sans-serif;
    white-space: nowrap;
  }
   .tn-boxClimaCotacao {
    display: flex;
    justify-content: end;
    width: 100%;
    max-width: 22rem;
  }
  .tn-boxClimaCotacao a{
    text-decoration: none;
    color: #fff;
  }
  .tn-boxClimaCotacao a:visited{
    color: #fff;
  }
  .tn-boxClimaCotacao .tn-clima a{
    display: flex;
    align-items: center;
    gap:.5rem;
    border-right: 1px solid #fff;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
  }
  .tn-boxClimaCotacao .tn-clima a:visited{
    color: #fff;
  }
  .tn-boxClimaCotacao .tn-clima span{
    color: #fff;
    font-size: 11px;
    font-family: "lato-bold", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
  }
  .tn-boxClimaCotacao  .tn-clima  span:nth-child(3){
    font-family: "lato", sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding-right: .6rem;
  }
   
  .tn-boxClimaCotacao .tn-cotEuro{
    padding: 0 .6rem;
    cursor: pointer;
  }

  .tn-boxClimaCotacao .tn-cotEuro .container-textCotEuro > span,
    .tn-boxClimaCotacao .tn-cotDolar .container-textCotDolar > span
  {
    font-family: 'lato',sans-serif;
    color: #fff;
    font-size: 12px;
  }
  .tn-boxClimaCotacao .tn-cotEuro .container-textCotEuro > strong,
  .tn-boxClimaCotacao .tn-cotDolar .container-textCotDolar > strong
  {
    font-family: 'lato-bold',sans-serif;
    color: #fff;
    font-size: 12px;
  }
  .tn-boxClimaCotacao .tn-cotDolar{
    border-left: 1px solid #fff;
    padding-left: .6rem;
    cursor: pointer;
  }
  
   .tn-boxClimaCotacao .tn-cotEuro,
   .tn-boxClimaCotacao .tn-cotDolar {
    display: flex;
    align-items: center;
  }
   .tn-boxClimaCotacao .tn-cotEuro > .imgCotEuro,
   .tn-boxClimaCotacao .tn-cotDolar > .imgCotDolar,
   .tn-boxClimaCotacao .tn-clima .imgClima {
    margin-right: .6rem;
    margin-top: 4px;

  }
  .tn-boxClimaCotacao .tn-clima .imgClima{
    margin-right: .5rem;
  }
  .tn-boxClimaCotacao .tn-clima .imgClima img{
    width: 24px;
    height: 19px;
  }
   .tn-boxClimaCotacao .tn-cotEuro > .imgCotEuro img,
   .tn-boxClimaCotacao .tn-cotDolar > .imgCotDolar img {
    width:13px;
    height: 20px;
  }
  
   .tn-boxClimaCotacao .tn-cotEuro > .container-textCotEuro,
   .tn-boxClimaCotacao .tn-cotDolar > .container-textCotDolar {
    display: flex;
    flex-direction: column;
  }
  
  @media (max-width:1024px) {
    .tn-boxClimaCotacao{
      display: none;
    }
    .tn-navBar{
      width: 100%;
      overflow-x: scroll;
      overflow-y: hidden;
    }

    .tn-box-navBar .container{
      box-shadow: inset -1px 0px 5px 0px #fff;
    }
    .tn-navBar::-webkit-scrollbar{
      background: transparent;
      height: 4px;
      margin-top:15px;
    }
    .tn-navBar::-webkit-scrollbar-thumb{
      background: #af181bcc;
      border-radius: 8px;
      height: 4px;
    } 

    .tn-navBar::-webkit-scrollbar-track-piece{
      background: transparent;
      border-radius: 8px;
      height: 4px;
    }
    .tn-navBar > ul{
      width: max-content;
      height: 42px;
      
    }
    .tn-navBar > ul::after{
      content: '';
    width: 48px;
    height: 24px;
    background: linear-gradient(90deg, rgba(230, 31, 34, 0) 0%, var(--red) 100%);
    position: sticky;
    top: 8px;
    right: -16px;
    display: inline-block;
    }
    .tn-navBar > ul > li > a{
      font-size: 16px;
      font-weight: 700;
      font-family: sans-serif;
      text-transform:lowercase;
      text-transform:capitalize;
    }
    .tn-navBar > ul > li{
      padding:12px 12px 12px 0;
      white-space: nowrap;
    }
  }