input[type='text'] {
  width: 100%;
}
.select-wrap {
  position: relative;
  border: 1px solid #e0e0e0;
}
.select-wrap select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: none;
  background-color: transparent;
  border: none;
  padding: 5px 15px;
  height: 40px;
}
.select-wrap:after {
  font-family: FontAwesome;
  content: '\f078';
  position: absolute;
  top: 0;
  right: 10px;
  pointer-events: none;
  color: #666;
  display: flex;
  align-items: center;
  height: 100%;
}
a {
  color: inherit;
  text-decoration: underline;
}
.info-alt {
  font-size: 0.85em;
}
.panel {
  background-color: #fff;
  border-radius: 0.5em;
}
.panel.dark {
  background-color: #222222;
  color: #fff;
}
.panel .head {
  padding: 1em;
}
.panel .head h1 {
  font-size: 1em;
  margin: 0;
}
.panel .body {
  padding: 2em;
}
.panel .body h2 {
  font-size: 1.8em;
  color: #555;
}
.panel .foot {
  padding: 1em;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}
.dateRange {
  display: flex;
}
.dateRange > * {
  flex: 1 1 50%;
}
.table {
  display: table;
  width: 100%;
  border: 1px solid #ddd;
  border-bottom: none;
}
.table .tbody,
.table .thead {
  display: table-row-group;
}
.table .trow {
  display: table-row;
  width: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.table .trow:nth-child(even) {
  background-color: #f0f0f0;
}
.table .trow:hover {
  background-color: #ffe6a5;
}
.table .tcell {
  display: table-cell;
  vertical-align: middle;
  padding: 3px 5px;
  border-bottom: 1px solid #ddd;
}
.avatar {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar .avatarimage {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.inputlabel {
  margin: 1em 0;
}
.inputlabel label {
  margin: 0;
  font-size: 0.7em;
  text-transform: uppercase;
  font-weight: 500;
  color: #666;
}
.inputlabel input[type='text'],
.inputlabel input[type='date'],
.inputlabel input[type='time'],
.inputlabel input[type='password'],
.inputlabel input[type='number'] {
  width: 100%;
  border: 1px solid #d2d2d2;
  padding: 0.5em;
}
.inputlabel input[type='text'].error,
.inputlabel input[type='date'].error,
.inputlabel input[type='time'].error,
.inputlabel input[type='password'].error,
.inputlabel input[type='number'].error {
  border-color: #ff7600;
}
.inputlabel input[type='text'].error::placeholder,
.inputlabel input[type='date'].error::placeholder,
.inputlabel input[type='time'].error::placeholder,
.inputlabel input[type='password'].error::placeholder,
.inputlabel input[type='number'].error::placeholder {
  color: #ff7600;
}
.btn {
  width: 100%;
  padding: 0.5em;
}
.btn-success {
  background-color: #81bf4f;
  border-color: #81bf4f;
}
