@charset "UTF-8";
@font-face {
  font-family: 'lato-regular';
  src: url('../fonts/lato-regular-webfont.eot');
  src: url('../fonts/lato-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-regular-webfont.woff') format('woff'), url('../fonts/lato-regular-webfont.ttf') format('truetype'), url('../fonts/lato-regular-webfont.svg#lato-regular') format('svg');
  font-weight: normal !important;
  font-style: normal !important;
}
@font-face {
  font-family: 'lato-bold';
  src: url('../fonts/lato-bol-webfont.eot');
  src: url('../fonts/lato-bol-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-bol-webfont.woff') format('woff'), url('../fonts/lato-bol-webfont.ttf') format('truetype'), url('../fonts/lato-bol-webfont.svg#lato-regular') format('svg');
  font-weight: normal !important;
  font-style: normal !important;
}
.modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9997;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  visibility: hidden;
  opacity: 0;
}
.modal-overlay.open {
  visibility: visible;
  opacity: 1;
}
.modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.modal.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.modal .modal-content {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 320px;
  width: 100vh;
  height: 100vw;
  background: #fff;
  overflow: hidden;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.modal .modal-content .modal-title {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 72px 0 30px;
  min-height: 40px;
  background: #ff0067;
  font-family: 'lato-bold';
  color: #fff;
  text-transform: uppercase;
}
.modal .modal-content .modal-text {
  padding: 10px;
  background: #505050;
  color: #fff;
  overflow: auto;
}
.modal .modal-content .modal-footer {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 30px 30px;
  background: #505050;
}
.modal .modal-content .modal-footer button {
  margin: 0 10px;
}
.modal-close {
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  background: url(../img/x.png) center center no-repeat;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.modal-close.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.modal-close:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.modal-close:focus {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
@media (min-width: 768px) {
  .modal {
    left: 50px;
    top: 50px;
    right: 50px;
    bottom: 50px;
  }
  .modal .modal-content {
    width: auto;
    height: auto;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
  .modal .modal-content .modal-text {
    padding: 30px;
    white-space: pre-wrap;
  }
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
a,
button,
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
html,
body {
  height: 100%;
}
lesshat-selector {
  -lh-property: 0; } 
::selection{color:#fff; background:#000}
::-moz-selection{color:#fff; background:#000;
}
select::-ms-expand {
  display: none;
}
/* Less ---------------------------------------------------------------------------------------------*/
/* Classes & Ids ------------------------------------------------------------------------------------*/
.attach-file table {
  margin-top: -15px !important;
}
.attach-file table td {
  white-space: nowrap;
}
.attach-file table input:not([type=checkbox]),
.attach-file table select,
.attach-file table textarea {
  min-width: 280px;
  width: 100%;
}
.attach-file table label {
  position: relative;
  top: -5px;
  margin: 0 5px 0 10px;
}
.attach-file table .but-delete {
  margin-left: 10px;
}
body {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #f0f0f0;
  font-family: 'lato-regular';
  font-size: 16px;
  color: #505050;
  overflow: auto;
}
.but-back {
  cursor: pointer;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(../img/but-back.png) left top no-repeat;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.but-back:hover {
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.but-logout {
  cursor: pointer;
  display: inline-block;
  width: 36px;
  height: 36px;
  background: url(../img/but-logout.png) left top no-repeat;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.but-logout:hover {
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.but-next {
  cursor: pointer;
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../img/but-next.png) left top no-repeat;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.but-next:hover {
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.but-pink {
  cursor: pointer;
  display: inline-block;
  padding: 0 25px;
  height: 40px;
  background: #ff0067;
  font-family: 'lato-bold';
  font-size: 14px;
  color: #fff;
  line-height: 40px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.but-pink:hover {
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.but-prev {
  cursor: pointer;
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../img/but-prev.png) left top no-repeat;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.but-prev:hover {
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.but-yellow {
  cursor: pointer;
  display: inline-block;
  padding: 0 25px;
  height: 40px;
  background: #eded05;
  font-family: 'lato-bold';
  font-size: 14px;
  color: #505050;
  line-height: 40px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.but-yellow:hover {
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.center {
  text-align: center;
}
.center div {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 100%;
  overflow: hidden;
}
.container .filters {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 40px 50px;
  width: 300px;
  height: 100%;
  background: #505050;
  color: #fff;
  overflow: auto ;
}
.container .filters * {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.container .filters label {
  margin-bottom: 5px;
}
.container .filters input:not([type=submit]),
.container .filters select {
  margin-bottom: 20px;
}
.container .filters input[type=submit],
.container .filters a {
  margin-top: 10px;
  cursor: pointer;
  display: inline-block;
  padding: 0 25px;
  height: 40px;
  background: #eded05;
  font-family: 'lato-bold';
  font-size: 14px;
  color: #505050;
  line-height: 40px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.container .filters input[type=submit]:hover,
.container .filters a:hover {
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.container .content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px 50px;
  height: 100%;
  overflow: auto;
}
.cliente,
.report {
  padding-bottom: 30px;
}
.cliente .row,
.report .row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  height: 31px;
}
.cliente .row label,
.report .row label {
  display: inline-block;
}
.cliente .row label:first-child,
.report .row label:first-child {
  width: 215px;
}
.cliente .row input[type=text],
.report .row input[type=text],
.cliente .row input[type=tel],
.report .row input[type=tel],
.cliente .row input[type=email],
.report .row input[type=email],
.cliente .row input[type=number],
.report .row input[type=number],
.cliente .row input[type=file],
.report .row input[type=file],
.cliente .row select,
.report .row select {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.cliente .row .file,
.report .row .file {
  flex-direction: row;
  display: flex;
  cursor: pointer;
}
.cliente .row .file img,
.report .row .file img {
  padding-right: 5px;
}
.cliente .but-yellow,
.report .but-yellow {
  margin-top: 20px;
}
.cliente .actionBtn,
.report .actionBtn {
  display: flex;
  justify-content: space-between;
}
.dashboard {
  -webkit-box-direction: normal !important;
  -moz-box-direction: normal !important;
  -webkit-box-orient: horizontal !important;
  -moz-box-orient: horizontal !important;
  -webkit-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.dashboard .box {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 25px;
  padding: 30px 0 0 30px;
  width: 190px;
  height: 190px;
  font-family: 'lato-bold';
  font-size: 18px;
  color: #eded05;
  line-height: 24px;
  text-transform: uppercase;
  background: #505050;
}
.dashboard .box:hover {
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.dashboard .box img {
  margin-bottom: 30px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
h2 {
  margin-bottom: 30px;
  font-family: 'lato-bold';
  font-size: 18px;
  color: #eded05;
  font-weight: normal;
  text-transform: uppercase;
}
.header {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 30px;
  height: 80px;
  background: #ff0067;
  color: #000;
}
.header img {
  width: 90px;
}
.header .user {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .user .welcome {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 20px;
  color: #fff;
  text-align: right;
}
input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #757575;
}
input[type=checkbox]:checked {
  background: url(../img/checkbox.png) center center no-repeat;
}
input[type=checkbox]:not(:nth-child(2)) {
  margin-left: 30px;
}
input[type=date],
input[type=email],
input[type=file],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-user-select: text;
  padding-left: 10px;
  height: 31px;
  background: #fff;
  font-family: 'lato-regular';
  font-size: 14px;
  color: #505050;
  border: 1px solid #fff;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
input[type=date]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=file]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder {
  color: #B4B1B1;
}
input[type=date]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=file]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=text]:-moz-placeholder {
  color: #B4B1B1;
}
input[type=date]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=file]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=text]::-moz-placeholder {
  color: #B4B1B1;
}
input[type=date]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=file]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder {
  color: #B4B1B1;
}
input[type=date]:focus,
input[type=email]:focus,
input[type=file]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=text]:focus {
  border-color: #ff0067;
}
input[type=date]:disabled,
input[type=email]:disabled,
input[type=file]:disabled,
input[type=number]:disabled,
input[type=password]:disabled,
input[type=tel]:disabled,
input[type=text]:disabled {
  background: rgba(255, 255, 255, 0.6);
  color: #000;
}
input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #fff;
  outline: 1px solid #d3d3d6;
  border: 5px solid #fff;
  border-radius: 100%;
}
input[type=radio]:checked {
  background: #000;
}
.intestazione {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 30px;
}
.intestazione .sx {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-family: 'lato-bold';
  font-size: 24px;
  text-transform: uppercase;
}
.intestazione .sx img {
  margin-right: 30px;
}
.loading {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.9) url(../img/loading.gif) center center no-repeat;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.login {
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.login .form {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 40px 50px;
  width: 350px;
  color: #fff;
  background: #505050;
}
.login .form label {
  margin-bottom: 5px;
}
.login .form input:not([type=submit]) {
  margin-bottom: 20px;
}
.login .form input[type=submit] {
  margin-top: 10px;
  cursor: pointer;
  display: inline-block;
  padding: 0 25px;
  height: 40px;
  background: #eded05;
  font-family: 'lato-bold';
  font-size: 14px;
  color: #505050;
  line-height: 40px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.login .form input[type=submit]:hover {
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.mese {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 10px;
}
.mese .name {
  font-family: 'lato-bold';
  font-size: 18px;
  text-transform: uppercase;
}
.orario .row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  height: 31px;
}
.orario .row label {
  display: inline-block;
}
.orario .row label:first-child {
  width: 160px;
}
.orario .row input[type=text],
.orario .row input[type=tel],
.orario .row input[type=email],
.orario .row input[type=number],
.orario .row input[type=file],
.orario .row select {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.orario .but-yellow {
  margin-top: 20px;
}
.paginator {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 30px;
}
#root {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  /* fix for flexbox max width */
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 10px;
  padding-right: 35px;
  height: 31px;
  background: #fff url(../img/select.png) right 10px center no-repeat;
  font-family: 'lato-regular';
  font-size: 14px;
  color: #505050;
  border: 1px solid #fff;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
select::-webkit-input-placeholder {
  color: #B4B1B1;
}
select:-moz-placeholder {
  color: #B4B1B1;
}
select::-moz-placeholder {
  color: #B4B1B1;
}
select:-ms-input-placeholder {
  color: #B4B1B1;
}
select:focus {
  border-color: #ff0067;
}
table {
  width: 100%;
  font-size: 12px;
  border-collapse: separate;
  border-spacing: 1px;
}
table thead tr th {
  padding: 5px 10px;
  background: #505050;
  font-weight: normal;
  color: #fff;
}
table tbody tr td {
  padding: 0 10px;
  line-height: 30px;
}
table tbody tr td img {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-right: 10px;
}
table.calendario {
  border-spacing: 2px;
}
table.calendario thead tr th {
  font-size: 14px;
}
table.calendario tbody tr td {
  padding: 0;
  width: 14.28571429%;
  background: #fff;
  line-height: normal;
  vertical-align: top;
}
table.calendario tbody tr td:nth-last-child(1),
table.calendario tbody tr td:nth-last-child(2) {
  background: #f6f6f6;
}
table.calendario tbody tr td .giorno {
  cursor: pointer;
  margin: 10px;
  font-family: 'lato-bold';
  font-size: 18px;
}
table.calendario tbody tr td .giorno:hover {
  background: #ff0067;
}
table.calendario tbody tr td .slot {
  cursor: pointer;
  display: block;
  padding: 5px 10px;
  color: #505050;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
table.calendario tbody tr td .slot .ora {
  margin-bottom: 4px;
  font-family: 'lato-bold';
}
table.calendario tbody tr td .slot .ora span {
  padding-left: 5px;
  padding-right: 5px;
}
table.calendario tbody tr td .slot .text {
  margin-bottom: 4px;
}
table.calendario tbody tr td .slot .text.unassigned span {
  color: #ff0067;
}
table.calendario tbody tr td .slot:hover {
  background: #eded05;
}
table.clienti tbody tr:nth-child(odd) td {
  background: #fff;
}
table.clienti tbody tr:nth-child(even) td {
  background: #f6f6f6;
}
table.clienti tbody tr:hover {
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
table.clienti tbody tr:hover td {
  background: #f6f682;
}
.report {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.report .formContainer {
  padding-top: 20px;
}
.report .formContainer label {
  font-family: 'lato-bold';
}
.report .formContainer .action {
  display: flex;
  align-items: center;
  justify-content: center;
}
