/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
/**
 * The picker input element.
 */
.picker__input {
  cursor: default;
}
/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
  border-color: #0089ec;
}
/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/*!
 * Default mobile-first, responsive styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
/**
 * Make the holder and frame fullscreen.
 */
.picker__holder,
.picker__frame {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
/**
 * The holder should overlay the entire screen.
 */
.picker__holder {
  position: fixed;
  -webkit-transition: background 0.15s ease-out, -webkit-transform 0s 0.15s;
          transition: background 0.15s ease-out, transform 0s 0.15s;
  -webkit-backface-visibility: hidden;
}
/**
 * The frame that bounds the box contents of the picker.
 */
.picker__frame {
  position: absolute;
  margin: 0 auto;
  min-width: 256px;
  max-width: 666px;
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
          transition: all 0.15s ease-out;
}
@media (min-height: 33.875em) {
  .picker__frame {
    overflow: visible;
    top: auto;
    bottom: -100%;
    max-height: 80%;
  }
}
@media (min-height: 40.125em) {
  .picker__frame {
    margin-bottom: 7.5%;
  }
}
/**
 * The wrapper sets the stage to vertically align the box contents.
 */
.picker__wrap {
  display: table;
  width: 100%;
  height: 100%;
}
@media (min-height: 33.875em) {
  .picker__wrap {
    display: block;
  }
}
/**
 * The box contains all the picker contents.
 */
.picker__box {
  background: #fff;
  display: table-cell;
  vertical-align: middle;
}
@media (min-height: 26.5em) {
  .picker__box {
    font-size: 1.25em;
  }
}
@media (min-height: 33.875em) {
  .picker__box {
    display: block;
    font-size: 1.33em;
    border: 1px solid #777;
    border-top-color: #898989;
    border-bottom-width: 0;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
  }
}
@media (min-height: 40.125em) {
  .picker__box {
    font-size: 1.5em;
    border-bottom-width: 1px;
    border-radius: 5px;
  }
}
/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  background: transparent;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
  zoom: 1;
  background: rgba(0, 0, 0, 0.32);
  -webkit-transition: background 0.15s ease-out;
          transition: background 0.15s ease-out;
}
.picker--opened .picker__frame {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
@media (min-height: 33.875em) {
  .picker--opened .picker__frame {
    top: auto;
    bottom: 0;
  }
}
/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em;
}
/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: .75em;
}
/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em;
}
.picker__year {
  color: #999;
  font-size: .8em;
  font-style: italic;
}
/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em;
}
@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em;
  }
}
.picker__select--month {
  width: 35%;
}
.picker__select--year {
  width: 22.5%;
}
.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec;
}
/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.33em;
  }
}
.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev {
    padding-right: 1.5em;
  }
}
.picker__nav--next {
  right: -1em;
  padding-left: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--next {
    padding-left: 1.5em;
  }
}
.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
}
.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000;
}
.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
}
.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
}
/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em;
}
@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: .75em;
  }
}
.picker__table td {
  margin: 0;
  padding: 0;
}
/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999;
  font-weight: 500;
  /* Increase the spacing a tad */
}
@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em;
  }
}
/**
 * The days on the calendar
 */
.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent;
}
.picker__day--today {
  position: relative;
}
.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #0059bc;
  border-left: .5em solid transparent;
}
.picker__day--disabled:before {
  border-top-color: #aaa;
}
.picker__day--outfocus {
  color: #ddd;
}
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
}
.picker__day--highlighted {
  border-color: #0089ec;
}
.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
}
.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background: #0089ec;
  color: #fff;
}
.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #ddd;
  cursor: default;
}
.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbb;
}
/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
  text-align: center;
}
.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #fff;
  background: #fff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
}
.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb;
}
.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: none;
}
.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0;
}
.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em;
}
.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent;
}
.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #e20;
}
.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777;
}
.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #ddd;
  cursor: default;
}
.picker__button--today[disabled]:before {
  border-top-color: #aaa;
}

/* ==========================================================================
   $DEFAULT-DATE-PICKER
   ========================================================================== */
/* ==========================================================================
   $BASE-TIME-PICKER
   ========================================================================== */
/**
 * The list of times.
 */
.picker__list {
  list-style: none;
  padding: 0.75em 0 4.2em;
  margin: 0;
}
/**
 * The times on the clock.
 */
.picker__list-item {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  margin-bottom: -1px;
  position: relative;
  background: #fff;
  padding: .75em 1.25em;
}
@media (min-height: 46.75em) {
  .picker__list-item {
    padding: .5em 1em;
  }
}
/* Hovered time */
.picker__list-item:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
  border-color: #0089ec;
  z-index: 10;
}
/* Highlighted and hovered/focused time */
.picker__list-item--highlighted {
  border-color: #0089ec;
  z-index: 10;
}
.picker__list-item--highlighted:hover,
.picker--focused .picker__list-item--highlighted {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
}
/* Selected and hovered/focused time */
.picker__list-item--selected,
.picker__list-item--selected:hover,
.picker--focused .picker__list-item--selected {
  background: #0089ec;
  color: #fff;
  z-index: 10;
}
/* Disabled time */
.picker__list-item--disabled,
.picker__list-item--disabled:hover,
.picker--focused .picker__list-item--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #ddd;
  cursor: default;
  border-color: #ddd;
  z-index: auto;
}
/**
 * The clear button
 */
.picker--time .picker__button--clear {
  display: block;
  width: 80%;
  margin: 1em auto 0;
  padding: 1em 1.25em;
  background: none;
  border: 0;
  font-weight: 500;
  font-size: .67em;
  text-align: center;
  text-transform: uppercase;
  color: #666;
}
.picker--time .picker__button--clear:hover,
.picker--time .picker__button--clear:focus {
  color: #000;
  background: #b1dcfb;
  background: #e20;
  border-color: #e20;
  cursor: pointer;
  color: #fff;
  outline: none;
}
.picker--time .picker__button--clear:before {
  top: -0.25em;
  color: #666;
  font-size: 1.25em;
  font-weight: bold;
}
.picker--time .picker__button--clear:hover:before,
.picker--time .picker__button--clear:focus:before {
  color: #fff;
  border-color: #fff;
}

/* ==========================================================================
   $DEFAULT-TIME-PICKER
   ========================================================================== */
/**
 * The frame the bounds the time picker.
 */
.picker--time .picker__frame {
  min-width: 256px;
  max-width: 320px;
}
/**
 * The picker box.
 */
.picker--time .picker__box {
  font-size: 1em;
  background: #f2f2f2;
  padding: 0;
}
@media (min-height: 40.125em) {
  .picker--time .picker__box {
    margin-bottom: 5em;
  }
}
/* stylelint-disable selector-no-type,selector-no-universal */

html,
body {
  font-family: 'Roboto', sans-serif;
}

body {
  box-sizing: border-box; /* 1 */
  text-size-adjust: 100%; /* 2 */
}

.mdSideNav {
  max-width: 304px;
  min-width: 304px;
}

md-sidenav {
}

@media (max-width: 456px) {
  md-sidenav {
    min-width: 0;
  }
}

:focus {
  outline: none;
}

.rd-container-attachment {
  z-index: 1000;
}

.pdfContainer {
  -webkit-transform: translate3d(0, 0, 0);
  border-style: solid;
  height: 50vh;
  overflow: auto;
  border-style: solid;
  border-color: #3a3d4d;
  border-width: 1px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.14) 0px 1px 1px 0px, rgba(0, 0, 0, 0.12) 0px 2px 1px -1px;
}

.SDToggle .md-button:first-child {
  margin-left: -8px;
}

.ListItem--dark {
  background-color: rgba(59, 59, 59, 0.23);
}

*[ng-click] {
  cursor: pointer;
}

td.rd-day-body {
  padding: 5px;
}

.ListItem-noPadding > div {
  padding: 0;
}

.ListItem.ng-move,
.ListItem.ng-enter,
.ListItem.ng-leave {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.ListItem.ng-leave.ng-leave-active,
.ListItem.ng-move,
.ListItem.ng-enter {
  opacity: 0;
  max-height: 0;
}

.ListItem.ng-leave,
.ListItem.ng-move.ng-move-active,
.ListItem.ng-enter.ng-enter-active {
  opacity: 1;
  max-height: 40px;
}

.highlight {
  color: #eb8117;
}

sf-decorator {
  overflow: visible;
  display: block;
  padding-bottom: 2px;
}

table sf-decorator {
  overflow: visible;
}

.formOverflowed sf-decorator {
  overflow: visible;
}

sf-decorator .RadioControl {
  margin-top: 12px;
}

.schema-form-fieldset.formHolder {
  display: none;
}

.schema-form-fieldset.documentHolder {
  display: block;
}

panel-content {
  padding-top: 0px !important;
}

panel-content > .layout-padding {
  padding-top: 0px !important;
}

.sigDrag,
.fieldDrag {
  font-size: 12px;
}

.sigDrag:hover,
.fieldDrag:hover {
  background: #e1e1e1;
}

.schema-form-fieldset.formHolder,
.schema-form-fieldset.accountsUseOnly,
.schema-form-fieldset.documents {
  display: none !important;
}

.Content--wide {
  margin: 0 auto;
  max-width: 95%;
}

.ui-grid {
  color: rgb(120, 120, 120);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 100%;
  letter-spacing: 0.1px;
  border: none;
}

.ui-grid-header-cell {
  text-transform: uppercase;
}

.is-uppercase {
  text-transform: uppercase;
}

@media print {
  sf-decorator {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.schema-form-table td {
  vertical-align: baseline;
}

.schema-form-table .ControlSet-item {
  margin: 0;
}

[draggable] {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element;
}

.TimePickerDropdown-dropdown {
  z-index: 100;
  position: absolute;
  transform: translateY(-50%);
  display: inline-flex;
}

.TimePickerDropdown-list {
  display: none;
}

.TimePickerDropdown-list.is-open {
  display: block;
  max-height: 200px;
  overflow-y: auto;
  background-color: rgb(251, 251, 251);
  border: 1px solid rgb(216, 216, 216);
  border-radius: 5px;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.04),
    inset 0 0 3px 0 rgba(0, 0, 0, 0.06);
  color: rgb(120, 120, 120);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 20px;
  margin: 1px 0;
  padding: 9px 20px 5px 13px;
  resize: none;
  width: 100%;
}

.TimePickerDropdown-input {
  background-color: rgb(251, 251, 251);
  border: 1px solid rgb(216, 216, 216);
  border-radius: 5px;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.04),
    inset 0 0 3px 0 rgba(0, 0, 0, 0.06);
  color: rgb(120, 120, 120);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 20px;
  margin: 1px 0;
  padding: 9px 13px 5px 13px;
  resize: none;
  width: 62px;
  min-height: 34px;
}

.TimePickerDropdown-input.is-disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.TimePickerDropdown-row.is-active {
  background-color: #1fade0;
  color: rgb(255, 255, 255);
}

.SDDescription-Button {
  margin: auto 6px !important;
}

.InputTag--inline {
  display: inline-flex;
}

.picker__select--month {
  width: 35%;
  min-height: 55px;
  min-width: 165px;
}

.picker__select--year {
  width: 22.5%;
  min-width: 105px;
  min-height: 55px;
}

.preview {
  position: relative;
}

.preview-highlight {
  z-index: 100;
  position: absolute;
  color: #ea8117;
  background-color: rgb(255, 244, 186);
  opacity: 0.7;
  font-weight: bold;
  top: 350px;
  border: 1px solid #ea8117;
  border-width: 3px;
  border-style: dashed;

  display: flex;
}

.preview-label {
  font-size: 12px;
  color: rgb(49, 49, 49);
  font-weight: 400;
  margin: auto;
}

md-toast {
  /*To be sure that it appears on the front of everything*/
  z-index: 5000;
}

md-toast.md-error-toast-theme .md-toast-content {
  background-color: #e61219 !important;
}

md-toast.md-success-toast-theme .md-toast-content {
  background-color: #4caf50 !important;
}

md-toast.md-warning-toast-theme .md-toast-content {
  background-color: rgb(234, 129, 23);
}

.WarningBackground {
  background-color: #65c2e4;
  color: white;
  height: 40px;
  flex-direction: row;
}

.ErrorBackground {
  background-color: #e61219 !important;
  color: white;
}

.SuccessBackground {
  background-color: #4caf50 !important;
}

.SDLogo {
  width: 100px;
  color: rgba(220, 220, 220, 0.8);
  padding: 5% 0 5% 5%;
}

.SDHomeLogo {
  width: 80px;
  color: rgba(220, 220, 220, 0.8);
  padding: 5% 0 0% 0%;
}

.ListItemSelected {
  color: #e67600 !important;
}

.SDSearch input {
  height: 60px;
  line-height: 48px;
  font-size: 48px;
}

.SDSearch md-icon {
  font-size: 48px;
}

.SDSearch {
  padding-left: 12px !important;
  margin-right: 36px;
}

.SDDialog {
  min-width: 300px;
}

.SDGridListItem .mainIcon {
  width: 40px;
  height: 40px;
}

/* Copy of md-avatar-icon properties, but able to easily adjust  */
.listIcon {
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 8px;
  box-sizing: content-box;
}

.SDSent {
  color: rgb(28, 155, 202) !important;
}

.SDSent span {
  white-space: nowrap;
}

.SDRejected {
  color: #e61219;
}

.SDRejected span {
  white-space: nowrap;
}

.SDDraft {
  color: #e64a19;
}

.SDDraft span {
  white-space: nowrap;
}

.SDGridListItem .md-list-item-text {
  padding-left: 18px;
}

.SDGridListItem .md-list-item-text p {
  color: rgba(0, 0, 0, 0.54);
}

.SDIcon {
  color: #65c2e4 !important;
}

.listIcon svg path {
  fill: #65c2e4;
}

.SDIcon.SDIcon-Error {
  color: #e61219 !important;
}

.SDError-message {
  color: #e61219 !important;
}

@media screen and (min-width: 600px) {
  .SDReuse-Conflict-Warning-message {
    min-height: 70px;
  }
}

@media screen and (max-width: 600px) {
  .SDReuse-Conflict-Warning-message {
    min-height: 120px;
  }
  md-grid-list.dashboard md-grid-tile:nth-child(1) {
    padding-top: calc(((52% - 0px) * 1) + 0px) !important;
  }
  md-grid-list.dashboard md-grid-tile:nth-child(2) {
    margin-top: calc(((50% - 0px) + 10px) * 1) !important;
  }
  md-grid-list.dashboard md-grid-tile:nth-child(3) {
    margin-top: calc(((77% - 0px) + 10px) * 2) !important;
  }
  md-grid-list.dashboard md-grid-tile:nth-child(4) {
    margin-top: calc(((86% - 0px) + 10px) * 3) !important;
  }
  md-grid-list.dashboard md-grid-tile:nth-child(5) {
    margin-top: calc(((95.5% - 0px) + 0px) * 5) !important;
  }
}

.SDWarning-message {
  color: rgb(234, 129, 23) !important;
}

.SDSuccess-message {
  color: #4caf50 !important;
}

.SDIcon.SDIcon-Success {
  color: #4caf50 !important;
}

.SDIcon.SDIcon-Warning {
  color: rgb(234, 129, 23) !important;
}

.SDIcon.SDIcon-Submitted {
  color: #03A9F4 !important;
}

.SDIcon.SDIcon-Disabled {
  color: rgb(145, 145, 145) !important;
}

.SDIconRound {
  background-color: rgb(28, 155, 202) !important;
  color: white;
}

.SDIconRound.SDIcon-Error {
  background-color: #e61219 !important;
}

.SDIconRound.SDIcon-Success {
  background-color: #4caf50 !important;
}

.SDIconRound.SDIcon-Warning {
  background-color: rgb(234, 129, 23) !important;
}

.SDIconRound.SDIcon-Disabled {
  background-color: rgb(145, 145, 145) !important;
}

@media screen and (max-width: 450px) {
  .SDEnvelopeCard {
    border-left: 5px solid;
    border-color: rgb(28, 155, 202) !important;
  }
  .SDEnvelopeCard .SDIconRound {
    display: none;
  }
  .SDEnvelopeCard.SDIcon-Error {
    border-color: #e61219 !important;
  }

  .SDEnvelopeCard.SDIcon-Success {
    border-color: #4caf50 !important;
  }

  .SDEnvelopeCard.SDIcon-Warning {
    border-color: rgb(234, 129, 23) !important;
  }
}

.SDDueButton {
  color: white;
  font-size: 14px !important;
  line-height: 14px;
  background-color: rgba(56, 142, 60, 0.85);
  border-radius: 20px;
  width: 40px;
  height: 40px;
}

.SDDueButton span {
  padding: 0 !important;
}

.SDDueButton.is-overdue {
  color: white;
  background-color: rgba(230, 18, 25, 0.85);
}

._md-select-value ._md-text {
  display: inline-flex !important;
}

._md-select-value ._md-container {
  display: inline-flex !important;
}

.SDLongText {
  font-size: 11px !important;
}

.SDLongText.SDAttachmentHelp {
  margin-bottom: 5px;
}

.SDFormFileAttachment {
  padding: 5px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.SDGridListItem md-radio-button {
  margin-top: 16px;
}

.SDGuidanceList {
  list-style-type: none;
  padding-left: 20px;
  -webkit-padding-start: 20px;
}

.SDGuidanceList li md-icon {
  color: #e61219 !important;
  font-size: 14px;
  line-height: 22px;
}

.SDGuidanceList li.is-true md-icon {
  color: #39cc14 !important;
  font-size: 14px;
  line-height: 22px;
}
.SDGuidanceList li i {
  font-size: 14px;
  line-height: 22px;
  width: 24px;
  vertical-align: top;
}
.SDGuidanceList li.line-height {
  line-height: 22px;
}
.SDStepper .SDButtonHeader {
  text-transform: none !important; /* Avoid the Uppercase from Angular Material */
}

md-toolbar.SDStepper--TopBar {
}

md-toolbar.SDStepper--BottomNav {
  height: 72px;
  padding: 24px;
}

.SDStepper--Button span {
  padding: 5px;
  text-transform: none !important;
}

.SDStepper--Button md-icon {
  font-weight: bold;
  font-size: 28px;
}

.SDStepperSteps {
  background: linear-gradient(to right, #474b5e, #3a3d4d) !important;
  color: white !important;
  max-height: 48px !important;
  height: 48px !important;
}

.SDStepperSteps .md-button[disabled] {
  color: rgba(255, 255, 255, 0.5) !important;
}

.SDStepsProgress md-icon {
  font-size: 12px;
}

.SDStepsProgress md-icon.is-selected {
  font-size: 18px;
  line-height: 12px;
  margin-right: 6px;
  color: rgba(0, 65, 122, 1) !important;
}

.SDStepper--StepNav:last-child {
  padding-right: 16px;
}

.SDStepper--StepNav:first-child .SDStepper-bar-left,
.SDStepper--StepNav:last-child .SDStepper-bar-left,
.SDStepper--StepNav:last-child .SDStepper-bar-right {
  display: none;
}

.SDStepper--StepNav .SDStepper-bar-left,
.SDStepper--StepNav .SDStepper-bar-right {
  height: 1px;
  border-top: 1px solid #bdbdbd;
}

.SDApprovalChainBlock .SDApprovalChainBlock-border {
  border-right: 2px solid rgb(237, 237, 237);
  bottom: 28px;
  content: ' ';
  display: block;
  position: absolute;
  left: 24px;
  top: 0px;
  width: 0;
  height: 100%;
}

.SDApprovalChainBlock-border.ng-scope.FirstItem {
  top: 15px;
}

.SDApprovalChainBlock-border.ng-scope.LastItem {
  top: -55px;
}

.SDApprovalChainBlock span {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(234, 129, 23);
  border-radius: 50%;
  color: rgb(234, 129, 23);
  display: block;
  -webkit-font-feature-settings: 'tnum';
  font-feature-settings: 'tnum';
  font-size: 11px;
  font-weight: 700;
  height: 18px;
  line-height: 16px;
  text-align: center;
  width: 18px;
  z-index: 2;
}

.SDApprovalStageApproved {
  color: #4caf50 !important;
  border-color: #4caf50 !important;
}

.SDApprovalStageDisabled {
  background-color: #867f7547;
}

.SDAttachment {
  margin-top: 0;
  margin-left: 10px;
}

.SDAttachment md-icon {
  margin-right: 15px;
}

.SDAttachment md-icon {
  margin-right: 15px;
}

.SDAttachment .SDAttachment-Title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 2.6em;
  color: rgba(0, 0, 0, 0.54);
  text-transform: capitalize;
}

.SDAttachment .SDAttachment-Type {
  font-size: 12px;
  line-height: 12px;
  padding-bottom: 6px;
  text-transform: none;
}

.ActivityLog {
  margin: 0;
  padding-left: 24px;
  padding-top: 15px;
}

.ActivityLog
  > div:last-child
  .ActivityLog-item:last-child
  .ActivityLog-content::before {
  display: none;
}

.ActivityLog-item {
  padding-left: 24px;
}

@media screen and (max-width: 600px) {
  .ActivityLog-item {
    padding-left: 0;
  }

  label + .MuiInput-formControl {
    margin-top: 35px !important;
  }

  .MuiSelect-select.MuiSelect-select {
    padding-right: 0px !important;
  }
}

.ActivityLog-item--header {
  margin-left: -30px;
}

.ActivityLog-item--header .ActivityLog-content {
  padding-left: 0;
}

.ActivityLog-item--header .ActivityLog-content::before {
  border-right: 1px solid rgb(237, 237, 237);
  content: '';
  height: 110%;
  left: 8px;
  position: absolute;
  top: 20px;
  width: 1px;
}

.ActivityLog-version {
  width: 48px;
}

.ActivityLog-version md-icon {
  font-size: 36px;
  line-height: 24px;
}

.ActivityLog-content {
  padding-left: 18px;
  padding-bottom: 15px;
  font-size: 14px;
  height: 100%;
  position: relative;
}

@media screen and (max-width: 600px) {
  .ActivityLog-content {
    padding-left: 2px;
  }
}

.ActivityLog-content_padding {
  padding-left: 18px;
}

.ActivityLog-content md-icon {
  font-size: 20px;
  z-index: 2;
}

.ActivityLog-content::before {
  border-right: 1px solid rgb(237, 237, 237);
  content: '';
  height: 100%;
  left: 26px;
  position: absolute;
  top: 20px;
  width: 1px;
}

@media screen and (max-width: 600px) {
  .ActivityLog-content::before {
    border-right: none;
  }
}

.ActivityLog-detailText {
  padding-left: 10px;
}

.ActivityLog-detailQuote,
.ActivityLog-detailTime {
  font-style: italic;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}

.ActivityLog-title {
  font-size: 15px;
  padding-bottom: 5px;
}

.SDIconClick {
  cursor: pointer;
}

.SDMappingFields {
  width: 200px;
  overflow-x: hidden;
}

.SDMappingPages {
  width: 110px;
  overflow-x: hidden;
}

.SDMappingDocPage {
  width: 80px;
  height: 120px;
  margin: 5px;
  background: white;
  box-shadow: 5px 5px 3px #888888;
  display: flex;
  justify-content: center;
  align-items: center;
}

.SDMappingDocSelectedPage {
  border: 4px ridge rgba(234, 129, 23, 0.7);
}

.SDMappingDocPage img {
  position: absolute;
  width: 80px;
  height: 120px;
}

.SDMappingDocumentOuter {
  border: 1px solid #dedede;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  margin: 0 5px 0 5px;
  /* Used when mapping landscape documents */
  overflow-y: scroll;
}

.SDMappingDocumentInner {
  position: relative;
}

.SDMappingDragableField .InputTag-inner {
  padding: 3px 0;
  background-color: rgba(234, 129, 23, 0.1);
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
}

.SDMappingDragableField.is-selected .InputTag-inner {
  background-color: rgba(234, 129, 23, 0.7);
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
}

.SDMappingDragableField .InputTag-inner p {
  white-space: nowrap;
  margin: auto 0;
  letter-spacing: 0.08rem;
  font-weight: 500;
}

.SDMappingDragableField.is-dragging .InputTag-inner {
  opacity: 0.7;
  background-color: rgba(234, 129, 23, 0.7);
  cursor: pointer;
}

.SDMappingDragableField .InputTag-highlighted {
  border: 3px ridge rgba(234, 129, 23) !important;
  background-color: rgba(234, 129, 23) !important;
  opacity: 1 !important;
}

.SDMappingDragableField .InputTag-dragHandle {
  bottom: 0;
  position: absolute;
  right: 0px;
}

.SDMappingDragableField.is-selected .InputTag-dragHandle {
  bottom: 0;
  position: absolute;
  right: 24px;
}

.SDMappingFieldInfo {
  position: fixed;
  right: 0;
  bottom: 0;
}

.SDMappingFieldInfo.ng-enter {
  transition: 0.2s linear all;
  transform: translateY(100%);
}

.SDMappingFieldInfo.ng-enter.ng-enter-active {
  transform: translateY(0);
}

.SDMappingFieldInfo.ng-leave {
  transition: 0.2s linear all;
  transform: translateY(0);
}

.SDMappingFieldInfo.ng-leave.ng-leave-active {
  transform: translateY(100%);
}

.SDSignatureTabs .md-tab {
  padding: 0;
}

.SDSignatureTabs .md-tab p {
  padding: 12px 24px;
  margin: 0;
}

.Sign-inner {
}

.Sign-inner canvas {
  box-shadow: 3px 3px 5px 2px rgba(0, 0, 0, 0.5);
  margin: 15px 0;
}

.SDToolbar {
  background: url(7c64aa692fe468ada37be93b3c07306e.png) no-repeat !important;
  color: white;
}

.SDToolbarIcon {
  font-size: 45px;
  line-height: 25px;
  padding-right: 45px;
  cursor: pointer;
}

md-toolbar:not(.md-warn) {
  height: 56px !important;
  max-height: 56px !important;
  min-height: 56px !important;
  background: linear-gradient(to right, #474b5e, #3a3d4d);
  color: white !important;
}

.md-toolbar-tools {
  height: 56px !important;
  max-height: 56px !important;
  min-height: 56px !important;
}

md-toolbar.md-tall {
  height: 104px !important;
  max-height: 104px !important;
  min-height: 104px !important;
}

md-toolbar md-icon {
  color: white !important;
  fill: white !important;
}

md-toolbar .md-button[disabled] {
  color: rgba(255, 255, 255, 0.5) !important;
}

md-toolbar .md-button[disabled] md-icon {
  opacity: 50% !important;
}

md-nav-bar .md-nav-bar {
  background-color: #777c8b;
  border-color: #777c8b;
}

md-nav-bar .md-button.md-accent {
  color: white;
}

md-nav-bar .md-button._md-nav-button.md-unselected {
  color: rgba(255, 255, 255, 0.7);
}

md-nav-bar md-nav-ink-bar {
  background: white;
  bottom: -1px;
  color: white;
}

/* md-tabs overrides
  ========================================================================== */

md-tabs md-tabs-wrapper {
  background-color: #777c8b;
  border-color: #777c8b;
}

md-tabs-wrapper {
  background: linear-gradient(to right, #474b5e, #3a3d4d) !important;
}

md-tabs .md-tab {
  color: rgba(255, 255, 255, 0.7);
}

md-tabs .md-tab.md-active {
  color: white;
}

md-tabs md-ink-bar {
  background: white;
  bottom: -1px;
  color: white;
}

md-tabs.Tabs--no-background md-tabs-wrapper {
  background: none !important;
}

md-tabs.Tabs--no-background .md-tab {
  color: rgba(0, 0, 0, 0.3);
}

md-tabs.Tabs--no-background .md-tab.md-active {
  color: rgba(0, 0, 0, 0.7);
}

md-tabs.Tabs--no-background md-ink-bar {
  background: rgba(0, 0, 0, 0.7);
  bottom: -1px;
  color: rgba(0, 0, 0, 0.7);
}

md-tabs.SDSignatureTabs md-tabs-wrapper {
  background: none !important;
  background-color: rgba(119, 124, 139, 0.25) !important;
}

md-tabs.SDSignatureTabs .md-tab {
  color: black;
}

md-tabs.SDSignatureTabs .md-tab.md-active {
  color: black;
  font-weight: bold;
}

md-tabs.SDSignatureTabs md-ink-bar {
  background: rgb(66, 70, 88);
  bottom: -1px;
  color: #6b6b6b;
}

md-tabs md-icon {
  color: white;
}

/* md-select overrides using custom class .payslips-select
  ========================================================================== */
.payslips-select ._md-select-value {
  border-bottom-color: rgba(255, 255, 255, 0.7);
  color: white;
}

md-select.payslips-select:not([disabled]):focus ._md-select-value {
  border-bottom-color: #777c8b !important;
  color: white !important;
}

/* md-subheader overrides
  ========================================================================== */
._md-subheader-inner {
  line-height: 48px;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.md-subheader {
  font-size: 16px !important;
  font-weight: 400 !important;
}

.SDBottomList .md-subheader ._md-subheader-inner {
  padding: 0;
}

.SDBottomList .md-inline-list-icon-label {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: -10px;
  height: 24px;
  vertical-align: middle;
}

.md-button.md-raised {
  color: white;
  background-color: rgb(28, 155, 202);
}

.md-button.md-raised:not([disabled]):hover {
  background-color: rgba(28, 155, 202, 0.7);
}

.md-button.md-raised:not([disabled]).md-focused {
  background-color: rgba(28, 155, 202, 0.7);
}

.md-button.md-primary {
  color: rgb(28, 155, 202);
}

.md-button.outlinedBtn {
  border: 1px solid rgb(28, 155, 202);
}

.md-button.outlinedBtn:hover {
  border: 1px solid rgb(28, 155, 202);
  background-color: rgba(28, 155, 202, 0.04);
}

.hint {
  /* Position the hint */
  position: absolute;
  left: 2px;
  right: auto;
  bottom: 7px;
  /* Copy styles from ng-messages */
  font-size: 12px;
  line-height: 14px;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
  /* Set our own color */
  color: grey;
}

:-ms-fullscreen,
:root {
  [class*='flex'] {
    flex-basis: auto;
  }
}

.SDBoxCode {
  background-color: lightgrey;
  border: 1px solid rgb(28, 155, 202); /* 1 */
  border-radius: 5px;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.04),
    inset 0 0 3px 0 rgba(0, 0, 0, 0.06);

  display: block;
  flex: 0 0 auto;
  font-size: 35px;
  line-height: 35px;
  margin: 1px 3px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  width: 60px;
  outline: none;
}

.RevertFontfamily {
  font-family: revert;
}

.width-300 {
  width: 300px;
}

sd-schema-form-item {
  padding: 0 !important;
}

.SDEnvelopeSummary {
  background: white;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.14) 0px 1px 1px 0px, rgba(0, 0, 0, 0.12) 0px 2px 1px -1px;
  margin: 16px;
}

.SDEnvelopeSummaryItemValue {
  min-height: 1.2em;
}

.SDEnvelopeSummaryHeader {
  background-color: rgb(250, 250, 250);
}

.SDEnvelopeSummaryHeader > md-list-item > .SDIconRound {
  margin-right: 14px !important;
}

md-list-item {
  border-radius: 6px;
  overflow: hidden;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.SDFieldsetDescription {
  padding: 0 16px;
}

.SDFieldset {
  margin-bottom: 10px;
  background-color: rgba(250, 250, 250, 0.8);
}

.SDFormItemAlignment {
  align-items: center;
  max-height: 60px;
}

.md-3-line.md-whiteframe-1dp {
  margin-bottom: 10px;
  background-color: white;
}

.label-data {
  color: rgba(0, 0, 0, 0.54);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: normal !important;
  overflow-wrap: break-word;
}

.md-whiteframe-3dp {
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14),
    0 3px 3px -2px rgba(0, 0, 0, 0.12);
}

md-input-container .md-errors-spacer {
  min-height: 0;
}

.SDAction {
  padding-top: 8px;
  text-transform: none !important;
  border-width: thin;
  border-color: rgba(0, 0, 0, 0.4);
  border-style: solid;
}

.SDFilterContainer {
  min-height: 90px;
  margin: 16px 16px 16px 24px;
}

.SDTableRowHeadline {
  font-size: 16px;
  white-space: nowrap;
}

@media screen and (max-width: 960px) {
  .SDTableRowHeadline {
    white-space: normal;
  }
  md-grid-list.dashboard md-grid-tile:nth-child(1) {
    width: 100% !important;
  }
}

.SDTimeTableHeadline {
  padding-right: 8px;
  text-transform: none;
}

.SDAppTitle {
  margin-bottom: 20px;
  margin-top: 50px;
  text-align: center;
}

.SDAppDescription {
  color: rgb(150, 150, 150);
  margin-top: 15px;
  text-align: center;
}

.SDDPOAppLogo {
  background: url(ea259a5e5563d36c4065aa299506a134.svg) no-repeat;
  margin: 32px auto 0;
  min-height: 120px;
  min-width: 350px;
}

.SDCrewStartLogo {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjE1MnB4IiBoZWlnaHQ9IjE3NnB4IiB2aWV3Qm94PSIwIDAgMTUyIDE3NiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggMzkuMSAoMzE3MjApIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPgogICAgPHRpdGxlPmNyZXdzdGFydDwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPgogICAgICAgIDxyYWRpYWxHcmFkaWVudCBjeD0iMCUiIGN5PSIwJSIgZng9IjAlIiBmeT0iMCUiIHI9IjE0MS40MjEzNTYlIiBpZD0icmFkaWFsR3JhZGllbnQtMSI+CiAgICAgICAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiM5REEzQjUiIG9mZnNldD0iMCUiPjwvc3RvcD4KICAgICAgICAgICAgPHN0b3Agc3RvcC1jb2xvcj0iIzZFNzM4MSIgb2Zmc2V0PSIxMDAlIj48L3N0b3A+CiAgICAgICAgPC9yYWRpYWxHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJEZXNrdG9wIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iMi4wLVByb2R1Y3RzLVNlcnZpY2VzLURlc2t0b3AiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMzcuMDAwMDAwLCAtNzMwLjAwMDAwMCkiIGZpbGw9InVybCgjcmFkaWFsR3JhZGllbnQtMSkiPgogICAgICAgICAgICA8ZyBpZD0iY3Jld3N0YXJ0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0NS4wMDAwMDAsIDczMC4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMzUuOTYsMTI1Ljc4OCBDMjM1Ljk2LDEyNy4yMDQgMjM1LjIwOCwxMjguNTE2IDIzMy45ODgsMTI5LjIzNiBMMjI1Ljk0NCwxMzMuOTY0IEMyMjMuODMyLDEzNS4yMDQgMjIxLjEsMTM0LjI3MiAyMjAuMjI0LDEzMS45OCBDMjEyLjE3NiwxMTAuOTUyIDE5MS44NjQsOTYgMTY4LDk2IEMxNDQuMTY0LDk2IDEyMy44NzIsMTEwLjkxNiAxMTUuODA0LDEzMS45MTIgQzExNC45MjQsMTM0LjIgMTEyLjE5NiwxMzUuMTI4IDExMC4wOCwxMzMuODg4IEwxMDEuOTcyLDEyOS4xMTIgQzEwMC43NTIsMTI4LjM5MiAxMDAsMTI3LjA4IDEwMC4wMDQsMTI1LjY2NCBMMTAwLjA0NCw1MC4yMTIgQzEwMC4wNDQsNDguNzkyIDEwMC43OTYsNDcuNDggMTAyLjAxNiw0Ni43NjQgTDE2NS45OCw5LjIwNCBDMTY3LjIzMiw4LjQ3MiAxNjguNzg0LDguNDcyIDE3MC4wMzYsOS4yMDggTDIzNC4wMjgsNDYuODg0IEMyMzUuMjUyLDQ3LjYwNCAyMzYsNDguOTE2IDIzNiw1MC4zMzYgTDIzNS45NiwxMjUuNzg4IFogTTE2NCwxNDguODI4IEwxNDkuMTcyLDEzMy42NTYgTDE1NC44MjgsMTI4IEwxNjQsMTM3LjE3MiBMMTgxLjE3MiwxMjAgTDE4Ni44MjgsMTI1LjY1NiBMMTY0LDE0OC44MjggWiBNMjQwLjAxMiw0MS4wMjQgTDE3Mi4wMiwxLjA5MiBDMTcwLjc4LDAuMzY0IDE2OS4zOTYsMCAxNjguMDA4LDAgQzE2Ni42MjQsMCAxNjUuMjQsMC4zNjQgMTY0LDEuMDkyIEw5NS45OTIsNDEuMDI0IEM5My41MjQsNDIuNDc2IDkyLDQ1LjE1MiA5Miw0OC4wNDggTDkyLDEyNy45NTIgQzkyLDEzMC44NDggOTMuNTI0LDEzMy41MjQgOTUuOTkyLDEzNC45NzIgTDE2My45MjQsMTc0LjkwOCBDMTY1LjE4NCwxNzUuNjM2IDE2Ni41ODgsMTc2IDE2Ny45OTYsMTc2IEwxNjcuOTk2LDE3NiBDMTY4LjAwNCwxNzYgMTY4LjAxMiwxNzUuOTk2IDE2OC4wMjQsMTc1Ljk5NiBDMTY5LjQyLDE3NS45ODggMTcwLjgxMiwxNzUuNjMyIDE3Mi4wNjQsMTc0LjkwOCBMMjQwLjAwOCwxMzQuOTcyIEMyNDIuNDgsMTMzLjUyNCAyNDQsMTMwLjg0OCAyNDQsMTI3Ljk1MiBMMjQ0LDQ4LjA0OCBDMjQ0LDQ1LjE1MiAyNDIuNDgsNDIuNDc2IDI0MC4wMTIsNDEuMDI0IEwyNDAuMDEyLDQxLjAyNCBaIE0xNjgsNzYgQzE1OS4xOCw3NiAxNTIsNjguODIgMTUyLDYwIEMxNTIsNTEuMTc2IDE1OS4xOCw0NCAxNjgsNDQgQzE3Ni44MjQsNDQgMTg0LDUxLjE3NiAxODQsNjAgQzE4NCw2OC44MiAxNzYuODI0LDc2IDE2OCw3NiBMMTY4LDc2IFogTTE2OCwzNiBDMTU0Ljc0OCwzNiAxNDQsNDYuNzQ0IDE0NCw2MCBDMTQ0LDczLjI1MiAxNTQuNzQ4LDg0IDE2OCw4NCBDMTgxLjI1Niw4NCAxOTIsNzMuMjUyIDE5Miw2MCBDMTkyLDQ2Ljc0NCAxODEuMjU2LDM2IDE2OCwzNiBMMTY4LDM2IFoiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) no-repeat;
  background-size: contain;
  height: 62px;
  margin-top: 20px;
  width: 62px;
}

.GooglePlayBadge {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTUgNjAiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9IjMxLjgiIHkxPSIxODMuMjkiIHgyPSIxNS4wMiIgeTI9IjE2Ni41MSIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgxIDAgMCAtMSAwIDIwMikiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiMwMGEwZmYiLz48c3RvcCBvZmZzZXQ9Ii4wMSIgc3RvcC1jb2xvcj0iIzAwYTFmZiIvPjxzdG9wIG9mZnNldD0iLjI2IiBzdG9wLWNvbG9yPSIjMDBiZWZmIi8+PHN0b3Agb2Zmc2V0PSIuNTEiIHN0b3AtY29sb3I9IiMwMGQyZmYiLz48c3RvcCBvZmZzZXQ9Ii43NiIgc3RvcC1jb2xvcj0iIzAwZGZmZiIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwZTNmZiIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJiIiB4MT0iNDMuODMiIHkxPSIxNzIiIHgyPSIxOS42NCIgeTI9IjE3MiIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgxIDAgMCAtMSAwIDIwMikiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiNmZmUwMDAiLz48c3RvcCBvZmZzZXQ9Ii40MSIgc3RvcC1jb2xvcj0iI2ZmYmQwMCIvPjxzdG9wIG9mZnNldD0iLjc4IiBzdG9wLWNvbG9yPSJvcmFuZ2UiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNmZjljMDAiLz48L2xpbmVhckdyYWRpZW50PjxsaW5lYXJHcmFkaWVudCBpZD0iYyIgeDE9IjM0LjgzIiB5MT0iMTY5LjciIHgyPSIxMi4wNyIgeTI9IjE0Ni45NSIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgxIDAgMCAtMSAwIDIwMikiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiNmZjNhNDQiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNjMzExNjIiLz48L2xpbmVhckdyYWRpZW50PjxsaW5lYXJHcmFkaWVudCBpZD0iZCIgeDE9IjE3LjMiIHkxPSIxOTEuODIiIHgyPSIyNy40NiIgeTI9IjE4MS42NiIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgxIDAgMCAtMSAwIDIwMikiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiMzMmEwNzEiLz48c3RvcCBvZmZzZXQ9Ii4wNyIgc3RvcC1jb2xvcj0iIzJkYTc3MSIvPjxzdG9wIG9mZnNldD0iLjQ4IiBzdG9wLWNvbG9yPSIjMTVjZjc0Ii8+PHN0b3Agb2Zmc2V0PSIuOCIgc3RvcC1jb2xvcj0iIzA2ZTc3NSIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwZjA3NiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjx0aXRsZT5maWxfZ2V0PC90aXRsZT48cGF0aCBmaWxsPSJub25lIiBkPSJNMCAwaDE1NXY2MEgweiIvPjxyZWN0IHg9IjEwIiB5PSIxMCIgd2lkdGg9IjEzNSIgaGVpZ2h0PSI0MCIgcng9IjUiIHJ5PSI1Ii8+PHBhdGggZD0iTTE0MCAxMC44YTQuMiA0LjIgMCAwIDEgNC4yIDQuMnYzMGE0LjIgNC4yIDAgMCAxLTQuMiA0LjJIMTVhNC4yIDQuMiAwIDAgMS00LjItNC4yVjE1YTQuMiA0LjIgMCAwIDEgNC4yLTQuMmgxMjVtMC0uOEgxNWE1IDUgMCAwIDAtNSA1djMwYTUgNSAwIDAgMCA1IDVoMTI1YTUgNSAwIDAgMCA1LTVWMTVhNSA1IDAgMCAwLTUtNXoiIGZpbGw9IiNhNmE2YTYiLz48cGF0aCBkPSJNNTcuNDIgMjAuMjRhMi43MSAyLjcxIDAgMCAxLS43NSAyIDIuOTEgMi45MSAwIDAgMS0yLjIuODkgMy4xNSAzLjE1IDAgMCAxLTIuMjEtNS4zNyAzIDMgMCAwIDEgMi4yMS0uOSAzLjEgMy4xIDAgMCAxIDEuMjMuMjUgMi40NyAyLjQ3IDAgMCAxIC45NC42N2wtLjUzLjUzYTIgMiAwIDAgMC0xLjY0LS43MSAyLjMyIDIuMzIgMCAwIDAtMi4zMyAyLjQgMi4zNiAyLjM2IDAgMCAwIDQgMS43MyAxLjg5IDEuODkgMCAwIDAgLjUtMS4yMmgtMi4xN3YtLjcyaDIuOTFhMi41NCAyLjU0IDAgMCAxIC4wNC40NXpNNjIgMTcuNzRoLTIuN3YxLjloMi40NnYuNzJINTkuM3YxLjlINjJWMjNoLTMuNXYtNkg2MnpNNjUuMjggMjNoLS43N3YtNS4yNmgtMS42OFYxN0g2N3YuNzRoLTEuNzJ6TTY5Ljk0IDIzdi02aC43N3Y2ek03NC4xMyAyM2gtLjc3di01LjI2aC0xLjY4VjE3aDQuMTJ2Ljc0aC0xLjY3ek04My42MSAyMi4yMmEzLjEyIDMuMTIgMCAwIDEtNC40IDAgMy4yNCAzLjI0IDAgMCAxIDAtNC40NSAzLjEgMy4xIDAgMCAxIDQuNCAwIDMuMjMgMy4yMyAwIDAgMSAwIDQuNDV6bS0zLjgzLS41YTIuMzEgMi4zMSAwIDAgMCAzLjI2IDAgMi41NiAyLjU2IDAgMCAwIDAtMy40NCAyLjMxIDIuMzEgMCAwIDAtMy4yNiAwIDIuNTYgMi41NiAwIDAgMCAwIDMuNDR6TTg1LjU4IDIzdi02aC45NGwyLjkyIDQuNjdWMTdoLjc3djZoLS44bC0zLjA1LTQuODlWMjN6IiBmaWxsPSIjZmZmIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSIuMiIvPjxwYXRoIGQ9Ik03OC4xNCAzMS43NUE0LjI1IDQuMjUgMCAxIDAgODIuNDEgMzZhNC4xOSA0LjE5IDAgMCAwLTQuMjctNC4yNXptMCA2LjgzYTIuNTggMi41OCAwIDEgMSAyLjQtMi41OCAyLjQ2IDIuNDYgMCAwIDEtMi40IDIuNTh6bS05LjMxLTYuODNBNC4yNSA0LjI1IDAgMSAwIDczLjA5IDM2YTQuMTkgNC4xOSAwIDAgMC00LjI3LTQuMjV6bTAgNi44M0EyLjU4IDIuNTggMCAxIDEgNzEuMjIgMzZhMi40NiAyLjQ2IDAgMCAxLTIuNCAyLjU4em0tMTEuMDktNS41MnYxLjhoNC4zMmEzLjc3IDMuNzcgMCAwIDEtMSAyLjI3IDQuNDIgNC40MiAwIDAgMS0zLjMzIDEuMzIgNC44IDQuOCAwIDAgMSAwLTkuNkE0LjYgNC42IDAgMCAxIDYxIDMwLjE0bDEuMjctMS4yN0E2LjI5IDYuMjkgMCAwIDAgNTcuNzQgMjdhNi42MSA2LjYxIDAgMSAwIDAgMTMuMjEgNiA2IDAgMCAwIDQuNjEtMS44NSA2IDYgMCAwIDAgMS41Ni00LjIyIDUuODcgNS44NyAwIDAgMC0uMS0xLjEzem00NS4zMSAxLjRhNCA0IDAgMCAwLTMuNjQtMi43MSA0IDQgMCAwIDAtNCA0LjI1IDQuMTYgNC4xNiAwIDAgMCA0LjIyIDQuMjUgNC4yMyA0LjIzIDAgMCAwIDMuNTQtMS44OGwtMS40NS0xYTIuNDMgMi40MyAwIDAgMS0yLjA5IDEuMTggMi4xNiAyLjE2IDAgMCAxLTIuMDYtMS4yOWw1LjY5LTIuMzV6bS01LjggMS40MmEyLjMzIDIuMzMgMCAwIDEgMi4yMi0yLjQ4IDEuNjUgMS42NSAwIDAgMSAxLjU4Ljl6TTkyLjYzIDQwaDEuODdWMjcuNWgtMS44N3ptLTMuMDYtNy4zaC0uMDdhMyAzIDAgMCAwLTIuMjQtMSA0LjI2IDQuMjYgMCAwIDAgMCA4LjUxIDIuOSAyLjkgMCAwIDAgMi4yNC0xaC4wNnYuNjFjMCAxLjYzLS44NyAyLjUtMi4yNyAyLjVhMi4zNSAyLjM1IDAgMCAxLTIuMTQtMS41MWwtMS42My42OEE0LjA1IDQuMDUgMCAwIDAgODcuMjkgNDRjMi4xOSAwIDQtMS4yOSA0LTQuNDNWMzJoLTEuNzJ6bS0yLjE0IDUuODhhMi41OSAyLjU5IDAgMCAxIDAtNS4xNkEyLjQgMi40IDAgMCAxIDg5LjcgMzZhMi4zOCAyLjM4IDAgMCAxLTIuMjggMi41OHptMjQuMzgtMTEuMDhoLTQuNDdWNDBoMS44N3YtNC43NGgyLjYxYTMuODkgMy44OSAwIDEgMCAwLTcuNzZ6bTAgNmgtMi42MXYtNC4yNmgyLjY1YTIuMTQgMi4xNCAwIDEgMSAwIDQuMjl6bTExLjUzLTEuOGEzLjUgMy41IDAgMCAwLTMuMzMgMS45MWwxLjY2LjY5YTEuNzcgMS43NyAwIDAgMSAxLjctLjkyIDEuOCAxLjggMCAwIDEgMiAxLjYxdi4xM2E0LjEzIDQuMTMgMCAwIDAtMS45NS0uNDhjLTEuNzkgMC0zLjYgMS0zLjYgMi44MWEyLjg5IDIuODkgMCAwIDAgMy4xIDIuNzUgMi42MyAyLjYzIDAgMCAwIDIuNC0xLjJoLjA2djFoMS44di00LjgxYzAtMi4xOS0xLjY2LTMuNDYtMy43OS0zLjQ2em0tLjIzIDYuODVjLS42MSAwLTEuNDYtLjMxLTEuNDYtMS4wNiAwLTEgMS4wNi0xLjMzIDItMS4zM2EzLjMyIDMuMzIgMCAwIDEgMS43LjQyIDIuMjYgMi4yNiAwIDAgMS0yLjE5IDJ6TTEzMy43NCAzMmwtMi4xNCA1LjQyaC0uMDZMMTI5LjMyIDMyaC0ybDMuMzMgNy41OC0xLjkgNC4yMWgxLjk1TDEzNS44MiAzMnptLTE2LjgxIDhoMS44N1YyNy41aC0xLjg3eiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMC40NCAxNy41NGEyIDIgMCAwIDAtLjQ2IDEuNHYyMi4xMmEyIDIgMCAwIDAgLjQ2IDEuNGwuMDcuMDdMMzIuOSAzMC4xNXYtLjI5TDIwLjUxIDE3LjQ3eiIgZmlsbD0idXJsKCNhKSIvPjxwYXRoIGQ9Ik0zNyAzNC4yOGwtNC4xLTQuMTN2LS4yOWw0LjEtNC4xNC4wOS4wNUw0MiAyOC41NmMxLjQuNzkgMS40IDIuMDkgMCAyLjg5bC00Ljg5IDIuNzh6IiBmaWxsPSJ1cmwoI2IpIi8+PHBhdGggZD0iTTM3LjEyIDM0LjIyTDMyLjkgMzAgMjAuNDQgNDIuNDZhMS42MyAxLjYzIDAgMCAwIDIuMDguMDZsMTQuNjEtOC4zIiBmaWxsPSJ1cmwoI2MpIi8+PHBhdGggZD0iTTM3LjEyIDI1Ljc4bC0xNC42MS04LjNhMS42MyAxLjYzIDAgMCAwLTIuMDguMDZMMzIuOSAzMHoiIGZpbGw9InVybCgjZCkiLz48cGF0aCBkPSJNMzcgMzQuMTNsLTE0LjQ5IDguMjVhMS42NyAxLjY3IDAgMCAxLTIgMGwtLjA3LjA3LjA3LjA3YTEuNjYgMS42NiAwIDAgMCAyIDBsMTQuNjEtOC4zeiIgc3R5bGU9Imlzb2xhdGlvbjppc29sYXRlIiBvcGFjaXR5PSIuMiIvPjxwYXRoIGQ9Ik0yMC40NCA0Mi4zMmEyIDIgMCAwIDEtLjQ2LTEuNHYuMTVhMiAyIDAgMCAwIC40NiAxLjRsLjA3LS4wN3pNNDIgMzEuM2wtNSAyLjgzLjA5LjA5TDQyIDMxLjQ0QTEuNzUgMS43NSAwIDAgMCA0MyAzMGExLjg2IDEuODYgMCAwIDEtMSAxLjN6IiBzdHlsZT0iaXNvbGF0aW9uOmlzb2xhdGUiIG9wYWNpdHk9Ii4xMiIvPjxwYXRoIGQ9Ik0yMi41MSAxNy42Mkw0MiAyOC43YTEuODYgMS44NiAwIDAgMSAxIDEuMyAxLjc1IDEuNzUgMCAwIDAtMS0xLjQ0TDIyLjUxIDE3LjQ4Yy0xLjQtLjc5LTIuNTQtLjEzLTIuNTQgMS40N3YuMTVjLjAzLTEuNjEgMS4xNS0yLjI3IDIuNTQtMS40OHoiIHN0eWxlPSJpc29sYXRpb246aXNvbGF0ZSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iLjI1Ii8+PC9zdmc+) no-repeat center;
  background-size: contain;
  height: 60px;
  width: 150px;
}

.AppStoreBadge {
  background-size: contain;
  background: url(2928664fe1fc6aca88583a6f606d60ba.svg) no-repeat center;
  height: 60px;
  width: 150px;
}

.AuthenticatorTitle {
  margin: 20px 0 0;
}

.SDErrorCard {
  border: 1px solid rgb(213, 0, 0);
  background-color: rgba(213, 0, 0, 0.1);
}

.TextAlignCenter {
  text-align: center;
}

.dPOFooter {
  margin-top: 20px;
  text-align: center;
}

.SDSignFooter {
  margin-top: 40px;
  margin-bottom: 25px;
}

.SDSignFooter md-divider {
  margin-bottom: 25px;
}

.defaultLink {
  color: black;
}

.SDAppLogo {
  background: url(9a51684c1fb1ecb6113f9660e94ba3c1.svg) no-repeat;
  height: 62px;
  margin: 32px auto 16px;
  width: 98px;
}

md-tooltip ._md-content {
  height: auto;
  max-width: 100%;
}

md-tooltip .md-content {
  height: auto;
  max-width: 100%;
}

@media screen and (min-width: 960px) {
  md-tooltip .md-content {
    font-size: 14px;
  }
}

.SDTextButton {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 28px;
  color: rgb(28, 155, 202);
}

/* Payroll integration */

.payroll-button {
  width: auto !important;
}

.SDIcon-Payroll-Success {
  background-color: rgb(15, 96, 120) !important;
}

.SDIcon-Payroll-Default {
  background-color: rgb(145, 145, 145) !important;
}

.SDAppSwitcher {
  color: rgba(0, 0, 0, 0.87) !important;
  text-decoration: none !important;
}

.SDLogoTitle {
  color: rgba(0, 0, 0, 0.87) !important;
  text-decoration: none !important;
  text-align: center;
}

.SDAppLogo {
  background-size: 100%;
  background-repeat: no-repeat;
  min-height: 130px;
  margin: 24px auto 0;
  width: 98px;
}

.linkDisabled {
  filter: opacity(0.6) grayscale(100%);
}

.SDErrorCard {
  border: 1px solid rgb(213, 0, 0);
  background-color: rgba(213, 0, 0, 0.1);
}

.TextAlignCenter {
  text-align: center;
}

.SDSignFooter {
  margin-top: 40px;
  margin-bottom: 25px;
}

.SDSignFooter md-divider {
  margin-bottom: 25px;
}

.menuFooter {
  margin-bottom: 10px;
}

.menuFooter .devInfo {
  margin-top: 1rem;
  padding: 2px 4px;
  background: #e9e9e9;
  border-radius: 3px;
  max-width: 80%;
}

.menuFooter .devInfo__highlight {
  font-family: monospace;
  font-weight: 600;
}

.menuList {
  min-height: 340px !important;
}

.logoCrewStart {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjE1MnB4IiBoZWlnaHQ9IjE3NnB4IiB2aWV3Qm94PSIwIDAgMTUyIDE3NiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggMzkuMSAoMzE3MjApIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPgogICAgPHRpdGxlPmNyZXdzdGFydDwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPgogICAgICAgIDxyYWRpYWxHcmFkaWVudCBjeD0iMCUiIGN5PSIwJSIgZng9IjAlIiBmeT0iMCUiIHI9IjE0MS40MjEzNTYlIiBpZD0icmFkaWFsR3JhZGllbnQtMSI+CiAgICAgICAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiM5REEzQjUiIG9mZnNldD0iMCUiPjwvc3RvcD4KICAgICAgICAgICAgPHN0b3Agc3RvcC1jb2xvcj0iIzZFNzM4MSIgb2Zmc2V0PSIxMDAlIj48L3N0b3A+CiAgICAgICAgPC9yYWRpYWxHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJEZXNrdG9wIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iMi4wLVByb2R1Y3RzLVNlcnZpY2VzLURlc2t0b3AiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMzcuMDAwMDAwLCAtNzMwLjAwMDAwMCkiIGZpbGw9InVybCgjcmFkaWFsR3JhZGllbnQtMSkiPgogICAgICAgICAgICA8ZyBpZD0iY3Jld3N0YXJ0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0NS4wMDAwMDAsIDczMC4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMzUuOTYsMTI1Ljc4OCBDMjM1Ljk2LDEyNy4yMDQgMjM1LjIwOCwxMjguNTE2IDIzMy45ODgsMTI5LjIzNiBMMjI1Ljk0NCwxMzMuOTY0IEMyMjMuODMyLDEzNS4yMDQgMjIxLjEsMTM0LjI3MiAyMjAuMjI0LDEzMS45OCBDMjEyLjE3NiwxMTAuOTUyIDE5MS44NjQsOTYgMTY4LDk2IEMxNDQuMTY0LDk2IDEyMy44NzIsMTEwLjkxNiAxMTUuODA0LDEzMS45MTIgQzExNC45MjQsMTM0LjIgMTEyLjE5NiwxMzUuMTI4IDExMC4wOCwxMzMuODg4IEwxMDEuOTcyLDEyOS4xMTIgQzEwMC43NTIsMTI4LjM5MiAxMDAsMTI3LjA4IDEwMC4wMDQsMTI1LjY2NCBMMTAwLjA0NCw1MC4yMTIgQzEwMC4wNDQsNDguNzkyIDEwMC43OTYsNDcuNDggMTAyLjAxNiw0Ni43NjQgTDE2NS45OCw5LjIwNCBDMTY3LjIzMiw4LjQ3MiAxNjguNzg0LDguNDcyIDE3MC4wMzYsOS4yMDggTDIzNC4wMjgsNDYuODg0IEMyMzUuMjUyLDQ3LjYwNCAyMzYsNDguOTE2IDIzNiw1MC4zMzYgTDIzNS45NiwxMjUuNzg4IFogTTE2NCwxNDguODI4IEwxNDkuMTcyLDEzMy42NTYgTDE1NC44MjgsMTI4IEwxNjQsMTM3LjE3MiBMMTgxLjE3MiwxMjAgTDE4Ni44MjgsMTI1LjY1NiBMMTY0LDE0OC44MjggWiBNMjQwLjAxMiw0MS4wMjQgTDE3Mi4wMiwxLjA5MiBDMTcwLjc4LDAuMzY0IDE2OS4zOTYsMCAxNjguMDA4LDAgQzE2Ni42MjQsMCAxNjUuMjQsMC4zNjQgMTY0LDEuMDkyIEw5NS45OTIsNDEuMDI0IEM5My41MjQsNDIuNDc2IDkyLDQ1LjE1MiA5Miw0OC4wNDggTDkyLDEyNy45NTIgQzkyLDEzMC44NDggOTMuNTI0LDEzMy41MjQgOTUuOTkyLDEzNC45NzIgTDE2My45MjQsMTc0LjkwOCBDMTY1LjE4NCwxNzUuNjM2IDE2Ni41ODgsMTc2IDE2Ny45OTYsMTc2IEwxNjcuOTk2LDE3NiBDMTY4LjAwNCwxNzYgMTY4LjAxMiwxNzUuOTk2IDE2OC4wMjQsMTc1Ljk5NiBDMTY5LjQyLDE3NS45ODggMTcwLjgxMiwxNzUuNjMyIDE3Mi4wNjQsMTc0LjkwOCBMMjQwLjAwOCwxMzQuOTcyIEMyNDIuNDgsMTMzLjUyNCAyNDQsMTMwLjg0OCAyNDQsMTI3Ljk1MiBMMjQ0LDQ4LjA0OCBDMjQ0LDQ1LjE1MiAyNDIuNDgsNDIuNDc2IDI0MC4wMTIsNDEuMDI0IEwyNDAuMDEyLDQxLjAyNCBaIE0xNjgsNzYgQzE1OS4xOCw3NiAxNTIsNjguODIgMTUyLDYwIEMxNTIsNTEuMTc2IDE1OS4xOCw0NCAxNjgsNDQgQzE3Ni44MjQsNDQgMTg0LDUxLjE3NiAxODQsNjAgQzE4NCw2OC44MiAxNzYuODI0LDc2IDE2OCw3NiBMMTY4LDc2IFogTTE2OCwzNiBDMTU0Ljc0OCwzNiAxNDQsNDYuNzQ0IDE0NCw2MCBDMTQ0LDczLjI1MiAxNTQuNzQ4LDg0IDE2OCw4NCBDMTgxLjI1Niw4NCAxOTIsNzMuMjUyIDE5Miw2MCBDMTkyLDQ2Ljc0NCAxODEuMjU2LDM2IDE2OCwzNiBMMTY4LDM2IFoiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+);
}

.logoPayroll {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjE1MnB4IiBoZWlnaHQ9IjE3NnB4IiB2aWV3Qm94PSIwIDAgMTUyIDE3NiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggMzkuMSAoMzE3MjApIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPgogICAgPHRpdGxlPmljb25fYXBwX3BheXJvbGw8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZGVmcz4KICAgICAgICA8cmFkaWFsR3JhZGllbnQgY3g9IjAlIiBjeT0iMCUiIGZ4PSIwJSIgZnk9IjAlIiByPSIxNDEuNDIxMzU2JSIgaWQ9InJhZGlhbEdyYWRpZW50LTEiPgogICAgICAgICAgICA8c3RvcCBzdG9wLWNvbG9yPSIjMjNCMkREIiBvZmZzZXQ9IjAlIj48L3N0b3A+CiAgICAgICAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiMxOUEyQ0IiIG9mZnNldD0iMTAwJSI+PC9zdG9wPgogICAgICAgIDwvcmFkaWFsR3JhZGllbnQ+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iRGVza3RvcCIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IjIuMC1Qcm9kdWN0cy1TZXJ2aWNlcy1EZXNrdG9wIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtOTg5LjAwMDAwMCwgLTczMC4wMDAwMDApIiBmaWxsPSJ1cmwoI3JhZGlhbEdyYWRpZW50LTEpIj4KICAgICAgICAgICAgPGcgaWQ9InBheXJvbGwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDg5OC4wMDAwMDAsIDczMC4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xOTcuMTg4LDEwMS4yNDQgQzE5Ny4xODgsMTAxLjI0NCAxODguMzE2LDEyNCAxNzUsMTI0IEwxNzEsMTI0IEMxNjQuMzcyLDEyNCAxNTksMTE4LjYyOCAxNTksMTEyIEwxNzEsMTEyIEMxNzcuNjI4LDExMiAxODMsMTA2LjYyOCAxODMsMTAwIEMxODMsOTcuNzkyIDE4MS4yMDgsOTYgMTc5LDk2IEwxMzEsOTYgTDEzMSwxMDQgTDEzMSwxMTIgTDEzMSwxMjQgQzEzMSwxMzIuODM2IDEzOC4xNjQsMTQwIDE0NywxNDAgTDE1MSwxNDAgTDE1NSwxNDAgTDE2Ny4wMTIsMTQwIEMxNzYuMTg4LDE0MCAxODYuODg0LDE0MCAxOTYuOTcyLDEyNS4wNiBMMjA4LjU4LDEwNS44MzYgQzIxMi41ODQsOTguMzUyIDIxMy40NCw5Mi4zNzYgMjA3LDkyLjM3NiBDMTk5Ljg5Niw5Mi4zNzYgMTk3LjE4OCwxMDEuMjQ0IDE5Ny4xODgsMTAxLjI0NCBaIE0yMzQuOTYsMTI1Ljc4OCBDMjM0Ljk1NiwxMjcuMjA0IDIzNC4yMDgsMTI4LjUxNiAyMzIuOTg0LDEyOS4yMzYgTDE2OS4wNjQsMTY2LjgxNiBDMTY3LjgxMiwxNjcuNTUyIDE2Ni4yNiwxNjcuNTUyIDE2NS4wMDgsMTY2LjgxNiBMMTI0Ljk3MiwxNDMuMjQ0IEMxMjMuNzQ4LDE0Mi41MjQgMTIzLDE0MS4yMTIgMTIzLDEzOS43OTYgTDEyMyw5NiBDMTIzLDkzLjc5MiAxMjEuMjA4LDkyIDExOSw5MiBMMTAzLjAyLDkyIEMxMDAuODEyLDkyIDk5LjAyLDkwLjIwOCA5OS4wMiw4Ny45OTYgTDk5LjA0LDUwLjIxMiBDOTkuMDQ0LDQ4Ljc5MiA5OS43OTIsNDcuNDg0IDEwMS4wMTYsNDYuNzY0IEwxNjQuOTgsOS4yMDggQzE2Ni4yMzIsOC40NzIgMTY3Ljc4NCw4LjQ3MiAxNjkuMDM2LDkuMjA4IEwyMzMuMDI4LDQ2Ljg4OCBDMjM0LjI0OCw0Ny42MDQgMjM1LDQ4LjkxNiAyMzUsNTAuMzM2IEwyMzQuOTYsMTI1Ljc4OCBaIE0xNzEuMDE2LDEuMDkyIEMxNjkuNzc2LDAuMzY0IDE2OC4zOTIsMCAxNjcuMDA4LDAgQzE2NS42MjQsMCAxNjQuMjQsMC4zNjQgMTYzLDEuMDkyIEw5NC45OTIsNDEuMDI0IEM5Mi41Miw0Mi40NzYgOTEsNDUuMTUyIDkxLDQ4LjA0OCBMOTEsMTI3Ljk1MiBDOTEsMTMwLjg0OCA5Mi41MiwxMzMuNTI0IDk0Ljk5MiwxMzQuOTc2IEwxNjIuOTg0LDE3NC45MDggQzE2NC4yMjQsMTc1LjYzNiAxNjUuNjA4LDE3NiAxNjYuOTkyLDE3NiBDMTY4LjM3NiwxNzYgMTY5Ljc2LDE3NS42MzYgMTcxLDE3NC45MDggTDIzOS4wMDgsMTM0Ljk3NiBDMjQxLjQ4LDEzMy41MjQgMjQzLDEzMC44NDggMjQzLDEyNy45NTIgTDI0Myw0OC4wNDggQzI0Myw0NS4xNTIgMjQxLjQ4LDQyLjQ3NiAyMzkuMDA4LDQxLjAyNCBMMTcxLjAxNiwxLjA5MiBaIE0xODIuMTU2LDQ5LjU3NiBDMTg3LjYyOCw1My42NDggMTkzLjkyLDU0LjQ1MiAxOTYuMjEyLDUxLjM3MiBMMTk3LjUwOCw0OS40MzYgQzE5OS44LDQ2LjM1NiAxOTcuMjIsNDAuNTU2IDE5MS43NDgsMzYuNDg0IEMxODYuMjc2LDMyLjQxMiAxNzkuOTg0LDMxLjYwOCAxNzcuNjkyLDM0LjY4OCBMMTc2LjM5NiwzNi42MjggQzE3NC4xMDQsMzkuNzA4IDE3Ni42ODQsNDUuNTA0IDE4Mi4xNTYsNDkuNTc2IEwxODIuMTU2LDQ5LjU3NiBaIE0xNTQuNzI0LDgzLjEwOCBDMTU3LjI5Niw4Ny42NTIgMTY1LjkyOCw4Ny42MjggMTc0LDgzLjA1NiBDMTgyLjA3Niw3OC40ODggMTg2LjUzMiw3MS4wOTYgMTgzLjk2LDY2LjU1MiBMMTgyLjI2LDYzLjg3NiBDMTc5LjY4OCw1OS4zMzIgMTcxLjA1Niw1OS4zNTYgMTYyLjk4NCw2My45MjggQzE1NC45MDgsNjguNDk2IDE1MC40NTIsNzUuODg4IDE1My4wMjQsODAuNDMyIEwxNTQuNzI0LDgzLjEwOCBaIiBpZD0iaWNvbl9hcHBfcGF5cm9sbCI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=);
}

.logoPayslip {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjE1MnB4IiBoZWlnaHQ9IjE3NnB4IiB2aWV3Qm94PSIwIDAgMTUyIDE3NiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggMzkuMSAoMzE3MjApIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPgogICAgPHRpdGxlPnBheXNsaXBzIC0gYTwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPgogICAgICAgIDxyYWRpYWxHcmFkaWVudCBjeD0iMy45NzA0NzM3OCUiIGN5PSIzLjk3MDQ3Mzc4JSIgZng9IjMuOTcwNDczNzglIiBmeT0iMy45NzA0NzM3OCUiIHI9IjEzMS42ODAwMzUlIiBpZD0icmFkaWFsR3JhZGllbnQtMSI+CiAgICAgICAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiMzM0VCQUEiIG9mZnNldD0iMCUiPjwvc3RvcD4KICAgICAgICAgICAgPHN0b3Agc3RvcC1jb2xvcj0iIzIzQzk4RSIgb2Zmc2V0PSIxMDAlIj48L3N0b3A+CiAgICAgICAgPC9yYWRpYWxHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJEZXNrdG9wIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iMi4wLVByb2R1Y3RzLVNlcnZpY2VzLURlc2t0b3AiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NjMuMDAwMDAwLCAtNzMwLjAwMDAwMCkiIGZpbGw9InVybCgjcmFkaWFsR3JhZGllbnQtMSkiPgogICAgICAgICAgICA8ZyBpZD0icGF5c2xpcCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDcxLjAwMDAwMCwgNzMwLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTIzMy45ODQsMTI5LjIzNiBMMjEyLDE0Mi4xNjQgTDIxMiw4NCBMMTc2LDQ4IEwxMzIsNDggQzEyNy41OCw0OCAxMjQsNTEuNTg0IDEyNCw1NiBMMTI0LDE0Mi4wODQgTDEwMS45NzIsMTI5LjExNiBDMTAwLjc0OCwxMjguMzk2IDEwMCwxMjcuMDg0IDEwMCwxMjUuNjY0IEwxMDAuMDQsNTAuMjEyIEMxMDAuMDQsNDguNzk2IDEwMC43OTIsNDcuNDg0IDEwMi4wMTYsNDYuNzY0IEwxNjUuOTgsOS4yMDggQzE2Ny4yMzIsOC40NzIgMTY4Ljc4NCw4LjQ3MiAxNzAuMDMyLDkuMjA4IEwyMzQuMDI4LDQ2Ljg4OCBDMjM1LjI0OCw0Ny42MDggMjM1Ljk5Niw0OC45MiAyMzUuOTk2LDUwLjMzNiBMMjM1Ljk1NiwxMjUuNzg4IEMyMzUuOTU2LDEyNy4yMDggMjM1LjIwNCwxMjguNTE2IDIzMy45ODQsMTI5LjIzNiBMMjMzLjk4NCwxMjkuMjM2IFogTTE3NiwxMzIgTDIwNCwxMzIgTDIwNCwxMjQgTDE3NiwxMjQgTDE3NiwxMzIgWiBNMTM2LDEzMiBMMTY0LDEzMiBMMTY0LDEyNCBMMTM2LDEyNCBMMTM2LDEzMiBaIE0xNzYsODQgTDE3Niw2MCBMMjAwLDg0IEwxNzYsODQgWiBNMTM2LDcwIEMxMzYsNjQuNDc2IDE0MC40NzYsNjAgMTQ2LDYwIEMxNTEuNTIsNjAgMTU2LDY0LjQ3NiAxNTYsNzAgQzE1Niw3NS41MjQgMTUxLjUyLDgwIDE0Niw4MCBDMTQwLjQ3Niw4MCAxMzYsNzUuNTI0IDEzNiw3MCBMMTM2LDcwIFogTTE3NiwxMTYgTDIwNCwxMTYgTDIwNCwxMDggTDE3NiwxMDggTDE3NiwxMTYgWiBNMTM2LDExNiBMMTY0LDExNiBMMTY0LDEwOCBMMTM2LDEwOCBMMTM2LDExNiBaIE0yNDAuMDA4LDQxLjAyNCBMMTcyLjAxNiwxLjA5MiBDMTcwLjc3NiwwLjM2NCAxNjkuMzkyLDAgMTY4LjAwOCwwIEMxNjYuNjI0LDAgMTY1LjI0LDAuMzY0IDE2NCwxLjA5MiBMOTUuOTkyLDQxLjAyNCBDOTMuNTIsNDIuNDc2IDkyLDQ1LjE1MiA5Miw0OC4wNDggTDkyLDEyNy45NTIgQzkyLDEzMC44NDggOTMuNTIsMTMzLjUyNCA5NS45ODgsMTM0Ljk3NiBMMTYzLjk4NCwxNzQuOTA4IEMxNjUuMjI0LDE3NS42MzYgMTY2LjYwOCwxNzYgMTY3Ljk5MiwxNzYgQzE2OS4zNzYsMTc2IDE3MC43NiwxNzUuNjM2IDE3MiwxNzQuOTA4IEwyNDAuMDA4LDEzNC45NzYgQzI0Mi40NzYsMTMzLjUyNCAyNDQsMTMwLjg0OCAyNDQsMTI3Ljk1MiBMMjQ0LDQ4LjA0OCBDMjQ0LDQ1LjE1MiAyNDIuNDc2LDQyLjQ3NiAyNDAuMDA4LDQxLjAyNCBMMjQwLjAwOCw0MS4wMjQgWiIgaWQ9InBheXNsaXBzLS0tYSI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=);
}

.logoPayScale {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjE1MnB4IiBoZWlnaHQ9IjE3NnB4IiB2aWV3Qm94PSIwIDAgMTUyIDE3NiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggMzkuMSAoMzE3MjApIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPgogICAgPHRpdGxlPmljb25fYXBwX3BheXNjYWxlczwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPgogICAgICAgIDxyYWRpYWxHcmFkaWVudCBjeD0iMCUiIGN5PSIwJSIgZng9IjAlIiBmeT0iMCUiIHI9IjE0MC4xMDUxMTQlIiBpZD0icmFkaWFsR3JhZGllbnQtMSI+CiAgICAgICAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiNBMzcwRjQiIG9mZnNldD0iMCUiPjwvc3RvcD4KICAgICAgICAgICAgPHN0b3Agc3RvcC1jb2xvcj0iIzdENEZDOCIgb2Zmc2V0PSIxMDAlIj48L3N0b3A+CiAgICAgICAgPC9yYWRpYWxHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJEZXNrdG9wIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iMi4wLVByb2R1Y3RzLVNlcnZpY2VzLURlc2t0b3AiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NjMuMDAwMDAwLCAtMTM1MS4wMDAwMDApIiBmaWxsPSJ1cmwoI3JhZGlhbEdyYWRpZW50LTEpIj4KICAgICAgICAgICAgPGcgaWQ9InBheXNjYWxlcyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDcxLjAwMDAwMCwgMTM1MS4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xODcuOTk2LDExMCBMMTU3Ljk5Niw4MiBMMTAwLjAwNCwxMjIgTDEwMC4wNCw1MC4yMTIgQzEwMC4wNCw0OC43OTYgMTAwLjc5Miw0Ny40ODQgMTAyLjAxNiw0Ni43NjQgTDE2NS45OCw5LjIwOCBDMTY3LjIzMiw4LjQ3MiAxNjguNzg0LDguNDcyIDE3MC4wMzIsOS4yMDggTDIzNC4wMjgsNDYuODg4IEMyMzUuMjQ4LDQ3LjYwNCAyMzYsNDguOTE2IDIzNS45OTYsNTAuMzM2IEwyMzUuOTg4LDY4LjYzNiBMMTg3Ljk5NiwxMTAgWiBNMTcyLjAxNiwxLjA5MiBDMTcwLjc3NiwwLjM2NCAxNjkuMzkyLDAgMTY4LjAwOCwwIEMxNjYuNjI0LDAgMTY1LjI0LDAuMzY0IDE2NCwxLjA5MiBMOTUuOTkyLDQxLjAyNCBDOTMuNTIsNDIuNDc2IDkyLDQ1LjE1MiA5Miw0OC4wNDggTDkyLDEyNy45NTIgQzkyLDEzMC44NDggOTMuNTIsMTMzLjUyNCA5NS45OTIsMTM0Ljk3NiBMMTYzLjk4NCwxNzQuOTA4IEMxNjUuMjI0LDE3NS42MzYgMTY2LjYwOCwxNzYgMTY3Ljk5MiwxNzYgQzE2OS4zNzYsMTc2IDE3MC43NiwxNzUuNjM2IDE3MiwxNzQuOTA4IEwyNDAuMDA4LDEzNC45NzYgQzI0Mi40NzYsMTMzLjUyNCAyNDQsMTMwLjg0OCAyNDQsMTI3Ljk1MiBMMjQ0LDQ4LjA0OCBDMjQ0LDQ1LjE1MiAyNDIuNDc2LDQyLjQ3NiAyNDAuMDA4LDQxLjAyNCBMMTcyLjAxNiwxLjA5MiBaIiBpZD0iaWNvbl9hcHBfcGF5c2NhbGVzIj48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==);
}

.logoDPO {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjE1MnB4IiBoZWlnaHQ9IjE3NnB4IiB2aWV3Qm94PSIwIDAgMTUyIDE3NiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggMzkuMSAoMzE3MjApIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPgogICAgPHRpdGxlPmljb25fYXBwX3B1cmNoYXNlX29yZGVyPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+CiAgICAgICAgPHJhZGlhbEdyYWRpZW50IGN4PSIwJSIgY3k9IjAlIiBmeD0iMCUiIGZ5PSIwJSIgcj0iMTM4LjYxNjk0MyUiIGlkPSJyYWRpYWxHcmFkaWVudC0xIj4KICAgICAgICAgICAgPHN0b3Agc3RvcC1jb2xvcj0iIzNDODdBMSIgb2Zmc2V0PSIwJSI+PC9zdG9wPgogICAgICAgICAgICA8c3RvcCBzdG9wLWNvbG9yPSIjMzQ3Qjk1IiBvZmZzZXQ9IjEwMCUiPjwvc3RvcD4KICAgICAgICA8L3JhZGlhbEdyYWRpZW50PgogICAgPC9kZWZzPgogICAgPGcgaWQ9IkRlc2t0b3AiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSIyLjAtUHJvZHVjdHMtU2VydmljZXMtRGVza3RvcCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEzNy4wMDAwMDAsIC0xMzUxLjAwMDAwMCkiIGZpbGw9InVybCgjcmFkaWFsR3JhZGllbnQtMSkiPgogICAgICAgICAgICA8ZyBpZD0icHVyY2hhc2Utb3JkZXIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ1LjAwMDAwMCwgMTM1MS4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMzUuOTYsMTI1Ljc4OCBDMjM1Ljk2LDEyNy4yMDQgMjM1LjIwOCwxMjguNTE2IDIzMy45ODgsMTI5LjIzNiBMMjEyLDE0Mi4xNiBMMjEyLDg0IEwxNzYsNDggTDEzMiw0OCBDMTI3LjU4NCw0OCAxMjQsNTEuNTggMTI0LDU2IEwxMjQsMTQyLjA4IEwxMDEuOTcyLDEyOS4xMTIgQzEwMC43NTIsMTI4LjM5MiAxMDAsMTI3LjA4IDEwMC4wMDQsMTI1LjY2NCBMMTAwLjA0NCw1MC4yMTIgQzEwMC4wNDQsNDguNzkyIDEwMC43OTYsNDcuNDggMTAyLjAxNiw0Ni43NjQgTDE2NS45OCw5LjIwNCBDMTY3LjIzMiw4LjQ3MiAxNjguNzg0LDguNDcyIDE3MC4wMzYsOS4yMDggTDIzNC4wMjgsNDYuODg0IEMyMzUuMjUyLDQ3LjYwNCAyMzYsNDguOTE2IDIzNiw1MC4zMzYgTDIzNS45NiwxMjUuNzg4IFogTTE3Niw4NCBMMTc2LDYwIEwyMDAsODQgTDE3Niw4NCBaIE0xNjIuODI4LDEzNC40MTIgTDE0OCwxMTkuMjQgTDE1My42NTYsMTEzLjU4NCBMMTYyLjgyOCwxMjIuNzU2IEwxODAsMTA1LjU4NCBMMTg1LjY1NiwxMTEuMjQgTDE2Mi44MjgsMTM0LjQxMiBaIE0xMzYsNzAgQzEzNiw2NC40NzYgMTQwLjQ4LDYwIDE0Niw2MCBDMTUxLjUyNCw2MCAxNTYsNjQuNDc2IDE1Niw3MCBDMTU2LDc1LjUyIDE1MS41MjQsODAgMTQ2LDgwIEMxNDAuNDgsODAgMTM2LDc1LjUyIDEzNiw3MCBMMTM2LDcwIFogTTI0MC4wMTIsNDEuMDI0IEwxNzIuMDIsMS4wOTIgQzE3MC43OCwwLjM2NCAxNjkuMzk2LDAgMTY4LjAwOCwwIEMxNjYuNjI0LDAgMTY1LjI0LDAuMzY0IDE2NCwxLjA5MiBMOTUuOTkyLDQxLjAyNCBDOTMuNTI0LDQyLjQ3NiA5Miw0NS4xNTIgOTIsNDguMDQ4IEw5MiwxMjcuOTUyIEM5MiwxMzAuODQ4IDkzLjUyNCwxMzMuNTI0IDk1Ljk5MiwxMzQuOTcyIEwxNjMuOTg4LDE3NC45MDggQzE2NS4yMjQsMTc1LjYzNiAxNjYuNjEyLDE3NiAxNjcuOTk2LDE3NiBDMTY5LjM4LDE3NiAxNzAuNzY0LDE3NS42MzYgMTcyLjAwNCwxNzQuOTA4IEwyNDAuMDA4LDEzNC45NzIgQzI0Mi40OCwxMzMuNTI0IDI0NCwxMzAuODQ4IDI0NCwxMjcuOTUyIEwyNDQsNDguMDQ4IEMyNDQsNDUuMTUyIDI0Mi40OCw0Mi40NzYgMjQwLjAxMiw0MS4wMjQgTDI0MC4wMTIsNDEuMDI0IFoiIGlkPSJpY29uX2FwcF9wdXJjaGFzZV9vcmRlciI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=);
}

.logoProductionCard {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjE1MnB4IiBoZWlnaHQ9IjE3NnB4IiB2aWV3Qm94PSIwIDAgMTUyIDE3NiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggMzkuMSAoMzE3MjApIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPgogICAgPHRpdGxlPmljb25fYXBwX3Byb2R1Y3Rpb25fY2FyZDwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPgogICAgICAgIDxyYWRpYWxHcmFkaWVudCBjeD0iMCUiIGN5PSIwJSIgZng9IjAlIiBmeT0iMCUiIHI9IjE0MS40MjEzNTYlIiBpZD0icmFkaWFsR3JhZGllbnQtMSI+CiAgICAgICAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiNFMTVEQzQiIG9mZnNldD0iMCUiPjwvc3RvcD4KICAgICAgICAgICAgPHN0b3Agc3RvcC1jb2xvcj0iI0M4NEZBRCIgb2Zmc2V0PSIxMDAlIj48L3N0b3A+CiAgICAgICAgPC9yYWRpYWxHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJEZXNrdG9wIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iMi4wLVByb2R1Y3RzLVNlcnZpY2VzLURlc2t0b3AiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC05ODkuMDAwMDAwLCAtMTM1MS4wMDAwMDApIiBmaWxsPSJ1cmwoI3JhZGlhbEdyYWRpZW50LTEpIj4KICAgICAgICAgICAgPGcgaWQ9IlByb2R1Y3Rpb24tY2FyZCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODk4LjAwMDAwMCwgMTM1MS4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xNjcsODQgTDE2Nyw5MiBDMTY3LDk0LjIwOCAxNjUuMjA4LDk2IDE2Myw5NiBMMTQ3LDk2IEMxNDQuNzkyLDk2IDE0Myw5NC4yMDggMTQzLDkyIEwxNDMsODQgQzE0Myw4MS43OTIgMTQ0Ljc5Miw4MCAxNDcsODAgTDE2Myw4MCBDMTY1LjIwOCw4MCAxNjcsODEuNzkyIDE2Nyw4NCBMMTY3LDg0IFogTTE4MywxMjAgTDIwNywxMjAgTDIwNywxMTIgTDE4MywxMTIgTDE4MywxMjAgWiBNMTgzLDEwNCBMMTgzLDk2IEwyMzQuOTc2LDk2IEwyMzQuOTcyLDEwNCBMMTgzLDEwNCBaIE0xNjUuMDA4LDE2Ni44MTYgTDEwMC45NzIsMTI5LjExMiBDOTkuNzUyLDEyOC4zOTYgOTksMTI3LjA4NCA5OSwxMjUuNjY0IEw5OS4wNCw1MC4yMTIgQzk5LjA0NCw0OC43OTYgOTkuNzkyLDQ3LjQ4NCAxMDEuMDE2LDQ2Ljc2NCBMMTY0Ljk4LDkuMjA4IEMxNjYuMjMyLDguNDcyIDE2Ny43ODQsOC40NzIgMTY5LjAzNiw5LjIwOCBMMjI4LjEyNCw0NCBMMTQzLDQ0IEMxMzguNiw0NCAxMzUsNDcuNiAxMzUsNTIgTDEzNSw1NiBMMjM0Ljk5Niw1NiBMMjM0Ljk4OCw3MiBMMTM1LDcyIEwxMzUsMTI0IEMxMzUsMTI4LjQgMTM4LjYsMTMyIDE0MywxMzIgTDIyOC4yODQsMTMyIEwxNjkuMDY0LDE2Ni44MTYgQzE2Ny44MTIsMTY3LjU1MiAxNjYuMjYsMTY3LjU1MiAxNjUuMDA4LDE2Ni44MTYgTDE2NS4wMDgsMTY2LjgxNiBaIE0yMzkuMDA4LDQxLjAyNCBMMTcxLjAxNiwxLjA5MiBDMTY5Ljc3NiwwLjM2NCAxNjguMzkyLDAgMTY3LjAwOCwwIEMxNjUuNjI0LDAgMTY0LjI0LDAuMzY0IDE2MywxLjA5MiBMOTQuOTkyLDQxLjAyNCBDOTIuNTIsNDIuNDc2IDkxLDQ1LjE1MiA5MSw0OC4wNDggTDkxLDEyNy45NTIgQzkxLDEzMC44NDggOTIuNTIsMTMzLjUyNCA5NC45OTIsMTM0Ljk3NiBMMTYyLjk4NCwxNzQuOTA4IEMxNjQuMjI0LDE3NS42MzYgMTY1LjYwOCwxNzYgMTY2Ljk5MiwxNzYgQzE2OC4zNzYsMTc2IDE2OS43NiwxNzUuNjM2IDE3MSwxNzQuOTA4IEwyMzkuMDA4LDEzNC45NzYgQzI0MS40OCwxMzMuNTI0IDI0MywxMzAuODQ4IDI0MywxMjcuOTUyIEwyNDMsNDguMDQ4IEMyNDMsNDUuMTUyIDI0MS40OCw0Mi40NzYgMjM5LjAwOCw0MS4wMjQgTDIzOS4wMDgsNDEuMDI0IFoiIGlkPSJpY29uX2FwcF9wcm9kdWN0aW9uX2NhcmQiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+);
}

.SDSlimToolbarTools {
  height: 24px !important;
  max-height: 24px !important;
  min-height: 24px !important;
}

md-list-item.active button {
  background-color: rgba(158, 158, 158, 0.2);
}

.SDInputWarningMessage {
  color: rgb(234, 129, 23);
  font-size: 12px;
  line-height: 18px;
}

.SDDialogComponent {
  opacity: 01;
}

.SDTableRowHeadline .calendar {
  width: 60px;
  height: auto;
  margin: 0px;
  background: transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14),
    0 2px 1px -1px rgba(0, 0, 0, 0.12);
  border-radius: 1px;
  color: black;
}

.SDTableRowHeadline .month {
  width: 100%;
  background: #b52a2a;
  height: 18px;
  color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14),
    0 2px 1px -1px rgba(0, 0, 0, 0.12);
  position: relative;
}

.SDTableRowHeadline .month .month-name {
  line-height: 20px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.SDTableRowHeadline .day {
  text-align: center;
  background: #ecf0f1;
  border-top: 0px;
  font-size: 14px;
  line-height: 25px;
}

/* Based on https://github.com/angular/material/issues/6767#issuecomment-222171074 */
md-input-container .md-auto-hide .md-input-message-animation:not(.ng-animate),
md-input-container .md-input-message-animation.ng-enter,
md-input-container:not(.md-input-invalid)
  .md-auto-hide
  .md-input-message-animation {
  opacity: 1;
  margin-top: 0px;
}

/* Based on https://github.com/angular/material/issues/6767#issuecomment-222171074 */
md-input-container .md-auto-hide .md-input-message-animation:not(.ng-animate),
md-input-container .md-input-message-animation.ng-enter,
md-input-container:not(.md-input-invalid)
  .md-auto-hide
  .md-input-message-animation {
  opacity: 1;
  margin-top: 0px;
}

.ToolbarContainer {
  max-height: 104px;
  position: relative;
}

/*Toolbar animation*/
.BusyRequestTransition {
  animation: barberpole 0.5s linear infinite;
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
  background-size: 30px 30px;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.75s linear;
  width: 100%;
  z-index: 2;
}

.SDStepper .BusyRequestTransition {
  height: 200%;
}

.BusyRequestTransition.ng-enter {
  opacity: 0;
}
.BusyRequestTransition.ng-leave {
  opacity: 1;
}
.BusyRequestTransition.ng-enter.ng-enter-active {
  opacity: 1;
}
.BusyRequestTransition.ng-leave.ng-leave-active {
  opacity: 0;
}

@keyframes barberpole {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 30px;
  }
}

.SDSummaryItem {
  padding: 13px 15px;
  flex: 1;
  margin-right: 1px;
  line-height: 17px;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

.SDSummaryItemContainer {
  text-align: left;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  overflow: auto;
}

.SDFormHelp {
  font-size: 14px;
  color: rgb(107, 107, 107);
  margin-top: -24px;
}

.SDDroppablePanel {
  display: block;
  flex: 100;
  padding: 8px 8px 0;
}

.SDExpensionPanel {
  min-height: 64px !important;
}

.SDForm-Checkbox {
}

@media screen and (max-width: 600px) {
  .SDForm-Checkbox {
    padding-left: 36px;
  }
}

.SDFormRow {
  align-items: center;
  min-height: 60px;
  -ms-overflow-style: -ms-autohiding-scrollbar !important;
  overflow: hidden !important;
}

.SDFormRow md-input-container {
  margin: 0px;
}

md-input-container label.mobileAllocation {
  bottom: 30px !important;
}

.crewTimeReport-form md-checkbox {
  margin-bottom: 0;
}

AddTeamMemberModalContent {
  bottom: 85%;
}

.SDLargeFormRow {
  align-items: center;
  max-height: none !important;
  min-height: 60px;
}

.SDTableRow {
  align-items: center;
}

.SDFormRowCell {
  align-items: center;
  min-width: 131px;
  background: rgba(28, 155, 202, 0.1);
  margin: 1px;
  padding: 5px 10px;
  -ms-overflow-style: -ms-autohiding-scrollbar !important;
  overflow: hidden !important;
}

.SDFormRowCell-invalid {
  border: 1px rgba(213, 0, 0, 0.7) solid;
  height: 75px;
}

.SDFormRowCell-header {
  color: rgba(28, 155, 202, 1);
  font-size: 14px;
  width: 100%;
  white-space: nowrap;
}

.SDFormRowCell-data {
  height: 35px !important;
  width: 100%;
}
.SDFormRowCell-data > md-input-container {
  margin: 0px !important;
  text-align: center;
  overflow: hidden;
}

.SDFormRowCell-data > md-input-container > md-select {
  text-align: left;
}

.SDFormRowCell-data > md-input-container > md-checkbox {
  line-height: 40px;
  width: 20px;
  margin-bottom: 0px;
}

.SDFormRowCell-data > md-input-container > .picker__input {
  max-width: 100px !important;
  text-align: center;
}

.SDSelectMultiple-Label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 2.2em;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.54);
}

.SDStrong {
  font-weight: bold;
}

/* Based on bootstrap: Required for react-data-grid */
.react-grid-HeaderCell,
.react-grid-Cell {
  box-sizing: border-box;
}

.react-grid-Grid {
  font-size: 14px;
}

.react-grid.Grid input {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

.react-grid.Grid .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.rdg-editor-container input.editor-main,
select.editor-main {
  margin: auto;
}

.react-grid-Toolbar {
  background-color: #ffffff;
  border-color: #e7eaec;
  border-image: none;
  border-style: solid solid none;
  border-width: 1px 1px 1px 1px;
  color: inherit;
  margin-bottom: 0;
  padding: 14px 15px 7px;
  height: 48px;
}

.react-grid-Toolbar .tools {
  display: inline-block;
  float: right;
  margin-top: 0;
  position: relative;
  padding: 0;
  margin-top: -6px;
}

.row-highlight > div > div {
  background-color: #d4d4d4 !important;
}

.row-success > div {
  background-color: rgba(76, 175, 80, 0.31) !important;
}

.row-warning > div {
  background-color: rgba(234, 129, 23, 0.31) !important;
}

.row-error > div {
  background-color: rgba(230, 18, 25, 0.31) !important;
}

.cell-success {
  background-color: rgba(76, 175, 80, 0.31) !important;
}

.cell-warning {
  background-color: rgba(234, 129, 23, 0.31) !important;
}

.cell-error {
  background-color: rgba(230, 18, 25, 0.31) !important;
}

.cell-readOnly {
  background-color: rgba(145, 145, 145, 0.7) !important;
}

.flex {
  -ms-overflow-style: scrollbar;
  overflow: auto;
}

.sdFormHeader {
  font-size: 20px;
  text-decoration: underline;
  font-weight: bold;
  margin-bottom: 10px;
}

.main-icon-button {
  padding: 0px;
  margin: 0px;
  min-width: 10px;
}

.SDToDo_Tab {
  width: 20%;
  height: 40px;
  border-radius: 4px;
  justify-content: center;
  display: flex;
}

.SDToDo_Tab_Content {
  font-size: 15px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.SDToDo_Tab_Container {
  display: flex;
  width: 250px;
  justify-content: center;
}

.SDFilter-SideNav {
  width: 40%;
  max-width: 40%;
}

.SDFilter-ToggleButton {
  position: fixed;
  right: 80px;
  top: 114px;
}

md-dialog-content .SDFilter-ToggleButton {
  right: 24px;
  top: 64px;
}

@media screen and (max-width: 960px) {
  .SDFilter-ToggleButton {
    right: 8px;
  }

  .SDFilter-SideNav {
    width: 80%;
    max-width: 80%;
  }
}

.BreakWords {
  word-break: break-all;
}

@media screen and (min-width: 600px) {
  .SDReuse-Conflict-OldValue {
    font-size: 17px;
    font-weight: normal;
    text-align: center;
    align-self: center;
  }
  .SDReuse-Conflict-NewValue {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    align-self: center;
  }
}

@media screen and (max-width: 950px) {
  .mobileTimereportWrapper {
    min-height: 222px !important;
    display: flex;
    flex-direction: column;
  }
  .mobileTimereportButtons {
    margin: 0 !important;
  }
}

@media screen and (max-width: 600px) {
  .SDReuse-Conflict-OldValue {
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    align-self: center;
  }
  .SDReuse-Conflict-NewValue {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    align-self: center;
  }
  #AddTeamMemberModalContent .SDFormRow {
    overflow: unset !important;
    min-height: 65px;
  }
  .mobileTimereportWrapper {
    padding: 0 !important;
    min-height: 300px !important;
  }
  .timeIconWrapper {
    width: 100%;
  }
  p.mobileNumTM {
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
  }
  .ApprovalAddTmWrapper {
    float: none !important;
    padding: 0;
    width: 100%;
    justify-content: center;
  }
  .ApprovalAddTmWrapper > button.md-button {
    font-size: 11px;
    margin-top: 0 !important;
  }
  #DailycrewtimereportComponentId .sd-react-connector > div:first-child {
    margin-top: 0 !important;
  }
  #DailycrewtimereportComponentId
    .sd-react-connector
    > div:first-child
    > button.md-button {
    width: 100%;
    float: none !important;
    margin: 0;
  }
}

md-tabs.timeReportTab md-icon {
  color: #000;
}

.SDBadge_Container {
  position: relative;
}

.SDBadge_Badge {
  position: absolute;
  font-size: 11px;
  text-align: center;
  line-height: 23px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.SDBadge_Badge.SDBadge_Badge-isSmall {
  font-size: 10px;
  line-height: 19px;
  width: 18px;
  height: 18px;
}

.SDBadge_Badge-top {
  top: -15px;
}

.SDBadge_Badge-isSmall.SDBadge_Badge-top {
  top: -6px;
}

.SDBadge_Badge-bottom {
  bottom: -15px;
}

.SDBadge_Badge-isSmall.SDBadge_Badge-bottom {
  bottom: -6px;
}

.SDBadge_Badge-primary {
  background: rgba(28, 155, 202, 1);
  color: #fff;
}

.SDBadge_Badge-success {
  background: #4caf50;
  color: #fff;
}

.SDBadge_Badge-warning {
  background: rgb(234, 129, 23);
  color: #fff;
}

.SDBadge_Badge-error {
  background: #e61219;
  color: #fff;
}

.google-visualization-table > div {
  -ms-overflow-style: scrollbar;
}

:global md-toast.md-error-toast-theme .md-toast-content span {
  padding: 10px 0;
}

.mobileView {
  font-size: 14px !important;
}

.mobileIcon {
  padding-left: 0 !important;
}

@media screen and (min-width: 600px) {
  .crewTimeReport-form md-input-container.md-input-has-value label,
  .crewTimeReport-form md-input-container.md-input-focused label {
    opacity: 0;
    transform: none;
    transition: none;
  }
}

.crewTimeReportTopButtons {
  line-height: 17px !important;
  margin-top: 15px;
  height: 36px;
}

.crewTimeReportTopFilter {
  line-height: 17px !important;
  height: 36px;
  padding-top: 0;
  margin-top: 15px;
}

@media screen and (max-width: 600px) {
  .crewTimeReport-form
    md-input-container
    label:not(.md-no-float):not(.md-container-ignore),
  .crewTimeReport-form md-select .md-select-value.md-select-placeholder {
    color: rgba(0, 0, 0, 0.87);
  }
}

filters-content md-checkbox .md-label {
  margin-left: 38px;
}

filters-content md-checkbox.ng-empty .md-label {
  color: rgba(0, 0, 0, 0.38);
}

filters-content md-checkbox .md-container {
  top: calc(50% + 1px);
  left: 3px;
}

.md-button {
  border-radius: 4px;
}

.crewTimeReport_DayEdit:hover {
  cursor: pointer;
}

.notification_wrapper {
  padding: 10px;
  font-style: italic;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .mobileView {
    font-size: 12px !important;
  }
  .notification_wrapper {
    padding: 0px;
  }
}

.assigned-payroll.SDIcon-Payroll-Success {
  margin-right: 60px;
}

@media (min-width: 1920px) {
  md-toast.md-error-toast-theme .md-toast-content {
    max-width: 100%;
  }
}

.crewTimeReport_Container {
  position: relative;
}

.crewTimeReport_ReportContainer {
  height: calc(100% - 25px);
  padding: 0 16px 0;
}

.crewTimeReport_Overlay_ProgressBarContainer {
  height: 20px; /* Can be anything */
  position: relative;
  background: #555;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  padding: 10px;
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
  width: 20%;
}

.crewTimeReport_Overlay_Container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.crewTimeReport_Overlay_ProgressBar {
  display: block;
  height: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #ffc107;
  position: relative;
  overflow: hidden;
}

.crewTimeReport_Overlay_ProgressBarText {
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  font-weight: bold;
  text-shadow: 0 0 5px black;
}

@media screen and (max-width: 900px) {
  .crewTimeReport_Overlay_ProgressBarContainer {
    width: 60%;
  }
}

md-dialog.responsiveDialog {
  max-height: 100% !important;
  max-width: 100% !important;
}

.google-visualization-table-table td {
  text-align: center;
}

#table_div td.google-visualization-table-td {
  white-space: nowrap;
}

.cover {
  text-align: center;
  padding: 10px;
  background: #d9dae3;
}

.countryCodeWarning {
  color: #d87a08;
  font-size: 12px;
  text-align: center;
  margin-top: -10px;
}

.dateSeparator {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-top: none;
  border-left: none;
  border-right: none;
  position: relative;
  margin-top: 10px;
}

.dateSeparator span {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  background: #fff;
  padding: 10px;
}

.signInBtn {
  height: 30px;
}

.addCompanyForm.SDFormRow {
  overflow: visible !important;
}

md-list-item.deletedDraft {
  height: 0px;
  min-height: 0;
  margin-bottom: 0 !important;
  transition: height, min-height 1s ease-in-out, margin-bottom 1.2s ease-in-out;
}

.warning-container {
  background-color: lightyellow;
  border: 1px solid yellow;
  border-radius: 6px;
}

.warning-list-item {
  display: flex;
  align-items: center;
  margin-top: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid lightgrey;
}

.warning-list-item md-icon {
  margin: 0 12px 0 0;
}

.SDToDo_Tab.isBusy {
  pointer-events: none;
}

.SDToDo_Tab.isBusy .SDToDo_Tab_Content {
  opacity: 0.2;
}

.SDToDo_Tab {
  position: relative;
}

.SdToDo_inline-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.SdToDo_inline-progress path {
  stroke: white;
}

@media screen and (max-width: 960px) {
  .SDToDo_TabWrapper {
    flex-direction: row;
    margin-top: 70px;
  }
  .SDToDo_Tab {
    width: 40%;
  }
  .SDToDo_Tab_Content {
    font-size: 12px;
  }
}
@media screen and (max-width: 769px) {
  h2.teamMemberHeader {
    font-size: 16px !important;
  }
  .md-toolbar-tools > .md-button:first-child.envelopeClose-btn {
    margin-left: 0;
    margin-right: 0;
    padding-right: 30px;
  }
  .signupWrapper {
    max-width: 80% !important;
  }
  .SDDroppablePanel {
    padding: 8px 0 0;
  }
  h3.mobileSectionHeader {
    white-space: normal !important;
  }
}

h2.teamMemberHeader {
  margin-right: 8px;
}

@media screen and (max-width: 769px) {
  .teammember-list-item-padding .md-list-item-inner {
    margin: 10px 0;
  }
}

button.declineBtn {
  border: 1px solid rgb(255, 215, 64);
}
button.declineBtn:hover {
  background-color: rgb(255, 215, 64) !important;
}

.hideReactBtn {
  display: none;
}

.SDTagContainer {
  display: flex;
  min-width: 100px;
  justify-content: space-evenly;
  line-height: normal;
  font-size: 14px;
  line-height: 1.8em;
  font-weight: 500;
}

.SDTagContainer:not(:last-child) {
  margin-right: 8px;
}

@media screen and (max-width: 992px) {
  .SDTagContainer {
    flex-direction: row;
    justify-content: flex-start;
    margin-left: 8px;
  }
}

@media screen and (max-width: 768px) {
  .SDTagContainer {
    justify-content: space-evenly;
    flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  .SDTagContainer {
    justify-content: space-evenly;
    flex-direction: column;
  }

  .clear-btn {
    left: 190px;
  }
}

.SDPill {
  padding: 2px 4px;
  border-radius: 4px;
  margin-top: 0;
  margin-right: 16px;
  color: white;
  min-width: 200px;
  display: inline-block;
  text-align: center;
  background-color: #2b9f85;
}

@media screen and (max-width: 768px) {
  .SDPill {
    margin-top: 4px;
  }
}

.loader-align {
  text-align: center;
}

.loader-align > md-progress-circular {
  margin: 10px auto;
}

.sd-date-picker input {
  padding: 5px !important;
  margin: 10px 0px !important;
  font-size: 16px !important;
  pointer-events: none;
}

.sd-date-picker .md-datepicker-triangle-button .md-datepicker-expand-triangle {
  display: none;
}

.sd-date-picker .md-button.md-icon-button {
  margin: 0 -5px;
}

.sd-date-picker .md-datepicker-input-container {
  width: calc(100% - 60px);
}

.clear-btn {
  position: absolute;
  top: 0;
  left: 265px;
}

md-input-container:not(.md-input-has-value) input:not(:focus) {
  color: black !important;
  font-size: 15px !important;
  width: 100%;
}

@media (max-width: 920px) and (orientation: landscape) {
  md-dialog#global-update {
    max-height: 100vh;
  }

  #global-update .SDSummaryItem {
    padding: 8px 8px;
    font-size: 12px;
  }

  #global-update .SDFormRowCell {
    min-width: 140px;
    font-size: 12px;
  }

  #global-update .footer-bar {
    margin-top: 0;
    flex-direction: unset;
  }
}

@media (max-width: 480px) {
  md-dialog#global-update {
    min-width: -webkit-fill-available;
    width: 100%;
    height: 100%;
  }

  #global-update .SDSummaryItem {
    padding: 8px 8px;
    font-size: 12px;
  }

  #global-update .SDFormRowCell {
    min-width: 70px;
    font-size: 12px;
  }

  #global-update .footer-bar {
    margin-top: 0;
  }
}

#global-update .footer-bar {
  padding: 8px;
  margin-top: 16px;
}

.empty-result {
  display: block;
  margin: 15px;
}

.okta-migration-info {
  background: #fef4e4;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  line-height: 1.5;
  display: block;
}

.sms-pin-code {
  background-color: lightgrey;
  border: 1px solid rgb(25, 162, 203);
  border-radius: 5px;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.04),
    inset 0 0 3px 0 rgba(0, 0, 0, 0.06);
  font-size: 35px;
  line-height: 35px;
  margin: 1px 3px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  width: 60px;
  outline: none;
  margin-bottom: 20px;
}

.obfuscated-display {
  text-align: center;
  color: rgb(20 145 182);
  margin-top: 10px;
  margin-bottom: 0px;
  line-height: 1.5;
}

.overlay-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.privacy-policy {
  background-color: #e0e0e0;
  padding: 5px 20px;
  color: black;
  font-size: 13px;
  text-align: center;
  margin: 0;
}

.migrate-forgot-password {
  padding: 5px 0px;
  min-height: 10px;
  line-height: 1;
}

.mb-5 {
  margin-bottom: 5px;
}

.migration-content-spacing {
  margin: 0;
  line-height: 2;
  text-align: center;
}

.warning-message {
  padding: 0.5rem 1rem;
  background: #fef3c7;
  border-radius: 3px;
  border: 1px solid #fdba74;
  color: #fb923c;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.warning-message svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.ml-mr-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mobile-device-btn {
  min-width: 65px !important;
}

.md-icon-button.open-menu {
  margin: 0 !important;
  width: 25px !important;
}
.NewTemplateInChainDialogContainer {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.AddNewChainDialogContainer {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.TemplateChainDetailsContainer {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.TemplateChainDetailsListContainer {
  width: 100%;
  display: flex;
  flex: 3;
}

.TemplateChainDetailsSaveButtonFloating {
  position: fixed;
  right: 80px;
  bottom: 40px;
}

.TemplateChainDetailsAddButtonFloating {
  position: fixed;
  right: 80px;
  bottom: 70px;
}

.TemplateChainDetailsSubButtonsContainer {
  width: 100%;
  display: flex;
  flex: 1;
}

.TemplateChainDetailsDraggableContainer {
  width: 100%;
  margin-bottom: 170px;
}

.TemplateChainDetailsChainItemContainer {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}

.TemplateChainDetailsChainItemIconContainer {
  display: flex;
  width: 10%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.TemplateChainDetailsnoselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.TemplateChainDetailsnoselect:hover {
  cursor: pointer;
}

.TemplateChainDetailsDeleteButton {
  margin-right: 20px;
}

.TemplateChainDetailsDeleteButton:hover {
  cursor: pointer;
}

.TemplateChainDetailsChainItemTextContainer {
  display: flex;
  width: 55%;
  height: 100%;
  align-items: center;
}

.TemplateChainDetailsChainItemButtonsContainer {
  display: flex;
  width: 35%;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .TemplateChainDetailsChainItemIconContainer {
    width: 20%;
  }

  .TemplateChainDetailsChainItemTextContainer {
    width: 50%;
  }

  .TemplateChainDetailsChainItemButtonsContainer {
    width: 30%;
  }

  .TemplateChainDetailsSaveButtonFloating {
    position: fixed;
    right: 40px;
  }

  .TemplateChainDetailsAddButtonFloating {
    position: fixed;
    right: 40px;
  }
}
.TemplateChainsContainer {
  width: 99%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.TemplateChainsDraggableContainer {
  width: 100%;
}

.TemplateChainsChainObjectContainer {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}

.TemplateChainsChainObjectIconContainer {
  display: flex;
  width: 10%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.TemplateChainsChainObjectTextContainer {
  display: flex;
  width: 55%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.TemplateChainsChainObjectMasterLabel {
  font-size: 12px;
}

.TemplateChainsChainObjectButtonsContainer {
  display: flex;
  width: 35%;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  padding-right: 60px;
}

.TemplateChainObjectSaveButtonFloating {
  position: fixed;
  right: 80px;
  bottom: 40px;
}

@media screen and (max-width: 768px) {
  .TemplateChainsChainObjectIconContainer {
    width: 20%;
  }

  .TemplateChainsChainObjectTextContainer {
    width: 50%;
  }

  .TemplateChainsChainObjectButtonsContainer {
    width: 30%;
  }

  .TemplateChainObjectSaveButtonFloating {
    right: 40px;
  }
}
.SchemaBoardMainContainer {
  width: 100%;
  height: 100%;
}

.SchemaBoardContentContainer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
}
span.Collapsible__trigger:hover {
  background-color: rgba(158, 158, 158, 0.2);
}

span.Collapsible__trigger:after {
  font-family: 'Material Icons';
  display: inline;
  position: absolute;
  content: '\e5cf';
  font-size: 24px;
  color: dimgrey;
  right: 15px;
}

.Collapsible__trigger.is-closed:after {
  transition: transform 300ms;
  transform: rotateZ(180deg);
}

span.Collapsible__trigger {
  display: block;
  text-align: center;
  color: rgb(28, 155, 202);
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  align-content: center;
  line-height: 64px;
  cursor: pointer;
  height: 64px;
  position: relative;
}
.EnvelopeListItemExpandIcon {
  width: 5%;
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.EnvelopeListItemExpandIconExpanded {
  width: 5%;
  transform: rotate(180deg);
  transition: transform 0.3s;
}
.EnvelopeConfirmationDocumentListItem {
  width: 100%;
  display: flex;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.6);
  position: relative;
  transition: background-color 0.3s;
}

.EnvelopeConfirmationDocumentListItem:hover {
  background-color: rgba(225, 225, 225, 0.5);
  cursor: pointer;
}

@media screen and (max-width: 500px) {
  .EnvelopeConfirmationDocumentListItem > div:nth-child(2) {
    font-size: 12px !important;
  }
}
.AttachmentCell {
  width: 50%;
  display: flex;
  align-items: center;
  border-radius: 6px;
}

.AttachmentCell:hover {
  background-color: rgba(225, 225, 225, 0.5);
  cursor: pointer;
}

/* Common class for Rejected status */
.RejectedStatus {
  padding: 2px 7px;
  width: 55px;
  border-radius: 4px;
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
  text-align: center;
  font-size: 14px;
}

/* for Large Devices */
.RejectedStatus.LargeDevice {
  position: absolute;
  top: 10px;
  right: 45px;
}

/* for Small Devices */
.RejectedStatus.SmallDevice {
  margin-top: 4px;
}
.ListCardItemContainer {
  max-width: 100%;
  width: 60%;
  background-color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14),
    0 2px 1px -1px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.ListCardItemContainerNoFeedback {
  max-width: 100%;
  width: 70%;
  background-color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14),
    0 2px 1px -1px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.ListCardItemContainerNoFeedbackExtraWidth {
  max-width: 460px; /*the only way right now*/
  width: 100%;
  background-color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14),
    0 2px 1px -1px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  padding-top: 5px;
}

.ListCardItemContainer:hover {
  background-color: lightgrey;
  cursor: pointer;
}

.ExpandablePanelMainContainer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.ExpandablePanelSubContainerOpen {
  max-width: 100%;
  width: 60%;
  height: auto;
  max-height: 300px;
  overflow: hidden;
  background-color: white;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14),
    0 2px 1px -1px rgba(0, 0, 0, 0.12);
  transition: max-height 0.5s;
}

.ExpandablePanelSubContainerClose {
  max-width: 100%;
  width: 60%;
  height: auto;
  max-height: 0px;
  overflow: hidden;
  background-color: white;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14),
    0 2px 1px -1px rgba(0, 0, 0, 0.12);
  transition: max-height 0.3s;
}

@media screen and (max-width: 768px) {
  .ListCardItemContainer {
    width: 92%;
  }
  .ListCardItemContainerNoFeedback {
    width: 92%;
  }
  .ExpandablePanelSubContainerOpen {
    width: 100%;
  }
}
.ProgressBarContainer {
  height: 20px; /* Can be anything */
  position: relative;
  background: #555;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  padding: 10px;
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
  width: 20%;
}

.ProgressBar {
  display: block;
  height: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #ffc107;
  position: relative;
  overflow: hidden;
}

.ProgressBarText {
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  font-weight: bold;
  text-shadow: 0 0 5px black;
}

@media screen and (max-width: 900px) {
  .ProgressBarContainer {
    width: 60%;
  }
}
.SDIconButtonContainer {
  width: 88px;
  height: 70px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  margin: 5px;
}

.SDIconButtonContainerNoHover {
  width: 88px;
  height: 70px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background-color: rgb(28, 155, 202);
  display: flex;
  justify-content: space-around;
  cursor: default;
  align-items: center;
  flex-direction: column;
  margin: 5px;
}

.SDIconButtonContainerDisabled {
  width: 88px;
  height: 70px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background-color: lightgray;
  display: flex;
  justify-content: space-around;
  cursor: default;
  align-items: center;
  flex-direction: column;
  margin: 5px;
}

.SDIconButtonContainer:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
  cursor: pointer;
}

.SimpleTextButton {
  color: rgb(255, 215, 64);
  font-size: 14px;
  font-weight: 500;
}

.SimpleTextButton:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .SDIconButtonContainer {
    width: 68px;
    height: 50px;
  }

  .SDIconButtonContainerNoHover {
    width: 68px;
    height: 50px;
  }

  .SDIconButtonContainerDisabled {
    width: 68px;
    height: 50px;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.DialogFullScreenContainer {
  z-index: 200;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  -webkit-animation: fadein 0.2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 0.2s; /* Firefox < 16 */
  -o-animation: fadein 0.2s; /* Opera < 12.1 */
  animation: fadein 0.2s;
}

.DialogFullScreenContainerFullScreen {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
}
.mainIcon {
  font-weight: normal;
  font-style: normal;
  font-size: 24px !important;
  height: initial !important;
  width: initial !important;
  margin-right: 32px;
}

.personIcon {
  color: rgba(0, 0, 0, 0.54) !important;
}
.infiniteList {
  height: 710px;
  overflow-y: scroll;
}
.closeBtn {
  color: #fff !important;
  font-size: 24px !important;
  height: 24px !important;
  width: 24px !important;
}

.filterContainer {
  margin: 20px;
}

.selectMenu {
  width: 100%;
}

.MuiCheckbox-colorSecondary.Mui-checked {
  color: rgba(158, 158, 158, 0.87) !important;
}
.PayrollDirectory.Payroll-Default {
  background-color: rgb(145, 145, 145) !important;
}

.PayrollDirectory {
  color: #ffff;
}

.PayrollDirectory.Payroll-exported {
  background-color: rgb(15, 96, 120) !important;
}

.notification-Icon {
  color: rgba(0, 0, 0, 0.54) !important;
  font-size: 24px !important;
  height: 24px !important;
  width: 24px !important;
}

.infiniteList > div:first-child {
  margin-top: 50px;
}

.infiniteList > div:last-child {
  margin-bottom: 90px !important;
}

.hideHeader {
  display: none;
}
.SendAsChainDialogChainDetailsContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 500px;
  overflow: auto;
}

.SendAsChainDialogChainDetailsSeparatorContainer {
  display: flex;
  flex-direction: column;
}

.SendAsChainDialogChainDetailsSeparatorDot {
  height: 5px;
  width: 5px;
  background-color: rgba(58, 62, 77, 1);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 10px;
}
/* stylelint-disable selector-no-type,selector-no-universal */

.bootstrap-wrapper {font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
.bootstrap-wrapper article, .bootstrap-wrapper aside, .bootstrap-wrapper details, .bootstrap-wrapper figcaption, .bootstrap-wrapper figure, .bootstrap-wrapper footer, .bootstrap-wrapper header, .bootstrap-wrapper hgroup, .bootstrap-wrapper main, .bootstrap-wrapper menu, .bootstrap-wrapper nav, .bootstrap-wrapper section, .bootstrap-wrapper summary{display:block}
.bootstrap-wrapper audio, .bootstrap-wrapper canvas, .bootstrap-wrapper progress, .bootstrap-wrapper video{display:inline-block;vertical-align:baseline}
.bootstrap-wrapper audio:not([controls]){display:none;height:0}
.bootstrap-wrapper [hidden], .bootstrap-wrapper template{display:none}
.bootstrap-wrapper a{background-color:transparent}
.bootstrap-wrapper a:active, .bootstrap-wrapper a:hover{outline:0}
.bootstrap-wrapper abbr[title]{border-bottom:1px dotted}
.bootstrap-wrapper b, .bootstrap-wrapper strong{font-weight:bold}
.bootstrap-wrapper dfn{font-style:italic}
.bootstrap-wrapper h1{font-size:2em;margin:0.67em 0}
.bootstrap-wrapper mark{background:#ff0;color:#000}
.bootstrap-wrapper small{font-size:80%}
.bootstrap-wrapper sub, .bootstrap-wrapper sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
.bootstrap-wrapper sup{top:-0.5em}
.bootstrap-wrapper sub{bottom:-0.25em}
.bootstrap-wrapper img{border:0}
.bootstrap-wrapper svg:not(:root){overflow:hidden}
.bootstrap-wrapper figure{margin:1em 40px}
.bootstrap-wrapper hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}
.bootstrap-wrapper pre{overflow:auto}
.bootstrap-wrapper code, .bootstrap-wrapper kbd, .bootstrap-wrapper pre, .bootstrap-wrapper samp{font-family:monospace, .bootstrap-wrapper  monospace;font-size:1em}
.bootstrap-wrapper button, .bootstrap-wrapper input, .bootstrap-wrapper optgroup, .bootstrap-wrapper select, .bootstrap-wrapper textarea{color:inherit;font:inherit;margin:0}
.bootstrap-wrapper button{overflow:visible}
.bootstrap-wrapper button, .bootstrap-wrapper select{text-transform:none}
.bootstrap-wrapper button, .bootstrap-wrapper html input[type="button"], .bootstrap-wrapper input[type="reset"], .bootstrap-wrapper input[type="submit"]{-webkit-appearance:button;cursor:pointer}
.bootstrap-wrapper button[disabled], .bootstrap-wrapper html input[disabled]{cursor:default}
.bootstrap-wrapper button::-moz-focus-inner, .bootstrap-wrapper input::-moz-focus-inner{border:0;padding:0}
.bootstrap-wrapper input{line-height:normal}
.bootstrap-wrapper input[type="checkbox"], .bootstrap-wrapper input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}
.bootstrap-wrapper input[type="number"]::-webkit-inner-spin-button, .bootstrap-wrapper input[type="number"]::-webkit-outer-spin-button{height:auto}
.bootstrap-wrapper input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}
.bootstrap-wrapper input[type="search"]::-webkit-search-cancel-button, .bootstrap-wrapper input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
.bootstrap-wrapper fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}
.bootstrap-wrapper legend{border:0;padding:0}
.bootstrap-wrapper textarea{overflow:auto}
.bootstrap-wrapper optgroup{font-weight:bold}
.bootstrap-wrapper table{border-collapse:collapse;border-spacing:0}
.bootstrap-wrapper td, .bootstrap-wrapper th{padding:0}
.bootstrap-wrapper
@media print{*, .bootstrap-wrapper *:before, .bootstrap-wrapper *:after{background:transparent !important;color:#000 !important;-webkit-box-shadow:none !important;box-shadow:none !important;text-shadow:none !important}
  .bootstrap-wrapper a, .bootstrap-wrapper a:visited{text-decoration:underline}
  .bootstrap-wrapper a[href]:after{content:" (" attr(href) ")"}
  .bootstrap-wrapper abbr[title]:after{content:" (" attr(title) ")"}
  .bootstrap-wrapper a[href^="#"]:after, .bootstrap-wrapper a[href^="javascript:"]:after{content:""}
  .bootstrap-wrapper pre, .bootstrap-wrapper blockquote{border:1px solid #999;page-break-inside:avoid}
  .bootstrap-wrapper thead{display:table-header-group}
  .bootstrap-wrapper tr, .bootstrap-wrapper img{page-break-inside:avoid}
  .bootstrap-wrapper img{max-width:100% !important}
  .bootstrap-wrapper p, .bootstrap-wrapper h2, .bootstrap-wrapper h3{orphans:3;widows:3}
  .bootstrap-wrapper h2, .bootstrap-wrapper h3{page-break-after:avoid}
  .bootstrap-wrapper .navbar{display:none}
  .bootstrap-wrapper .btn>.caret, .bootstrap-wrapper .dropup>.btn>.caret{border-top-color:#000 !important}
  .bootstrap-wrapper .label{border:1px solid #000}
  .bootstrap-wrapper .table{border-collapse:collapse !important}
  .bootstrap-wrapper .table td, .bootstrap-wrapper .table th{background-color:#fff !important}
  .bootstrap-wrapper .table-bordered th, .bootstrap-wrapper .table-bordered td{border:1px solid #ddd !important}
}

.bootstrap-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
.bootstrap-wrapper *:before, .bootstrap-wrapper *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
.bootstrap-wrapper html{font-size:10px;-webkit-tap-highlight-color:rgba(0, 0, 0, 0)}
.bootstrap-wrapper body{font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}
.bootstrap-wrapper input, .bootstrap-wrapper button, .bootstrap-wrapper select, .bootstrap-wrapper textarea{font-family:inherit;font-size:inherit;line-height:inherit}
.bootstrap-wrapper a{color:#337ab7;text-decoration:none}
.bootstrap-wrapper a:hover, .bootstrap-wrapper a:focus{color:#23527c;text-decoration:underline}
.bootstrap-wrapper a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}
.bootstrap-wrapper figure{margin:0}
.bootstrap-wrapper img{vertical-align:middle}
.bootstrap-wrapper .img-responsive, .bootstrap-wrapper .thumbnail>img, .bootstrap-wrapper .thumbnail a>img, .bootstrap-wrapper .carousel-inner>.item>img, .bootstrap-wrapper .carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}
.bootstrap-wrapper .img-rounded{border-radius:6px}
.bootstrap-wrapper .img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}
.bootstrap-wrapper .img-circle{border-radius:50%}
.bootstrap-wrapper hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}
.bootstrap-wrapper .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}
.bootstrap-wrapper .sr-only-focusable:active, .bootstrap-wrapper .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
.bootstrap-wrapper [role="button"]{cursor:pointer}
.bootstrap-wrapper h1, .bootstrap-wrapper h2, .bootstrap-wrapper h3, .bootstrap-wrapper h4, .bootstrap-wrapper h5, .bootstrap-wrapper h6, .bootstrap-wrapper .h1, .bootstrap-wrapper .h2, .bootstrap-wrapper .h3, .bootstrap-wrapper .h4, .bootstrap-wrapper .h5, .bootstrap-wrapper .h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}
.bootstrap-wrapper h1 small, .bootstrap-wrapper h2 small, .bootstrap-wrapper h3 small, .bootstrap-wrapper h4 small, .bootstrap-wrapper h5 small, .bootstrap-wrapper h6 small, .bootstrap-wrapper .h1 small, .bootstrap-wrapper .h2 small, .bootstrap-wrapper .h3 small, .bootstrap-wrapper .h4 small, .bootstrap-wrapper .h5 small, .bootstrap-wrapper .h6 small, .bootstrap-wrapper h1 .small, .bootstrap-wrapper h2 .small, .bootstrap-wrapper h3 .small, .bootstrap-wrapper h4 .small, .bootstrap-wrapper h5 .small, .bootstrap-wrapper h6 .small, .bootstrap-wrapper .h1 .small, .bootstrap-wrapper .h2 .small, .bootstrap-wrapper .h3 .small, .bootstrap-wrapper .h4 .small, .bootstrap-wrapper .h5 .small, .bootstrap-wrapper .h6 .small{font-weight:normal;line-height:1;color:#777}
.bootstrap-wrapper h1, .bootstrap-wrapper .h1, .bootstrap-wrapper h2, .bootstrap-wrapper .h2, .bootstrap-wrapper h3, .bootstrap-wrapper .h3{margin-top:20px;margin-bottom:10px}
.bootstrap-wrapper h1 small, .bootstrap-wrapper .h1 small, .bootstrap-wrapper h2 small, .bootstrap-wrapper .h2 small, .bootstrap-wrapper h3 small, .bootstrap-wrapper .h3 small, .bootstrap-wrapper h1 .small, .bootstrap-wrapper .h1 .small, .bootstrap-wrapper h2 .small, .bootstrap-wrapper .h2 .small, .bootstrap-wrapper h3 .small, .bootstrap-wrapper .h3 .small{font-size:65%}
.bootstrap-wrapper h4, .bootstrap-wrapper .h4, .bootstrap-wrapper h5, .bootstrap-wrapper .h5, .bootstrap-wrapper h6, .bootstrap-wrapper .h6{margin-top:10px;margin-bottom:10px}
.bootstrap-wrapper h4 small, .bootstrap-wrapper .h4 small, .bootstrap-wrapper h5 small, .bootstrap-wrapper .h5 small, .bootstrap-wrapper h6 small, .bootstrap-wrapper .h6 small, .bootstrap-wrapper h4 .small, .bootstrap-wrapper .h4 .small, .bootstrap-wrapper h5 .small, .bootstrap-wrapper .h5 .small, .bootstrap-wrapper h6 .small, .bootstrap-wrapper .h6 .small{font-size:75%}
.bootstrap-wrapper h1, .bootstrap-wrapper .h1{font-size:36px}
.bootstrap-wrapper h2, .bootstrap-wrapper .h2{font-size:30px}
.bootstrap-wrapper h3, .bootstrap-wrapper .h3{font-size:24px}
.bootstrap-wrapper h4, .bootstrap-wrapper .h4{font-size:18px}
.bootstrap-wrapper h5, .bootstrap-wrapper .h5{font-size:14px}
.bootstrap-wrapper h6, .bootstrap-wrapper .h6{font-size:12px}
.bootstrap-wrapper p{margin:0 0 10px}
.bootstrap-wrapper .lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}
@media (min-width:768px){.lead{font-size:21px}
}
.bootstrap-wrapper small, .bootstrap-wrapper .small{font-size:85%}
.bootstrap-wrapper mark, .bootstrap-wrapper .mark{background-color:#fcf8e3;padding:.2em}
.bootstrap-wrapper .text-left{text-align:left}
.bootstrap-wrapper .text-right{text-align:right}
.bootstrap-wrapper .text-center{text-align:center}
.bootstrap-wrapper .text-justify{text-align:justify}
.bootstrap-wrapper .text-nowrap{white-space:nowrap}
.bootstrap-wrapper .text-lowercase{text-transform:lowercase}
.bootstrap-wrapper .text-uppercase{text-transform:uppercase}
.bootstrap-wrapper .text-capitalize{text-transform:capitalize}
.bootstrap-wrapper .text-muted{color:#777}
.bootstrap-wrapper .text-primary{color:#337ab7}
.bootstrap-wrapper a.text-primary:hover, .bootstrap-wrapper a.text-primary:focus{color:#286090}
.bootstrap-wrapper .text-success{color:#3c763d}
.bootstrap-wrapper a.text-success:hover, .bootstrap-wrapper a.text-success:focus{color:#2b542c}
.bootstrap-wrapper .text-info{color:#31708f}
.bootstrap-wrapper a.text-info:hover, .bootstrap-wrapper a.text-info:focus{color:#245269}
.bootstrap-wrapper .text-warning{color:#8a6d3b}
.bootstrap-wrapper a.text-warning:hover, .bootstrap-wrapper a.text-warning:focus{color:#66512c}
.bootstrap-wrapper .text-danger{color:#a94442}
.bootstrap-wrapper a.text-danger:hover, .bootstrap-wrapper a.text-danger:focus{color:#843534}
.bootstrap-wrapper .bg-primary{color:#fff;background-color:#337ab7}
.bootstrap-wrapper a.bg-primary:hover, .bootstrap-wrapper a.bg-primary:focus{background-color:#286090}
.bootstrap-wrapper .bg-success{background-color:#dff0d8}
.bootstrap-wrapper a.bg-success:hover, .bootstrap-wrapper a.bg-success:focus{background-color:#c1e2b3}
.bootstrap-wrapper .bg-info{background-color:#d9edf7}
.bootstrap-wrapper a.bg-info:hover, .bootstrap-wrapper a.bg-info:focus{background-color:#afd9ee}
.bootstrap-wrapper .bg-warning{background-color:#fcf8e3}
.bootstrap-wrapper a.bg-warning:hover, .bootstrap-wrapper a.bg-warning:focus{background-color:#f7ecb5}
.bootstrap-wrapper .bg-danger{background-color:#f2dede}
.bootstrap-wrapper a.bg-danger:hover, .bootstrap-wrapper a.bg-danger:focus{background-color:#e4b9b9}
.bootstrap-wrapper .page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}
.bootstrap-wrapper ul, .bootstrap-wrapper ol{margin-top:0;margin-bottom:10px}
.bootstrap-wrapper ul ul, .bootstrap-wrapper ol ul, .bootstrap-wrapper ul ol, .bootstrap-wrapper ol ol{margin-bottom:0}
.bootstrap-wrapper .list-unstyled{padding-left:0;list-style:none}
.bootstrap-wrapper .list-inline{padding-left:0;list-style:none;margin-left:-5px}
.bootstrap-wrapper .list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}
.bootstrap-wrapper dl{margin-top:0;margin-bottom:20px}
.bootstrap-wrapper dt, .bootstrap-wrapper dd{line-height:1.42857143}
.bootstrap-wrapper dt{font-weight:bold}
.bootstrap-wrapper dd{margin-left:0}
@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
  .bootstrap-wrapper .dl-horizontal dd{margin-left:180px}
}
.bootstrap-wrapper abbr[title], .bootstrap-wrapper abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}
.bootstrap-wrapper .initialism{font-size:90%;text-transform:uppercase}
.bootstrap-wrapper blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}
.bootstrap-wrapper blockquote p:last-child, .bootstrap-wrapper blockquote ul:last-child, .bootstrap-wrapper blockquote ol:last-child{margin-bottom:0}
.bootstrap-wrapper blockquote footer, .bootstrap-wrapper blockquote small, .bootstrap-wrapper blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}
.bootstrap-wrapper blockquote footer:before, .bootstrap-wrapper blockquote small:before, .bootstrap-wrapper blockquote .small:before{content:'\2014 \00A0'}
.bootstrap-wrapper .blockquote-reverse, .bootstrap-wrapper blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}
.bootstrap-wrapper .blockquote-reverse footer:before, .bootstrap-wrapper blockquote.pull-right footer:before, .bootstrap-wrapper .blockquote-reverse small:before, .bootstrap-wrapper blockquote.pull-right small:before, .bootstrap-wrapper .blockquote-reverse .small:before, .bootstrap-wrapper blockquote.pull-right .small:before{content:''}
.bootstrap-wrapper .blockquote-reverse footer:after, .bootstrap-wrapper blockquote.pull-right footer:after, .bootstrap-wrapper .blockquote-reverse small:after, .bootstrap-wrapper blockquote.pull-right small:after, .bootstrap-wrapper .blockquote-reverse .small:after, .bootstrap-wrapper blockquote.pull-right .small:after{content:'\00A0 \2014'}
.bootstrap-wrapper address{margin-bottom:20px;font-style:normal;line-height:1.42857143}
.bootstrap-wrapper code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}
.bootstrap-wrapper kbd kbd{padding:0;font-size:100%;font-weight:bold;-webkit-box-shadow:none;box-shadow:none}
.bootstrap-wrapper pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}
.bootstrap-wrapper pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}
.bootstrap-wrapper .pre-scrollable{max-height:340px;overflow-y:scroll}
.bootstrap-wrapper .container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}
@media (min-width:768px){.container{width:750px}
}
@media (min-width:992px){.container{width:970px}
}
@media (min-width:1200px){.container{width:1170px}
}
.bootstrap-wrapper .container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}
.bootstrap-wrapper .row{margin-left:-15px;margin-right:-15px}
.bootstrap-wrapper .col-xs-1, .bootstrap-wrapper  .col-sm-1, .bootstrap-wrapper  .col-md-1, .bootstrap-wrapper  .col-lg-1, .bootstrap-wrapper  .col-xs-2, .bootstrap-wrapper  .col-sm-2, .bootstrap-wrapper  .col-md-2, .bootstrap-wrapper  .col-lg-2, .bootstrap-wrapper  .col-xs-3, .bootstrap-wrapper  .col-sm-3, .bootstrap-wrapper  .col-md-3, .bootstrap-wrapper  .col-lg-3, .bootstrap-wrapper  .col-xs-4, .bootstrap-wrapper  .col-sm-4, .bootstrap-wrapper  .col-md-4, .bootstrap-wrapper  .col-lg-4, .bootstrap-wrapper  .col-xs-5, .bootstrap-wrapper  .col-sm-5, .bootstrap-wrapper  .col-md-5, .bootstrap-wrapper  .col-lg-5, .bootstrap-wrapper  .col-xs-6, .bootstrap-wrapper  .col-sm-6, .bootstrap-wrapper  .col-md-6, .bootstrap-wrapper  .col-lg-6, .bootstrap-wrapper  .col-xs-7, .bootstrap-wrapper  .col-sm-7, .bootstrap-wrapper  .col-md-7, .bootstrap-wrapper  .col-lg-7, .bootstrap-wrapper  .col-xs-8, .bootstrap-wrapper  .col-sm-8, .bootstrap-wrapper  .col-md-8, .bootstrap-wrapper  .col-lg-8, .bootstrap-wrapper  .col-xs-9, .bootstrap-wrapper  .col-sm-9, .bootstrap-wrapper  .col-md-9, .bootstrap-wrapper  .col-lg-9, .bootstrap-wrapper  .col-xs-10, .bootstrap-wrapper  .col-sm-10, .bootstrap-wrapper  .col-md-10, .bootstrap-wrapper  .col-lg-10, .bootstrap-wrapper  .col-xs-11, .bootstrap-wrapper  .col-sm-11, .bootstrap-wrapper  .col-md-11, .bootstrap-wrapper  .col-lg-11, .bootstrap-wrapper  .col-xs-12, .bootstrap-wrapper  .col-sm-12, .bootstrap-wrapper  .col-md-12, .bootstrap-wrapper  .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}
.bootstrap-wrapper .col-xs-1, .bootstrap-wrapper  .col-xs-2, .bootstrap-wrapper  .col-xs-3, .bootstrap-wrapper  .col-xs-4, .bootstrap-wrapper  .col-xs-5, .bootstrap-wrapper  .col-xs-6, .bootstrap-wrapper  .col-xs-7, .bootstrap-wrapper  .col-xs-8, .bootstrap-wrapper  .col-xs-9, .bootstrap-wrapper  .col-xs-10, .bootstrap-wrapper  .col-xs-11, .bootstrap-wrapper  .col-xs-12{float:left}
.bootstrap-wrapper .col-xs-12{width:100%}
.bootstrap-wrapper .col-xs-11{width:91.66666667%}
.bootstrap-wrapper .col-xs-10{width:83.33333333%}
.bootstrap-wrapper .col-xs-9{width:75%}
.bootstrap-wrapper .col-xs-8{width:66.66666667%}
.bootstrap-wrapper .col-xs-7{width:58.33333333%}
.bootstrap-wrapper .col-xs-6{width:50%}
.bootstrap-wrapper .col-xs-5{width:41.66666667%}
.bootstrap-wrapper .col-xs-4{width:33.33333333%}
.bootstrap-wrapper .col-xs-3{width:25%}
.bootstrap-wrapper .col-xs-2{width:16.66666667%}
.bootstrap-wrapper .col-xs-1{width:8.33333333%}
.bootstrap-wrapper .col-xs-pull-12{right:100%}
.bootstrap-wrapper .col-xs-pull-11{right:91.66666667%}
.bootstrap-wrapper .col-xs-pull-10{right:83.33333333%}
.bootstrap-wrapper .col-xs-pull-9{right:75%}
.bootstrap-wrapper .col-xs-pull-8{right:66.66666667%}
.bootstrap-wrapper .col-xs-pull-7{right:58.33333333%}
.bootstrap-wrapper .col-xs-pull-6{right:50%}
.bootstrap-wrapper .col-xs-pull-5{right:41.66666667%}
.bootstrap-wrapper .col-xs-pull-4{right:33.33333333%}
.bootstrap-wrapper .col-xs-pull-3{right:25%}
.bootstrap-wrapper .col-xs-pull-2{right:16.66666667%}
.bootstrap-wrapper .col-xs-pull-1{right:8.33333333%}
.bootstrap-wrapper .col-xs-pull-0{right:auto}
.bootstrap-wrapper .col-xs-push-12{left:100%}
.bootstrap-wrapper .col-xs-push-11{left:91.66666667%}
.bootstrap-wrapper .col-xs-push-10{left:83.33333333%}
.bootstrap-wrapper .col-xs-push-9{left:75%}
.bootstrap-wrapper .col-xs-push-8{left:66.66666667%}
.bootstrap-wrapper .col-xs-push-7{left:58.33333333%}
.bootstrap-wrapper .col-xs-push-6{left:50%}
.bootstrap-wrapper .col-xs-push-5{left:41.66666667%}
.bootstrap-wrapper .col-xs-push-4{left:33.33333333%}
.bootstrap-wrapper .col-xs-push-3{left:25%}
.bootstrap-wrapper .col-xs-push-2{left:16.66666667%}
.bootstrap-wrapper .col-xs-push-1{left:8.33333333%}
.bootstrap-wrapper .col-xs-push-0{left:auto}
.bootstrap-wrapper .col-xs-offset-12{margin-left:100%}
.bootstrap-wrapper .col-xs-offset-11{margin-left:91.66666667%}
.bootstrap-wrapper .col-xs-offset-10{margin-left:83.33333333%}
.bootstrap-wrapper .col-xs-offset-9{margin-left:75%}
.bootstrap-wrapper .col-xs-offset-8{margin-left:66.66666667%}
.bootstrap-wrapper .col-xs-offset-7{margin-left:58.33333333%}
.bootstrap-wrapper .col-xs-offset-6{margin-left:50%}
.bootstrap-wrapper .col-xs-offset-5{margin-left:41.66666667%}
.bootstrap-wrapper .col-xs-offset-4{margin-left:33.33333333%}
.bootstrap-wrapper .col-xs-offset-3{margin-left:25%}
.bootstrap-wrapper .col-xs-offset-2{margin-left:16.66666667%}
.bootstrap-wrapper .col-xs-offset-1{margin-left:8.33333333%}
.bootstrap-wrapper .col-xs-offset-0{margin-left:0}
@media (min-width:768px){.col-sm-1, .bootstrap-wrapper  .col-sm-2, .bootstrap-wrapper  .col-sm-3, .bootstrap-wrapper  .col-sm-4, .bootstrap-wrapper  .col-sm-5, .bootstrap-wrapper  .col-sm-6, .bootstrap-wrapper  .col-sm-7, .bootstrap-wrapper  .col-sm-8, .bootstrap-wrapper  .col-sm-9, .bootstrap-wrapper  .col-sm-10, .bootstrap-wrapper  .col-sm-11, .bootstrap-wrapper  .col-sm-12{float:left}
  .bootstrap-wrapper .col-sm-12{width:100%}
  .bootstrap-wrapper .col-sm-11{width:91.66666667%}
  .bootstrap-wrapper .col-sm-10{width:83.33333333%}
  .bootstrap-wrapper .col-sm-9{width:75%}
  .bootstrap-wrapper .col-sm-8{width:66.66666667%}
  .bootstrap-wrapper .col-sm-7{width:58.33333333%}
  .bootstrap-wrapper .col-sm-6{width:50%}
  .bootstrap-wrapper .col-sm-5{width:41.66666667%}
  .bootstrap-wrapper .col-sm-4{width:33.33333333%}
  .bootstrap-wrapper .col-sm-3{width:25%}
  .bootstrap-wrapper .col-sm-2{width:16.66666667%}
  .bootstrap-wrapper .col-sm-1{width:8.33333333%}
  .bootstrap-wrapper .col-sm-pull-12{right:100%}
  .bootstrap-wrapper .col-sm-pull-11{right:91.66666667%}
  .bootstrap-wrapper .col-sm-pull-10{right:83.33333333%}
  .bootstrap-wrapper .col-sm-pull-9{right:75%}
  .bootstrap-wrapper .col-sm-pull-8{right:66.66666667%}
  .bootstrap-wrapper .col-sm-pull-7{right:58.33333333%}
  .bootstrap-wrapper .col-sm-pull-6{right:50%}
  .bootstrap-wrapper .col-sm-pull-5{right:41.66666667%}
  .bootstrap-wrapper .col-sm-pull-4{right:33.33333333%}
  .bootstrap-wrapper .col-sm-pull-3{right:25%}
  .bootstrap-wrapper .col-sm-pull-2{right:16.66666667%}
  .bootstrap-wrapper .col-sm-pull-1{right:8.33333333%}
  .bootstrap-wrapper .col-sm-pull-0{right:auto}
  .bootstrap-wrapper .col-sm-push-12{left:100%}
  .bootstrap-wrapper .col-sm-push-11{left:91.66666667%}
  .bootstrap-wrapper .col-sm-push-10{left:83.33333333%}
  .bootstrap-wrapper .col-sm-push-9{left:75%}
  .bootstrap-wrapper .col-sm-push-8{left:66.66666667%}
  .bootstrap-wrapper .col-sm-push-7{left:58.33333333%}
  .bootstrap-wrapper .col-sm-push-6{left:50%}
  .bootstrap-wrapper .col-sm-push-5{left:41.66666667%}
  .bootstrap-wrapper .col-sm-push-4{left:33.33333333%}
  .bootstrap-wrapper .col-sm-push-3{left:25%}
  .bootstrap-wrapper .col-sm-push-2{left:16.66666667%}
  .bootstrap-wrapper .col-sm-push-1{left:8.33333333%}
  .bootstrap-wrapper .col-sm-push-0{left:auto}
  .bootstrap-wrapper .col-sm-offset-12{margin-left:100%}
  .bootstrap-wrapper .col-sm-offset-11{margin-left:91.66666667%}
  .bootstrap-wrapper .col-sm-offset-10{margin-left:83.33333333%}
  .bootstrap-wrapper .col-sm-offset-9{margin-left:75%}
  .bootstrap-wrapper .col-sm-offset-8{margin-left:66.66666667%}
  .bootstrap-wrapper .col-sm-offset-7{margin-left:58.33333333%}
  .bootstrap-wrapper .col-sm-offset-6{margin-left:50%}
  .bootstrap-wrapper .col-sm-offset-5{margin-left:41.66666667%}
  .bootstrap-wrapper .col-sm-offset-4{margin-left:33.33333333%}
  .bootstrap-wrapper .col-sm-offset-3{margin-left:25%}
  .bootstrap-wrapper .col-sm-offset-2{margin-left:16.66666667%}
  .bootstrap-wrapper .col-sm-offset-1{margin-left:8.33333333%}
  .bootstrap-wrapper .col-sm-offset-0{margin-left:0}
}
@media (min-width:992px){.col-md-1, .bootstrap-wrapper  .col-md-2, .bootstrap-wrapper  .col-md-3, .bootstrap-wrapper  .col-md-4, .bootstrap-wrapper  .col-md-5, .bootstrap-wrapper  .col-md-6, .bootstrap-wrapper  .col-md-7, .bootstrap-wrapper  .col-md-8, .bootstrap-wrapper  .col-md-9, .bootstrap-wrapper  .col-md-10, .bootstrap-wrapper  .col-md-11, .bootstrap-wrapper  .col-md-12{float:left}
  .bootstrap-wrapper .col-md-12{width:100%}
  .bootstrap-wrapper .col-md-11{width:91.66666667%}
  .bootstrap-wrapper .col-md-10{width:83.33333333%}
  .bootstrap-wrapper .col-md-9{width:75%}
  .bootstrap-wrapper .col-md-8{width:66.66666667%}
  .bootstrap-wrapper .col-md-7{width:58.33333333%}
  .bootstrap-wrapper .col-md-6{width:50%}
  .bootstrap-wrapper .col-md-5{width:41.66666667%}
  .bootstrap-wrapper .col-md-4{width:33.33333333%}
  .bootstrap-wrapper .col-md-3{width:25%}
  .bootstrap-wrapper .col-md-2{width:16.66666667%}
  .bootstrap-wrapper .col-md-1{width:8.33333333%}
  .bootstrap-wrapper .col-md-pull-12{right:100%}
  .bootstrap-wrapper .col-md-pull-11{right:91.66666667%}
  .bootstrap-wrapper .col-md-pull-10{right:83.33333333%}
  .bootstrap-wrapper .col-md-pull-9{right:75%}
  .bootstrap-wrapper .col-md-pull-8{right:66.66666667%}
  .bootstrap-wrapper .col-md-pull-7{right:58.33333333%}
  .bootstrap-wrapper .col-md-pull-6{right:50%}
  .bootstrap-wrapper .col-md-pull-5{right:41.66666667%}
  .bootstrap-wrapper .col-md-pull-4{right:33.33333333%}
  .bootstrap-wrapper .col-md-pull-3{right:25%}
  .bootstrap-wrapper .col-md-pull-2{right:16.66666667%}
  .bootstrap-wrapper .col-md-pull-1{right:8.33333333%}
  .bootstrap-wrapper .col-md-pull-0{right:auto}
  .bootstrap-wrapper .col-md-push-12{left:100%}
  .bootstrap-wrapper .col-md-push-11{left:91.66666667%}
  .bootstrap-wrapper .col-md-push-10{left:83.33333333%}
  .bootstrap-wrapper .col-md-push-9{left:75%}
  .bootstrap-wrapper .col-md-push-8{left:66.66666667%}
  .bootstrap-wrapper .col-md-push-7{left:58.33333333%}
  .bootstrap-wrapper .col-md-push-6{left:50%}
  .bootstrap-wrapper .col-md-push-5{left:41.66666667%}
  .bootstrap-wrapper .col-md-push-4{left:33.33333333%}
  .bootstrap-wrapper .col-md-push-3{left:25%}
  .bootstrap-wrapper .col-md-push-2{left:16.66666667%}
  .bootstrap-wrapper .col-md-push-1{left:8.33333333%}
  .bootstrap-wrapper .col-md-push-0{left:auto}
  .bootstrap-wrapper .col-md-offset-12{margin-left:100%}
  .bootstrap-wrapper .col-md-offset-11{margin-left:91.66666667%}
  .bootstrap-wrapper .col-md-offset-10{margin-left:83.33333333%}
  .bootstrap-wrapper .col-md-offset-9{margin-left:75%}
  .bootstrap-wrapper .col-md-offset-8{margin-left:66.66666667%}
  .bootstrap-wrapper .col-md-offset-7{margin-left:58.33333333%}
  .bootstrap-wrapper .col-md-offset-6{margin-left:50%}
  .bootstrap-wrapper .col-md-offset-5{margin-left:41.66666667%}
  .bootstrap-wrapper .col-md-offset-4{margin-left:33.33333333%}
  .bootstrap-wrapper .col-md-offset-3{margin-left:25%}
  .bootstrap-wrapper .col-md-offset-2{margin-left:16.66666667%}
  .bootstrap-wrapper .col-md-offset-1{margin-left:8.33333333%}
  .bootstrap-wrapper .col-md-offset-0{margin-left:0}
}
@media (min-width:1200px){.col-lg-1, .bootstrap-wrapper  .col-lg-2, .bootstrap-wrapper  .col-lg-3, .bootstrap-wrapper  .col-lg-4, .bootstrap-wrapper  .col-lg-5, .bootstrap-wrapper  .col-lg-6, .bootstrap-wrapper  .col-lg-7, .bootstrap-wrapper  .col-lg-8, .bootstrap-wrapper  .col-lg-9, .bootstrap-wrapper  .col-lg-10, .bootstrap-wrapper  .col-lg-11, .bootstrap-wrapper  .col-lg-12{float:left}
  .bootstrap-wrapper .col-lg-12{width:100%}
  .bootstrap-wrapper .col-lg-11{width:91.66666667%}
  .bootstrap-wrapper .col-lg-10{width:83.33333333%}
  .bootstrap-wrapper .col-lg-9{width:75%}
  .bootstrap-wrapper .col-lg-8{width:66.66666667%}
  .bootstrap-wrapper .col-lg-7{width:58.33333333%}
  .bootstrap-wrapper .col-lg-6{width:50%}
  .bootstrap-wrapper .col-lg-5{width:41.66666667%}
  .bootstrap-wrapper .col-lg-4{width:33.33333333%}
  .bootstrap-wrapper .col-lg-3{width:25%}
  .bootstrap-wrapper .col-lg-2{width:16.66666667%}
  .bootstrap-wrapper .col-lg-1{width:8.33333333%}
  .bootstrap-wrapper .col-lg-pull-12{right:100%}
  .bootstrap-wrapper .col-lg-pull-11{right:91.66666667%}
  .bootstrap-wrapper .col-lg-pull-10{right:83.33333333%}
  .bootstrap-wrapper .col-lg-pull-9{right:75%}
  .bootstrap-wrapper .col-lg-pull-8{right:66.66666667%}
  .bootstrap-wrapper .col-lg-pull-7{right:58.33333333%}
  .bootstrap-wrapper .col-lg-pull-6{right:50%}
  .bootstrap-wrapper .col-lg-pull-5{right:41.66666667%}
  .bootstrap-wrapper .col-lg-pull-4{right:33.33333333%}
  .bootstrap-wrapper .col-lg-pull-3{right:25%}
  .bootstrap-wrapper .col-lg-pull-2{right:16.66666667%}
  .bootstrap-wrapper .col-lg-pull-1{right:8.33333333%}
  .bootstrap-wrapper .col-lg-pull-0{right:auto}
  .bootstrap-wrapper .col-lg-push-12{left:100%}
  .bootstrap-wrapper .col-lg-push-11{left:91.66666667%}
  .bootstrap-wrapper .col-lg-push-10{left:83.33333333%}
  .bootstrap-wrapper .col-lg-push-9{left:75%}
  .bootstrap-wrapper .col-lg-push-8{left:66.66666667%}
  .bootstrap-wrapper .col-lg-push-7{left:58.33333333%}
  .bootstrap-wrapper .col-lg-push-6{left:50%}
  .bootstrap-wrapper .col-lg-push-5{left:41.66666667%}
  .bootstrap-wrapper .col-lg-push-4{left:33.33333333%}
  .bootstrap-wrapper .col-lg-push-3{left:25%}
  .bootstrap-wrapper .col-lg-push-2{left:16.66666667%}
  .bootstrap-wrapper .col-lg-push-1{left:8.33333333%}
  .bootstrap-wrapper .col-lg-push-0{left:auto}
  .bootstrap-wrapper .col-lg-offset-12{margin-left:100%}
  .bootstrap-wrapper .col-lg-offset-11{margin-left:91.66666667%}
  .bootstrap-wrapper .col-lg-offset-10{margin-left:83.33333333%}
  .bootstrap-wrapper .col-lg-offset-9{margin-left:75%}
  .bootstrap-wrapper .col-lg-offset-8{margin-left:66.66666667%}
  .bootstrap-wrapper .col-lg-offset-7{margin-left:58.33333333%}
  .bootstrap-wrapper .col-lg-offset-6{margin-left:50%}
  .bootstrap-wrapper .col-lg-offset-5{margin-left:41.66666667%}
  .bootstrap-wrapper .col-lg-offset-4{margin-left:33.33333333%}
  .bootstrap-wrapper .col-lg-offset-3{margin-left:25%}
  .bootstrap-wrapper .col-lg-offset-2{margin-left:16.66666667%}
  .bootstrap-wrapper .col-lg-offset-1{margin-left:8.33333333%}
  .bootstrap-wrapper .col-lg-offset-0{margin-left:0}
}
.bootstrap-wrapper table{background-color:transparent}
.bootstrap-wrapper caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}
.bootstrap-wrapper th{text-align:left}
.bootstrap-wrapper .table{width:100%;max-width:100%;margin-bottom:20px}
.bootstrap-wrapper .table>thead>tr>th, .bootstrap-wrapper .table>tbody>tr>th, .bootstrap-wrapper .table>tfoot>tr>th, .bootstrap-wrapper .table>thead>tr>td, .bootstrap-wrapper .table>tbody>tr>td, .bootstrap-wrapper .table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}
.bootstrap-wrapper .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}
.bootstrap-wrapper .table>caption+thead>tr:first-child>th, .bootstrap-wrapper .table>colgroup+thead>tr:first-child>th, .bootstrap-wrapper .table>thead:first-child>tr:first-child>th, .bootstrap-wrapper .table>caption+thead>tr:first-child>td, .bootstrap-wrapper .table>colgroup+thead>tr:first-child>td, .bootstrap-wrapper .table>thead:first-child>tr:first-child>td{border-top:0}
.bootstrap-wrapper .table>tbody+tbody{border-top:2px solid #ddd}
.bootstrap-wrapper .table .table{background-color:#fff}
.bootstrap-wrapper .table-condensed>thead>tr>th, .bootstrap-wrapper .table-condensed>tbody>tr>th, .bootstrap-wrapper .table-condensed>tfoot>tr>th, .bootstrap-wrapper .table-condensed>thead>tr>td, .bootstrap-wrapper .table-condensed>tbody>tr>td, .bootstrap-wrapper .table-condensed>tfoot>tr>td{padding:5px}
.bootstrap-wrapper .table-bordered{border:1px solid #ddd}
.bootstrap-wrapper .table-bordered>thead>tr>th, .bootstrap-wrapper .table-bordered>tbody>tr>th, .bootstrap-wrapper .table-bordered>tfoot>tr>th, .bootstrap-wrapper .table-bordered>thead>tr>td, .bootstrap-wrapper .table-bordered>tbody>tr>td, .bootstrap-wrapper .table-bordered>tfoot>tr>td{border:1px solid #ddd}
.bootstrap-wrapper .table-bordered>thead>tr>th, .bootstrap-wrapper .table-bordered>thead>tr>td{border-bottom-width:2px}
.bootstrap-wrapper .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}
.bootstrap-wrapper .table-hover>tbody>tr:hover{background-color:#f5f5f5}
.bootstrap-wrapper table col[class*="col-"]{position:static;float:none;display:table-column}
.bootstrap-wrapper table td[class*="col-"], .bootstrap-wrapper table th[class*="col-"]{position:static;float:none;display:table-cell}
.bootstrap-wrapper .table>thead>tr>td.active, .bootstrap-wrapper .table>tbody>tr>td.active, .bootstrap-wrapper .table>tfoot>tr>td.active, .bootstrap-wrapper .table>thead>tr>th.active, .bootstrap-wrapper .table>tbody>tr>th.active, .bootstrap-wrapper .table>tfoot>tr>th.active, .bootstrap-wrapper .table>thead>tr.active>td, .bootstrap-wrapper .table>tbody>tr.active>td, .bootstrap-wrapper .table>tfoot>tr.active>td, .bootstrap-wrapper .table>thead>tr.active>th, .bootstrap-wrapper .table>tbody>tr.active>th, .bootstrap-wrapper .table>tfoot>tr.active>th{background-color:#f5f5f5}
.bootstrap-wrapper .table-hover>tbody>tr>td.active:hover, .bootstrap-wrapper .table-hover>tbody>tr>th.active:hover, .bootstrap-wrapper .table-hover>tbody>tr.active:hover>td, .bootstrap-wrapper .table-hover>tbody>tr:hover>.active, .bootstrap-wrapper .table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}
.bootstrap-wrapper .table>thead>tr>td.success, .bootstrap-wrapper .table>tbody>tr>td.success, .bootstrap-wrapper .table>tfoot>tr>td.success, .bootstrap-wrapper .table>thead>tr>th.success, .bootstrap-wrapper .table>tbody>tr>th.success, .bootstrap-wrapper .table>tfoot>tr>th.success, .bootstrap-wrapper .table>thead>tr.success>td, .bootstrap-wrapper .table>tbody>tr.success>td, .bootstrap-wrapper .table>tfoot>tr.success>td, .bootstrap-wrapper .table>thead>tr.success>th, .bootstrap-wrapper .table>tbody>tr.success>th, .bootstrap-wrapper .table>tfoot>tr.success>th{background-color:#dff0d8}
.bootstrap-wrapper .table-hover>tbody>tr>td.success:hover, .bootstrap-wrapper .table-hover>tbody>tr>th.success:hover, .bootstrap-wrapper .table-hover>tbody>tr.success:hover>td, .bootstrap-wrapper .table-hover>tbody>tr:hover>.success, .bootstrap-wrapper .table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}
.bootstrap-wrapper .table>thead>tr>td.info, .bootstrap-wrapper .table>tbody>tr>td.info, .bootstrap-wrapper .table>tfoot>tr>td.info, .bootstrap-wrapper .table>thead>tr>th.info, .bootstrap-wrapper .table>tbody>tr>th.info, .bootstrap-wrapper .table>tfoot>tr>th.info, .bootstrap-wrapper .table>thead>tr.info>td, .bootstrap-wrapper .table>tbody>tr.info>td, .bootstrap-wrapper .table>tfoot>tr.info>td, .bootstrap-wrapper .table>thead>tr.info>th, .bootstrap-wrapper .table>tbody>tr.info>th, .bootstrap-wrapper .table>tfoot>tr.info>th{background-color:#d9edf7}
.bootstrap-wrapper .table-hover>tbody>tr>td.info:hover, .bootstrap-wrapper .table-hover>tbody>tr>th.info:hover, .bootstrap-wrapper .table-hover>tbody>tr.info:hover>td, .bootstrap-wrapper .table-hover>tbody>tr:hover>.info, .bootstrap-wrapper .table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}
.bootstrap-wrapper .table>thead>tr>td.warning, .bootstrap-wrapper .table>tbody>tr>td.warning, .bootstrap-wrapper .table>tfoot>tr>td.warning, .bootstrap-wrapper .table>thead>tr>th.warning, .bootstrap-wrapper .table>tbody>tr>th.warning, .bootstrap-wrapper .table>tfoot>tr>th.warning, .bootstrap-wrapper .table>thead>tr.warning>td, .bootstrap-wrapper .table>tbody>tr.warning>td, .bootstrap-wrapper .table>tfoot>tr.warning>td, .bootstrap-wrapper .table>thead>tr.warning>th, .bootstrap-wrapper .table>tbody>tr.warning>th, .bootstrap-wrapper .table>tfoot>tr.warning>th{background-color:#fcf8e3}
.bootstrap-wrapper .table-hover>tbody>tr>td.warning:hover, .bootstrap-wrapper .table-hover>tbody>tr>th.warning:hover, .bootstrap-wrapper .table-hover>tbody>tr.warning:hover>td, .bootstrap-wrapper .table-hover>tbody>tr:hover>.warning, .bootstrap-wrapper .table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}
.bootstrap-wrapper .table>thead>tr>td.danger, .bootstrap-wrapper .table>tbody>tr>td.danger, .bootstrap-wrapper .table>tfoot>tr>td.danger, .bootstrap-wrapper .table>thead>tr>th.danger, .bootstrap-wrapper .table>tbody>tr>th.danger, .bootstrap-wrapper .table>tfoot>tr>th.danger, .bootstrap-wrapper .table>thead>tr.danger>td, .bootstrap-wrapper .table>tbody>tr.danger>td, .bootstrap-wrapper .table>tfoot>tr.danger>td, .bootstrap-wrapper .table>thead>tr.danger>th, .bootstrap-wrapper .table>tbody>tr.danger>th, .bootstrap-wrapper .table>tfoot>tr.danger>th{background-color:#f2dede}
.bootstrap-wrapper .table-hover>tbody>tr>td.danger:hover, .bootstrap-wrapper .table-hover>tbody>tr>th.danger:hover, .bootstrap-wrapper .table-hover>tbody>tr.danger:hover>td, .bootstrap-wrapper .table-hover>tbody>tr:hover>.danger, .bootstrap-wrapper .table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}
.bootstrap-wrapper .table-responsive{overflow-x:auto;min-height:0.01%}
@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}
  .bootstrap-wrapper .table-responsive>.table{margin-bottom:0}
  .bootstrap-wrapper .table-responsive>.table>thead>tr>th, .bootstrap-wrapper .table-responsive>.table>tbody>tr>th, .bootstrap-wrapper .table-responsive>.table>tfoot>tr>th, .bootstrap-wrapper .table-responsive>.table>thead>tr>td, .bootstrap-wrapper .table-responsive>.table>tbody>tr>td, .bootstrap-wrapper .table-responsive>.table>tfoot>tr>td{white-space:nowrap}
  .bootstrap-wrapper .table-responsive>.table-bordered{border:0}
  .bootstrap-wrapper .table-responsive>.table-bordered>thead>tr>th:first-child, .bootstrap-wrapper .table-responsive>.table-bordered>tbody>tr>th:first-child, .bootstrap-wrapper .table-responsive>.table-bordered>tfoot>tr>th:first-child, .bootstrap-wrapper .table-responsive>.table-bordered>thead>tr>td:first-child, .bootstrap-wrapper .table-responsive>.table-bordered>tbody>tr>td:first-child, .bootstrap-wrapper .table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}
  .bootstrap-wrapper .table-responsive>.table-bordered>thead>tr>th:last-child, .bootstrap-wrapper .table-responsive>.table-bordered>tbody>tr>th:last-child, .bootstrap-wrapper .table-responsive>.table-bordered>tfoot>tr>th:last-child, .bootstrap-wrapper .table-responsive>.table-bordered>thead>tr>td:last-child, .bootstrap-wrapper .table-responsive>.table-bordered>tbody>tr>td:last-child, .bootstrap-wrapper .table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}
  .bootstrap-wrapper .table-responsive>.table-bordered>tbody>tr:last-child>th, .bootstrap-wrapper .table-responsive>.table-bordered>tfoot>tr:last-child>th, .bootstrap-wrapper .table-responsive>.table-bordered>tbody>tr:last-child>td, .bootstrap-wrapper .table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}
}
.bootstrap-wrapper fieldset{padding:0;margin:0;border:0;min-width:0}
.bootstrap-wrapper legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}
.bootstrap-wrapper label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}
.bootstrap-wrapper input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
.bootstrap-wrapper input[type="radio"], .bootstrap-wrapper input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}
.bootstrap-wrapper input[type="file"]{display:block}
.bootstrap-wrapper input[type="range"]{display:block;width:100%}
.bootstrap-wrapper select[multiple], .bootstrap-wrapper select[size]{height:auto}
.bootstrap-wrapper input[type="file"]:focus, .bootstrap-wrapper input[type="radio"]:focus, .bootstrap-wrapper input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}
.bootstrap-wrapper output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}
.bootstrap-wrapper .form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}
.bootstrap-wrapper .form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6)}
.bootstrap-wrapper .form-control::-moz-placeholder{color:#999;opacity:1}
.bootstrap-wrapper .form-control:-ms-input-placeholder{color:#999}
.bootstrap-wrapper .form-control::-webkit-input-placeholder{color:#999}
.bootstrap-wrapper .form-control::-ms-expand{border:0;background-color:transparent}
.bootstrap-wrapper .form-control[disabled], .bootstrap-wrapper .form-control[readonly], .bootstrap-wrapper fieldset[disabled] .form-control{background-color:#eee;opacity:1}
.bootstrap-wrapper .form-control[disabled], .bootstrap-wrapper fieldset[disabled] .form-control{cursor:not-allowed}
.bootstrap-wrapper textarea.form-control{height:auto}
.bootstrap-wrapper input[type="search"]{-webkit-appearance:none}
@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control, .bootstrap-wrapper input[type="time"].form-control, .bootstrap-wrapper input[type="datetime-local"].form-control, .bootstrap-wrapper input[type="month"].form-control{line-height:34px}
  .bootstrap-wrapper input[type="date"].input-sm, .bootstrap-wrapper input[type="time"].input-sm, .bootstrap-wrapper input[type="datetime-local"].input-sm, .bootstrap-wrapper input[type="month"].input-sm, .bootstrap-wrapper .input-group-sm input[type="date"], .bootstrap-wrapper .input-group-sm input[type="time"], .bootstrap-wrapper .input-group-sm input[type="datetime-local"], .bootstrap-wrapper .input-group-sm input[type="month"]{line-height:30px}
  .bootstrap-wrapper input[type="date"].input-lg, .bootstrap-wrapper input[type="time"].input-lg, .bootstrap-wrapper input[type="datetime-local"].input-lg, .bootstrap-wrapper input[type="month"].input-lg, .bootstrap-wrapper .input-group-lg input[type="date"], .bootstrap-wrapper .input-group-lg input[type="time"], .bootstrap-wrapper .input-group-lg input[type="datetime-local"], .bootstrap-wrapper .input-group-lg input[type="month"]{line-height:46px}
}
.bootstrap-wrapper .form-group{margin-bottom:15px}
.bootstrap-wrapper .radio, .bootstrap-wrapper .checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}
.bootstrap-wrapper .radio label, .bootstrap-wrapper .checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}
.bootstrap-wrapper .radio input[type="radio"], .bootstrap-wrapper .radio-inline input[type="radio"], .bootstrap-wrapper .checkbox input[type="checkbox"], .bootstrap-wrapper .checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}
.bootstrap-wrapper .radio+.radio, .bootstrap-wrapper .checkbox+.checkbox{margin-top:-5px}
.bootstrap-wrapper .radio-inline, .bootstrap-wrapper .checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}
.bootstrap-wrapper .radio-inline+.radio-inline, .bootstrap-wrapper .checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}
.bootstrap-wrapper input[type="radio"][disabled], .bootstrap-wrapper input[type="checkbox"][disabled], .bootstrap-wrapper input[type="radio"].disabled, .bootstrap-wrapper input[type="checkbox"].disabled, .bootstrap-wrapper fieldset[disabled] input[type="radio"], .bootstrap-wrapper fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}
.bootstrap-wrapper .radio-inline.disabled, .bootstrap-wrapper .checkbox-inline.disabled, .bootstrap-wrapper fieldset[disabled] .radio-inline, .bootstrap-wrapper fieldset[disabled] .checkbox-inline{cursor:not-allowed}
.bootstrap-wrapper .radio.disabled label, .bootstrap-wrapper .checkbox.disabled label, .bootstrap-wrapper fieldset[disabled] .radio label, .bootstrap-wrapper fieldset[disabled] .checkbox label{cursor:not-allowed}
.bootstrap-wrapper .form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}
.bootstrap-wrapper .form-control-static.input-lg, .bootstrap-wrapper .form-control-static.input-sm{padding-left:0;padding-right:0}
.bootstrap-wrapper .input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}
.bootstrap-wrapper select.input-sm{height:30px;line-height:30px}
.bootstrap-wrapper textarea.input-sm, .bootstrap-wrapper select[multiple].input-sm{height:auto}
.bootstrap-wrapper .form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}
.bootstrap-wrapper .form-group-sm select.form-control{height:30px;line-height:30px}
.bootstrap-wrapper .form-group-sm textarea.form-control, .bootstrap-wrapper .form-group-sm select[multiple].form-control{height:auto}
.bootstrap-wrapper .form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}
.bootstrap-wrapper .input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}
.bootstrap-wrapper select.input-lg{height:46px;line-height:46px}
.bootstrap-wrapper textarea.input-lg, .bootstrap-wrapper select[multiple].input-lg{height:auto}
.bootstrap-wrapper .form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}
.bootstrap-wrapper .form-group-lg select.form-control{height:46px;line-height:46px}
.bootstrap-wrapper .form-group-lg textarea.form-control, .bootstrap-wrapper .form-group-lg select[multiple].form-control{height:auto}
.bootstrap-wrapper .form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}
.bootstrap-wrapper .has-feedback{position:relative}
.bootstrap-wrapper .has-feedback .form-control{padding-right:42.5px}
.bootstrap-wrapper .form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}
.bootstrap-wrapper .input-lg+.form-control-feedback, .bootstrap-wrapper .input-group-lg+.form-control-feedback, .bootstrap-wrapper .form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}
.bootstrap-wrapper .input-sm+.form-control-feedback, .bootstrap-wrapper .input-group-sm+.form-control-feedback, .bootstrap-wrapper .form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}
.bootstrap-wrapper .has-success .help-block, .bootstrap-wrapper .has-success .control-label, .bootstrap-wrapper .has-success .radio, .bootstrap-wrapper .has-success .checkbox, .bootstrap-wrapper .has-success .radio-inline, .bootstrap-wrapper .has-success .checkbox-inline, .bootstrap-wrapper .has-success.radio label, .bootstrap-wrapper .has-success.checkbox label, .bootstrap-wrapper .has-success.radio-inline label, .bootstrap-wrapper .has-success.checkbox-inline label{color:#3c763d}
.bootstrap-wrapper .has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075)}
.bootstrap-wrapper .has-success .form-control:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168}
.bootstrap-wrapper .has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}
.bootstrap-wrapper .has-success .form-control-feedback{color:#3c763d}
.bootstrap-wrapper .has-warning .help-block, .bootstrap-wrapper .has-warning .control-label, .bootstrap-wrapper .has-warning .radio, .bootstrap-wrapper .has-warning .checkbox, .bootstrap-wrapper .has-warning .radio-inline, .bootstrap-wrapper .has-warning .checkbox-inline, .bootstrap-wrapper .has-warning.radio label, .bootstrap-wrapper .has-warning.checkbox label, .bootstrap-wrapper .has-warning.radio-inline label, .bootstrap-wrapper .has-warning.checkbox-inline label{color:#8a6d3b}
.bootstrap-wrapper .has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075)}
.bootstrap-wrapper .has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b}
.bootstrap-wrapper .has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}
.bootstrap-wrapper .has-warning .form-control-feedback{color:#8a6d3b}
.bootstrap-wrapper .has-error .help-block, .bootstrap-wrapper .has-error .control-label, .bootstrap-wrapper .has-error .radio, .bootstrap-wrapper .has-error .checkbox, .bootstrap-wrapper .has-error .radio-inline, .bootstrap-wrapper .has-error .checkbox-inline, .bootstrap-wrapper .has-error.radio label, .bootstrap-wrapper .has-error.checkbox label, .bootstrap-wrapper .has-error.radio-inline label, .bootstrap-wrapper .has-error.checkbox-inline label{color:#a94442}
.bootstrap-wrapper .has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075)}
.bootstrap-wrapper .has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483}
.bootstrap-wrapper .has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}
.bootstrap-wrapper .has-error .form-control-feedback{color:#a94442}
.bootstrap-wrapper .has-feedback label~.form-control-feedback{top:25px}
.bootstrap-wrapper .has-feedback label.sr-only~.form-control-feedback{top:0}
.bootstrap-wrapper .help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}
@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}
  .bootstrap-wrapper .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}
  .bootstrap-wrapper .form-inline .form-control-static{display:inline-block}
  .bootstrap-wrapper .form-inline .input-group{display:inline-table;vertical-align:middle}
  .bootstrap-wrapper .form-inline .input-group .input-group-addon, .bootstrap-wrapper .form-inline .input-group .input-group-btn, .bootstrap-wrapper .form-inline .input-group .form-control{width:auto}
  .bootstrap-wrapper .form-inline .input-group>.form-control{width:100%}
  .bootstrap-wrapper .form-inline .control-label{margin-bottom:0;vertical-align:middle}
  .bootstrap-wrapper .form-inline .radio, .bootstrap-wrapper .form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}
  .bootstrap-wrapper .form-inline .radio label, .bootstrap-wrapper .form-inline .checkbox label{padding-left:0}
  .bootstrap-wrapper .form-inline .radio input[type="radio"], .bootstrap-wrapper .form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}
  .bootstrap-wrapper .form-inline .has-feedback .form-control-feedback{top:0}
}
.bootstrap-wrapper .form-horizontal .radio, .bootstrap-wrapper .form-horizontal .checkbox, .bootstrap-wrapper .form-horizontal .radio-inline, .bootstrap-wrapper .form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}
.bootstrap-wrapper .form-horizontal .radio, .bootstrap-wrapper .form-horizontal .checkbox{min-height:27px}
.bootstrap-wrapper .form-horizontal .form-group{margin-left:-15px;margin-right:-15px}
@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}
}
.bootstrap-wrapper .form-horizontal .has-feedback .form-control-feedback{right:15px}
@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}
}
@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}
}
.bootstrap-wrapper .btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.bootstrap-wrapper .btn:focus, .bootstrap-wrapper .btn:active:focus, .bootstrap-wrapper .btn.active:focus, .bootstrap-wrapper .btn.focus, .bootstrap-wrapper .btn:active.focus, .bootstrap-wrapper .btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}
.bootstrap-wrapper .btn:hover, .bootstrap-wrapper .btn:focus, .bootstrap-wrapper .btn.focus{color:#333;text-decoration:none}
.bootstrap-wrapper .btn:active, .bootstrap-wrapper .btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125)}
.bootstrap-wrapper .btn.disabled, .bootstrap-wrapper .btn[disabled], .bootstrap-wrapper fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}
.bootstrap-wrapper a.btn.disabled, .bootstrap-wrapper fieldset[disabled] a.btn{pointer-events:none}
.bootstrap-wrapper .btn-default{color:#333;background-color:#fff;border-color:#ccc}
.bootstrap-wrapper .btn-default:focus, .bootstrap-wrapper .btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}
.bootstrap-wrapper .btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}
.bootstrap-wrapper .btn-default:active, .bootstrap-wrapper .btn-default.active, .bootstrap-wrapper .open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}
.bootstrap-wrapper .btn-default:active:hover, .bootstrap-wrapper .btn-default.active:hover, .bootstrap-wrapper .open>.dropdown-toggle.btn-default:hover, .bootstrap-wrapper .btn-default:active:focus, .bootstrap-wrapper .btn-default.active:focus, .bootstrap-wrapper .open>.dropdown-toggle.btn-default:focus, .bootstrap-wrapper .btn-default:active.focus, .bootstrap-wrapper .btn-default.active.focus, .bootstrap-wrapper .open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}
.bootstrap-wrapper .btn-default:active, .bootstrap-wrapper .btn-default.active, .bootstrap-wrapper .open>.dropdown-toggle.btn-default{background-image:none}
.bootstrap-wrapper .btn-default.disabled:hover, .bootstrap-wrapper .btn-default[disabled]:hover, .bootstrap-wrapper fieldset[disabled] .btn-default:hover, .bootstrap-wrapper .btn-default.disabled:focus, .bootstrap-wrapper .btn-default[disabled]:focus, .bootstrap-wrapper fieldset[disabled] .btn-default:focus, .bootstrap-wrapper .btn-default.disabled.focus, .bootstrap-wrapper .btn-default[disabled].focus, .bootstrap-wrapper fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}
.bootstrap-wrapper .btn-default .badge{color:#fff;background-color:#333}
.bootstrap-wrapper .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}
.bootstrap-wrapper .btn-primary:focus, .bootstrap-wrapper .btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}
.bootstrap-wrapper .btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}
.bootstrap-wrapper .btn-primary:active, .bootstrap-wrapper .btn-primary.active, .bootstrap-wrapper .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}
.bootstrap-wrapper .btn-primary:active:hover, .bootstrap-wrapper .btn-primary.active:hover, .bootstrap-wrapper .open>.dropdown-toggle.btn-primary:hover, .bootstrap-wrapper .btn-primary:active:focus, .bootstrap-wrapper .btn-primary.active:focus, .bootstrap-wrapper .open>.dropdown-toggle.btn-primary:focus, .bootstrap-wrapper .btn-primary:active.focus, .bootstrap-wrapper .btn-primary.active.focus, .bootstrap-wrapper .open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}
.bootstrap-wrapper .btn-primary:active, .bootstrap-wrapper .btn-primary.active, .bootstrap-wrapper .open>.dropdown-toggle.btn-primary{background-image:none}
.bootstrap-wrapper .btn-primary.disabled:hover, .bootstrap-wrapper .btn-primary[disabled]:hover, .bootstrap-wrapper fieldset[disabled] .btn-primary:hover, .bootstrap-wrapper .btn-primary.disabled:focus, .bootstrap-wrapper .btn-primary[disabled]:focus, .bootstrap-wrapper fieldset[disabled] .btn-primary:focus, .bootstrap-wrapper .btn-primary.disabled.focus, .bootstrap-wrapper .btn-primary[disabled].focus, .bootstrap-wrapper fieldset[disabled] .btn-primary.focus{background-color:#337ab7;border-color:#2e6da4}
.bootstrap-wrapper .btn-primary .badge{color:#337ab7;background-color:#fff}
.bootstrap-wrapper .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}
.bootstrap-wrapper .btn-success:focus, .bootstrap-wrapper .btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}
.bootstrap-wrapper .btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}
.bootstrap-wrapper .btn-success:active, .bootstrap-wrapper .btn-success.active, .bootstrap-wrapper .open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}
.bootstrap-wrapper .btn-success:active:hover, .bootstrap-wrapper .btn-success.active:hover, .bootstrap-wrapper .open>.dropdown-toggle.btn-success:hover, .bootstrap-wrapper .btn-success:active:focus, .bootstrap-wrapper .btn-success.active:focus, .bootstrap-wrapper .open>.dropdown-toggle.btn-success:focus, .bootstrap-wrapper .btn-success:active.focus, .bootstrap-wrapper .btn-success.active.focus, .bootstrap-wrapper .open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}
.bootstrap-wrapper .btn-success:active, .bootstrap-wrapper .btn-success.active, .bootstrap-wrapper .open>.dropdown-toggle.btn-success{background-image:none}
.bootstrap-wrapper .btn-success.disabled:hover, .bootstrap-wrapper .btn-success[disabled]:hover, .bootstrap-wrapper fieldset[disabled] .btn-success:hover, .bootstrap-wrapper .btn-success.disabled:focus, .bootstrap-wrapper .btn-success[disabled]:focus, .bootstrap-wrapper fieldset[disabled] .btn-success:focus, .bootstrap-wrapper .btn-success.disabled.focus, .bootstrap-wrapper .btn-success[disabled].focus, .bootstrap-wrapper fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}
.bootstrap-wrapper .btn-success .badge{color:#5cb85c;background-color:#fff}
.bootstrap-wrapper .btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}
.bootstrap-wrapper .btn-info:focus, .bootstrap-wrapper .btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}
.bootstrap-wrapper .btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}
.bootstrap-wrapper .btn-info:active, .bootstrap-wrapper .btn-info.active, .bootstrap-wrapper .open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}
.bootstrap-wrapper .btn-info:active:hover, .bootstrap-wrapper .btn-info.active:hover, .bootstrap-wrapper .open>.dropdown-toggle.btn-info:hover, .bootstrap-wrapper .btn-info:active:focus, .bootstrap-wrapper .btn-info.active:focus, .bootstrap-wrapper .open>.dropdown-toggle.btn-info:focus, .bootstrap-wrapper .btn-info:active.focus, .bootstrap-wrapper .btn-info.active.focus, .bootstrap-wrapper .open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}
.bootstrap-wrapper .btn-info:active, .bootstrap-wrapper .btn-info.active, .bootstrap-wrapper .open>.dropdown-toggle.btn-info{background-image:none}
.bootstrap-wrapper .btn-info.disabled:hover, .bootstrap-wrapper .btn-info[disabled]:hover, .bootstrap-wrapper fieldset[disabled] .btn-info:hover, .bootstrap-wrapper .btn-info.disabled:focus, .bootstrap-wrapper .btn-info[disabled]:focus, .bootstrap-wrapper fieldset[disabled] .btn-info:focus, .bootstrap-wrapper .btn-info.disabled.focus, .bootstrap-wrapper .btn-info[disabled].focus, .bootstrap-wrapper fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:#46b8da}
.bootstrap-wrapper .btn-info .badge{color:#5bc0de;background-color:#fff}
.bootstrap-wrapper .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}
.bootstrap-wrapper .btn-warning:focus, .bootstrap-wrapper .btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}
.bootstrap-wrapper .btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}
.bootstrap-wrapper .btn-warning:active, .bootstrap-wrapper .btn-warning.active, .bootstrap-wrapper .open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}
.bootstrap-wrapper .btn-warning:active:hover, .bootstrap-wrapper .btn-warning.active:hover, .bootstrap-wrapper .open>.dropdown-toggle.btn-warning:hover, .bootstrap-wrapper .btn-warning:active:focus, .bootstrap-wrapper .btn-warning.active:focus, .bootstrap-wrapper .open>.dropdown-toggle.btn-warning:focus, .bootstrap-wrapper .btn-warning:active.focus, .bootstrap-wrapper .btn-warning.active.focus, .bootstrap-wrapper .open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}
.bootstrap-wrapper .btn-warning:active, .bootstrap-wrapper .btn-warning.active, .bootstrap-wrapper .open>.dropdown-toggle.btn-warning{background-image:none}
.bootstrap-wrapper .btn-warning.disabled:hover, .bootstrap-wrapper .btn-warning[disabled]:hover, .bootstrap-wrapper fieldset[disabled] .btn-warning:hover, .bootstrap-wrapper .btn-warning.disabled:focus, .bootstrap-wrapper .btn-warning[disabled]:focus, .bootstrap-wrapper fieldset[disabled] .btn-warning:focus, .bootstrap-wrapper .btn-warning.disabled.focus, .bootstrap-wrapper .btn-warning[disabled].focus, .bootstrap-wrapper fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:#eea236}
.bootstrap-wrapper .btn-warning .badge{color:#f0ad4e;background-color:#fff}
.bootstrap-wrapper .btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}
.bootstrap-wrapper .btn-danger:focus, .bootstrap-wrapper .btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}
.bootstrap-wrapper .btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}
.bootstrap-wrapper .btn-danger:active, .bootstrap-wrapper .btn-danger.active, .bootstrap-wrapper .open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}
.bootstrap-wrapper .btn-danger:active:hover, .bootstrap-wrapper .btn-danger.active:hover, .bootstrap-wrapper .open>.dropdown-toggle.btn-danger:hover, .bootstrap-wrapper .btn-danger:active:focus, .bootstrap-wrapper .btn-danger.active:focus, .bootstrap-wrapper .open>.dropdown-toggle.btn-danger:focus, .bootstrap-wrapper .btn-danger:active.focus, .bootstrap-wrapper .btn-danger.active.focus, .bootstrap-wrapper .open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}
.bootstrap-wrapper .btn-danger:active, .bootstrap-wrapper .btn-danger.active, .bootstrap-wrapper .open>.dropdown-toggle.btn-danger{background-image:none}
.bootstrap-wrapper .btn-danger.disabled:hover, .bootstrap-wrapper .btn-danger[disabled]:hover, .bootstrap-wrapper fieldset[disabled] .btn-danger:hover, .bootstrap-wrapper .btn-danger.disabled:focus, .bootstrap-wrapper .btn-danger[disabled]:focus, .bootstrap-wrapper fieldset[disabled] .btn-danger:focus, .bootstrap-wrapper .btn-danger.disabled.focus, .bootstrap-wrapper .btn-danger[disabled].focus, .bootstrap-wrapper fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}
.bootstrap-wrapper .btn-danger .badge{color:#d9534f;background-color:#fff}
.bootstrap-wrapper .btn-link{color:#337ab7;font-weight:normal;border-radius:0}
.bootstrap-wrapper .btn-link, .bootstrap-wrapper .btn-link:active, .bootstrap-wrapper .btn-link.active, .bootstrap-wrapper .btn-link[disabled], .bootstrap-wrapper fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}
.bootstrap-wrapper .btn-link, .bootstrap-wrapper .btn-link:hover, .bootstrap-wrapper .btn-link:focus, .bootstrap-wrapper .btn-link:active{border-color:transparent}
.bootstrap-wrapper .btn-link:hover, .bootstrap-wrapper .btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}
.bootstrap-wrapper .btn-link[disabled]:hover, .bootstrap-wrapper fieldset[disabled] .btn-link:hover, .bootstrap-wrapper .btn-link[disabled]:focus, .bootstrap-wrapper fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}
.bootstrap-wrapper .btn-lg, .bootstrap-wrapper .btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}
.bootstrap-wrapper .btn-sm, .bootstrap-wrapper .btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}
.bootstrap-wrapper .btn-xs, .bootstrap-wrapper .btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}
.bootstrap-wrapper .btn-block{display:block;width:100%}
.bootstrap-wrapper .btn-block+.btn-block{margin-top:5px}
.bootstrap-wrapper input[type="submit"].btn-block, .bootstrap-wrapper input[type="reset"].btn-block, .bootstrap-wrapper input[type="button"].btn-block{width:100%}
.bootstrap-wrapper .fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}
.bootstrap-wrapper .fade.in{opacity:1}
.bootstrap-wrapper .collapse{display:none}
.bootstrap-wrapper .collapse.in{display:block}
.bootstrap-wrapper tr.collapse.in{display:table-row}
.bootstrap-wrapper tbody.collapse.in{display:table-row-group}
.bootstrap-wrapper .collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;-o-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}
.bootstrap-wrapper .caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}
.bootstrap-wrapper .dropup, .bootstrap-wrapper .dropdown{position:relative}
.bootstrap-wrapper .dropdown-toggle:focus{outline:0}
.bootstrap-wrapper .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0, 0, 0, 0.175);box-shadow:0 6px 12px rgba(0, 0, 0, 0.175);-webkit-background-clip:padding-box;background-clip:padding-box}
.bootstrap-wrapper .dropdown-menu.pull-right{right:0;left:auto}
.bootstrap-wrapper .dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}
.bootstrap-wrapper .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}
.bootstrap-wrapper .dropdown-menu>li>a:hover, .bootstrap-wrapper .dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}
.bootstrap-wrapper .dropdown-menu>.active>a, .bootstrap-wrapper .dropdown-menu>.active>a:hover, .bootstrap-wrapper .dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}
.bootstrap-wrapper .dropdown-menu>.disabled>a, .bootstrap-wrapper .dropdown-menu>.disabled>a:hover, .bootstrap-wrapper .dropdown-menu>.disabled>a:focus{color:#777}
.bootstrap-wrapper .dropdown-menu>.disabled>a:hover, .bootstrap-wrapper .dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}
.bootstrap-wrapper .open>.dropdown-menu{display:block}
.bootstrap-wrapper .open>a{outline:0}
.bootstrap-wrapper .dropdown-menu-right{left:auto;right:0}
.bootstrap-wrapper .dropdown-menu-left{left:0;right:auto}
.bootstrap-wrapper .dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}
.bootstrap-wrapper .dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}
.bootstrap-wrapper .pull-right>.dropdown-menu{right:0;left:auto}
.bootstrap-wrapper .dropup .caret, .bootstrap-wrapper .navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}
.bootstrap-wrapper .dropup .dropdown-menu, .bootstrap-wrapper .navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}
@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}
  .bootstrap-wrapper .navbar-right .dropdown-menu-left{left:0;right:auto}
}
.bootstrap-wrapper .btn-group, .bootstrap-wrapper .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}
.bootstrap-wrapper .btn-group>.btn, .bootstrap-wrapper .btn-group-vertical>.btn{position:relative;float:left}
.bootstrap-wrapper .btn-group>.btn:hover, .bootstrap-wrapper .btn-group-vertical>.btn:hover, .bootstrap-wrapper .btn-group>.btn:focus, .bootstrap-wrapper .btn-group-vertical>.btn:focus, .bootstrap-wrapper .btn-group>.btn:active, .bootstrap-wrapper .btn-group-vertical>.btn:active, .bootstrap-wrapper .btn-group>.btn.active, .bootstrap-wrapper .btn-group-vertical>.btn.active{z-index:2}
.bootstrap-wrapper .btn-group .btn+.btn, .bootstrap-wrapper .btn-group .btn+.btn-group, .bootstrap-wrapper .btn-group .btn-group+.btn, .bootstrap-wrapper .btn-group .btn-group+.btn-group{margin-left:-1px}
.bootstrap-wrapper .btn-toolbar{margin-left:-5px}
.bootstrap-wrapper .btn-toolbar .btn, .bootstrap-wrapper .btn-toolbar .btn-group, .bootstrap-wrapper .btn-toolbar .input-group{float:left}
.bootstrap-wrapper .btn-toolbar>.btn, .bootstrap-wrapper .btn-toolbar>.btn-group, .bootstrap-wrapper .btn-toolbar>.input-group{margin-left:5px}
.bootstrap-wrapper .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}
.bootstrap-wrapper .btn-group>.btn:first-child{margin-left:0}
.bootstrap-wrapper .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}
.bootstrap-wrapper .btn-group>.btn:last-child:not(:first-child), .bootstrap-wrapper .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}
.bootstrap-wrapper .btn-group>.btn-group{float:left}
.bootstrap-wrapper .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}
.bootstrap-wrapper .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child, .bootstrap-wrapper .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}
.bootstrap-wrapper .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}
.bootstrap-wrapper .btn-group .dropdown-toggle:active, .bootstrap-wrapper .btn-group.open .dropdown-toggle{outline:0}
.bootstrap-wrapper .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}
.bootstrap-wrapper .btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}
.bootstrap-wrapper .btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125)}
.bootstrap-wrapper .btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}
.bootstrap-wrapper .btn .caret{margin-left:0}
.bootstrap-wrapper .btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}
.bootstrap-wrapper .dropup .btn-lg .caret{border-width:0 5px 5px}
.bootstrap-wrapper .btn-group-vertical>.btn, .bootstrap-wrapper .btn-group-vertical>.btn-group, .bootstrap-wrapper .btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}
.bootstrap-wrapper .btn-group-vertical>.btn-group>.btn{float:none}
.bootstrap-wrapper .btn-group-vertical>.btn+.btn, .bootstrap-wrapper .btn-group-vertical>.btn+.btn-group, .bootstrap-wrapper .btn-group-vertical>.btn-group+.btn, .bootstrap-wrapper .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}
.bootstrap-wrapper .btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}
.bootstrap-wrapper .btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}
.bootstrap-wrapper .btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}
.bootstrap-wrapper .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}
.bootstrap-wrapper .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child, .bootstrap-wrapper .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}
.bootstrap-wrapper .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}
.bootstrap-wrapper .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}
.bootstrap-wrapper .btn-group-justified>.btn, .bootstrap-wrapper .btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}
.bootstrap-wrapper .btn-group-justified>.btn-group .btn{width:100%}
.bootstrap-wrapper .btn-group-justified>.btn-group .dropdown-menu{left:auto}
.bootstrap-wrapper [data-toggle="buttons"]>.btn input[type="radio"], .bootstrap-wrapper [data-toggle="buttons"]>.btn-group>.btn input[type="radio"], .bootstrap-wrapper [data-toggle="buttons"]>.btn input[type="checkbox"], .bootstrap-wrapper [data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, .bootstrap-wrapper  0, .bootstrap-wrapper  0, .bootstrap-wrapper  0);pointer-events:none}
.bootstrap-wrapper .input-group{position:relative;display:table;border-collapse:separate}
.bootstrap-wrapper .input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}
.bootstrap-wrapper .input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}
.bootstrap-wrapper .input-group .form-control:focus{z-index:3}
.bootstrap-wrapper .input-group-lg>.form-control, .bootstrap-wrapper .input-group-lg>.input-group-addon, .bootstrap-wrapper .input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}
.bootstrap-wrapper select.input-group-lg>.form-control, .bootstrap-wrapper select.input-group-lg>.input-group-addon, .bootstrap-wrapper select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}
.bootstrap-wrapper textarea.input-group-lg>.form-control, .bootstrap-wrapper textarea.input-group-lg>.input-group-addon, .bootstrap-wrapper textarea.input-group-lg>.input-group-btn>.btn, .bootstrap-wrapper select[multiple].input-group-lg>.form-control, .bootstrap-wrapper select[multiple].input-group-lg>.input-group-addon, .bootstrap-wrapper select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}
.bootstrap-wrapper .input-group-sm>.form-control, .bootstrap-wrapper .input-group-sm>.input-group-addon, .bootstrap-wrapper .input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}
.bootstrap-wrapper select.input-group-sm>.form-control, .bootstrap-wrapper select.input-group-sm>.input-group-addon, .bootstrap-wrapper select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}
.bootstrap-wrapper textarea.input-group-sm>.form-control, .bootstrap-wrapper textarea.input-group-sm>.input-group-addon, .bootstrap-wrapper textarea.input-group-sm>.input-group-btn>.btn, .bootstrap-wrapper select[multiple].input-group-sm>.form-control, .bootstrap-wrapper select[multiple].input-group-sm>.input-group-addon, .bootstrap-wrapper select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}
.bootstrap-wrapper .input-group-addon, .bootstrap-wrapper .input-group-btn, .bootstrap-wrapper .input-group .form-control{display:table-cell}
.bootstrap-wrapper .input-group-addon:not(:first-child):not(:last-child), .bootstrap-wrapper .input-group-btn:not(:first-child):not(:last-child), .bootstrap-wrapper .input-group .form-control:not(:first-child):not(:last-child){border-radius:0}
.bootstrap-wrapper .input-group-addon, .bootstrap-wrapper .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}
.bootstrap-wrapper .input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}
.bootstrap-wrapper .input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}
.bootstrap-wrapper .input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}
.bootstrap-wrapper .input-group-addon input[type="radio"], .bootstrap-wrapper .input-group-addon input[type="checkbox"]{margin-top:0}
.bootstrap-wrapper .input-group .form-control:first-child, .bootstrap-wrapper .input-group-addon:first-child, .bootstrap-wrapper .input-group-btn:first-child>.btn, .bootstrap-wrapper .input-group-btn:first-child>.btn-group>.btn, .bootstrap-wrapper .input-group-btn:first-child>.dropdown-toggle, .bootstrap-wrapper .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle), .bootstrap-wrapper .input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}
.bootstrap-wrapper .input-group-addon:first-child{border-right:0}
.bootstrap-wrapper .input-group .form-control:last-child, .bootstrap-wrapper .input-group-addon:last-child, .bootstrap-wrapper .input-group-btn:last-child>.btn, .bootstrap-wrapper .input-group-btn:last-child>.btn-group>.btn, .bootstrap-wrapper .input-group-btn:last-child>.dropdown-toggle, .bootstrap-wrapper .input-group-btn:first-child>.btn:not(:first-child), .bootstrap-wrapper .input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}
.bootstrap-wrapper .input-group-addon:last-child{border-left:0}
.bootstrap-wrapper .input-group-btn{position:relative;font-size:0;white-space:nowrap}
.bootstrap-wrapper .input-group-btn>.btn{position:relative}
.bootstrap-wrapper .input-group-btn>.btn+.btn{margin-left:-1px}
.bootstrap-wrapper .input-group-btn>.btn:hover, .bootstrap-wrapper .input-group-btn>.btn:focus, .bootstrap-wrapper .input-group-btn>.btn:active{z-index:2}
.bootstrap-wrapper .input-group-btn:first-child>.btn, .bootstrap-wrapper .input-group-btn:first-child>.btn-group{margin-right:-1px}
.bootstrap-wrapper .input-group-btn:last-child>.btn, .bootstrap-wrapper .input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}
.bootstrap-wrapper .nav{margin-bottom:0;padding-left:0;list-style:none}
.bootstrap-wrapper .nav>li{position:relative;display:block}
.bootstrap-wrapper .nav>li>a{position:relative;display:block;padding:10px 15px}
.bootstrap-wrapper .nav>li>a:hover, .bootstrap-wrapper .nav>li>a:focus{text-decoration:none;background-color:#eee}
.bootstrap-wrapper .nav>li.disabled>a{color:#777}
.bootstrap-wrapper .nav>li.disabled>a:hover, .bootstrap-wrapper .nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}
.bootstrap-wrapper .nav .open>a, .bootstrap-wrapper .nav .open>a:hover, .bootstrap-wrapper .nav .open>a:focus{background-color:#eee;border-color:#337ab7}
.bootstrap-wrapper .nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}
.bootstrap-wrapper .nav>li>a>img{max-width:none}
.bootstrap-wrapper .nav-tabs{border-bottom:1px solid #ddd}
.bootstrap-wrapper .nav-tabs>li{float:left;margin-bottom:-1px}
.bootstrap-wrapper .nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}
.bootstrap-wrapper .nav-tabs>li>a:hover{border-color:#eee #eee #ddd}
.bootstrap-wrapper .nav-tabs>li.active>a, .bootstrap-wrapper .nav-tabs>li.active>a:hover, .bootstrap-wrapper .nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}
.bootstrap-wrapper .nav-tabs.nav-justified{width:100%;border-bottom:0}
.bootstrap-wrapper .nav-tabs.nav-justified>li{float:none}
.bootstrap-wrapper .nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}
.bootstrap-wrapper .nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}
@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}
  .bootstrap-wrapper .nav-tabs.nav-justified>li>a{margin-bottom:0}
}
.bootstrap-wrapper .nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}
.bootstrap-wrapper .nav-tabs.nav-justified>.active>a, .bootstrap-wrapper .nav-tabs.nav-justified>.active>a:hover, .bootstrap-wrapper .nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}
@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}
  .bootstrap-wrapper .nav-tabs.nav-justified>.active>a, .bootstrap-wrapper .nav-tabs.nav-justified>.active>a:hover, .bootstrap-wrapper .nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}
}
.bootstrap-wrapper .nav-pills>li{float:left}
.bootstrap-wrapper .nav-pills>li>a{border-radius:4px}
.bootstrap-wrapper .nav-pills>li+li{margin-left:2px}
.bootstrap-wrapper .nav-pills>li.active>a, .bootstrap-wrapper .nav-pills>li.active>a:hover, .bootstrap-wrapper .nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}
.bootstrap-wrapper .nav-stacked>li{float:none}
.bootstrap-wrapper .nav-stacked>li+li{margin-top:2px;margin-left:0}
.bootstrap-wrapper .nav-justified{width:100%}
.bootstrap-wrapper .nav-justified>li{float:none}
.bootstrap-wrapper .nav-justified>li>a{text-align:center;margin-bottom:5px}
.bootstrap-wrapper .nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}
@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}
  .bootstrap-wrapper .nav-justified>li>a{margin-bottom:0}
}
.bootstrap-wrapper .nav-tabs-justified{border-bottom:0}
.bootstrap-wrapper .nav-tabs-justified>li>a{margin-right:0;border-radius:4px}
.bootstrap-wrapper .nav-tabs-justified>.active>a, .bootstrap-wrapper .nav-tabs-justified>.active>a:hover, .bootstrap-wrapper .nav-tabs-justified>.active>a:focus{border:1px solid #ddd}
@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}
  .bootstrap-wrapper .nav-tabs-justified>.active>a, .bootstrap-wrapper .nav-tabs-justified>.active>a:hover, .bootstrap-wrapper .nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}
}
.bootstrap-wrapper .tab-content>.tab-pane{display:none}
.bootstrap-wrapper .tab-content>.active{display:block}
.bootstrap-wrapper .nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}
.bootstrap-wrapper .navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}
@media (min-width:768px){.navbar{border-radius:4px}
}
@media (min-width:768px){.navbar-header{float:left}
}
.bootstrap-wrapper .navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1);-webkit-overflow-scrolling:touch}
.bootstrap-wrapper .navbar-collapse.in{overflow-y:auto}
@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}
  .bootstrap-wrapper .navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}
  .bootstrap-wrapper .navbar-collapse.in{overflow-y:visible}
  .bootstrap-wrapper .navbar-fixed-top .navbar-collapse, .bootstrap-wrapper .navbar-static-top .navbar-collapse, .bootstrap-wrapper .navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}
}
.bootstrap-wrapper .navbar-fixed-top .navbar-collapse, .bootstrap-wrapper .navbar-fixed-bottom .navbar-collapse{max-height:340px}
@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse, .bootstrap-wrapper .navbar-fixed-bottom .navbar-collapse{max-height:200px}
}
.bootstrap-wrapper .container>.navbar-header, .bootstrap-wrapper .container-fluid>.navbar-header, .bootstrap-wrapper .container>.navbar-collapse, .bootstrap-wrapper .container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}
@media (min-width:768px){.container>.navbar-header, .bootstrap-wrapper .container-fluid>.navbar-header, .bootstrap-wrapper .container>.navbar-collapse, .bootstrap-wrapper .container-fluid>.navbar-collapse{margin-right:0;margin-left:0}
}
.bootstrap-wrapper .navbar-static-top{z-index:1000;border-width:0 0 1px}
@media (min-width:768px){.navbar-static-top{border-radius:0}
}
.bootstrap-wrapper .navbar-fixed-top, .bootstrap-wrapper .navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}
@media (min-width:768px){.navbar-fixed-top, .bootstrap-wrapper .navbar-fixed-bottom{border-radius:0}
}
.bootstrap-wrapper .navbar-fixed-top{top:0;border-width:0 0 1px}
.bootstrap-wrapper .navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}
.bootstrap-wrapper .navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}
.bootstrap-wrapper .navbar-brand:hover, .bootstrap-wrapper .navbar-brand:focus{text-decoration:none}
.bootstrap-wrapper .navbar-brand>img{display:block}
@media (min-width:768px){.navbar>.container .navbar-brand, .bootstrap-wrapper .navbar>.container-fluid .navbar-brand{margin-left:-15px}
}
.bootstrap-wrapper .navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}
.bootstrap-wrapper .navbar-toggle:focus{outline:0}
.bootstrap-wrapper .navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}
.bootstrap-wrapper .navbar-toggle .icon-bar+.icon-bar{margin-top:4px}
@media (min-width:768px){.navbar-toggle{display:none}
}
.bootstrap-wrapper .navbar-nav{margin:7.5px -15px}
.bootstrap-wrapper .navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}
@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}
  .bootstrap-wrapper .navbar-nav .open .dropdown-menu>li>a, .bootstrap-wrapper .navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}
  .bootstrap-wrapper .navbar-nav .open .dropdown-menu>li>a{line-height:20px}
  .bootstrap-wrapper .navbar-nav .open .dropdown-menu>li>a:hover, .bootstrap-wrapper .navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}
}
@media (min-width:768px){.navbar-nav{float:left;margin:0}
  .bootstrap-wrapper .navbar-nav>li{float:left}
  .bootstrap-wrapper .navbar-nav>li>a{padding-top:15px;padding-bottom:15px}
}
.bootstrap-wrapper .navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);margin-top:8px; margin-bottom:8px}
@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}
  .bootstrap-wrapper .navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}
  .bootstrap-wrapper .navbar-form .form-control-static{display:inline-block}
  .bootstrap-wrapper .navbar-form .input-group{display:inline-table;vertical-align:middle}
  .bootstrap-wrapper .navbar-form .input-group .input-group-addon, .bootstrap-wrapper .navbar-form .input-group .input-group-btn, .bootstrap-wrapper .navbar-form .input-group .form-control{width:auto}
  .bootstrap-wrapper .navbar-form .input-group>.form-control{width:100%}
  .bootstrap-wrapper .navbar-form .control-label{margin-bottom:0;vertical-align:middle}
  .bootstrap-wrapper .navbar-form .radio, .bootstrap-wrapper .navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}
  .bootstrap-wrapper .navbar-form .radio label, .bootstrap-wrapper .navbar-form .checkbox label{padding-left:0}
  .bootstrap-wrapper .navbar-form .radio input[type="radio"], .bootstrap-wrapper .navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}
  .bootstrap-wrapper .navbar-form .has-feedback .form-control-feedback{top:0}
}
@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}
  .bootstrap-wrapper .navbar-form .form-group:last-child{margin-bottom:0}
}
@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}
}
.bootstrap-wrapper .navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}
.bootstrap-wrapper .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}
.bootstrap-wrapper .navbar-btn{margin-top:8px;margin-bottom:8px}
.bootstrap-wrapper .navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}
.bootstrap-wrapper .navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}
.bootstrap-wrapper .navbar-text{margin-top:15px;margin-bottom:15px}
@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}
}
@media (min-width:768px){.navbar-left{float:left !important}
  .bootstrap-wrapper .navbar-right{float:right !important;margin-right:-15px}
  .bootstrap-wrapper .navbar-right~.navbar-right{margin-right:0}
}
.bootstrap-wrapper .navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}
.bootstrap-wrapper .navbar-default .navbar-brand{color:#777}
.bootstrap-wrapper .navbar-default .navbar-brand:hover, .bootstrap-wrapper .navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}
.bootstrap-wrapper .navbar-default .navbar-text{color:#777}
.bootstrap-wrapper .navbar-default .navbar-nav>li>a{color:#777}
.bootstrap-wrapper .navbar-default .navbar-nav>li>a:hover, .bootstrap-wrapper .navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}
.bootstrap-wrapper .navbar-default .navbar-nav>.active>a, .bootstrap-wrapper .navbar-default .navbar-nav>.active>a:hover, .bootstrap-wrapper .navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}
.bootstrap-wrapper .navbar-default .navbar-nav>.disabled>a, .bootstrap-wrapper .navbar-default .navbar-nav>.disabled>a:hover, .bootstrap-wrapper .navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}
.bootstrap-wrapper .navbar-default .navbar-toggle{border-color:#ddd}
.bootstrap-wrapper .navbar-default .navbar-toggle:hover, .bootstrap-wrapper .navbar-default .navbar-toggle:focus{background-color:#ddd}
.bootstrap-wrapper .navbar-default .navbar-toggle .icon-bar{background-color:#888}
.bootstrap-wrapper .navbar-default .navbar-collapse, .bootstrap-wrapper .navbar-default .navbar-form{border-color:#e7e7e7}
.bootstrap-wrapper .navbar-default .navbar-nav>.open>a, .bootstrap-wrapper .navbar-default .navbar-nav>.open>a:hover, .bootstrap-wrapper .navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}
@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}
  .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}
  .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu>.active>a, .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover, .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}
  .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a, .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover, .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}
}
.bootstrap-wrapper .navbar-default .navbar-link{color:#777}
.bootstrap-wrapper .navbar-default .navbar-link:hover{color:#333}
.bootstrap-wrapper .navbar-default .btn-link{color:#777}
.bootstrap-wrapper .navbar-default .btn-link:hover, .bootstrap-wrapper .navbar-default .btn-link:focus{color:#333}
.bootstrap-wrapper .navbar-default .btn-link[disabled]:hover, .bootstrap-wrapper fieldset[disabled] .navbar-default .btn-link:hover, .bootstrap-wrapper .navbar-default .btn-link[disabled]:focus, .bootstrap-wrapper fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}
.bootstrap-wrapper .navbar-inverse{background-color:#222;border-color:#080808}
.bootstrap-wrapper .navbar-inverse .navbar-brand{color:#9d9d9d}
.bootstrap-wrapper .navbar-inverse .navbar-brand:hover, .bootstrap-wrapper .navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}
.bootstrap-wrapper .navbar-inverse .navbar-text{color:#9d9d9d}
.bootstrap-wrapper .navbar-inverse .navbar-nav>li>a{color:#9d9d9d}
.bootstrap-wrapper .navbar-inverse .navbar-nav>li>a:hover, .bootstrap-wrapper .navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}
.bootstrap-wrapper .navbar-inverse .navbar-nav>.active>a, .bootstrap-wrapper .navbar-inverse .navbar-nav>.active>a:hover, .bootstrap-wrapper .navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}
.bootstrap-wrapper .navbar-inverse .navbar-nav>.disabled>a, .bootstrap-wrapper .navbar-inverse .navbar-nav>.disabled>a:hover, .bootstrap-wrapper .navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}
.bootstrap-wrapper .navbar-inverse .navbar-toggle{border-color:#333}
.bootstrap-wrapper .navbar-inverse .navbar-toggle:hover, .bootstrap-wrapper .navbar-inverse .navbar-toggle:focus{background-color:#333}
.bootstrap-wrapper .navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}
.bootstrap-wrapper .navbar-inverse .navbar-collapse, .bootstrap-wrapper .navbar-inverse .navbar-form{border-color:#101010}
.bootstrap-wrapper .navbar-inverse .navbar-nav>.open>a, .bootstrap-wrapper .navbar-inverse .navbar-nav>.open>a:hover, .bootstrap-wrapper .navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}
@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}
  .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}
  .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}
  .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover, .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}
  .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a, .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover, .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}
  .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a, .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover, .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}
}
.bootstrap-wrapper .navbar-inverse .navbar-link{color:#9d9d9d}
.bootstrap-wrapper .navbar-inverse .navbar-link:hover{color:#fff}
.bootstrap-wrapper .navbar-inverse .btn-link{color:#9d9d9d}
.bootstrap-wrapper .navbar-inverse .btn-link:hover, .bootstrap-wrapper .navbar-inverse .btn-link:focus{color:#fff}
.bootstrap-wrapper .navbar-inverse .btn-link[disabled]:hover, .bootstrap-wrapper fieldset[disabled] .navbar-inverse .btn-link:hover, .bootstrap-wrapper .navbar-inverse .btn-link[disabled]:focus, .bootstrap-wrapper fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}
.bootstrap-wrapper .breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}
.bootstrap-wrapper .breadcrumb>li{display:inline-block}
.bootstrap-wrapper .breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}
.bootstrap-wrapper .breadcrumb>.active{color:#777}
.bootstrap-wrapper .pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}
.bootstrap-wrapper .pagination>li{display:inline}
.bootstrap-wrapper .pagination>li>a, .bootstrap-wrapper .pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}
.bootstrap-wrapper .pagination>li:first-child>a, .bootstrap-wrapper .pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}
.bootstrap-wrapper .pagination>li:last-child>a, .bootstrap-wrapper .pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}
.bootstrap-wrapper .pagination>li>a:hover, .bootstrap-wrapper .pagination>li>span:hover, .bootstrap-wrapper .pagination>li>a:focus, .bootstrap-wrapper .pagination>li>span:focus{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}
.bootstrap-wrapper .pagination>.active>a, .bootstrap-wrapper .pagination>.active>span, .bootstrap-wrapper .pagination>.active>a:hover, .bootstrap-wrapper .pagination>.active>span:hover, .bootstrap-wrapper .pagination>.active>a:focus, .bootstrap-wrapper .pagination>.active>span:focus{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}
.bootstrap-wrapper .pagination>.disabled>span, .bootstrap-wrapper .pagination>.disabled>span:hover, .bootstrap-wrapper .pagination>.disabled>span:focus, .bootstrap-wrapper .pagination>.disabled>a, .bootstrap-wrapper .pagination>.disabled>a:hover, .bootstrap-wrapper .pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}
.bootstrap-wrapper .pagination-lg>li>a, .bootstrap-wrapper .pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}
.bootstrap-wrapper .pagination-lg>li:first-child>a, .bootstrap-wrapper .pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}
.bootstrap-wrapper .pagination-lg>li:last-child>a, .bootstrap-wrapper .pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}
.bootstrap-wrapper .pagination-sm>li>a, .bootstrap-wrapper .pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}
.bootstrap-wrapper .pagination-sm>li:first-child>a, .bootstrap-wrapper .pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}
.bootstrap-wrapper .pagination-sm>li:last-child>a, .bootstrap-wrapper .pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}
.bootstrap-wrapper .pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}
.bootstrap-wrapper .pager li{display:inline}
.bootstrap-wrapper .pager li>a, .bootstrap-wrapper .pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}
.bootstrap-wrapper .pager li>a:hover, .bootstrap-wrapper .pager li>a:focus{text-decoration:none;background-color:#eee}
.bootstrap-wrapper .pager .next>a, .bootstrap-wrapper .pager .next>span{float:right}
.bootstrap-wrapper .pager .previous>a, .bootstrap-wrapper .pager .previous>span{float:left}
.bootstrap-wrapper .pager .disabled>a, .bootstrap-wrapper .pager .disabled>a:hover, .bootstrap-wrapper .pager .disabled>a:focus, .bootstrap-wrapper .pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}
.bootstrap-wrapper .label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}
.bootstrap-wrapper a.label:hover, .bootstrap-wrapper a.label:focus{color:#fff;text-decoration:none;cursor:pointer}
.bootstrap-wrapper .label:empty{display:none}
.bootstrap-wrapper .btn .label{position:relative;top:-1px}
.bootstrap-wrapper .label-default{background-color:#777}
.bootstrap-wrapper .label-default[href]:hover, .bootstrap-wrapper .label-default[href]:focus{background-color:#5e5e5e}
.bootstrap-wrapper .label-primary{background-color:#337ab7}
.bootstrap-wrapper .label-primary[href]:hover, .bootstrap-wrapper .label-primary[href]:focus{background-color:#286090}
.bootstrap-wrapper .label-success{background-color:#5cb85c}
.bootstrap-wrapper .label-success[href]:hover, .bootstrap-wrapper .label-success[href]:focus{background-color:#449d44}
.bootstrap-wrapper .label-info{background-color:#5bc0de}
.bootstrap-wrapper .label-info[href]:hover, .bootstrap-wrapper .label-info[href]:focus{background-color:#31b0d5}
.bootstrap-wrapper .label-warning{background-color:#f0ad4e}
.bootstrap-wrapper .label-warning[href]:hover, .bootstrap-wrapper .label-warning[href]:focus{background-color:#ec971f}
.bootstrap-wrapper .label-danger{background-color:#d9534f}
.bootstrap-wrapper .label-danger[href]:hover, .bootstrap-wrapper .label-danger[href]:focus{background-color:#c9302c}
.bootstrap-wrapper .badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}
.bootstrap-wrapper .badge:empty{display:none}
.bootstrap-wrapper .btn .badge{position:relative;top:-1px}
.bootstrap-wrapper .btn-xs .badge, .bootstrap-wrapper .btn-group-xs>.btn .badge{top:0;padding:1px 5px}
.bootstrap-wrapper a.badge:hover, .bootstrap-wrapper a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}
.bootstrap-wrapper .list-group-item.active>.badge, .bootstrap-wrapper .nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}
.bootstrap-wrapper .list-group-item>.badge{float:right}
.bootstrap-wrapper .list-group-item>.badge+.badge{margin-right:5px}
.bootstrap-wrapper .nav-pills>li>a>.badge{margin-left:3px}
.bootstrap-wrapper .jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}
.bootstrap-wrapper .jumbotron h1, .bootstrap-wrapper .jumbotron .h1{color:inherit}
.bootstrap-wrapper .jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}
.bootstrap-wrapper .jumbotron>hr{border-top-color:#d5d5d5}
.bootstrap-wrapper .container .jumbotron, .bootstrap-wrapper .container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}
.bootstrap-wrapper .jumbotron .container{max-width:100%}
@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}
  .bootstrap-wrapper .container .jumbotron, .bootstrap-wrapper .container-fluid .jumbotron{padding-left:60px;padding-right:60px}
  .bootstrap-wrapper .jumbotron h1, .bootstrap-wrapper .jumbotron .h1{font-size:63px}
}
.bootstrap-wrapper .thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}
.bootstrap-wrapper .thumbnail>img, .bootstrap-wrapper .thumbnail a>img{margin-left:auto;margin-right:auto}
.bootstrap-wrapper a.thumbnail:hover, .bootstrap-wrapper a.thumbnail:focus, .bootstrap-wrapper a.thumbnail.active{border-color:#337ab7}
.bootstrap-wrapper .thumbnail .caption{padding:9px;color:#333}
.bootstrap-wrapper .alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}
.bootstrap-wrapper .alert h4{margin-top:0;color:inherit}
.bootstrap-wrapper .alert .alert-link{font-weight:bold}
.bootstrap-wrapper .alert>p, .bootstrap-wrapper .alert>ul{margin-bottom:0}
.bootstrap-wrapper .alert>p+p{margin-top:5px}
.bootstrap-wrapper .alert-dismissable, .bootstrap-wrapper .alert-dismissible{padding-right:35px}
.bootstrap-wrapper .alert-dismissable .close, .bootstrap-wrapper .alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}
.bootstrap-wrapper .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}
.bootstrap-wrapper .alert-success hr{border-top-color:#c9e2b3}
.bootstrap-wrapper .alert-success .alert-link{color:#2b542c}
.bootstrap-wrapper .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}
.bootstrap-wrapper .alert-info hr{border-top-color:#a6e1ec}
.bootstrap-wrapper .alert-info .alert-link{color:#245269}
.bootstrap-wrapper .alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}
.bootstrap-wrapper .alert-warning hr{border-top-color:#f7e1b5}
.bootstrap-wrapper .alert-warning .alert-link{color:#66512c}
.bootstrap-wrapper .alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}
.bootstrap-wrapper .alert-danger hr{border-top-color:#e4b9c0}
.bootstrap-wrapper .alert-danger .alert-link{color:#843534}
.bootstrap-wrapper .media{margin-top:15px}
.bootstrap-wrapper .media:first-child{margin-top:0}
.bootstrap-wrapper .media, .bootstrap-wrapper .media-body{zoom:1;overflow:hidden}
.bootstrap-wrapper .media-body{width:10000px}
.bootstrap-wrapper .media-object{display:block}
.bootstrap-wrapper .media-object.img-thumbnail{max-width:none}
.bootstrap-wrapper .media-right, .bootstrap-wrapper .media>.pull-right{padding-left:10px}
.bootstrap-wrapper .media-left, .bootstrap-wrapper .media>.pull-left{padding-right:10px}
.bootstrap-wrapper .media-left, .bootstrap-wrapper .media-right, .bootstrap-wrapper .media-body{display:table-cell;vertical-align:top}
.bootstrap-wrapper .media-middle{vertical-align:middle}
.bootstrap-wrapper .media-bottom{vertical-align:bottom}
.bootstrap-wrapper .media-heading{margin-top:0;margin-bottom:5px}
.bootstrap-wrapper .media-list{padding-left:0;list-style:none}
.bootstrap-wrapper .list-group{margin-bottom:20px;padding-left:0}
.bootstrap-wrapper .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}
.bootstrap-wrapper .list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}
.bootstrap-wrapper .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}
.bootstrap-wrapper a.list-group-item, .bootstrap-wrapper button.list-group-item{color:#555}
.bootstrap-wrapper a.list-group-item .list-group-item-heading, .bootstrap-wrapper button.list-group-item .list-group-item-heading{color:#333}
.bootstrap-wrapper a.list-group-item:hover, .bootstrap-wrapper button.list-group-item:hover, .bootstrap-wrapper a.list-group-item:focus, .bootstrap-wrapper button.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}
.bootstrap-wrapper button.list-group-item{width:100%;text-align:left}
.bootstrap-wrapper .list-group-item.disabled, .bootstrap-wrapper .list-group-item.disabled:hover, .bootstrap-wrapper .list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}
.bootstrap-wrapper .list-group-item.disabled .list-group-item-heading, .bootstrap-wrapper .list-group-item.disabled:hover .list-group-item-heading, .bootstrap-wrapper .list-group-item.disabled:focus .list-group-item-heading{color:inherit}
.bootstrap-wrapper .list-group-item.disabled .list-group-item-text, .bootstrap-wrapper .list-group-item.disabled:hover .list-group-item-text, .bootstrap-wrapper .list-group-item.disabled:focus .list-group-item-text{color:#777}
.bootstrap-wrapper .list-group-item.active, .bootstrap-wrapper .list-group-item.active:hover, .bootstrap-wrapper .list-group-item.active:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}
.bootstrap-wrapper .list-group-item.active .list-group-item-heading, .bootstrap-wrapper .list-group-item.active:hover .list-group-item-heading, .bootstrap-wrapper .list-group-item.active:focus .list-group-item-heading, .bootstrap-wrapper .list-group-item.active .list-group-item-heading>small, .bootstrap-wrapper .list-group-item.active:hover .list-group-item-heading>small, .bootstrap-wrapper .list-group-item.active:focus .list-group-item-heading>small, .bootstrap-wrapper .list-group-item.active .list-group-item-heading>.small, .bootstrap-wrapper .list-group-item.active:hover .list-group-item-heading>.small, .bootstrap-wrapper .list-group-item.active:focus .list-group-item-heading>.small{color:inherit}
.bootstrap-wrapper .list-group-item.active .list-group-item-text, .bootstrap-wrapper .list-group-item.active:hover .list-group-item-text, .bootstrap-wrapper .list-group-item.active:focus .list-group-item-text{color:#c7ddef}
.bootstrap-wrapper .list-group-item-success{color:#3c763d;background-color:#dff0d8}
.bootstrap-wrapper a.list-group-item-success, .bootstrap-wrapper button.list-group-item-success{color:#3c763d}
.bootstrap-wrapper a.list-group-item-success .list-group-item-heading, .bootstrap-wrapper button.list-group-item-success .list-group-item-heading{color:inherit}
.bootstrap-wrapper a.list-group-item-success:hover, .bootstrap-wrapper button.list-group-item-success:hover, .bootstrap-wrapper a.list-group-item-success:focus, .bootstrap-wrapper button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}
.bootstrap-wrapper a.list-group-item-success.active, .bootstrap-wrapper button.list-group-item-success.active, .bootstrap-wrapper a.list-group-item-success.active:hover, .bootstrap-wrapper button.list-group-item-success.active:hover, .bootstrap-wrapper a.list-group-item-success.active:focus, .bootstrap-wrapper button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}
.bootstrap-wrapper .list-group-item-info{color:#31708f;background-color:#d9edf7}
.bootstrap-wrapper a.list-group-item-info, .bootstrap-wrapper button.list-group-item-info{color:#31708f}
.bootstrap-wrapper a.list-group-item-info .list-group-item-heading, .bootstrap-wrapper button.list-group-item-info .list-group-item-heading{color:inherit}
.bootstrap-wrapper a.list-group-item-info:hover, .bootstrap-wrapper button.list-group-item-info:hover, .bootstrap-wrapper a.list-group-item-info:focus, .bootstrap-wrapper button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}
.bootstrap-wrapper a.list-group-item-info.active, .bootstrap-wrapper button.list-group-item-info.active, .bootstrap-wrapper a.list-group-item-info.active:hover, .bootstrap-wrapper button.list-group-item-info.active:hover, .bootstrap-wrapper a.list-group-item-info.active:focus, .bootstrap-wrapper button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}
.bootstrap-wrapper .list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}
.bootstrap-wrapper a.list-group-item-warning, .bootstrap-wrapper button.list-group-item-warning{color:#8a6d3b}
.bootstrap-wrapper a.list-group-item-warning .list-group-item-heading, .bootstrap-wrapper button.list-group-item-warning .list-group-item-heading{color:inherit}
.bootstrap-wrapper a.list-group-item-warning:hover, .bootstrap-wrapper button.list-group-item-warning:hover, .bootstrap-wrapper a.list-group-item-warning:focus, .bootstrap-wrapper button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}
.bootstrap-wrapper a.list-group-item-warning.active, .bootstrap-wrapper button.list-group-item-warning.active, .bootstrap-wrapper a.list-group-item-warning.active:hover, .bootstrap-wrapper button.list-group-item-warning.active:hover, .bootstrap-wrapper a.list-group-item-warning.active:focus, .bootstrap-wrapper button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}
.bootstrap-wrapper .list-group-item-danger{color:#a94442;background-color:#f2dede}
.bootstrap-wrapper a.list-group-item-danger, .bootstrap-wrapper button.list-group-item-danger{color:#a94442}
.bootstrap-wrapper a.list-group-item-danger .list-group-item-heading, .bootstrap-wrapper button.list-group-item-danger .list-group-item-heading{color:inherit}
.bootstrap-wrapper a.list-group-item-danger:hover, .bootstrap-wrapper button.list-group-item-danger:hover, .bootstrap-wrapper a.list-group-item-danger:focus, .bootstrap-wrapper button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}
.bootstrap-wrapper a.list-group-item-danger.active, .bootstrap-wrapper button.list-group-item-danger.active, .bootstrap-wrapper a.list-group-item-danger.active:hover, .bootstrap-wrapper button.list-group-item-danger.active:hover, .bootstrap-wrapper a.list-group-item-danger.active:focus, .bootstrap-wrapper button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}
.bootstrap-wrapper .list-group-item-heading{margin-top:0;margin-bottom:5px}
.bootstrap-wrapper .list-group-item-text{margin-bottom:0;line-height:1.3}
.bootstrap-wrapper .panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:0 1px 1px rgba(0, 0, 0, 0.05)}
.bootstrap-wrapper .panel-body{padding:15px}
.bootstrap-wrapper .panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}
.bootstrap-wrapper .panel-heading>.dropdown .dropdown-toggle{color:inherit}
.bootstrap-wrapper .panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}
.bootstrap-wrapper .panel-title>a, .bootstrap-wrapper .panel-title>small, .bootstrap-wrapper .panel-title>.small, .bootstrap-wrapper .panel-title>small>a, .bootstrap-wrapper .panel-title>.small>a{color:inherit}
.bootstrap-wrapper .panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}
.bootstrap-wrapper .panel>.list-group, .bootstrap-wrapper .panel>.panel-collapse>.list-group{margin-bottom:0}
.bootstrap-wrapper .panel>.list-group .list-group-item, .bootstrap-wrapper .panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}
.bootstrap-wrapper .panel>.list-group:first-child .list-group-item:first-child, .bootstrap-wrapper .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}
.bootstrap-wrapper .panel>.list-group:last-child .list-group-item:last-child, .bootstrap-wrapper .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}
.bootstrap-wrapper .panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}
.bootstrap-wrapper .panel-heading+.list-group .list-group-item:first-child{border-top-width:0}
.bootstrap-wrapper .list-group+.panel-footer{border-top-width:0}
.bootstrap-wrapper .panel>.table, .bootstrap-wrapper .panel>.table-responsive>.table, .bootstrap-wrapper .panel>.panel-collapse>.table{margin-bottom:0}
.bootstrap-wrapper .panel>.table caption, .bootstrap-wrapper .panel>.table-responsive>.table caption, .bootstrap-wrapper .panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}
.bootstrap-wrapper .panel>.table:first-child, .bootstrap-wrapper .panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}
.bootstrap-wrapper .panel>.table:first-child>thead:first-child>tr:first-child, .bootstrap-wrapper .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child, .bootstrap-wrapper .panel>.table:first-child>tbody:first-child>tr:first-child, .bootstrap-wrapper .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}
.bootstrap-wrapper .panel>.table:first-child>thead:first-child>tr:first-child td:first-child, .bootstrap-wrapper .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child, .bootstrap-wrapper .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child, .bootstrap-wrapper .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child, .bootstrap-wrapper .panel>.table:first-child>thead:first-child>tr:first-child th:first-child, .bootstrap-wrapper .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child, .bootstrap-wrapper .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child, .bootstrap-wrapper .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}
.bootstrap-wrapper .panel>.table:first-child>thead:first-child>tr:first-child td:last-child, .bootstrap-wrapper .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child, .bootstrap-wrapper .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child, .bootstrap-wrapper .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child, .bootstrap-wrapper .panel>.table:first-child>thead:first-child>tr:first-child th:last-child, .bootstrap-wrapper .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child, .bootstrap-wrapper .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child, .bootstrap-wrapper .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}
.bootstrap-wrapper .panel>.table:last-child, .bootstrap-wrapper .panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}
.bootstrap-wrapper .panel>.table:last-child>tbody:last-child>tr:last-child, .bootstrap-wrapper .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child, .bootstrap-wrapper .panel>.table:last-child>tfoot:last-child>tr:last-child, .bootstrap-wrapper .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}
.bootstrap-wrapper .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child, .bootstrap-wrapper .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child, .bootstrap-wrapper .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child, .bootstrap-wrapper .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child, .bootstrap-wrapper .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child, .bootstrap-wrapper .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child, .bootstrap-wrapper .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child, .bootstrap-wrapper .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}
.bootstrap-wrapper .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child, .bootstrap-wrapper .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child, .bootstrap-wrapper .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child, .bootstrap-wrapper .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child, .bootstrap-wrapper .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child, .bootstrap-wrapper .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child, .bootstrap-wrapper .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child, .bootstrap-wrapper .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}
.bootstrap-wrapper .panel>.panel-body+.table, .bootstrap-wrapper .panel>.panel-body+.table-responsive, .bootstrap-wrapper .panel>.table+.panel-body, .bootstrap-wrapper .panel>.table-responsive+.panel-body{border-top:1px solid #ddd}
.bootstrap-wrapper .panel>.table>tbody:first-child>tr:first-child th, .bootstrap-wrapper .panel>.table>tbody:first-child>tr:first-child td{border-top:0}
.bootstrap-wrapper .panel>.table-bordered, .bootstrap-wrapper .panel>.table-responsive>.table-bordered{border:0}
.bootstrap-wrapper .panel>.table-bordered>thead>tr>th:first-child, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>thead>tr>th:first-child, .bootstrap-wrapper .panel>.table-bordered>tbody>tr>th:first-child, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child, .bootstrap-wrapper .panel>.table-bordered>tfoot>tr>th:first-child, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child, .bootstrap-wrapper .panel>.table-bordered>thead>tr>td:first-child, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>thead>tr>td:first-child, .bootstrap-wrapper .panel>.table-bordered>tbody>tr>td:first-child, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child, .bootstrap-wrapper .panel>.table-bordered>tfoot>tr>td:first-child, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}
.bootstrap-wrapper .panel>.table-bordered>thead>tr>th:last-child, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>thead>tr>th:last-child, .bootstrap-wrapper .panel>.table-bordered>tbody>tr>th:last-child, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child, .bootstrap-wrapper .panel>.table-bordered>tfoot>tr>th:last-child, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child, .bootstrap-wrapper .panel>.table-bordered>thead>tr>td:last-child, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>thead>tr>td:last-child, .bootstrap-wrapper .panel>.table-bordered>tbody>tr>td:last-child, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child, .bootstrap-wrapper .panel>.table-bordered>tfoot>tr>td:last-child, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}
.bootstrap-wrapper .panel>.table-bordered>thead>tr:first-child>td, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>thead>tr:first-child>td, .bootstrap-wrapper .panel>.table-bordered>tbody>tr:first-child>td, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td, .bootstrap-wrapper .panel>.table-bordered>thead>tr:first-child>th, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>thead>tr:first-child>th, .bootstrap-wrapper .panel>.table-bordered>tbody>tr:first-child>th, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}
.bootstrap-wrapper .panel>.table-bordered>tbody>tr:last-child>td, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td, .bootstrap-wrapper .panel>.table-bordered>tfoot>tr:last-child>td, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td, .bootstrap-wrapper .panel>.table-bordered>tbody>tr:last-child>th, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th, .bootstrap-wrapper .panel>.table-bordered>tfoot>tr:last-child>th, .bootstrap-wrapper .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}
.bootstrap-wrapper .panel>.table-responsive{border:0;margin-bottom:0}
.bootstrap-wrapper .panel-group{margin-bottom:20px}
.bootstrap-wrapper .panel-group .panel{margin-bottom:0;border-radius:4px}
.bootstrap-wrapper .panel-group .panel+.panel{margin-top:5px}
.bootstrap-wrapper .panel-group .panel-heading{border-bottom:0}
.bootstrap-wrapper .panel-group .panel-heading+.panel-collapse>.panel-body, .bootstrap-wrapper .panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}
.bootstrap-wrapper .panel-group .panel-footer{border-top:0}
.bootstrap-wrapper .panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}
.bootstrap-wrapper .panel-default{border-color:#ddd}
.bootstrap-wrapper .panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}
.bootstrap-wrapper .panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}
.bootstrap-wrapper .panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}
.bootstrap-wrapper .panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}
.bootstrap-wrapper .panel-primary{border-color:#337ab7}
.bootstrap-wrapper .panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}
.bootstrap-wrapper .panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}
.bootstrap-wrapper .panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}
.bootstrap-wrapper .panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}
.bootstrap-wrapper .panel-success{border-color:#d6e9c6}
.bootstrap-wrapper .panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}
.bootstrap-wrapper .panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}
.bootstrap-wrapper .panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}
.bootstrap-wrapper .panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}
.bootstrap-wrapper .panel-info{border-color:#bce8f1}
.bootstrap-wrapper .panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}
.bootstrap-wrapper .panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}
.bootstrap-wrapper .panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}
.bootstrap-wrapper .panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}
.bootstrap-wrapper .panel-warning{border-color:#faebcc}
.bootstrap-wrapper .panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}
.bootstrap-wrapper .panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}
.bootstrap-wrapper .panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}
.bootstrap-wrapper .panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}
.bootstrap-wrapper .panel-danger{border-color:#ebccd1}
.bootstrap-wrapper .panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}
.bootstrap-wrapper .panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}
.bootstrap-wrapper .panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}
.bootstrap-wrapper .panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}
.bootstrap-wrapper .embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}
.bootstrap-wrapper .embed-responsive .embed-responsive-item, .bootstrap-wrapper .embed-responsive iframe, .bootstrap-wrapper .embed-responsive embed, .bootstrap-wrapper .embed-responsive object, .bootstrap-wrapper .embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}
.bootstrap-wrapper .embed-responsive-16by9{padding-bottom:56.25%}
.bootstrap-wrapper .embed-responsive-4by3{padding-bottom:75%}
.bootstrap-wrapper .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05)}
.bootstrap-wrapper .well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15)}
.bootstrap-wrapper .well-lg{padding:24px;border-radius:6px}
.bootstrap-wrapper .well-sm{padding:9px;border-radius:3px}
.bootstrap-wrapper .close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}
.bootstrap-wrapper .close:hover, .bootstrap-wrapper .close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}
.bootstrap-wrapper button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}
.bootstrap-wrapper .clearfix:before, .bootstrap-wrapper .clearfix:after, .bootstrap-wrapper .dl-horizontal dd:before, .bootstrap-wrapper .dl-horizontal dd:after, .bootstrap-wrapper .container:before, .bootstrap-wrapper .container:after, .bootstrap-wrapper .container-fluid:before, .bootstrap-wrapper .container-fluid:after, .bootstrap-wrapper .row:before, .bootstrap-wrapper .row:after, .bootstrap-wrapper .form-horizontal .form-group:before, .bootstrap-wrapper .form-horizontal .form-group:after, .bootstrap-wrapper .btn-toolbar:before, .bootstrap-wrapper .btn-toolbar:after, .bootstrap-wrapper .btn-group-vertical>.btn-group:before, .bootstrap-wrapper .btn-group-vertical>.btn-group:after, .bootstrap-wrapper .nav:before, .bootstrap-wrapper .nav:after, .bootstrap-wrapper .navbar:before, .bootstrap-wrapper .navbar:after, .bootstrap-wrapper .navbar-header:before, .bootstrap-wrapper .navbar-header:after, .bootstrap-wrapper .navbar-collapse:before, .bootstrap-wrapper .navbar-collapse:after, .bootstrap-wrapper .pager:before, .bootstrap-wrapper .pager:after, .bootstrap-wrapper .panel-body:before, .bootstrap-wrapper .panel-body:after, .bootstrap-wrapper .modal-header:before, .bootstrap-wrapper .modal-header:after, .bootstrap-wrapper .modal-footer:before, .bootstrap-wrapper .modal-footer:after{content:" ";display:table}
.bootstrap-wrapper .clearfix:after, .bootstrap-wrapper .dl-horizontal dd:after, .bootstrap-wrapper .container:after, .bootstrap-wrapper .container-fluid:after, .bootstrap-wrapper .row:after, .bootstrap-wrapper .form-horizontal .form-group:after, .bootstrap-wrapper .btn-toolbar:after, .bootstrap-wrapper .btn-group-vertical>.btn-group:after, .bootstrap-wrapper .nav:after, .bootstrap-wrapper .navbar:after, .bootstrap-wrapper .navbar-header:after, .bootstrap-wrapper .navbar-collapse:after, .bootstrap-wrapper .pager:after, .bootstrap-wrapper .panel-body:after, .bootstrap-wrapper .modal-header:after, .bootstrap-wrapper .modal-footer:after{clear:both}
.bootstrap-wrapper .center-block{display:block;margin-left:auto;margin-right:auto}
.bootstrap-wrapper .pull-right{float:right !important}
.bootstrap-wrapper .pull-left{float:left !important}
.bootstrap-wrapper .hide{display:none !important}
.bootstrap-wrapper .show{display:block !important}
.bootstrap-wrapper .invisible{visibility:hidden}
.bootstrap-wrapper .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}
.bootstrap-wrapper .hidden{display:none !important}
.bootstrap-wrapper .affix{position:fixed}
.bootstrap-wrapper .visible-xs, .bootstrap-wrapper .visible-sm, .bootstrap-wrapper .visible-md, .bootstrap-wrapper .visible-lg{display:none !important}
.bootstrap-wrapper .visible-xs-block, .bootstrap-wrapper .visible-xs-inline, .bootstrap-wrapper .visible-xs-inline-block, .bootstrap-wrapper .visible-sm-block, .bootstrap-wrapper .visible-sm-inline, .bootstrap-wrapper .visible-sm-inline-block, .bootstrap-wrapper .visible-md-block, .bootstrap-wrapper .visible-md-inline, .bootstrap-wrapper .visible-md-inline-block, .bootstrap-wrapper .visible-lg-block, .bootstrap-wrapper .visible-lg-inline, .bootstrap-wrapper .visible-lg-inline-block{display:none !important}
@media (max-width:767px){.visible-xs{display:block !important}
  .bootstrap-wrapper table.visible-xs{display:table !important}
  .bootstrap-wrapper tr.visible-xs{display:table-row !important}
  .bootstrap-wrapper th.visible-xs, .bootstrap-wrapper td.visible-xs{display:table-cell !important}
}
@media (max-width:767px){.visible-xs-block{display:block !important}
}
@media (max-width:767px){.visible-xs-inline{display:inline !important}
}
@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}
}
@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}
  .bootstrap-wrapper table.visible-sm{display:table !important}
  .bootstrap-wrapper tr.visible-sm{display:table-row !important}
  .bootstrap-wrapper th.visible-sm, .bootstrap-wrapper td.visible-sm{display:table-cell !important}
}
@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}
}
@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}
}
@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}
}
@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}
  .bootstrap-wrapper table.visible-md{display:table !important}
  .bootstrap-wrapper tr.visible-md{display:table-row !important}
  .bootstrap-wrapper th.visible-md, .bootstrap-wrapper td.visible-md{display:table-cell !important}
}
@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}
}
@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}
}
@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}
}
@media (min-width:1200px){.visible-lg{display:block !important}
  .bootstrap-wrapper table.visible-lg{display:table !important}
  .bootstrap-wrapper tr.visible-lg{display:table-row !important}
  .bootstrap-wrapper th.visible-lg, .bootstrap-wrapper td.visible-lg{display:table-cell !important}
}
@media (min-width:1200px){.visible-lg-block{display:block !important}
}
@media (min-width:1200px){.visible-lg-inline{display:inline !important}
}
@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}
}
@media (max-width:767px){.hidden-xs{display:none !important}
}
@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}
}
@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}
}
@media (min-width:1200px){.hidden-lg{display:none !important}
}
.bootstrap-wrapper .visible-print{display:none !important}
@media print{.visible-print{display:block !important}
  .bootstrap-wrapper table.visible-print{display:table !important}
  .bootstrap-wrapper tr.visible-print{display:table-row !important}
  .bootstrap-wrapper th.visible-print, .bootstrap-wrapper td.visible-print{display:table-cell !important}
}
.bootstrap-wrapper .visible-print-block{display:none !important}
@media print{.visible-print-block{display:block !important}
}
.bootstrap-wrapper .visible-print-inline{display:none !important}
@media print{.visible-print-inline{display:inline !important}
}
.bootstrap-wrapper .visible-print-inline-block{display:none !important}
@media print{.visible-print-inline-block{display:inline-block !important}
}
@media print{.hidden-print{display:none !important}
}
/*# sourceMappingURL=main.da99a2003b81201aa426.css.map*/