// Place all the styles related to the home controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
* {
    box-sizing: border-box; }
  
  html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    font-family: 'Helvetica', 'Verdana', sans-serif;
    font-weight: 400;
    font-display: optional;
    color: #444;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  
  html {
    overflow: hidden; }
  
  body {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    background: #ececec; }
  
  .header {
    width: 100%;
    height: 56px;
    color: #FFF;
    background: #3F51B5;
    position: fixed;
    font-size: 20px;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 2px 9px 1px rgba(0, 0, 0, 0.12), 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    padding: 16px 16px 0 16px;
    will-change: transform;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: center;
    transition: -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
    transition: transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
    transition: transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s, -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
    z-index: 1000; }
    .header .headerButton {
      width: 24px;
      height: 24px;
      margin-right: 16px;
      text-indent: -30000px;
      overflow: hidden;
      opacity: 0.54;
      transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
      border: none;
      outline: none;
      cursor: pointer; }
    .header #butRefresh {
      background: url(/images/ic_refresh_white_24px.svg) center center no-repeat; }
    .header #butAdd {
      background: url(/images/ic_add_white_24px.svg) center center no-repeat; }
  
  .header__title {
    font-weight: 400;
    font-size: 20px;
    margin: 0;
    flex: 1; }
  
  .loader {
    left: 50%;
    top: 50%;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
    .loader #spinner {
      box-sizing: border-box;
      stroke: #673AB7;
      stroke-width: 3px;
      -webkit-transform-origin: 50%;
              transform-origin: 50%;
      -webkit-animation: line 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite, rotate 1.6s linear infinite;
              animation: line 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite, rotate 1.6s linear infinite; }
  
  @-webkit-keyframes rotate {
    from {
      -webkit-transform: rotate(0);
              transform: rotate(0); }
    to {
      -webkit-transform: rotate(450deg);
              transform: rotate(450deg); } }
  
  @keyframes rotate {
    from {
      -webkit-transform: rotate(0);
              transform: rotate(0); }
    to {
      -webkit-transform: rotate(450deg);
              transform: rotate(450deg); } }
  
  @-webkit-keyframes line {
    0% {
      stroke-dasharray: 2, 85.964;
      -webkit-transform: rotate(0);
              transform: rotate(0); }
    50% {
      stroke-dasharray: 65.973, 21.9911;
      stroke-dashoffset: 0; }
    100% {
      stroke-dasharray: 2, 85.964;
      stroke-dashoffset: -65.973;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); } }
  
  @keyframes line {
    0% {
      stroke-dasharray: 2, 85.964;
      -webkit-transform: rotate(0);
              transform: rotate(0); }
    50% {
      stroke-dasharray: 65.973, 21.9911;
      stroke-dashoffset: 0; }
    100% {
      stroke-dasharray: 2, 85.964;
      stroke-dashoffset: -65.973;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); } }
  
  .main {
    padding-top: 60px;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; }
  
  .dialog-container {
    background: rgba(0, 0, 0, 0.57);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
    transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1); }
  
  .dialog-container--visible {
    opacity: 1;
    pointer-events: auto; }
  
  .dialog {
    background: #FFF;
    border-radius: 2px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.24), 0 14px 28px rgba(0, 0, 0, 0.48);
    min-width: 280px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) translateY(30px);
            transform: translate(-50%, -50%) translateY(30px);
    transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
    transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
    transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s, -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s; }
  
  .dialog > div {
    padding-left: 24px;
    padding-right: 24px; }
  
  .dialog-title {
    padding-top: 20px;
    font-size: 1.25em; }
  
  .dialog-body {
    padding-top: 20px;
    padding-bottom: 24px; }
    .dialog-body select {
      width: 100%;
      font-size: 2em; }
  
  .dialog-buttons {
    padding: 8px !important;
    float: right; }
  
  .card {
    padding: 16px;
    position: relative;
    box-sizing: border-box;
    background: #fff;
    border-radius: 2px;
    margin: 16px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }
  
  .weather-forecast .location {
    font-size: 1.75em; }
  
  .weather-forecast .date, .weather-forecast .description {
    font-size: 1.25em; }
  
  .weather-forecast .current {
    display: flex; }
    .weather-forecast .current .icon {
      width: 128px;
      height: 128px; }
    .weather-forecast .current .visual {
      display: flex;
      font-size: 4em; }
      .weather-forecast .current .visual .scale {
        font-size: 0.5em;
        vertical-align: super; }
    .weather-forecast .current .visual, .weather-forecast .current .description {
      flex-grow: 1; }
    .weather-forecast .current .sunset:before {
      content: "Sunset: ";
      color: #888; }
    .weather-forecast .current .wind:before {
      content: "Wind: ";
      color: #888; }
    .weather-forecast .current .sunrise:before {
      content: "Sunrise: ";
      color: #888; }
    .weather-forecast .current .humidity:before {
      content: "Humidity: ";
      color: #888; }
    .weather-forecast .current .pollen:before {
      content: "Pollen Count: ";
      color: #888; }
    .weather-forecast .current .pcount:before {
      content: "Pollen ";
      color: #888; }
  
  .weather-forecast .future {
    display: flex; }
    .weather-forecast .future .oneday {
      flex-grow: 1;
      text-align: center; }
      .weather-forecast .future .oneday .icon {
        width: 64px;
        height: 64px;
        margin-left: auto;
        margin-right: auto; }
      .weather-forecast .future .oneday .temp-high, .weather-forecast .future .oneday .temp-low {
        display: inline-block; }
      .weather-forecast .future .oneday .temp-low {
        color: #888; }
  
  .weather-forecast .icon {
    background-repeat: no-repeat;
    background-size: contain; }
    .weather-forecast .icon.clear-day {
      background-image: url("/images/clear.png"); }
    .weather-forecast .icon.clear-night {
      background-image: url("/images/clear.png"); }
    .weather-forecast .icon.rain {
      background-image: url("/images/rain.png"); }
    .weather-forecast .icon.snow {
      background-image: url("/images/snow.png"); }
    .weather-forecast .icon.sleet {
      background-image: url("/images/sleet.png"); }
    .weather-forecast .icon.windy {
      background-image: url("/images/wind.png"); }
    .weather-forecast .icon.fog {
      background-image: url("/images/fog.png"); }
    .weather-forecast .icon.cloudy {
      background-image: url("/images/cloudy.png"); }
    .weather-forecast .icon.partly-cloudy-day {
      background-image: url("/images/partly-cloudy.png"); }
    .weather-forecast .icon.partly-cloudy-night {
      background-image: url("/images/partly-cloudy.png"); }
    .weather-forecast .icon.thunderstorms {
      background-image: url("/images/thunderstorm.png"); }
  
  @media (max-width: 450px) {
    .weather-forecast .date, .weather-forecast .description {
      font-size: 0.9em; }
    .weather-forecast .current .icon {
      width: 96px;
      height: 96px; }
    .weather-forecast .current .visual {
      font-size: 3em; }
    .weather-forecast .future .oneday .icon {
      width: 32px;
      height: 32px; } }
  
  .mdl-button {
    background: transparent;
    border: none;
    border-radius: 2px;
    color: black;
    position: relative;
    height: 36px;
    margin: 0;
    min-width: 64px;
    padding: 0 16px;
    display: inline-block;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0;
    overflow: hidden;
    will-change: box-shadow;
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    line-height: 36px;
    vertical-align: middle; }
    .mdl-button::-moz-focus-inner {
      border: 0; }
    .mdl-button:hover {
      background-color: rgba(158, 158, 158, 0.2); }
    .mdl-button:focus:not(:active) {
      background-color: rgba(0, 0, 0, 0.12); }
    .mdl-button:active {
      background-color: rgba(158, 158, 158, 0.4); }
    .mdl-button.mdl-button--colored {
      color: #3f51b5; }
      .mdl-button.mdl-button--colored:focus:not(:active) {
        background-color: rgba(0, 0, 0, 0.12); }
  
  .mdl-button--primary.mdl-button--primary {
    color: #3f51b5; }
    .mdl-button--primary.mdl-button--primary .mdl-ripple {
      background: white; }
    .mdl-button--primary.mdl-button--primary.mdl-button--raised, .mdl-button--primary.mdl-button--primary.mdl-button--fab {
      color: white;
      background-color: #3f51b5; }
  body {
    background-color: #fff;
    color: #333;
  }
  
  body, p, ol, ul, td {
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 13px;
    line-height: 18px;
    margin: 33px;
  }
  
  pre {
    background-color: #eee;
    padding: 10px;
    font-size: 11px;
  }
  
  a {
    color: #000;
  }
  
  a:visited {
    color: #666;
  }
  
  a:hover {
    color: #fff;
    background-color: #000;
  }
  
  th {
    padding-bottom: 5px;
  }
  
  td {
    padding-bottom: 7px;
    padding-left: 5px;
    padding-right: 5px;
  }
  
  div.field,
  div.actions {
    margin-bottom: 10px;
  }
  
  #notice {
    color: green;
  }
  
  .field_with_errors {
    padding: 2px;
    background-color: red;
    display: table;
  }
  
  #error_explanation {
    width: 450px;
    border: 2px solid red;
    padding: 7px;
    padding-bottom: 0;
    margin-bottom: 20px;
    background-color: #f0f0f0;
  }
  
  #error_explanation h2 {
    text-align: left;
    font-weight: bold;
    padding: 5px 5px 5px 15px;
    font-size: 12px;
    margin: -7px;
    margin-bottom: 0;
    background-color: #c00;
    color: #fff;
  }
  
  #error_explanation ul li {
    font-size: 12px;
    list-style: square;
  }
  
  label {
    display: block;
  }

  /* 20% da tela criando 5 colunas */
  .col-sm-20p {
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }
  /*
    Place all the styles related to the matching controller here.
    They will automatically be included in application.css.
  */
  
  /*
   * This is a manifest file that'll be compiled into application.css, which will include all the files
   * listed below.
   *
   * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
   * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
   *
   * You're free to add application-wide styles to this file and they'll appear at the bottom of the
   * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
   * files in this directory. Styles in this file should be added after the last require_* statement.
   * It is generally better to create a new file per style scope.
   *
  
  
   */
