/* Definições de Variáveis Globais */


@media screen, projection {

 



 
  /* Classes Utilitárias */
  .center-align {
    text-align: center;
  }

  .right {
    float: right !important;
  }

  .circle {
    border-radius: 50%;
  }

  /* Layout - Container */
  .container {
    margin: 0 auto;
    max-width: 1280px;
    width: 90%;
  }

  @media only screen and (min-width: 601px) {
    .container {
      width: 85%;
    }
  }

  @media only screen and (min-width: 993px) {
    .container {
      width: 70%;
    }
  }

  /* Layout - Grid */
  .row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }

  .row .s12 {
    grid-column: auto/span 12;
  }

  @media only screen and (min-width: 601px) {
    .row .m6 {
      grid-column: auto/span 6;
    }
    .row .m12 {
      grid-column: auto/span 12;
    }
  }

  @media only screen and (min-width: 993px) {
    .row .l2 {
      grid-column: auto/span 2;
    }
    .row .l4 {
      grid-column: auto/span 4;
    }
    .row .l5 {
      grid-column: auto/span 5;
    }
    .row .l6 {
      grid-column: auto/span 6;
    }
    .row .l12 {
      grid-column: auto/span 12;
    }
  }

  /* Componente: Navegação */
  
  
  /* Componente: Botão (btn) */
  .btn {
    font-weight: 500;
    border: none;
    border-radius: 4px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 16px;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    font-size: 14px;
    outline: 0;
    text-decoration: none;
    color: var(--font-on-primary-color-main);
    background-color: var(--primary-color);
    text-align: center;
    letter-spacing: 0.5px;
    -webkit-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
    cursor: pointer;
  }

  .btn:hover {
    background-color: var(--primary-color-raised-hover-solid);
  }

  .btn:focus {
    background-color: var(--primary-color-raised-focus-solid);
  }

  .btn:disabled,
  .btn:disabled:hover {
    pointer-events: none;
    background-color: var(--background-color-disabled) !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--font-color-disabled) !important;
    cursor: default;
  }

  /* Componente: Modal */
 
  
  /* Componente: Sidenav */
  .sidenav {
    position: fixed;
    width: 300px;
    left: 0;
    top: 0;
    margin: 0;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    height: 100vh;
    padding-bottom: 60px;
    background-color: var(--background-color-level-16dp-solid);
    z-index: 999;
    overflow-y: auto;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .sidenav li {
    float: none;
    line-height: 48px;
  }

  .sidenav li:hover {
    background-color: var(--hover-color);
  }
  
  .sidenav > li:hover {
    background-color: transparent;
  }

  .sidenav li > a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    line-height: 48px;
    padding: 0 32px;
  }

  .sidenav li > a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-flat):not(.btn-large):not(.btn-floating) {
    color: var(--font-color-main);
  }

  .sidenav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    height: 120vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 997;
    display: none;
  }

  .drag-target {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
  }

  /* Efeito Pulse */
  .pulse {
    overflow: visible;
    position: relative;
  }

  .pulse::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
  }

  /* Media Queries Específicas */

  @media only screen and (min-width: 0) {
    html {
      font-size: 14px;
    }
  }

  @media only screen and (min-width: 993px) {
    html {
      font-size: 14.5px;
    }
  }

  @media only screen and (min-width: 1201px) {
    html {
      font-size: 15px;
    }
  }
  
  @media only screen and (max-width: 992.99px) {

    .modal {
      width: 80%;
    }
  }

}