
* {
  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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  background: #ececec; }

.header {
  width: 100%;
  height: 90px;
  color: #FFF;
  background: rgb(255, 255, 255);
  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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-transition: -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
  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;
    -webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
    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;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          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: 90px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          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;
  -webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
  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);
  -webkit-transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
  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); 
  }
  
.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;
  -webkit-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);
  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: #fff; }
    .mdl-button.mdl-button--colored:focus:not(:active) {
      background-color: rgba(0, 0, 0, 0.12); }

.mdl-button--primary.mdl-button--primary {
  color: fff; }
  .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: #fff; }


    .myButton {
      -moz-box-shadow:inset 0px 1px 0px 0px #fff6af;
      -webkit-box-shadow:inset 0px 1px 0px 0px #fff6af;
      box-shadow:inset 0px 1px 0px 0px #fff6af;
      background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffec64), color-stop(1, #ffab23));
      background:-moz-linear-gradient(top, #ffec64 5%, #ffab23 100%);
      background:-webkit-linear-gradient(top, #ffec64 5%, #ffab23 100%);
      background:-o-linear-gradient(top, #ffec64 5%, #ffab23 100%);
      background:-ms-linear-gradient(top, #ffec64 5%, #ffab23 100%);
      background:linear-gradient(to bottom, #ffec64 5%, #ffab23 100%);
      filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffec64', endColorstr='#ffab23',GradientType=0);
      background-color:#ffec64;
      -moz-border-radius:4px;
      -webkit-border-radius:4px;
      border-radius:4px;
      border:1px solid #ffaa22;
      display:inline-block;
      cursor:pointer;
      color:#227a39;
      font-family:Arial;
      font-size:28px;
      font-weight:bold;
      padding:10px 50px;
      text-decoration:none;
      text-shadow:0px 1px 0px #ffee66;
    }
    .myButton:hover {
      background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffab23), color-stop(1, #ffec64));
      background:-moz-linear-gradient(top, #ffab23 5%, #ffec64 100%);
      background:-webkit-linear-gradient(top, #ffab23 5%, #ffec64 100%);
      background:-o-linear-gradient(top, #ffab23 5%, #ffec64 100%);
      background:-ms-linear-gradient(top, #ffab23 5%, #ffec64 100%);
      background:linear-gradient(to bottom, #ffab23 5%, #ffec64 100%);
      filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffab23', endColorstr='#ffec64',GradientType=0);
      background-color:#ffab23;
    }
    .myButton:active {
      position:relative;
      top:1px;
    }
    
    .myContiene{
      
    }
    

    .css-input { 
      border-style:solid; 
      padding:12px; 
      font-size:18px; 
      border-radius:8px; 
      border-color:#144d02; 
      border-width:0px; 
      box-shadow: 0px 0px 5px 0px rgba(42,42,42,.95);  
      margin-bottom:20px;
    } 

     .css-input:focus { outline:none; } 
     
     .myButtoni {
      -moz-box-shadow:inset 0px 1px 0px 0px #a4e271;
      -webkit-box-shadow:inset 0px 1px 0px 0px #a4e271;
      box-shadow:inset 0px 1px 0px 0px #a4e271;
      background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #648c08), color-stop(1, #77a809));
      background:-moz-linear-gradient(top, #648c08 5%, #77a809 100%);
      background:-webkit-linear-gradient(top, #648c08 5%, #77a809 100%);
      background:-o-linear-gradient(top, #648c08 5%, #77a809 100%);
      background:-ms-linear-gradient(top, #648c08 5%, #77a809 100%);
      background:linear-gradient(to bottom, #648c08 5%, #77a809 100%);
      filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#648c08', endColorstr='#77a809',GradientType=0);
      background-color:#648c08;
      -moz-border-radius:6px;
      -webkit-border-radius:6px;
      border-radius:6px;
      border:1px solid #74b807;
      display:inline-block;
      cursor:pointer;
      color:#ffffff;
      font-family:Arial;
      font-size:15px;
      font-weight:bold;
      padding:10px 41px;
      text-decoration:none;
      text-shadow:0px 1px 0px #528009;
    }
    .myButtoni:hover {
      background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #77a809), color-stop(1, #648c08));
      background:-moz-linear-gradient(top, #77a809 5%, #648c08 100%);
      background:-webkit-linear-gradient(top, #77a809 5%, #648c08 100%);
      background:-o-linear-gradient(top, #77a809 5%, #648c08 100%);
      background:-ms-linear-gradient(top, #77a809 5%, #648c08 100%);
      background:linear-gradient(to bottom, #77a809 5%, #648c08 100%);
      filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#77a809', endColorstr='#648c08',GradientType=0);
      background-color:#77a809;
    }
    .myButtoni:active {
      position:relative;
      top:1px;
    }
    

    .myButtonV {
      -moz-box-shadow:inset 0px 1px 0px 0px #a4e271;
      -webkit-box-shadow:inset 0px 1px 0px 0px #a4e271;
      box-shadow:inset 0px 1px 0px 0px #a4e271;
      background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #89c403), color-stop(1, #77a809));
      background:-moz-linear-gradient(top, #89c403 5%, #77a809 100%);
      background:-webkit-linear-gradient(top, #89c403 5%, #77a809 100%);
      background:-o-linear-gradient(top, #89c403 5%, #77a809 100%);
      background:-ms-linear-gradient(top, #89c403 5%, #77a809 100%);
      background:linear-gradient(to bottom, #89c403 5%, #77a809 100%);
      filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#89c403', endColorstr='#77a809',GradientType=0);
      background-color:#89c403;
      -moz-border-radius:6px;
      -webkit-border-radius:6px;
      border-radius:6px;
      border:1px solid #74b807;
      display:inline-block;
      cursor:pointer;
      color:#ffffff;
      font-family:Arial;
      font-size:18px;
      font-weight:bold;
      padding:12px 23px;
      text-decoration:none;
      text-shadow:0px 1px 0px #528009;
    }
    .myButtonV:hover {
      background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #77a809), color-stop(1, #89c403));
      background:-moz-linear-gradient(top, #77a809 5%, #89c403 100%);
      background:-webkit-linear-gradient(top, #77a809 5%, #89c403 100%);
      background:-o-linear-gradient(top, #77a809 5%, #89c403 100%);
      background:-ms-linear-gradient(top, #77a809 5%, #89c403 100%);
      background:linear-gradient(to bottom, #77a809 5%, #89c403 100%);
      filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#77a809', endColorstr='#89c403',GradientType=0);
      background-color:#77a809;
    }
    .myButtonV:active {
      position:relative;
      top:1px;
    }
    

    .myButtonG {
      -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
      -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
      box-shadow:inset 0px 1px 0px 0px #ffffff;
      background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9));
      background:-moz-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
      background:-webkit-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
      background:-o-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
      background:-ms-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
      background:linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
      filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9',GradientType=0);
      background-color:#f9f9f9;
      -moz-border-radius:6px;
      -webkit-border-radius:6px;
      border-radius:6px;
      border:1px solid #dcdcdc;
      display:inline-block;
      cursor:pointer;
      color:#666666;
      font-family:Arial;
      font-size:15px;
      font-weight:bold;
      padding:6px 24px;
      text-decoration:none;
      text-shadow:0px 1px 0px #ffffff;
    }
    .myButtonG:hover {
      background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9));
      background:-moz-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
      background:-webkit-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
      background:-o-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
      background:-ms-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
      background:linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
      filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9',GradientType=0);
      background-color:#e9e9e9;
    }
    .myButtonG:active {
      position:relative;
      top:1px;
    }
    
    .myButtonAu {
      -moz-box-shadow:inset 0px 1px 0px 0px #a4e271;
      -webkit-box-shadow:inset 0px 1px 0px 0px #a4e271;
      box-shadow:inset 0px 1px 0px 0px #a4e271;
      background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #89c403), color-stop(1, #77a809));
      background:-moz-linear-gradient(top, #89c403 5%, #77a809 100%);
      background:-webkit-linear-gradient(top, #89c403 5%, #77a809 100%);
      background:-o-linear-gradient(top, #89c403 5%, #77a809 100%);
      background:-ms-linear-gradient(top, #89c403 5%, #77a809 100%);
      background:linear-gradient(to bottom, #89c403 5%, #77a809 100%);
      filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#89c403', endColorstr='#77a809',GradientType=0);
      background-color:#89c403;
      -moz-border-radius:6px;
      -webkit-border-radius:6px;
      border-radius:6px;
      border:1px solid #74b807;
      display:inline-block;
      cursor:pointer;
      color:#ffffff;
      font-family:Arial;
      font-size:15px;
      font-weight:bold;
      padding:6px 24px;
      text-decoration:none;
      text-shadow:0px 1px 0px #528009;
    }
    .myButtonAu:hover {
      background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #77a809), color-stop(1, #89c403));
      background:-moz-linear-gradient(top, #77a809 5%, #89c403 100%);
      background:-webkit-linear-gradient(top, #77a809 5%, #89c403 100%);
      background:-o-linear-gradient(top, #77a809 5%, #89c403 100%);
      background:-ms-linear-gradient(top, #77a809 5%, #89c403 100%);
      background:linear-gradient(to bottom, #77a809 5%, #89c403 100%);
      filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#77a809', endColorstr='#89c403',GradientType=0);
      background-color:#77a809;
    }
    .myButtonAu:active {
      position:relative;
      top:1px;
    }
    
            