@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900);@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,500,700);@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700);/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/

.Select {
  position: relative;
}

.Select input::-webkit-contacts-auto-fill-button,
.Select input::-webkit-credentials-auto-fill-button {
  display: none !important;
}

.Select input::-ms-clear {
  display: none !important;
}

.Select input::-ms-reveal {
  display: none !important;
}

.Select,
.Select div,
.Select input,
.Select span {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
  opacity: 0.35;
}

.Select.is-disabled > .Select-control {
  background-color: #f9f9f9;
}

.Select.is-disabled > .Select-control:hover {
  box-shadow: none;
}

.Select.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9;
}

.Select.is-open > .Select-control .Select-arrow {
  top: -2px;
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}

.Select.is-searchable.is-open > .Select-control {
  cursor: text;
}

.Select.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text;
}

.Select.is-focused > .Select-control {
  background: #fff;
}

.Select.is-focused:not(.is-open) > .Select-control {
  border-color: #007eff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(0, 126, 255, 0.1);
  background: #fff;
}

.Select.has-value.is-clearable.Select--single > .Select-control .Select-value {
  padding-right: 42px;
}

.Select.has-value.Select--single > .Select-control .Select-value .Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
  color: #333;
}

.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none;
}

.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  color: #007eff;
  outline: none;
  text-decoration: underline;
}

.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  background: #fff;
}

.Select.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}

.Select.is-open .Select-arrow,
.Select .Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #666;
}

.Select.Select--rtl {
  direction: rtl;
  text-align: right;
}

.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.Select-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.Select-control .Select-input:focus {
  outline: none;
  background: #fff;
}

.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}

.Select-input > input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  line-height: 17px;
  /* For IE 8 compatibility */
  padding: 8px 0 12px;
  /* For IE 8 compatibility */
  -webkit-appearance: none;
}

.is-focused .Select-input > input {
  cursor: text;
}

.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}

.Select-control:not(.is-searchable) > .Select-input {
  outline: none;
}

.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px;
}

.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  -o-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn 200ms;
  -o-animation: Select-animation-fadeIn 200ms;
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px;
}

.Select-clear-zone:hover {
  color: #D0021B;
}

.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}

.Select--multi .Select-clear-zone {
  width: 17px;
}

.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px;
}

.Select--rtl .Select-arrow-zone {
  padding-right: 0;
  padding-left: 5px;
}

.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative;
}

.Select-control > *:last-child {
  padding-right: 5px;
}

.Select--multi .Select-multi-value-wrapper {
  display: inline-block;
}

.Select .Select-aria-only {
  position: absolute;
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left;
}

@-webkit-keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}

.Select-menu {
  max-height: 198px;
  overflow-y: auto;
}

.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px;
}

.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.Select-option.is-selected {
  background-color: #f5faff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.04);
  color: #333;
}

.Select-option.is-focused {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  color: #333;
}

.Select-option.is-disabled {
  color: #cccccc;
  cursor: default;
}

.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px;
}

.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0;
}

.Select--multi.Select--rtl .Select-input {
  margin-left: 0;
  margin-right: 10px;
}

.Select--multi.has-value .Select-input {
  margin-left: 5px;
}

.Select--multi .Select-value {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  border-radius: 2px;
  border: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border: 1px solid rgba(0, 126, 255, 0.24);
  color: #007eff;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top;
}

.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle;
}

.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px;
}

.Select--multi a.Select-value-label {
  color: #007eff;
  cursor: pointer;
  text-decoration: none;
}

.Select--multi a.Select-value-label:hover {
  text-decoration: underline;
}

.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-right: 1px solid rgba(0, 126, 255, 0.24);
  padding: 1px 5px 3px;
}

.Select--multi .Select-value-icon:hover,
.Select--multi .Select-value-icon:focus {
  background-color: #d8eafd;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 113, 230, 0.08);
  color: #0071e6;
}

.Select--multi .Select-value-icon:active {
  background-color: #c2e0ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.24);
}

.Select--multi.Select--rtl .Select-value {
  margin-left: 0;
  margin-right: 5px;
}

.Select--multi.Select--rtl .Select-value-icon {
  border-right: none;
  border-left: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-left: 1px solid rgba(0, 126, 255, 0.24);
}

.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333;
}

.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3;
}

.Select--multi.is-disabled .Select-value-icon:hover,
.Select--multi.is-disabled .Select-value-icon:focus,
.Select--multi.is-disabled .Select-value-icon:active {
  background-color: #fcfcfc;
}

@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn);
  }
}

@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
  }
}.rbc-btn {
  color: inherit;
  font: inherit;
  margin: 0;
}

button.rbc-btn {
  overflow: visible;
  text-transform: none;
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled].rbc-btn {
  cursor: not-allowed;
}

button.rbc-input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.rbc-calendar {
  box-sizing: border-box;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.rbc-calendar *,
.rbc-calendar *:before,
.rbc-calendar *:after {
  box-sizing: inherit;
}

.rbc-abs-full,
.rbc-row-bg {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.rbc-ellipsis,
.rbc-event-label,
.rbc-row-segment .rbc-event-content,
.rbc-show-more {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rbc-rtl {
  direction: rtl;
}

.rbc-off-range {
  color: #999999;
}

.rbc-off-range-bg {
  background: #e5e5e5;
}

.rbc-header {
  overflow: hidden;
  -webkit-flex: 1 0 0%;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 3px;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  font-size: 90%;
  min-height: 0;
  border-bottom: 1px solid #DDD;
}

.rbc-header + .rbc-header {
  border-left: 1px solid #DDD;
}

.rbc-rtl .rbc-header + .rbc-header {
  border-left-width: 0;
  border-right: 1px solid #DDD;
}

.rbc-header > a,
.rbc-header > a:active,
.rbc-header > a:visited {
  color: inherit;
  text-decoration: none;
}

.rbc-row-content {
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  z-index: 4;
}

.rbc-today {
  background-color: #eaf6ff;
}

.rbc-toolbar {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
}

.rbc-toolbar .rbc-toolbar-label {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 10px;
  text-align: center;
}

.rbc-toolbar button {
  color: #373a3c;
  display: inline-block;
  margin: 0;
  text-align: center;
  vertical-align: middle;
  background: none;
  background-image: none;
  border: 1px solid #ccc;
  padding: .375rem 1rem;
  border-radius: 4px;
  line-height: normal;
  white-space: nowrap;
}

.rbc-toolbar button:active,
.rbc-toolbar button.rbc-active {
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  background-color: #e6e6e6;
  border-color: #adadad;
}

.rbc-toolbar button:active:hover,
.rbc-toolbar button.rbc-active:hover,
.rbc-toolbar button:active:focus,
.rbc-toolbar button.rbc-active:focus {
  color: #373a3c;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

.rbc-toolbar button:focus {
  color: #373a3c;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.rbc-toolbar button:hover {
  color: #373a3c;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.rbc-btn-group {
  display: inline-block;
  white-space: nowrap;
}

.rbc-btn-group > button:first-child:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.rbc-btn-group > button:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.rbc-rtl .rbc-btn-group > button:first-child:not(:last-child) {
  border-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.rbc-rtl .rbc-btn-group > button:last-child:not(:first-child) {
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.rbc-btn-group > button:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.rbc-btn-group button + button {
  margin-left: -1px;
}

.rbc-rtl .rbc-btn-group button + button {
  margin-left: 0;
  margin-right: -1px;
}

.rbc-btn-group + .rbc-btn-group,
.rbc-btn-group + button {
  margin-left: 10px;
}

.rbc-event {
  padding: 2px 5px;
  background-color: #3174ad;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
}

.rbc-slot-selecting .rbc-event {
  cursor: inherit;
  pointer-events: none;
}

.rbc-event.rbc-selected {
  background-color: #265985;
}

.rbc-event-label {
  font-size: 80%;
}

.rbc-event-overlaps {
  box-shadow: -1px 1px 5px 0px rgba(51, 51, 51, 0.5);
}

.rbc-event-continues-prior {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.rbc-event-continues-after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.rbc-event-continues-earlier {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.rbc-event-continues-later {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.rbc-event-continues-day-after {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.rbc-event-continues-day-prior {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.rbc-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.rbc-row-segment {
  padding: 0 1px 1px 1px;
}

.rbc-selected-cell {
  background-color: rgba(0, 0, 0, 0.1);
}

.rbc-show-more {
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 4;
  font-weight: bold;
  font-size: 85%;
  height: auto;
  line-height: normal;
  white-space: nowrap;
}

.rbc-month-view {
  position: relative;
  border: 1px solid #DDD;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 1 0 0;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  width: 100%;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  height: 100%;
}

.rbc-month-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.rbc-month-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 1 0 0;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  -webkit-flex-basis: 0px;
  -ms-flex-preferred-size: 0px;
  flex-basis: 0px;
  overflow: hidden;
  height: 100%;
}

.rbc-month-row + .rbc-month-row {
  border-top: 1px solid #DDD;
}

.rbc-date-cell {
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
  padding-right: 5px;
  text-align: right;
}

.rbc-date-cell.rbc-now {
  font-weight: bold;
}

.rbc-date-cell > a,
.rbc-date-cell > a:active,
.rbc-date-cell > a:visited {
  color: inherit;
  text-decoration: none;
}

.rbc-row-bg {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex: 1 0 0;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  overflow: hidden;
}

.rbc-day-bg {
  -webkit-flex: 1 0 0%;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.rbc-day-bg + .rbc-day-bg {
  border-left: 1px solid #DDD;
}

.rbc-rtl .rbc-day-bg + .rbc-day-bg {
  border-left-width: 0;
  border-right: 1px solid #DDD;
}

.rbc-overlay {
  position: absolute;
  z-index: 5;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  padding: 10px;
}

.rbc-overlay > * + * {
  margin-top: 1px;
}

.rbc-overlay-header {
  border-bottom: 1px solid #e5e5e5;
  margin: -10px -10px 5px -10px;
  padding: 2px 10px;
}

.rbc-agenda-view {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 1 0 0;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  overflow: auto;
}

.rbc-agenda-view table.rbc-agenda-table {
  width: 100%;
  border: 1px solid #DDD;
  border-spacing: 0;
  border-collapse: collapse;
}

.rbc-agenda-view table.rbc-agenda-table tbody > tr > td {
  padding: 5px 10px;
  vertical-align: top;
}

.rbc-agenda-view table.rbc-agenda-table .rbc-agenda-time-cell {
  padding-left: 15px;
  padding-right: 15px;
  text-transform: lowercase;
}

.rbc-agenda-view table.rbc-agenda-table tbody > tr > td + td {
  border-left: 1px solid #DDD;
}

.rbc-rtl .rbc-agenda-view table.rbc-agenda-table tbody > tr > td + td {
  border-left-width: 0;
  border-right: 1px solid #DDD;
}

.rbc-agenda-view table.rbc-agenda-table tbody > tr + tr {
  border-top: 1px solid #DDD;
}

.rbc-agenda-view table.rbc-agenda-table thead > tr > th {
  padding: 3px 5px;
  text-align: left;
  border-bottom: 1px solid #DDD;
}

.rbc-rtl .rbc-agenda-view table.rbc-agenda-table thead > tr > th {
  text-align: right;
}

.rbc-agenda-time-cell {
  text-transform: lowercase;
}

.rbc-agenda-time-cell .rbc-continues-after:after {
  content: ' \BB';
}

.rbc-agenda-time-cell .rbc-continues-prior:before {
  content: '\AB   ';
}

.rbc-agenda-date-cell,
.rbc-agenda-time-cell {
  white-space: nowrap;
}

.rbc-agenda-event-cell {
  width: 100%;
}

.rbc-time-column {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}

.rbc-time-column .rbc-timeslot-group {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.rbc-timeslot-group {
  border-bottom: 1px solid #DDD;
  min-height: 40px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}

.rbc-time-gutter,
.rbc-header-gutter {
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}

.rbc-label {
  padding: 0 5px;
}

.rbc-day-slot {
  position: relative;
}

.rbc-day-slot .rbc-events-container {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 10px;
  top: 0;
}

.rbc-day-slot .rbc-events-container.rbc-is-rtl {
  left: 10px;
  right: 0;
}

.rbc-day-slot .rbc-event {
  border: 1px solid #265985;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-height: 100%;
  min-height: 20px;
  -webkit-flex-flow: column wrap;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  overflow: hidden;
  position: absolute;
}

.rbc-day-slot .rbc-event-label {
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  padding-right: 5px;
  width: auto;
}

.rbc-day-slot .rbc-event-content {
  width: 100%;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  word-wrap: break-word;
  line-height: 1;
  height: 100%;
  min-height: 1em;
}

.rbc-day-slot .rbc-time-slot {
  border-top: 1px solid #f7f7f7;
}

.rbc-time-slot {
  -webkit-flex: 1 0 0;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.rbc-time-slot.rbc-now {
  font-weight: bold;
}

.rbc-day-header {
  text-align: center;
}

.rbc-slot-selection {
  z-index: 10;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 75%;
  width: 100%;
  padding: 3px;
}

.rbc-slot-selecting {
  cursor: move;
}

.rbc-time-view {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  border: 1px solid #DDD;
  min-height: 0;
}

.rbc-time-view .rbc-time-gutter {
  white-space: nowrap;
}

.rbc-time-view .rbc-allday-cell {
  box-sizing: content-box;
  width: 100%;
  position: relative;
}

.rbc-time-view .rbc-allday-events {
  position: relative;
  z-index: 4;
}

.rbc-time-view .rbc-row {
  box-sizing: border-box;
  min-height: 20px;
}

.rbc-time-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.rbc-time-header.rbc-overflowing {
  border-right: 1px solid #DDD;
}

.rbc-rtl .rbc-time-header.rbc-overflowing {
  border-right-width: 0;
  border-left: 1px solid #DDD;
}

.rbc-time-header > .rbc-row:first-child {
  border-bottom: 1px solid #DDD;
}

.rbc-time-header > .rbc-row.rbc-row-resource {
  border-bottom: 1px solid #DDD;
}

.rbc-time-header-content {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-left: 1px solid #DDD;
}

.rbc-rtl .rbc-time-header-content {
  border-left-width: 0;
  border-right: 1px solid #DDD;
}

.rbc-time-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 1 0 0%;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  border-top: 2px solid #DDD;
  overflow-y: auto;
  position: relative;
}

.rbc-time-content > .rbc-time-gutter {
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}

.rbc-time-content > * + * > * {
  border-left: 1px solid #DDD;
}

.rbc-rtl .rbc-time-content > * + * > * {
  border-left-width: 0;
  border-right: 1px solid #DDD;
}

.rbc-time-content > .rbc-day-slot {
  width: 100%;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.rbc-current-time-indicator {
  position: absolute;
  z-index: 3;
  height: 1px;
  background-color: #74ad31;
  pointer-events: none;
}@charset "UTF-8";

@font-face {
  font-family: 'Notification';
  src: url(/dist/c0d3c94cd6112550c51d7d1ed13b9da1.eot);
  src: url(/dist/c0d3c94cd6112550c51d7d1ed13b9da1.eot?#iefixs3g3t9) format("embedded-opentype"), url(data:application/font-woff;base64,d09GRgABAAAAAAfAAAsAAAAAB3QAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxINLmNtYXAAAAFoAAAAZAAAAGQAVtHKZ2FzcAAAAcwAAAAIAAAACAAAABBnbHlmAAAB1AAAA1gAAANYbpbSOmhlYWQAAAUsAAAANgAAADYFgIJ1aGhlYQAABWQAAAAkAAAAJAcwA8lobXR4AAAFiAAAACAAAAAgEgAAAGxvY2EAAAWoAAAAEgAAABICqAHibWF4cAAABbwAAAAgAAAAIAAMAFduYW1lAAAF3AAAAcIAAAHCN7eTAHBvc3QAAAegAAAAIAAAACAAAwAAAAMDmgGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8GoDwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEAEgAAAAOAAgAAgAGAAEAIPBY8Frwav/9//8AAAAAACDwV/Ba8Gr//f//AAH/4w+tD6wPnQADAAEAAAAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAIAAAAAA24DbgAsAEUAAAE0LwE3NjU0LwEmIyIPAScmIyIPAQYVFB8BBwYVFB8BFjMyPwEXFjMyPwE2NTcUBwYHBiMiJyYnJjU0NzY3NjMyFxYXFhUCkQtoaAsLNAsPDwtnaAoPEAszCwtnZwsLMwsQDwpoZwsPDws0C907O2Vld3hkZTs7OztlZHh3ZWU7OwE2DwpoZwsPDws0CwtoaAsLNAsPDwtnaAoPEAszCwtnZwsLMwsQgXhkZTs7OztlZHh3ZWU7Ozs7ZWV3AAIAAAAAA24DbgAaADMAAAE0LwEmIyIPAScmIyIPAQYVFB8BFjMyNwE2NRcUBwYHBiMiJyYnJjU0NzY3NjMyFxYXFhUC3gs0Cg8PC+mBCw8PCzQKCs8LDw8LATYLkDs7ZWV3eGRlOzs7O2VkeHdlZTs7AhMQCzMLC+iBCws0ChAPC88KCgE3Cg9ceGRlOzs7O2VkeHdlZTs7OztlZXcAAAADAAAAAANuA24AJgA7AFQAACU1NCcmKwERNCcmKwEiBwYdARQXFjsBFSMiBwYdARQXFjMhMjc2NQM1NCcmKwEiBwYdARQXFjsBMjc2NQUUBwYHBiMiJyYnJjU0NzY3NjMyFxYXFhUCSQUFCDcFBQi3CAUFBQUINzcIBQUFBQgBAAgFBUkFBQhuCAUFBQUIbggFBQFuOztlZXd4ZGU7Ozs7ZWR4d2VlOzulWwgFBQElCAUFBQUIXAgFBbcFBQhbCAYFBQYIAgBbCAUFBQUIWwgGBQUGCO54ZGU7Ozs7ZWR4d2VlOzs7O2VldwAAAAMAAAAAA24DbgAYAC0AQgAAATIXFhcWFRQHBgcGIyInJicmNTQ3Njc2MxM1NCcmKwEiBwYdARQXFjsBMjc2NScTNCcmKwEiBwYVExQXFjsBMjc2NwG3d2VlOzs7O2Vld3hkZTs7OztlZHhJBQUIbQgGBQUGCG0IBQUBCgYFCH4IBgUJBgYIaQgGBQEDbjs7ZWV3eGRlOzs7O2VkeHdlZTs7/TdtCAUGBgYHbQcGBgYFCMUBYwYEBAQEBv6dBgQFBQQGAAABAAAAAQAAj/htw18PPPUACwQAAAAAANF6HwUAAAAA0XofBQAAAAADbgNuAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAANuAAEAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAgAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAoAFAAeAIQA1AFKAawAAAABAAAACABVAAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIABwCNAAEAAAAAAAMADABFAAEAAAAAAAQADACiAAEAAAAAAAUACwAkAAEAAAAAAAYADABpAAEAAAAAAAoAGgDGAAMAAQQJAAEAGAAMAAMAAQQJAAIADgCUAAMAAQQJAAMAGABRAAMAAQQJAAQAGACuAAMAAQQJAAUAFgAvAAMAAQQJAAYAGAB1AAMAAQQJAAoANADgbm90aWZpY2F0aW9uAG4AbwB0AGkAZgBpAGMAYQB0AGkAbwBuVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwbm90aWZpY2F0aW9uAG4AbwB0AGkAZgBpAGMAYQB0AGkAbwBubm90aWZpY2F0aW9uAG4AbwB0AGkAZgBpAGMAYQB0AGkAbwBuUmVndWxhcgBSAGUAZwB1AGwAYQBybm90aWZpY2F0aW9uAG4AbwB0AGkAZgBpAGMAYQB0AGkAbwBuRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff"), url(data:application/octet-stream;base64,AAEAAAALAIAAAwAwT1MvMg8SDS4AAAC8AAAAYGNtYXAAVtHKAAABHAAAAGRnYXNwAAAAEAAAAYAAAAAIZ2x5Zm6W0joAAAGIAAADWGhlYWQFgIJ1AAAE4AAAADZoaGVhBzADyQAABRgAAAAkaG10eBIAAAAAAAU8AAAAIGxvY2ECqAHiAAAFXAAAABJtYXhwAAwAVwAABXAAAAAgbmFtZTe3kwAAAAWQAAABwnBvc3QAAwAAAAAHVAAAACAAAwOaAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADwagPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQASAAAAA4ACAACAAYAAQAg8FjwWvBq//3//wAAAAAAIPBX8Frwav/9//8AAf/jD60PrA+dAAMAAQAAAAAAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAgAAAAADbgNuACwARQAAATQvATc2NTQvASYjIg8BJyYjIg8BBhUUHwEHBhUUHwEWMzI/ARcWMzI/ATY1NxQHBgcGIyInJicmNTQ3Njc2MzIXFhcWFQKRC2hoCws0Cw8PC2doCg8QCzMLC2dnCwszCxAPCmhnCw8PCzQL3Ts7ZWV3eGRlOzs7O2VkeHdlZTs7ATYPCmhnCw8PCzQLC2hoCws0Cw8PC2doCg8QCzMLC2dnCwszCxCBeGRlOzs7O2VkeHdlZTs7OztlZXcAAgAAAAADbgNuABoAMwAAATQvASYjIg8BJyYjIg8BBhUUHwEWMzI3ATY1FxQHBgcGIyInJicmNTQ3Njc2MzIXFhcWFQLeCzQKDw8L6YELDw8LNAoKzwsPDwsBNguQOztlZXd4ZGU7Ozs7ZWR4d2VlOzsCExALMwsL6IELCzQKEA8LzwoKATcKD1x4ZGU7Ozs7ZWR4d2VlOzs7O2VldwAAAAMAAAAAA24DbgAmADsAVAAAJTU0JyYrARE0JyYrASIHBh0BFBcWOwEVIyIHBh0BFBcWMyEyNzY1AzU0JyYrASIHBh0BFBcWOwEyNzY1BRQHBgcGIyInJicmNTQ3Njc2MzIXFhcWFQJJBQUINwUFCLcIBQUFBQg3NwgFBQUFCAEACAUFSQUFCG4IBQUFBQhuCAUFAW47O2Vld3hkZTs7OztlZHh3ZWU7O6VbCAUFASUIBQUFBQhcCAUFtwUFCFsIBgUFBggCAFsIBQUFBQhbCAYFBQYI7nhkZTs7OztlZHh3ZWU7Ozs7ZWV3AAAAAwAAAAADbgNuABgALQBCAAABMhcWFxYVFAcGBwYjIicmJyY1NDc2NzYzEzU0JyYrASIHBh0BFBcWOwEyNzY1JxM0JyYrASIHBhUTFBcWOwEyNzY3Abd3ZWU7Ozs7ZWV3eGRlOzs7O2VkeEkFBQhtCAYFBQYIbQgFBQEKBgUIfggGBQkGBghpCAYFAQNuOztlZXd4ZGU7Ozs7ZWR4d2VlOzv9N20IBQYGBgdtBwYGBgUIxQFjBgQEBAQG/p0GBAUFBAYAAAEAAAABAACP+G3DXw889QALBAAAAAAA0XofBQAAAADReh8FAAAAAANuA24AAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA24AAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAAAAAQAAAAEAAAABAAAAAAAAAAACgAUAB4AhADUAUoBrAAAAAEAAAAIAFUAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAMAAAAAQAAAAAAAgAHAI0AAQAAAAAAAwAMAEUAAQAAAAAABAAMAKIAAQAAAAAABQALACQAAQAAAAAABgAMAGkAAQAAAAAACgAaAMYAAwABBAkAAQAYAAwAAwABBAkAAgAOAJQAAwABBAkAAwAYAFEAAwABBAkABAAYAK4AAwABBAkABQAWAC8AAwABBAkABgAYAHUAAwABBAkACgA0AOBub3RpZmljYXRpb24AbgBvAHQAaQBmAGkAYwBhAHQAaQBvAG5WZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBub3RpZmljYXRpb24AbgBvAHQAaQBmAGkAYwBhAHQAaQBvAG5ub3RpZmljYXRpb24AbgBvAHQAaQBmAGkAYwBhAHQAaQBvAG5SZWd1bGFyAFIAZQBnAHUAbABhAHJub3RpZmljYXRpb24AbgBvAHQAaQBmAGkAYwBhAHQAaQBvAG5Gb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiID4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8bWV0YWRhdGE+R2VuZXJhdGVkIGJ5IEljb01vb248L21ldGFkYXRhPgo8ZGVmcz4KPGZvbnQgaWQ9Im5vdGlmaWNhdGlvbiIgaG9yaXotYWR2LXg9IjEwMjQiPgo8Zm9udC1mYWNlIHVuaXRzLXBlci1lbT0iMTAyNCIgYXNjZW50PSI5NjAiIGRlc2NlbnQ9Ii02NCIgLz4KPG1pc3NpbmctZ2x5cGggaG9yaXotYWR2LXg9IjEwMjQiIC8+CjxnbHlwaCB1bmljb2RlPSImI3gyMDsiIGQ9IiIgaG9yaXotYWR2LXg9IjUxMiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGYwNTc7IiBkPSJNNjU2LjU3MSAzMDkuNzE0cTAgMTQuODU3LTEwLjg1NyAyNS43MTRsLTEwMy40MjkgMTAzLjQyOSAxMDMuNDI5IDEwMy40MjlxMTAuODU3IDEwLjg1NyAxMC44NTcgMjUuNzE0IDAgMTUuNDI5LTEwLjg1NyAyNi4yODZsLTUxLjQyOSA1MS40MjlxLTEwLjg1NyAxMC44NTctMjYuMjg2IDEwLjg1Ny0xNC44NTcgMC0yNS43MTQtMTAuODU3bC0xMDMuNDI5LTEwMy40MjktMTAzLjQyOSAxMDMuNDI5cS0xMC44NTcgMTAuODU3LTI1LjcxNCAxMC44NTctMTUuNDI5IDAtMjYuMjg2LTEwLjg1N2wtNTEuNDI5LTUxLjQyOXEtMTAuODU3LTEwLjg1Ny0xMC44NTctMjYuMjg2IDAtMTQuODU3IDEwLjg1Ny0yNS43MTRsMTAzLjQyOS0xMDMuNDI5LTEwMy40MjktMTAzLjQyOXEtMTAuODU3LTEwLjg1Ny0xMC44NTctMjUuNzE0IDAtMTUuNDI5IDEwLjg1Ny0yNi4yODZsNTEuNDI5LTUxLjQyOXExMC44NTctMTAuODU3IDI2LjI4Ni0xMC44NTcgMTQuODU3IDAgMjUuNzE0IDEwLjg1N2wxMDMuNDI5IDEwMy40MjkgMTAzLjQyOS0xMDMuNDI5cTEwLjg1Ny0xMC44NTcgMjUuNzE0LTEwLjg1NyAxNS40MjkgMCAyNi4yODYgMTAuODU3bDUxLjQyOSA1MS40MjlxMTAuODU3IDEwLjg1NyAxMC44NTcgMjYuMjg2ek04NzcuNzE0IDQzOC44NTdxMC0xMTkuNDI5LTU4Ljg1Ny0yMjAuMjg2dC0xNTkuNzE0LTE1OS43MTQtMjIwLjI4Ni01OC44NTctMjIwLjI4NiA1OC44NTctMTU5LjcxNCAxNTkuNzE0LTU4Ljg1NyAyMjAuMjg2IDU4Ljg1NyAyMjAuMjg2IDE1OS43MTQgMTU5LjcxNCAyMjAuMjg2IDU4Ljg1NyAyMjAuMjg2LTU4Ljg1NyAxNTkuNzE0LTE1OS43MTQgNTguODU3LTIyMC4yODZ6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjA1ODsiIGQ9Ik03MzMuNzE0IDUzMS40MjhxMCAxNi0xMC4yODYgMjYuMjg2bC01MiA1MS40MjlxLTEwLjg1NyAxMC44NTctMjUuNzE0IDEwLjg1N3QtMjUuNzE0LTEwLjg1N2wtMjMzLjE0My0yMzIuNTcxLTEyOS4xNDMgMTI5LjE0M3EtMTAuODU3IDEwLjg1Ny0yNS43MTQgMTAuODU3dC0yNS43MTQtMTAuODU3bC01Mi01MS40MjlxLTEwLjI4Ni0xMC4yODYtMTAuMjg2LTI2LjI4NiAwLTE1LjQyOSAxMC4yODYtMjUuNzE0bDIwNi44NTctMjA2Ljg1N3ExMC44NTctMTAuODU3IDI1LjcxNC0xMC44NTcgMTUuNDI5IDAgMjYuMjg2IDEwLjg1N2wzMTAuMjg2IDMxMC4yODZxMTAuMjg2IDEwLjI4NiAxMC4yODYgMjUuNzE0ek04NzcuNzE0IDQzOC44NTdxMC0xMTkuNDI5LTU4Ljg1Ny0yMjAuMjg2dC0xNTkuNzE0LTE1OS43MTQtMjIwLjI4Ni01OC44NTctMjIwLjI4NiA1OC44NTctMTU5LjcxNCAxNTkuNzE0LTU4Ljg1NyAyMjAuMjg2IDU4Ljg1NyAyMjAuMjg2IDE1OS43MTQgMTU5LjcxNCAyMjAuMjg2IDU4Ljg1NyAyMjAuMjg2LTU4Ljg1NyAxNTkuNzE0LTE1OS43MTQgNTguODU3LTIyMC4yODZ6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjA1YTsiIGQ9Ik01ODUuMTQzIDE2NC41NzF2OTEuNDI5cTAgOC01LjE0MyAxMy4xNDN0LTEzLjE0MyA1LjE0M2gtNTQuODU3djI5Mi41NzFxMCA4LTUuMTQzIDEzLjE0M3QtMTMuMTQzIDUuMTQzaC0xODIuODU3cS04IDAtMTMuMTQzLTUuMTQzdC01LjE0My0xMy4xNDN2LTkxLjQyOXEwLTggNS4xNDMtMTMuMTQzdDEzLjE0My01LjE0M2g1NC44NTd2LTE4Mi44NTdoLTU0Ljg1N3EtOCAwLTEzLjE0My01LjE0M3QtNS4xNDMtMTMuMTQzdi05MS40MjlxMC04IDUuMTQzLTEzLjE0M3QxMy4xNDMtNS4xNDNoMjU2cTggMCAxMy4xNDMgNS4xNDN0NS4xNDMgMTMuMTQzek01MTIgNjc2LjU3MXY5MS40MjlxMCA4LTUuMTQzIDEzLjE0M3QtMTMuMTQzIDUuMTQzaC0xMDkuNzE0cS04IDAtMTMuMTQzLTUuMTQzdC01LjE0My0xMy4xNDN2LTkxLjQyOXEwLTggNS4xNDMtMTMuMTQzdDEzLjE0My01LjE0M2gxMDkuNzE0cTggMCAxMy4xNDMgNS4xNDN0NS4xNDMgMTMuMTQzek04NzcuNzE0IDQzOC44NTdxMC0xMTkuNDI5LTU4Ljg1Ny0yMjAuMjg2dC0xNTkuNzE0LTE1OS43MTQtMjIwLjI4Ni01OC44NTctMjIwLjI4NiA1OC44NTctMTU5LjcxNCAxNTkuNzE0LTU4Ljg1NyAyMjAuMjg2IDU4Ljg1NyAyMjAuMjg2IDE1OS43MTQgMTU5LjcxNCAyMjAuMjg2IDU4Ljg1NyAyMjAuMjg2LTU4Ljg1NyAxNTkuNzE0LTE1OS43MTQgNTguODU3LTIyMC4yODZ6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjA2YTsiIGQ9Ik00MzguODU3IDg3Ny43MTRxMTE5LjQyOSAwIDIyMC4yODYtNTguODU3dDE1OS43MTQtMTU5LjcxNCA1OC44NTctMjIwLjI4Ni01OC44NTctMjIwLjI4Ni0xNTkuNzE0LTE1OS43MTQtMjIwLjI4Ni01OC44NTctMjIwLjI4NiA1OC44NTctMTU5LjcxNCAxNTkuNzE0LTU4Ljg1NyAyMjAuMjg2IDU4Ljg1NyAyMjAuMjg2IDE1OS43MTQgMTU5LjcxNCAyMjAuMjg2IDU4Ljg1N3pNNTEyIDE2NS4xNDN2MTA4LjU3MXEwIDgtNS4xNDMgMTMuNDI5dC0xMi41NzEgNS40MjloLTEwOS43MTRxLTcuNDI5IDAtMTMuMTQzLTUuNzE0dC01LjcxNC0xMy4xNDN2LTEwOC41NzFxMC03LjQyOSA1LjcxNC0xMy4xNDN0MTMuMTQzLTUuNzE0aDEwOS43MTRxNy40MjkgMCAxMi41NzEgNS40Mjl0NS4xNDMgMTMuNDI5ek01MTAuODU3IDM2MS43MTRsMTAuMjg2IDM1NC44NTdxMCA2Ljg1Ny01LjcxNCAxMC4yODYtNS43MTQgNC41NzEtMTMuNzE0IDQuNTcxaC0xMjUuNzE0cS04IDAtMTMuNzE0LTQuNTcxLTUuNzE0LTMuNDI5LTUuNzE0LTEwLjI4Nmw5LjcxNC0zNTQuODU3cTAtNS43MTQgNS43MTQtMTB0MTMuNzE0LTQuMjg2aDEwNS43MTRxOCAwIDEzLjQyOSA0LjI4NnQ2IDEweiIgLz4KPC9mb250PjwvZGVmcz48L3N2Zz4=#notification) format("svg");
  font-weight: normal;
  font-style: normal;
}

.notification-container {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999;
  width: 320px;
  padding: 0px 15px;
  max-height: calc(100% - 30px);
  overflow-x: hidden;
  overflow-y: auto;
}

.notification {
  box-sizing: border-box;
  padding: 15px 15px 15px 58px;
  border-radius: 2px;
  color: #fff;
  background-color: #ccc;
  box-shadow: 0 0 12px #999;
  cursor: pointer;
  font-size: 1em;
  line-height: 1.2em;
  position: relative;
  opacity: 0.9;
  margin-top: 15px;
}

.notification .title {
  font-size: 1em;
  line-height: 1.2em;
  font-weight: bold;
  margin: 0 0 5px 0;
}

.notification:hover,
.notification:focus {
  opacity: 1;
}

.notification-enter {
  visibility: hidden;
  transform: translate3d(100%, 0, 0);
}

.notification-enter.notification-enter-active {
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition: all 0.4s;
}

.notification-leave {
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.notification-leave.notification-leave-active {
  visibility: hidden;
  transform: translate3d(100%, 0, 0);
  transition: all 0.4s;
}

.notification:before {
  position: absolute;
  top: 50%;
  left: 15px;
  margin-top: -14px;
  display: block;
  font-family: 'Notification';
  width: 28px;
  height: 28px;
  font-size: 28px;
  text-align: center;
  line-height: 28px;
}

.notification-info {
  background-color: #2f96b4;
}

.notification-info:before {
  content: "\F05A";
}

.notification-success {
  background-color: #51a351;
}

.notification-success:before {
  content: "\F058";
}

.notification-warning {
  background-color: #f89406;
}

.notification-warning:before {
  content: "\F06A";
}

.notification-error {
  background-color: #bd362f;
}

.notification-error:before {
  content: "\F057";
}@charset "UTF-8";

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

h1,
.h1 {
  font-size: 2.5rem;
}

h2,
.h2 {
  font-size: 2rem;
}

h3,
.h3 {
  font-size: 1.75rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014   \A0";
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.66667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333%;
  }

  .offset-sm-5 {
    margin-left: 41.66667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333%;
  }

  .offset-sm-8 {
    margin-left: 66.66667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333%;
  }

  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.66667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333%;
  }

  .offset-md-5 {
    margin-left: 41.66667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333%;
  }

  .offset-md-8 {
    margin-left: 66.66667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333%;
  }

  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.66667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333%;
  }

  .offset-lg-5 {
    margin-left: 41.66667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333%;
  }

  .offset-lg-8 {
    margin-left: 66.66667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333%;
  }

  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.66667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333%;
  }

  .offset-xl-5 {
    margin-left: 41.66667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333%;
  }

  .offset-xl-8 {
    margin-left: 66.66667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333%;
  }

  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table .table {
  background-color: #fff;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #c6f6ff;
}

.table-hover .table-info:hover {
  background-color: #adf2ff;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #adf2ff;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #32383e;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px);
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.input-group-sm > .form-control-plaintext.form-control,
.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-prepend > .form-control-plaintext.btn,
.input-group-sm > .input-group-append > .form-control-plaintext.btn,
.form-control-plaintext.form-control-lg,
.input-group-lg > .form-control-plaintext.form-control,
.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-prepend > .form-control-plaintext.btn,
.input-group-lg > .input-group-append > .form-control-plaintext.btn {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm,
.input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

select.form-control-sm:not([size]):not([multiple]),
.input-group-sm > select.form-control:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) {
  height: calc(1.8125rem + 2px);
}

.form-control-lg,
.input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control-lg:not([size]):not([multiple]),
.input-group-lg > select.form-control:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) {
  height: calc(2.875rem + 2px);
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.8);
  border-radius: .2rem;
}

.was-validated .form-control:valid,
.form-control.is-valid,
.was-validated
.custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus,
.was-validated
  .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip,
.form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.was-validated
  .custom-select:valid ~ .valid-feedback,
.was-validated
  .custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip,
.form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #71dd8a;
}

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip,
.custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label::before,
.custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip,
.custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.8);
  border-radius: .2rem;
}

.was-validated .form-control:invalid,
.form-control.is-invalid,
.was-validated
.custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus,
.was-validated
  .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.was-validated
  .custom-select:invalid ~ .invalid-feedback,
.was-validated
  .custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip,
.form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #efa2a9;
}

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip,
.custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label::before,
.custom-file-input.is-invalid ~ .custom-file-label::before {
  border-color: inherit;
}

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip,
.custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-plaintext {
    display: inline-block;
  }

  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }

  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }

  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }

  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }

  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover,
.btn:focus {
  text-decoration: none;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active {
  background-image: none;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus,
.btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success:focus,
.btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-info {
  color: #212529;
  background-color: #33e0ff;
  border-color: #33e0ff;
}

.btn-info:hover {
  color: #212529;
  background-color: #0ddaff;
  border-color: #00d8ff;
}

.btn-info:focus,
.btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 224, 255, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #212529;
  background-color: #33e0ff;
  border-color: #33e0ff;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #212529;
  background-color: #00d8ff;
  border-color: #00cdf2;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 224, 255, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus,
.btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger:focus,
.btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus,
.btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #33e0ff;
  background-color: transparent;
  background-image: none;
  border-color: #33e0ff;
}

.btn-outline-info:hover {
  color: #212529;
  background-color: #33e0ff;
  border-color: #33e0ff;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 224, 255, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #33e0ff;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #212529;
  background-color: #33e0ff;
  border-color: #33e0ff;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 224, 255, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent;
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
  border-color: transparent;
  box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg,
.btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm,
.btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 0 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: flex;
  align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}

.badge-primary[href]:hover,
.badge-primary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #0062cc;
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

.badge-secondary[href]:hover,
.badge-secondary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #545b62;
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

.badge-success[href]:hover,
.badge-success[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1e7e34;
}

.badge-info {
  color: #212529;
  background-color: #33e0ff;
}

.badge-info[href]:hover,
.badge-info[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #00d8ff;
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

.badge-warning[href]:hover,
.badge-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #d39e00;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.badge-danger[href]:hover,
.badge-danger[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130;
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

.badge-light[href]:hover,
.badge-light[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

.badge-dark[href]:hover,
.badge-dark[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-primary hr {
  border-top-color: #9fcdff;
}

.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: #b1dfbb;
}

.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #1b7485;
  background-color: #d6f9ff;
  border-color: #c6f6ff;
}

.alert-info hr {
  border-top-color: #adf2ff;
}

.alert-info .alert-link {
  color: #124f5b;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.list-group-item:hover,
.list-group-item:focus {
  z-index: 1;
  text-decoration: none;
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #1b7485;
  background-color: #c6f6ff;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #1b7485;
  background-color: #adf2ff;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #1b7485;
  border-color: #1b7485;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before,
.popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top,
.bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

.bs-popover-top .arrow,
.bs-popover-auto[x-placement^="top"] .arrow {
  bottom: calc((0.5rem + 1px) * -1);
}

.bs-popover-top .arrow::before,
.bs-popover-auto[x-placement^="top"] .arrow::before,
.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
  border-width: 0.5rem 0.5rem 0;
}

.bs-popover-top .arrow::before,
.bs-popover-auto[x-placement^="top"] .arrow::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
  bottom: 1px;
  border-top-color: #fff;
}

.bs-popover-right,
.bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

.bs-popover-right .arrow,
.bs-popover-auto[x-placement^="right"] .arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-right .arrow::before,
.bs-popover-auto[x-placement^="right"] .arrow::before,
.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
  border-width: 0.5rem 0.5rem 0.5rem 0;
}

.bs-popover-right .arrow::before,
.bs-popover-auto[x-placement^="right"] .arrow::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
  left: 1px;
  border-right-color: #fff;
}

.bs-popover-bottom,
.bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

.bs-popover-bottom .arrow,
.bs-popover-auto[x-placement^="bottom"] .arrow {
  top: calc((0.5rem + 1px) * -1);
}

.bs-popover-bottom .arrow::before,
.bs-popover-auto[x-placement^="bottom"] .arrow::before,
.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  border-width: 0 0.5rem 0.5rem 0.5rem;
}

.bs-popover-bottom .arrow::before,
.bs-popover-auto[x-placement^="bottom"] .arrow::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  top: 1px;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before,
.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left,
.bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

.bs-popover-left .arrow,
.bs-popover-auto[x-placement^="left"] .arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-left .arrow::before,
.bs-popover-auto[x-placement^="left"] .arrow::before,
.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
  border-width: 0.5rem 0 0.5rem 0.5rem;
}

.bs-popover-left .arrow::before,
.bs-popover-auto[x-placement^="left"] .arrow::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
  right: 1px;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  align-items: center;
  width: 100%;
  backface-visibility: hidden;
  perspective: 1000px;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
  transition: transform 0.6s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .carousel-item.active,
  .carousel-item-next,
  .carousel-item-prev {
    transition: none;
  }
}

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  transform: translateX(0);
}

@supports (transform-style: preserve-3d) {
  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    transform: translate3d(0, 0, 0);
  }
}

.carousel-item-next,
.active.carousel-item-right {
  transform: translateX(100%);
}

@supports (transform-style: preserve-3d) {
  .carousel-item-next,
  .active.carousel-item-right {
    transform: translate3d(100%, 0, 0);
  }
}

.carousel-item-prev,
.active.carousel-item-left {
  transform: translateX(-100%);
}

@supports (transform-style: preserve-3d) {
  .carousel-item-prev,
  .active.carousel-item-left {
    transform: translate3d(-100%, 0, 0);
  }
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
}

@supports (transform-style: preserve-3d) {
  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item.active,
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-prev {
    transform: translate3d(0, 0, 0);
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  position: relative;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators .active {
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #33e0ff !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #00d8ff !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #33e0ff !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #0062cc !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #545b62 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #1e7e34 !important;
}

.text-info {
  color: #33e0ff !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #00d8ff !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #d39e00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #bd2130 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #dae0e5 !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #1d2124 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: 'Roboto';
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

/* FONT PATH
 * -------------------------- */

@font-face {
  font-family: 'FontAwesome';
  src: url(/dist/674f50d287a8c48dc19ba404d20fe713.eot);
  src: url(/dist/674f50d287a8c48dc19ba404d20fe713.eot) format("embedded-opentype"), url(/dist/af7ae505a9eed503f8b8e6982036873e.woff2) format("woff2"), url(/dist/fee66e712a8a08eef5805a46892932ad.woff) format("woff"), url(/dist/b06871f281fee6b241d60582ae9369b9.ttf) format("truetype"), url(/dist/912ec66d7572ff821749319396470bde.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */

.fa-glass:before {
  content: "\F000";
}

.fa-music:before {
  content: "\F001";
}

.fa-search:before {
  content: "\F002";
}

.fa-envelope-o:before {
  content: "\F003";
}

.fa-heart:before {
  content: "\F004";
}

.fa-star:before {
  content: "\F005";
}

.fa-star-o:before {
  content: "\F006";
}

.fa-user:before {
  content: "\F007";
}

.fa-film:before {
  content: "\F008";
}

.fa-th-large:before {
  content: "\F009";
}

.fa-th:before {
  content: "\F00A";
}

.fa-th-list:before {
  content: "\F00B";
}

.fa-check:before {
  content: "\F00C";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\F00D";
}

.fa-search-plus:before {
  content: "\F00E";
}

.fa-search-minus:before {
  content: "\F010";
}

.fa-power-off:before {
  content: "\F011";
}

.fa-signal:before {
  content: "\F012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\F013";
}

.fa-trash-o:before {
  content: "\F014";
}

.fa-home:before {
  content: "\F015";
}

.fa-file-o:before {
  content: "\F016";
}

.fa-clock-o:before {
  content: "\F017";
}

.fa-road:before {
  content: "\F018";
}

.fa-download:before {
  content: "\F019";
}

.fa-arrow-circle-o-down:before {
  content: "\F01A";
}

.fa-arrow-circle-o-up:before {
  content: "\F01B";
}

.fa-inbox:before {
  content: "\F01C";
}

.fa-play-circle-o:before {
  content: "\F01D";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\F01E";
}

.fa-refresh:before {
  content: "\F021";
}

.fa-list-alt:before {
  content: "\F022";
}

.fa-lock:before {
  content: "\F023";
}

.fa-flag:before {
  content: "\F024";
}

.fa-headphones:before {
  content: "\F025";
}

.fa-volume-off:before {
  content: "\F026";
}

.fa-volume-down:before {
  content: "\F027";
}

.fa-volume-up:before {
  content: "\F028";
}

.fa-qrcode:before {
  content: "\F029";
}

.fa-barcode:before {
  content: "\F02A";
}

.fa-tag:before {
  content: "\F02B";
}

.fa-tags:before {
  content: "\F02C";
}

.fa-book:before {
  content: "\F02D";
}

.fa-bookmark:before {
  content: "\F02E";
}

.fa-print:before {
  content: "\F02F";
}

.fa-camera:before {
  content: "\F030";
}

.fa-font:before {
  content: "\F031";
}

.fa-bold:before {
  content: "\F032";
}

.fa-italic:before {
  content: "\F033";
}

.fa-text-height:before {
  content: "\F034";
}

.fa-text-width:before {
  content: "\F035";
}

.fa-align-left:before {
  content: "\F036";
}

.fa-align-center:before {
  content: "\F037";
}

.fa-align-right:before {
  content: "\F038";
}

.fa-align-justify:before {
  content: "\F039";
}

.fa-list:before {
  content: "\F03A";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\F03B";
}

.fa-indent:before {
  content: "\F03C";
}

.fa-video-camera:before {
  content: "\F03D";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\F03E";
}

.fa-pencil:before {
  content: "\F040";
}

.fa-map-marker:before {
  content: "\F041";
}

.fa-adjust:before {
  content: "\F042";
}

.fa-tint:before {
  content: "\F043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\F044";
}

.fa-share-square-o:before {
  content: "\F045";
}

.fa-check-square-o:before {
  content: "\F046";
}

.fa-arrows:before {
  content: "\F047";
}

.fa-step-backward:before {
  content: "\F048";
}

.fa-fast-backward:before {
  content: "\F049";
}

.fa-backward:before {
  content: "\F04A";
}

.fa-play:before {
  content: "\F04B";
}

.fa-pause:before {
  content: "\F04C";
}

.fa-stop:before {
  content: "\F04D";
}

.fa-forward:before {
  content: "\F04E";
}

.fa-fast-forward:before {
  content: "\F050";
}

.fa-step-forward:before {
  content: "\F051";
}

.fa-eject:before {
  content: "\F052";
}

.fa-chevron-left:before {
  content: "\F053";
}

.fa-chevron-right:before {
  content: "\F054";
}

.fa-plus-circle:before {
  content: "\F055";
}

.fa-minus-circle:before {
  content: "\F056";
}

.fa-times-circle:before {
  content: "\F057";
}

.fa-check-circle:before {
  content: "\F058";
}

.fa-question-circle:before {
  content: "\F059";
}

.fa-info-circle:before {
  content: "\F05A";
}

.fa-crosshairs:before {
  content: "\F05B";
}

.fa-times-circle-o:before {
  content: "\F05C";
}

.fa-check-circle-o:before {
  content: "\F05D";
}

.fa-ban:before {
  content: "\F05E";
}

.fa-arrow-left:before {
  content: "\F060";
}

.fa-arrow-right:before {
  content: "\F061";
}

.fa-arrow-up:before {
  content: "\F062";
}

.fa-arrow-down:before {
  content: "\F063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\F064";
}

.fa-expand:before {
  content: "\F065";
}

.fa-compress:before {
  content: "\F066";
}

.fa-plus:before {
  content: "\F067";
}

.fa-minus:before {
  content: "\F068";
}

.fa-asterisk:before {
  content: "\F069";
}

.fa-exclamation-circle:before {
  content: "\F06A";
}

.fa-gift:before {
  content: "\F06B";
}

.fa-leaf:before {
  content: "\F06C";
}

.fa-fire:before {
  content: "\F06D";
}

.fa-eye:before {
  content: "\F06E";
}

.fa-eye-slash:before {
  content: "\F070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\F071";
}

.fa-plane:before {
  content: "\F072";
}

.fa-calendar:before {
  content: "\F073";
}

.fa-random:before {
  content: "\F074";
}

.fa-comment:before {
  content: "\F075";
}

.fa-magnet:before {
  content: "\F076";
}

.fa-chevron-up:before {
  content: "\F077";
}

.fa-chevron-down:before {
  content: "\F078";
}

.fa-retweet:before {
  content: "\F079";
}

.fa-shopping-cart:before {
  content: "\F07A";
}

.fa-folder:before {
  content: "\F07B";
}

.fa-folder-open:before {
  content: "\F07C";
}

.fa-arrows-v:before {
  content: "\F07D";
}

.fa-arrows-h:before {
  content: "\F07E";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\F080";
}

.fa-twitter-square:before {
  content: "\F081";
}

.fa-facebook-square:before {
  content: "\F082";
}

.fa-camera-retro:before {
  content: "\F083";
}

.fa-key:before {
  content: "\F084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\F085";
}

.fa-comments:before {
  content: "\F086";
}

.fa-thumbs-o-up:before {
  content: "\F087";
}

.fa-thumbs-o-down:before {
  content: "\F088";
}

.fa-star-half:before {
  content: "\F089";
}

.fa-heart-o:before {
  content: "\F08A";
}

.fa-sign-out:before {
  content: "\F08B";
}

.fa-linkedin-square:before {
  content: "\F08C";
}

.fa-thumb-tack:before {
  content: "\F08D";
}

.fa-external-link:before {
  content: "\F08E";
}

.fa-sign-in:before {
  content: "\F090";
}

.fa-trophy:before {
  content: "\F091";
}

.fa-github-square:before {
  content: "\F092";
}

.fa-upload:before {
  content: "\F093";
}

.fa-lemon-o:before {
  content: "\F094";
}

.fa-phone:before {
  content: "\F095";
}

.fa-square-o:before {
  content: "\F096";
}

.fa-bookmark-o:before {
  content: "\F097";
}

.fa-phone-square:before {
  content: "\F098";
}

.fa-twitter:before {
  content: "\F099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\F09A";
}

.fa-github:before {
  content: "\F09B";
}

.fa-unlock:before {
  content: "\F09C";
}

.fa-credit-card:before {
  content: "\F09D";
}

.fa-feed:before,
.fa-rss:before {
  content: "\F09E";
}

.fa-hdd-o:before {
  content: "\F0A0";
}

.fa-bullhorn:before {
  content: "\F0A1";
}

.fa-bell:before {
  content: "\F0F3";
}

.fa-certificate:before {
  content: "\F0A3";
}

.fa-hand-o-right:before {
  content: "\F0A4";
}

.fa-hand-o-left:before {
  content: "\F0A5";
}

.fa-hand-o-up:before {
  content: "\F0A6";
}

.fa-hand-o-down:before {
  content: "\F0A7";
}

.fa-arrow-circle-left:before {
  content: "\F0A8";
}

.fa-arrow-circle-right:before {
  content: "\F0A9";
}

.fa-arrow-circle-up:before {
  content: "\F0AA";
}

.fa-arrow-circle-down:before {
  content: "\F0AB";
}

.fa-globe:before {
  content: "\F0AC";
}

.fa-wrench:before {
  content: "\F0AD";
}

.fa-tasks:before {
  content: "\F0AE";
}

.fa-filter:before {
  content: "\F0B0";
}

.fa-briefcase:before {
  content: "\F0B1";
}

.fa-arrows-alt:before {
  content: "\F0B2";
}

.fa-group:before,
.fa-users:before {
  content: "\F0C0";
}

.fa-chain:before,
.fa-link:before {
  content: "\F0C1";
}

.fa-cloud:before {
  content: "\F0C2";
}

.fa-flask:before {
  content: "\F0C3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\F0C4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\F0C5";
}

.fa-paperclip:before {
  content: "\F0C6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\F0C7";
}

.fa-square:before {
  content: "\F0C8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\F0C9";
}

.fa-list-ul:before {
  content: "\F0CA";
}

.fa-list-ol:before {
  content: "\F0CB";
}

.fa-strikethrough:before {
  content: "\F0CC";
}

.fa-underline:before {
  content: "\F0CD";
}

.fa-table:before {
  content: "\F0CE";
}

.fa-magic:before {
  content: "\F0D0";
}

.fa-truck:before {
  content: "\F0D1";
}

.fa-pinterest:before {
  content: "\F0D2";
}

.fa-pinterest-square:before {
  content: "\F0D3";
}

.fa-google-plus-square:before {
  content: "\F0D4";
}

.fa-google-plus:before {
  content: "\F0D5";
}

.fa-money:before {
  content: "\F0D6";
}

.fa-caret-down:before {
  content: "\F0D7";
}

.fa-caret-up:before {
  content: "\F0D8";
}

.fa-caret-left:before {
  content: "\F0D9";
}

.fa-caret-right:before {
  content: "\F0DA";
}

.fa-columns:before {
  content: "\F0DB";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\F0DC";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\F0DD";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\F0DE";
}

.fa-envelope:before {
  content: "\F0E0";
}

.fa-linkedin:before {
  content: "\F0E1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\F0E2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\F0E3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\F0E4";
}

.fa-comment-o:before {
  content: "\F0E5";
}

.fa-comments-o:before {
  content: "\F0E6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\F0E7";
}

.fa-sitemap:before {
  content: "\F0E8";
}

.fa-umbrella:before {
  content: "\F0E9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\F0EA";
}

.fa-lightbulb-o:before {
  content: "\F0EB";
}

.fa-exchange:before {
  content: "\F0EC";
}

.fa-cloud-download:before {
  content: "\F0ED";
}

.fa-cloud-upload:before {
  content: "\F0EE";
}

.fa-user-md:before {
  content: "\F0F0";
}

.fa-stethoscope:before {
  content: "\F0F1";
}

.fa-suitcase:before {
  content: "\F0F2";
}

.fa-bell-o:before {
  content: "\F0A2";
}

.fa-coffee:before {
  content: "\F0F4";
}

.fa-cutlery:before {
  content: "\F0F5";
}

.fa-file-text-o:before {
  content: "\F0F6";
}

.fa-building-o:before {
  content: "\F0F7";
}

.fa-hospital-o:before {
  content: "\F0F8";
}

.fa-ambulance:before {
  content: "\F0F9";
}

.fa-medkit:before {
  content: "\F0FA";
}

.fa-fighter-jet:before {
  content: "\F0FB";
}

.fa-beer:before {
  content: "\F0FC";
}

.fa-h-square:before {
  content: "\F0FD";
}

.fa-plus-square:before {
  content: "\F0FE";
}

.fa-angle-double-left:before {
  content: "\F100";
}

.fa-angle-double-right:before {
  content: "\F101";
}

.fa-angle-double-up:before {
  content: "\F102";
}

.fa-angle-double-down:before {
  content: "\F103";
}

.fa-angle-left:before {
  content: "\F104";
}

.fa-angle-right:before {
  content: "\F105";
}

.fa-angle-up:before {
  content: "\F106";
}

.fa-angle-down:before {
  content: "\F107";
}

.fa-desktop:before {
  content: "\F108";
}

.fa-laptop:before {
  content: "\F109";
}

.fa-tablet:before {
  content: "\F10A";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B";
}

.fa-circle-o:before {
  content: "\F10C";
}

.fa-quote-left:before {
  content: "\F10D";
}

.fa-quote-right:before {
  content: "\F10E";
}

.fa-spinner:before {
  content: "\F110";
}

.fa-circle:before {
  content: "\F111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\F112";
}

.fa-github-alt:before {
  content: "\F113";
}

.fa-folder-o:before {
  content: "\F114";
}

.fa-folder-open-o:before {
  content: "\F115";
}

.fa-smile-o:before {
  content: "\F118";
}

.fa-frown-o:before {
  content: "\F119";
}

.fa-meh-o:before {
  content: "\F11A";
}

.fa-gamepad:before {
  content: "\F11B";
}

.fa-keyboard-o:before {
  content: "\F11C";
}

.fa-flag-o:before {
  content: "\F11D";
}

.fa-flag-checkered:before {
  content: "\F11E";
}

.fa-terminal:before {
  content: "\F120";
}

.fa-code:before {
  content: "\F121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\F122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\F123";
}

.fa-location-arrow:before {
  content: "\F124";
}

.fa-crop:before {
  content: "\F125";
}

.fa-code-fork:before {
  content: "\F126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\F127";
}

.fa-question:before {
  content: "\F128";
}

.fa-info:before {
  content: "\F129";
}

.fa-exclamation:before {
  content: "\F12A";
}

.fa-superscript:before {
  content: "\F12B";
}

.fa-subscript:before {
  content: "\F12C";
}

.fa-eraser:before {
  content: "\F12D";
}

.fa-puzzle-piece:before {
  content: "\F12E";
}

.fa-microphone:before {
  content: "\F130";
}

.fa-microphone-slash:before {
  content: "\F131";
}

.fa-shield:before {
  content: "\F132";
}

.fa-calendar-o:before {
  content: "\F133";
}

.fa-fire-extinguisher:before {
  content: "\F134";
}

.fa-rocket:before {
  content: "\F135";
}

.fa-maxcdn:before {
  content: "\F136";
}

.fa-chevron-circle-left:before {
  content: "\F137";
}

.fa-chevron-circle-right:before {
  content: "\F138";
}

.fa-chevron-circle-up:before {
  content: "\F139";
}

.fa-chevron-circle-down:before {
  content: "\F13A";
}

.fa-html5:before {
  content: "\F13B";
}

.fa-css3:before {
  content: "\F13C";
}

.fa-anchor:before {
  content: "\F13D";
}

.fa-unlock-alt:before {
  content: "\F13E";
}

.fa-bullseye:before {
  content: "\F140";
}

.fa-ellipsis-h:before {
  content: "\F141";
}

.fa-ellipsis-v:before {
  content: "\F142";
}

.fa-rss-square:before {
  content: "\F143";
}

.fa-play-circle:before {
  content: "\F144";
}

.fa-ticket:before {
  content: "\F145";
}

.fa-minus-square:before {
  content: "\F146";
}

.fa-minus-square-o:before {
  content: "\F147";
}

.fa-level-up:before {
  content: "\F148";
}

.fa-level-down:before {
  content: "\F149";
}

.fa-check-square:before {
  content: "\F14A";
}

.fa-pencil-square:before {
  content: "\F14B";
}

.fa-external-link-square:before {
  content: "\F14C";
}

.fa-share-square:before {
  content: "\F14D";
}

.fa-compass:before {
  content: "\F14E";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\F150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\F151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\F152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\F153";
}

.fa-gbp:before {
  content: "\F154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\F155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\F156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\F157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\F158";
}

.fa-won:before,
.fa-krw:before {
  content: "\F159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\F15A";
}

.fa-file:before {
  content: "\F15B";
}

.fa-file-text:before {
  content: "\F15C";
}

.fa-sort-alpha-asc:before {
  content: "\F15D";
}

.fa-sort-alpha-desc:before {
  content: "\F15E";
}

.fa-sort-amount-asc:before {
  content: "\F160";
}

.fa-sort-amount-desc:before {
  content: "\F161";
}

.fa-sort-numeric-asc:before {
  content: "\F162";
}

.fa-sort-numeric-desc:before {
  content: "\F163";
}

.fa-thumbs-up:before {
  content: "\F164";
}

.fa-thumbs-down:before {
  content: "\F165";
}

.fa-youtube-square:before {
  content: "\F166";
}

.fa-youtube:before {
  content: "\F167";
}

.fa-xing:before {
  content: "\F168";
}

.fa-xing-square:before {
  content: "\F169";
}

.fa-youtube-play:before {
  content: "\F16A";
}

.fa-dropbox:before {
  content: "\F16B";
}

.fa-stack-overflow:before {
  content: "\F16C";
}

.fa-instagram:before {
  content: "\F16D";
}

.fa-flickr:before {
  content: "\F16E";
}

.fa-adn:before {
  content: "\F170";
}

.fa-bitbucket:before {
  content: "\F171";
}

.fa-bitbucket-square:before {
  content: "\F172";
}

.fa-tumblr:before {
  content: "\F173";
}

.fa-tumblr-square:before {
  content: "\F174";
}

.fa-long-arrow-down:before {
  content: "\F175";
}

.fa-long-arrow-up:before {
  content: "\F176";
}

.fa-long-arrow-left:before {
  content: "\F177";
}

.fa-long-arrow-right:before {
  content: "\F178";
}

.fa-apple:before {
  content: "\F179";
}

.fa-windows:before {
  content: "\F17A";
}

.fa-android:before {
  content: "\F17B";
}

.fa-linux:before {
  content: "\F17C";
}

.fa-dribbble:before {
  content: "\F17D";
}

.fa-skype:before {
  content: "\F17E";
}

.fa-foursquare:before {
  content: "\F180";
}

.fa-trello:before {
  content: "\F181";
}

.fa-female:before {
  content: "\F182";
}

.fa-male:before {
  content: "\F183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\F184";
}

.fa-sun-o:before {
  content: "\F185";
}

.fa-moon-o:before {
  content: "\F186";
}

.fa-archive:before {
  content: "\F187";
}

.fa-bug:before {
  content: "\F188";
}

.fa-vk:before {
  content: "\F189";
}

.fa-weibo:before {
  content: "\F18A";
}

.fa-renren:before {
  content: "\F18B";
}

.fa-pagelines:before {
  content: "\F18C";
}

.fa-stack-exchange:before {
  content: "\F18D";
}

.fa-arrow-circle-o-right:before {
  content: "\F18E";
}

.fa-arrow-circle-o-left:before {
  content: "\F190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\F191";
}

.fa-dot-circle-o:before {
  content: "\F192";
}

.fa-wheelchair:before {
  content: "\F193";
}

.fa-vimeo-square:before {
  content: "\F194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\F195";
}

.fa-plus-square-o:before {
  content: "\F196";
}

.fa-space-shuttle:before {
  content: "\F197";
}

.fa-slack:before {
  content: "\F198";
}

.fa-envelope-square:before {
  content: "\F199";
}

.fa-wordpress:before {
  content: "\F19A";
}

.fa-openid:before {
  content: "\F19B";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\F19C";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\F19D";
}

.fa-yahoo:before {
  content: "\F19E";
}

.fa-google:before {
  content: "\F1A0";
}

.fa-reddit:before {
  content: "\F1A1";
}

.fa-reddit-square:before {
  content: "\F1A2";
}

.fa-stumbleupon-circle:before {
  content: "\F1A3";
}

.fa-stumbleupon:before {
  content: "\F1A4";
}

.fa-delicious:before {
  content: "\F1A5";
}

.fa-digg:before {
  content: "\F1A6";
}

.fa-pied-piper-pp:before {
  content: "\F1A7";
}

.fa-pied-piper-alt:before {
  content: "\F1A8";
}

.fa-drupal:before {
  content: "\F1A9";
}

.fa-joomla:before {
  content: "\F1AA";
}

.fa-language:before {
  content: "\F1AB";
}

.fa-fax:before {
  content: "\F1AC";
}

.fa-building:before {
  content: "\F1AD";
}

.fa-child:before {
  content: "\F1AE";
}

.fa-paw:before {
  content: "\F1B0";
}

.fa-spoon:before {
  content: "\F1B1";
}

.fa-cube:before {
  content: "\F1B2";
}

.fa-cubes:before {
  content: "\F1B3";
}

.fa-behance:before {
  content: "\F1B4";
}

.fa-behance-square:before {
  content: "\F1B5";
}

.fa-steam:before {
  content: "\F1B6";
}

.fa-steam-square:before {
  content: "\F1B7";
}

.fa-recycle:before {
  content: "\F1B8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\F1B9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\F1BA";
}

.fa-tree:before {
  content: "\F1BB";
}

.fa-spotify:before {
  content: "\F1BC";
}

.fa-deviantart:before {
  content: "\F1BD";
}

.fa-soundcloud:before {
  content: "\F1BE";
}

.fa-database:before {
  content: "\F1C0";
}

.fa-file-pdf-o:before {
  content: "\F1C1";
}

.fa-file-word-o:before {
  content: "\F1C2";
}

.fa-file-excel-o:before {
  content: "\F1C3";
}

.fa-file-powerpoint-o:before {
  content: "\F1C4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\F1C5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\F1C6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\F1C7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\F1C8";
}

.fa-file-code-o:before {
  content: "\F1C9";
}

.fa-vine:before {
  content: "\F1CA";
}

.fa-codepen:before {
  content: "\F1CB";
}

.fa-jsfiddle:before {
  content: "\F1CC";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\F1CD";
}

.fa-circle-o-notch:before {
  content: "\F1CE";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\F1D0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\F1D1";
}

.fa-git-square:before {
  content: "\F1D2";
}

.fa-git:before {
  content: "\F1D3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\F1D4";
}

.fa-tencent-weibo:before {
  content: "\F1D5";
}

.fa-qq:before {
  content: "\F1D6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\F1D7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\F1D8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\F1D9";
}

.fa-history:before {
  content: "\F1DA";
}

.fa-circle-thin:before {
  content: "\F1DB";
}

.fa-header:before {
  content: "\F1DC";
}

.fa-paragraph:before {
  content: "\F1DD";
}

.fa-sliders:before {
  content: "\F1DE";
}

.fa-share-alt:before {
  content: "\F1E0";
}

.fa-share-alt-square:before {
  content: "\F1E1";
}

.fa-bomb:before {
  content: "\F1E2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\F1E3";
}

.fa-tty:before {
  content: "\F1E4";
}

.fa-binoculars:before {
  content: "\F1E5";
}

.fa-plug:before {
  content: "\F1E6";
}

.fa-slideshare:before {
  content: "\F1E7";
}

.fa-twitch:before {
  content: "\F1E8";
}

.fa-yelp:before {
  content: "\F1E9";
}

.fa-newspaper-o:before {
  content: "\F1EA";
}

.fa-wifi:before {
  content: "\F1EB";
}

.fa-calculator:before {
  content: "\F1EC";
}

.fa-paypal:before {
  content: "\F1ED";
}

.fa-google-wallet:before {
  content: "\F1EE";
}

.fa-cc-visa:before {
  content: "\F1F0";
}

.fa-cc-mastercard:before {
  content: "\F1F1";
}

.fa-cc-discover:before {
  content: "\F1F2";
}

.fa-cc-amex:before {
  content: "\F1F3";
}

.fa-cc-paypal:before {
  content: "\F1F4";
}

.fa-cc-stripe:before {
  content: "\F1F5";
}

.fa-bell-slash:before {
  content: "\F1F6";
}

.fa-bell-slash-o:before {
  content: "\F1F7";
}

.fa-trash:before {
  content: "\F1F8";
}

.fa-copyright:before {
  content: "\F1F9";
}

.fa-at:before {
  content: "\F1FA";
}

.fa-eyedropper:before {
  content: "\F1FB";
}

.fa-paint-brush:before {
  content: "\F1FC";
}

.fa-birthday-cake:before {
  content: "\F1FD";
}

.fa-area-chart:before {
  content: "\F1FE";
}

.fa-pie-chart:before {
  content: "\F200";
}

.fa-line-chart:before {
  content: "\F201";
}

.fa-lastfm:before {
  content: "\F202";
}

.fa-lastfm-square:before {
  content: "\F203";
}

.fa-toggle-off:before {
  content: "\F204";
}

.fa-toggle-on:before {
  content: "\F205";
}

.fa-bicycle:before {
  content: "\F206";
}

.fa-bus:before {
  content: "\F207";
}

.fa-ioxhost:before {
  content: "\F208";
}

.fa-angellist:before {
  content: "\F209";
}

.fa-cc:before {
  content: "\F20A";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\F20B";
}

.fa-meanpath:before {
  content: "\F20C";
}

.fa-buysellads:before {
  content: "\F20D";
}

.fa-connectdevelop:before {
  content: "\F20E";
}

.fa-dashcube:before {
  content: "\F210";
}

.fa-forumbee:before {
  content: "\F211";
}

.fa-leanpub:before {
  content: "\F212";
}

.fa-sellsy:before {
  content: "\F213";
}

.fa-shirtsinbulk:before {
  content: "\F214";
}

.fa-simplybuilt:before {
  content: "\F215";
}

.fa-skyatlas:before {
  content: "\F216";
}

.fa-cart-plus:before {
  content: "\F217";
}

.fa-cart-arrow-down:before {
  content: "\F218";
}

.fa-diamond:before {
  content: "\F219";
}

.fa-ship:before {
  content: "\F21A";
}

.fa-user-secret:before {
  content: "\F21B";
}

.fa-motorcycle:before {
  content: "\F21C";
}

.fa-street-view:before {
  content: "\F21D";
}

.fa-heartbeat:before {
  content: "\F21E";
}

.fa-venus:before {
  content: "\F221";
}

.fa-mars:before {
  content: "\F222";
}

.fa-mercury:before {
  content: "\F223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\F224";
}

.fa-transgender-alt:before {
  content: "\F225";
}

.fa-venus-double:before {
  content: "\F226";
}

.fa-mars-double:before {
  content: "\F227";
}

.fa-venus-mars:before {
  content: "\F228";
}

.fa-mars-stroke:before {
  content: "\F229";
}

.fa-mars-stroke-v:before {
  content: "\F22A";
}

.fa-mars-stroke-h:before {
  content: "\F22B";
}

.fa-neuter:before {
  content: "\F22C";
}

.fa-genderless:before {
  content: "\F22D";
}

.fa-facebook-official:before {
  content: "\F230";
}

.fa-pinterest-p:before {
  content: "\F231";
}

.fa-whatsapp:before {
  content: "\F232";
}

.fa-server:before {
  content: "\F233";
}

.fa-user-plus:before {
  content: "\F234";
}

.fa-user-times:before {
  content: "\F235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\F236";
}

.fa-viacoin:before {
  content: "\F237";
}

.fa-train:before {
  content: "\F238";
}

.fa-subway:before {
  content: "\F239";
}

.fa-medium:before {
  content: "\F23A";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\F23B";
}

.fa-optin-monster:before {
  content: "\F23C";
}

.fa-opencart:before {
  content: "\F23D";
}

.fa-expeditedssl:before {
  content: "\F23E";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\F240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\F241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\F242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\F243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\F244";
}

.fa-mouse-pointer:before {
  content: "\F245";
}

.fa-i-cursor:before {
  content: "\F246";
}

.fa-object-group:before {
  content: "\F247";
}

.fa-object-ungroup:before {
  content: "\F248";
}

.fa-sticky-note:before {
  content: "\F249";
}

.fa-sticky-note-o:before {
  content: "\F24A";
}

.fa-cc-jcb:before {
  content: "\F24B";
}

.fa-cc-diners-club:before {
  content: "\F24C";
}

.fa-clone:before {
  content: "\F24D";
}

.fa-balance-scale:before {
  content: "\F24E";
}

.fa-hourglass-o:before {
  content: "\F250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\F251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\F252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\F253";
}

.fa-hourglass:before {
  content: "\F254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\F255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\F256";
}

.fa-hand-scissors-o:before {
  content: "\F257";
}

.fa-hand-lizard-o:before {
  content: "\F258";
}

.fa-hand-spock-o:before {
  content: "\F259";
}

.fa-hand-pointer-o:before {
  content: "\F25A";
}

.fa-hand-peace-o:before {
  content: "\F25B";
}

.fa-trademark:before {
  content: "\F25C";
}

.fa-registered:before {
  content: "\F25D";
}

.fa-creative-commons:before {
  content: "\F25E";
}

.fa-gg:before {
  content: "\F260";
}

.fa-gg-circle:before {
  content: "\F261";
}

.fa-tripadvisor:before {
  content: "\F262";
}

.fa-odnoklassniki:before {
  content: "\F263";
}

.fa-odnoklassniki-square:before {
  content: "\F264";
}

.fa-get-pocket:before {
  content: "\F265";
}

.fa-wikipedia-w:before {
  content: "\F266";
}

.fa-safari:before {
  content: "\F267";
}

.fa-chrome:before {
  content: "\F268";
}

.fa-firefox:before {
  content: "\F269";
}

.fa-opera:before {
  content: "\F26A";
}

.fa-internet-explorer:before {
  content: "\F26B";
}

.fa-tv:before,
.fa-television:before {
  content: "\F26C";
}

.fa-contao:before {
  content: "\F26D";
}

.fa-500px:before {
  content: "\F26E";
}

.fa-amazon:before {
  content: "\F270";
}

.fa-calendar-plus-o:before {
  content: "\F271";
}

.fa-calendar-minus-o:before {
  content: "\F272";
}

.fa-calendar-times-o:before {
  content: "\F273";
}

.fa-calendar-check-o:before {
  content: "\F274";
}

.fa-industry:before {
  content: "\F275";
}

.fa-map-pin:before {
  content: "\F276";
}

.fa-map-signs:before {
  content: "\F277";
}

.fa-map-o:before {
  content: "\F278";
}

.fa-map:before {
  content: "\F279";
}

.fa-commenting:before {
  content: "\F27A";
}

.fa-commenting-o:before {
  content: "\F27B";
}

.fa-houzz:before {
  content: "\F27C";
}

.fa-vimeo:before {
  content: "\F27D";
}

.fa-black-tie:before {
  content: "\F27E";
}

.fa-fonticons:before {
  content: "\F280";
}

.fa-reddit-alien:before {
  content: "\F281";
}

.fa-edge:before {
  content: "\F282";
}

.fa-credit-card-alt:before {
  content: "\F283";
}

.fa-codiepie:before {
  content: "\F284";
}

.fa-modx:before {
  content: "\F285";
}

.fa-fort-awesome:before {
  content: "\F286";
}

.fa-usb:before {
  content: "\F287";
}

.fa-product-hunt:before {
  content: "\F288";
}

.fa-mixcloud:before {
  content: "\F289";
}

.fa-scribd:before {
  content: "\F28A";
}

.fa-pause-circle:before {
  content: "\F28B";
}

.fa-pause-circle-o:before {
  content: "\F28C";
}

.fa-stop-circle:before {
  content: "\F28D";
}

.fa-stop-circle-o:before {
  content: "\F28E";
}

.fa-shopping-bag:before {
  content: "\F290";
}

.fa-shopping-basket:before {
  content: "\F291";
}

.fa-hashtag:before {
  content: "\F292";
}

.fa-bluetooth:before {
  content: "\F293";
}

.fa-bluetooth-b:before {
  content: "\F294";
}

.fa-percent:before {
  content: "\F295";
}

.fa-gitlab:before {
  content: "\F296";
}

.fa-wpbeginner:before {
  content: "\F297";
}

.fa-wpforms:before {
  content: "\F298";
}

.fa-envira:before {
  content: "\F299";
}

.fa-universal-access:before {
  content: "\F29A";
}

.fa-wheelchair-alt:before {
  content: "\F29B";
}

.fa-question-circle-o:before {
  content: "\F29C";
}

.fa-blind:before {
  content: "\F29D";
}

.fa-audio-description:before {
  content: "\F29E";
}

.fa-volume-control-phone:before {
  content: "\F2A0";
}

.fa-braille:before {
  content: "\F2A1";
}

.fa-assistive-listening-systems:before {
  content: "\F2A2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\F2A3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\F2A4";
}

.fa-glide:before {
  content: "\F2A5";
}

.fa-glide-g:before {
  content: "\F2A6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\F2A7";
}

.fa-low-vision:before {
  content: "\F2A8";
}

.fa-viadeo:before {
  content: "\F2A9";
}

.fa-viadeo-square:before {
  content: "\F2AA";
}

.fa-snapchat:before {
  content: "\F2AB";
}

.fa-snapchat-ghost:before {
  content: "\F2AC";
}

.fa-snapchat-square:before {
  content: "\F2AD";
}

.fa-pied-piper:before {
  content: "\F2AE";
}

.fa-first-order:before {
  content: "\F2B0";
}

.fa-yoast:before {
  content: "\F2B1";
}

.fa-themeisle:before {
  content: "\F2B2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\F2B3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\F2B4";
}

.fa-handshake-o:before {
  content: "\F2B5";
}

.fa-envelope-open:before {
  content: "\F2B6";
}

.fa-envelope-open-o:before {
  content: "\F2B7";
}

.fa-linode:before {
  content: "\F2B8";
}

.fa-address-book:before {
  content: "\F2B9";
}

.fa-address-book-o:before {
  content: "\F2BA";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\F2BB";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\F2BC";
}

.fa-user-circle:before {
  content: "\F2BD";
}

.fa-user-circle-o:before {
  content: "\F2BE";
}

.fa-user-o:before {
  content: "\F2C0";
}

.fa-id-badge:before {
  content: "\F2C1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\F2C2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\F2C3";
}

.fa-quora:before {
  content: "\F2C4";
}

.fa-free-code-camp:before {
  content: "\F2C5";
}

.fa-telegram:before {
  content: "\F2C6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\F2C7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\F2C8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\F2C9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\F2CA";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\F2CB";
}

.fa-shower:before {
  content: "\F2CC";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\F2CD";
}

.fa-podcast:before {
  content: "\F2CE";
}

.fa-window-maximize:before {
  content: "\F2D0";
}

.fa-window-minimize:before {
  content: "\F2D1";
}

.fa-window-restore:before {
  content: "\F2D2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\F2D3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\F2D4";
}

.fa-bandcamp:before {
  content: "\F2D5";
}

.fa-grav:before {
  content: "\F2D6";
}

.fa-etsy:before {
  content: "\F2D7";
}

.fa-imdb:before {
  content: "\F2D8";
}

.fa-ravelry:before {
  content: "\F2D9";
}

.fa-eercast:before {
  content: "\F2DA";
}

.fa-microchip:before {
  content: "\F2DB";
}

.fa-snowflake-o:before {
  content: "\F2DC";
}

.fa-superpowers:before {
  content: "\F2DD";
}

.fa-wpexplorer:before {
  content: "\F2DE";
}

.fa-meetup:before {
  content: "\F2E0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

html,
body {
  float: left;
  width: 100%;
  height: 100%;
  background-color: #F6F6F6;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

.f-13 {
  font-size: 13px;
}

.row.set-20 {
  margin-right: -10px;
  margin-left: -10px;
}

.row.set-20 > div {
  padding-left: 10px;
  padding-right: 10px;
}

.row.set-30 {
  margin-right: -30px;
  margin-left: -30px;
}

.row.set-30 > div {
  padding-left: 30px;
  padding-right: 30px;
}

#content {
  float: left;
  width: 100%;
  height: 100%;
}

#content > .app {
  float: left;
  width: 100%;
  height: 100%;
}

.app .mob {
  display: none;
}

.app .text-field {
  height: 44px;
  background-color: #fff;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 300;
  color: #4a4a4a;
  border-radius: 2px;
}

.app .text-field-sm {
  height: 32px;
  background-color: #fff;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 300;
  color: #4a4a4a;
  border-radius: 2px;
}

.app .textarea-field {
  height: 134px;
  resize: none;
}

.badge.light-gray {
  background-color: #E2E2E2;
  color: #797C84;
  font-size: 11px;
  padding: 4px 12px;
}

.text-success {
  color: #006e51;
}

.btn {
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  box-shadow: none !important;
}

.btn.btn-outline-success {
  border-color: #006e51;
  color: #000;
}

.btn.btn-outline-success:hover {
  background-color: #006e51;
  color: #fff;
}

.btn.btn-warning {
  background-color: #EFA731;
  border-color: #EFA731;
}

.btn.btn-danger {
  background-color: #F36868;
  border-color: #F36868;
}

.btn.btn-success {
  background-color: #006e51;
  height: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  min-width: 100px;
  border: none;
}

.btn.btn-success.border-round {
  border-radius: 100px;
}

.btn.rounded {
  border-radius: 100px !important;
}

.btn .icon {
  margin: -5px 0 0 20px;
}

.btn.size-1 {
  height: 30px;
  padding: 0;
  font-size: 12px;
  min-width: 100px;
  border-radius: 5px;
}

.btn.h-34 {
  height: 34px !important;
}

.btn.h-30 {
  height: 30px !important;
  padding: 0;
  font-size: 12px;
}

.btn.sm {
  height: 32px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 13px;
}

.btn.sm.font-dark {
  font-size: 12px;
  color: #444444;
}

.btn.sm.font-dark:hover {
  color: #fff;
}

.btn.sm.font-sm {
  font-size: 12px;
}

.btn.tall {
  width: 145px;
}

.btn.xl {
  width: 160px;
  height: 30px;
  padding: 0;
  font-size: 12px;
  color: #444444;
}

.btn.xl:hover {
  color: #fff;
}

.btn.xll {
  width: 176px;
  height: 30px;
  padding: 0;
  font-size: 12px;
}

.btn.h-42 {
  height: 42px;
}

.btn.btn-icon {
  width: auto;
  height: 32px;
  padding: 0 45px 0 20px;
  background-repeat: no-repeat;
  background-position: calc(100% - 13px) center;
  border-radius: 100px;
  color: #4A4A4A;
  font-size: 14px;
  line-height: 1;
}

.btn.btn-icon:hover {
  color: #fff;
}

.btn.btn-icon.icon-star {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAZlJREFUOBGdlL9Lw1AQx7/3UnApDtrRrSr+GBQ6FN2rrUU3/wIHEY2r1Fl0c6viJugmTkIr7V8gUnDookgnB4fiLrQ976WmzYtNTHvwyL277/eTI3kJ4b8oZpbRoTtHpngb+9WXMIsKa4KZBHYr12lndXMK84QDi9ktAS32ADrXtZAIBzIX/ngH1TyiYGBxPSvTpT3abqpruhcQ5vO42kyg9T2LDtICOxZPIsDXBNEpFJ4QG3vD7kPT1REu1lJo4wyMFMATbmO4K32BUIOFQgxtvhHY/HAAv1oGYWRksCl5hhT3t0ffU1yB1ZGMy6NDfp2aISwL5fc6cslPgealZb6kqHdxYNjDYeXacjzlRg35ZFPusRGVYegUbNjVS13rAnVWajwjNzMub3pFb6OHOoddOXH15sG2+N5tRL76PCYQmIwM6gsNjwlkWujrImY+jw/IIwBNjx8Y8MXQq5woWQOC2fCYQMjHYwTVoay8nK85Z+kcUvMGUcu7NYFkyf+PPpxpFO3AXl3CwWOpZ9C5rumeM7HWKv1X6sUPsq16tG3MzKMAAAAASUVORK5CYII=);
  background-size: 10px;
}

.btn.btn-icon.icon-star:hover {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAARJJREFUOBG1k70NwjAQhTF1OjIEUEWio6JEosgONCmoqJiCUViACRgg4keUlIgNAPMeiqU7h5hgiZO++Hx37znKT6fzJay1GThXZF/Gw22YGFACF8xNWBXoQpw7J7HmAUm4BZOdMHLpLqxq6EI9dQ4f1mmDTJchTMEYLMEVNAV7nOFsqlxQGIEtuIHYoJYeI77FPU4YqFPiN4cutEm8vqZMaLgCttb6vUAPesHN2gI8QWxQW7zN3AWFRawbtc5HrWisI0zX0oTPUMZGblrmSuMb9lqayDGl8Q2HcrJlrjR/N2z6Y064W/IplMa/w4enKLGfGWP6hDlgTcZdblSOT2YCLuAI5sA/kD9Bt+pxhrMTafICzrrf9YS/JBwAAAAASUVORK5CYII=);
}

.btn.btn-icon.icon-chat {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAFtJREFUOBFjZJjk+p+BAsBEgV6w1lEDGBhGw2BYhAELAyPjLMz88F+Q4T9DKKo44w4GRoZHqGIMQCFcYLJbCcP//90QaaapDHk7c3ApxS0+2a2QYbLrBNwKGBgAReIPQyVDJGcAAAAASUVORK5CYII=);
  background-size: 8px;
}

.btn.btn-icon.icon-chat:hover {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAABGdBTUEAALGPC/xhBQAAAF9JREFUOBFj/A8EDBQAJgr0grWOGsDAMBoGo2EAygwsQLwPnCtQCQEg1whViOEakP8CTQw7F5jDGYF4KSirQ8F+IM2BXTUOUaAGFiDeDMSngZgXhzL8wkCNHEAshE8VAHONL8rJyWjoAAAAAElFTkSuQmCC);
}

.btn.btn-icon.disabled {
  border-color: #9B9B9B;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAhpJREFUSA29ljtIw1AUhps0bYfgA0XqIg6Kolux0je4KOosiIOTi2ARnMTNTVy1g5MdHFzcBV2EPmhrtaMoOjg4iAi+UkhbWv8jSblJH2lr9cLhnpxz/u/cm+SGcKYGRzQanUPpnlK+7vf7TxuRco0UpVKpflmW71ErKvWSxWIZcrvdz0Z63qiA8oBvYFLhFBLz+TzFDIfhDjKZTLckSY+lUqmTpXEc9yGK4qDD4Xhj43rfcAfZbHZNDycIxSinB+qv6+4gmUz25nK5G4j69ELl+sVqtY65XK7XGnlT1QaJRMJeKBQmINrGSidriSmOW3VJdYIgXFV76BwAQjweX8I8AxuBYBRzVz1orRy079DeYr6DnXm93mMO7/c+gsFaot/E0STEA774G0g9LbF5dKED9CeD2LzZbA7C+Wx3BzA/iM17PJ5rnudn0eCrjU2+wJz7YRMUTzuOjvNwpTY0kYhFTGJpzkEkEplC7BwmwFoZBYimA4HAhSrWfCqURFhNtjCHWTjpNQ0U4EMLYFVSoa1ogPs3oFY3O1fTVjQAdLxZMFNfof3fBvjo9eB425kVNeWSlhisSL+DQTbJ+ri/CVyvkCk+m2Z9DUPzvmMFT6iUYTZVAdg9bMvn852oMcyHsVhsAfU7sGEmLiuMckhz0CgK4XKxWNyF+4njHrLZbAdOpzNfVjBOOp224IdgFfX0ue9A/SYWcsSUmL4BUTO9X006Vd4AAAAASUVORK5CYII=) !important;
  color: #4A4A4A;
  opacity: 1;
}

.btn.btn-icon.disabled:hover {
  background-color: #9B9B9B;
  color: #fff;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAARJJREFUOBG1k70NwjAQhTF1OjIEUEWio6JEosgONCmoqJiCUViACRgg4keUlIgNAPMeiqU7h5hgiZO++Hx37znKT6fzJay1GThXZF/Gw22YGFACF8xNWBXoQpw7J7HmAUm4BZOdMHLpLqxq6EI9dQ4f1mmDTJchTMEYLMEVNAV7nOFsqlxQGIEtuIHYoJYeI77FPU4YqFPiN4cutEm8vqZMaLgCttb6vUAPesHN2gI8QWxQW7zN3AWFRawbtc5HrWisI0zX0oTPUMZGblrmSuMb9lqayDGl8Q2HcrJlrjR/N2z6Y064W/IplMa/w4enKLGfGWP6hDlgTcZdblSOT2YCLuAI5sA/kD9Bt+pxhrMTafICzrrf9YS/JBwAAAAASUVORK5CYII=) !important;
}

.btn.btn-star {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAZlJREFUOBGdlL9Lw1AQx7/3UnApDtrRrSr+GBQ6FN2rrUU3/wIHEY2r1Fl0c6viJugmTkIr7V8gUnDookgnB4fiLrQ976WmzYtNTHvwyL277/eTI3kJ4b8oZpbRoTtHpngb+9WXMIsKa4KZBHYr12lndXMK84QDi9ktAS32ADrXtZAIBzIX/ngH1TyiYGBxPSvTpT3abqpruhcQ5vO42kyg9T2LDtICOxZPIsDXBNEpFJ4QG3vD7kPT1REu1lJo4wyMFMATbmO4K32BUIOFQgxtvhHY/HAAv1oGYWRksCl5hhT3t0ffU1yB1ZGMy6NDfp2aISwL5fc6cslPgealZb6kqHdxYNjDYeXacjzlRg35ZFPusRGVYegUbNjVS13rAnVWajwjNzMub3pFb6OHOoddOXH15sG2+N5tRL76PCYQmIwM6gsNjwlkWujrImY+jw/IIwBNjx8Y8MXQq5woWQOC2fCYQMjHYwTVoay8nK85Z+kcUvMGUcu7NYFkyf+PPpxpFO3AXl3CwWOpZ9C5rumeM7HWKv1X6sUPsq16tG3MzKMAAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.btn.btn-star:hover {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAARJJREFUOBG1k70NwjAQhTF1OjIEUEWio6JEosgONCmoqJiCUViACRgg4keUlIgNAPMeiqU7h5hgiZO++Hx37znKT6fzJay1GThXZF/Gw22YGFACF8xNWBXoQpw7J7HmAUm4BZOdMHLpLqxq6EI9dQ4f1mmDTJchTMEYLMEVNAV7nOFsqlxQGIEtuIHYoJYeI77FPU4YqFPiN4cutEm8vqZMaLgCttb6vUAPesHN2gI8QWxQW7zN3AWFRawbtc5HrWisI0zX0oTPUMZGblrmSuMb9lqayDGl8Q2HcrJlrjR/N2z6Y064W/IplMa/w4enKLGfGWP6hDlgTcZdblSOT2YCLuAI5sA/kD9Bt+pxhrMTafICzrrf9YS/JBwAAAAASUVORK5CYII=);
}

.btn.btn-cross {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAZhJREFUOBGVlDFLw0AUx++ukHYSERxcBLt1cHNx80sIIjiVxClOFpwcnIQ4mcmETi6Cm5/A1U/QrYKrm0ubQO/8v8ill/QuiQ9Ckvfu/8u7916OM5gKgr18tXpjnA855zdemqbk72LQ7kP7grUjzthEkAgOXzF2pJTakVImue+HXWGZlO/QHuPaxhUVQIhnJgDQxzYoZUYwptSBoZ0VwP50+oqtRkaANUGtMM4/vV7vDNteWzYeR0j7eu1hTAhxhZrG2ueC9YU44UnyVQGSqAnaBiP9BtAF5ULcoWkXlZphmzoz0pFZgRSwZUr+0iwwijmBFHRCHTDS6LGh5w1D12J88acewEQ8UwPqfnp3AnUD0PWtulBJeeuaUytQw8wG1DN1zekG0AbDP05Dewjog5mtDVppigtmjoatUebwl8AuMJ1dE7QAqjDczRaLD7NmtE0zMw3Tdwc0KGqYL5eX/4ERFAfKpF5T/En3f02Rcq6/3JZZuc4GVWpe1hBbOMfRMvQGgycex9+msO0Z2lOsGWESOp/0bcwy/gvY1wN23yxlCQAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
  background-position: 48% center;
  background-size: 10px;
  background-color: #fff;
  border-color: #F86363;
}

.btn.btn-cross:hover {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAQlJREFUOBGdlL0NAjEMRskQFDRX0DEQDTWUbICQaGECxD40twMLoNOJCY7n43wyIQkGS5/i+OfJSaRMJljXdTNUowZtJOY16it0RS1a9304e2Rt6wHSILCbaWwVuDRBdYtQimKY9F3HQdgcJRJZEkpNCiaTViNQHAKnCCjbNyh7H0zJNGShP8O+QA8A5VjWPo+pkHilKzXpfzCFF6D+yRQmK0B5gIcda/APts7lD7D4ziz77fWL0AwsNel3aAbW3xm51EPloSWYHskN9cDcUGBTFD9Af0yFxGtm0tfXR3KHrBVhCqchvtOmz5FYGZoLloHWwSRW+HN0DiHcNe5ZGWZJ3QJdPPU/1TwB4PXyoao6yVkAAAAASUVORK5CYII=);
  background-color: #F86363;
}

.btn.btn-arrow {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAICAYAAADJEc7MAAAABGdBTUEAALGPC/xhBQAAAM1JREFUGBljYKAITHY7yzDVLZqgGVPcUxgmuV0GqWMCK2b838Lw7/8chilumTg1T3YrZPj/fyIDE1M5SA0zWOG2ezcYvFVOMfxjmAuk/zJsu3sUxYDJbg0M/xmqGFiYfRiyd+xBaASxtt29x+CldJCB4f90Bi8VPobtd/cCbWBkED7ez8D4P5WBmdkNqOkYzEBGGANOT/c0ZPj9dyfQgB0MjIxsQJvsGJgYXRlydl6FqwEyMDWCZCe7aQBtWwZk/WFgZ4lkSN9+FyRMFQAAhiQ8kBwa86MAAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.btn.btn-arrow:hover {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAGCAYAAAD37n+BAAAAAXNSR0IArs4c6QAAAJNJREFUGBlj+P79+xUgTmYgAIBqYr59+3aG4cePH15AzlcgXYhLD1AuE6jm+8+fPwPBaoBseyD+BMQN6JqAppYDxb8ANbmiyP369csUKPkGiPv////PCJIEKmwD4g9AMSuYYrAEjAO0Uvvv37+7GRkZDwHFfgE1erCwsLizsbGdh6nBoIFWKwNNPAXE54AGaKArAAAMCWm1cgraJQAAAABJRU5ErkJggg==);
}

.btn.btn-arrow.disbled {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAICAYAAAD0g6+qAAAABGdBTUEAALGPC/xhBQAAALpJREFUKBVjZACCLVu2CAKp3UxMTMu9vLx6QWL4wLZt20T//fu3H6hGG6gnC6hnOhNIAzMzswMjI6MRULIHqKiYWEOA6q4A8RqQerBBnp6e64EGpQDxf3yGIbsEZAjQNU5A17wGGcQIImAAqDDp////c4CYEaioBNmbaIZcBco7wgwB6UcxCCSAzTBChmA1CIthTUDvBgPFtYEYwyUg9SCA4SKIMKrLoGI4DcFrEEgSyZvX0MMEajicAgDQ1X1NOpnn5wAAAABJRU5ErkJggg==);
  border-color: #B4B4B4;
}

.btn.btn-text-arrow {
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  padding-right: 70px;
  position: relative;
  border-radius: 100px;
}

.btn.btn-text-arrow img {
  position: absolute;
  right: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
}

.btn.btn-add {
  height: 35px;
  color: #4A4A4A;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-right: 30px;
}

.btn.btn-add:after {
  content: '+';
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 14px;
  height: 15px;
  line-height: 1;
  color: #28a745;
}

.btn.btn-add:hover {
  color: #fff;
}

.btn.btn-add:hover:after {
  color: #fff;
}

.green-link {
  float: left;
  font-size: 14px;
  color: #009245;
  border-bottom: 1px dashed #009245;
}

.checkboxInline {
  display: inline-block;
  background-color: #fff;
  border-radius: 100px;
  border: 1px solid #BDBDBD;
  text-align: center;
  padding: 8px 30px;
  height: 40px;
  position: relative;
}

.checkboxInline input {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.checkboxInline .icheckbox {
  position: absolute;
  left: 7px;
  top: 8px;
  display: none;
}

.checkboxInline .icheckbox img {
  width: 10px;
}

.checkboxInline span {
  font-size: 14px;
  color: #4A4A4A;
  font-weight: 400;
}

.checkboxInline.active {
  border-color: #009245;
}

.checkboxInline.active .icheckbox {
  display: block;
}

.m-t-50 {
  margin-top: 50px;
}

.m-t-40 {
  margin-top: 40px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-t-25 {
  margin-top: 25px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-t-15 {
  margin-top: 15px;
}

.m-t-14 {
  margin-top: 14px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-7 {
  margin-top: 7px;
}

.m-t-6 {
  margin-top: 6px;
}

.m-t-5 {
  margin-top: 5px;
}

.m-t-0 {
  margin-top: 0px !important;
}

.m-l-14-r {
  margin-left: -14px;
}

.m-l-10 {
  margin-left: 10px;
}

.m-l-20 {
  margin-left: 20px;
}

.m-r-5 {
  margin-right: 5px;
}

.m-r-10 {
  margin-right: 10px;
}

.m-r-15 {
  margin-right: 15px;
}

.m-r-20 {
  margin-right: 20px;
}

.p-r-7 {
  padding-right: 7px !important;
}

.p-l-7 {
  padding-left: 7px !important;
}

.m-b-70 {
  margin-bottom: 70px;
}

.m-b-60 {
  margin-bottom: 60px;
}

.m-b-50 {
  margin-bottom: 50px;
}

.m-b-40 {
  margin-bottom: 40px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-b-8 {
  margin-bottom: 8px;
}

.m-b-5 {
  margin-bottom: 5px;
}

.m-b-25 {
  margin-bottom: 25px;
}

.m-b-15 {
  margin-bottom: 15px;
}

.m-b-0 {
  margin-bottom: 0px !important;
}

.p-l-0 {
  padding-left: 0 !important;
}

.p-r-0 {
  padding-right: 0 !important;
}

.col-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.p-rel {
  position: relative;
}

.f-12 {
  font-size: 12px;
}

.border-none {
  border: none !important;
}

.typeahead-selector {
  background-color: #fff;
  padding: 10px;
}

.typeahead-selector li {
  margin-bottom: 10px;
  list-style: none;
}

.typeahead-selector lilast-child {
  margin-bottom: 0;
}

.typeahead-selector li a {
  color: #4a4a4a;
}

.container-body {
  padding-top: 54px;
}

.main-wrap {
  float: left;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

.main-wrap.active {
  padding-left: 77px;
}

.main-wrap.pl-none {
  padding-left: 0;
}

.btn.btn-white {
  width: 81px;
  height: 24px;
  border: 1px solid #009245;
  background-color: #fff;
  padding: 0;
  font-size: 12px;
}

.btn.btn-white:hover {
  background-color: #009245;
  color: #fff;
}

.btn.btn-white.button-small {
  width: 57px;
  font-size: 10px;
}

.btn.btn-orange {
  width: 81px;
  height: 24px;
  border: none;
  background-color: #EFA731;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 11px;
  color: #fff;
}

.btn.btn-orange.w-auto {
  width: auto;
}

.btn.btn-orange:hover {
  color: #fff;
}

.btn.btn-orange.button-small {
  width: 57px;
  font-size: 10px;
}

.btn.btn-black {
  width: 70px;
  height: 24px;
  border: none;
  background-color: #3B414B;
  color: #fff;
  padding: 0;
  font-size: 12px;
}

.btn.btn-black:hover {
  background-color: #009245;
  color: #fff;
}

.btn.btn-transparent {
  width: 94px;
  height: 24px;
  border: 1px solid #CDCDCD;
  background-color: transparent;
  padding: 0;
  font-size: 8px;
  color: #444444;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.btn.btn-transparent:hover {
  color: #444444;
  background-color: transparent;
}

.btn.btn-transparent.small {
  padding: 0 13px;
  font-size: 12px;
  border-radius: 4px;
}

.btn.btn-transparent input[type='file'] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.heading-1 {
  color: #444444;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
}

.heading-1.roboto {
  font-family: 'Roboto';
}

.heading-2 {
  color: #535353;
  font-size: 32px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

.heading-3 {
  color: #535353;
  font-size: 18px;
  font-family: "Lato", sans-serif;
}

.heading-4 {
  color: #009245;
  font-size: 32px;
  font-weight: 700;
}

.heading-5 {
  color: #4A4A4A;
  font-size: 24px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  position: relative;
}

.heading-5.border-green:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background-color: #EFEFEF;
}

.heading-5.border-green:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  width: 100px;
  background-color: #009245;
}

.heading-6 {
  color: #4A4A4A;
  font-size: 18px;
  font-weight: 500;
}

.textarea-field {
  border: 1px solid #EAEDF1;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 300;
  color: #3B445E;
  line-height: 24px;
  box-shadow: none !important;
  resize: none;
}

.txt1 {
  color: #4A4A4A;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
}

.txt2 {
  color: #4A4A4A;
  font-size: 16px;
  font-weight: 300;
  font-family: "Lato", sans-serif;
  line-height: 24px;
}

.container-body .breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.container-body .breadcrumb .icon {
  float: left;
  margin-right: 10px;
  width: 10px;
}

.container-body .breadcrumb li {
  font-size: 13px;
}

.container-body .breadcrumb li:before {
  content: '';
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAGCAYAAAD37n+BAAAABGdBTUEAALGPC/xhBQAAALtJREFUGBljdnV1vaKiovLz7t275xnwAKC6GGVl5XnMQOIBUN18oKbvQE0nsOlxcXHJBIpPZWRkLGC+d+/ebaCmo////58F1MQO1HQAWRPQ5HKgwhYmJqaA3bt3b2WESXp4eJj++fNnO1Bi8c6dO4uAiv4DFbcBDcoCinnt2rXrGEgtXAOI4+7urv3v37/dQEWHgBp+AYU8WFhY3Ldv3w73H4oGkCZPT0/l379/LwcyWYAmRwFNvgEShwEAVFlIoWnpbVgAAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  background-position: 0;
  height: 10px;
  transform: rotate(-90deg);
  background-size: 9px;
  position: relative;
  top: 0px;
  margin-right: 0.5rem;
}

.container-body .breadcrumb li a {
  color: #444444;
}

.tabs-design {
  position: relative;
}

.tabs-design .nav-tabs {
  border: none;
}

.tabs-design .nav-tabs .nav-item {
  margin-right: 9px;
}

.tabs-design .nav-tabs .nav-item .nav-link {
  height: 43px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  background-color: #2A303C;
  border-top: 3px solid #2A303C;
  border-left: 3px solid #2A303C;
  border-right: 3px solid #2A303C;
  text-align: center;
  padding: 11px 38px;
  border-radius: 4px 4px 0 0;
}

.tabs-design .nav-tabs .nav-item .nav-link i {
  float: left;
  margin-right: 20px;
}

.tabs-design .nav-tabs .nav-item .nav-link i.tab-star-icon {
  width: 11px;
  height: 11px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAARJJREFUOBG1k70NwjAQhTF1OjIEUEWio6JEosgONCmoqJiCUViACRgg4keUlIgNAPMeiqU7h5hgiZO++Hx37znKT6fzJay1GThXZF/Gw22YGFACF8xNWBXoQpw7J7HmAUm4BZOdMHLpLqxq6EI9dQ4f1mmDTJchTMEYLMEVNAV7nOFsqlxQGIEtuIHYoJYeI77FPU4YqFPiN4cutEm8vqZMaLgCttb6vUAPesHN2gI8QWxQW7zN3AWFRawbtc5HrWisI0zX0oTPUMZGblrmSuMb9lqayDGl8Q2HcrJlrjR/N2z6Y064W/IplMa/w4enKLGfGWP6hDlgTcZdblSOT2YCLuAI5sA/kD9Bt+pxhrMTafICzrrf9YS/JBwAAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100% auto;
  margin-top: 2px;
}

.tabs-design .nav-tabs .nav-item .nav-link i.tab-dollar-icon {
  width: 15px;
  height: 15px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAZFJREFUOBGdlE0rRFEYx+fqmrwNWVmQZOcL+ACyUF4GmSgbS5/DajbKfAf2YoGPoFhrRtzIQimFRmTq+v25t86ce84M89Tvnnuel/95vTeXc1gcxyFswAHcwjt8QgT7sAbdjtKsi8Qi3EM7uyZhOauQeAgGsNdOxREv4+vKCHcoluqXmwTxrqQRT6ttaJvzI0qiDiACnz0TGIBBOIMquKyGM8zx0Gn67IhAv7kc+r3w5SlYDUleMgus9236HxRv0fYlsSla1bmsqBneeEaTkE5+AnwzsktrEqzbXqM/q2nQz8Mw6EI/gs/elKyvwGdPBDZhFAqJ+IwvGf+rBH1LtusaOMZB26DP0GVVbe45TGp0h1XwVRN/nfYBxiCf+OzmUjNcdw2FT7PoMSvoF+AUfFaSYKuLfUX8BHT3huAFfKYL//sH4kWfVitbJFhqlUBszlyNZtrJnyYdY6dJTB0iOr1KmvGPdjcjZjoQ0vLv/iAYkbNg1uo9sB3qk6jrpL/xPEzDCGjDdW0u4BgOgyBo0DbZN8cRU1dqD5NVAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100% auto;
}

.tabs-design .nav-tabs .nav-item .nav-link i.tab-report-icon {
  width: 15px;
  height: 15px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABGdBTUEAALGPC/xhBQAAARZJREFUSA3tV0sSgjAMbV2wdqtHcI+38F6cgyt4Bq/gEejWrav6HlKHEUuSYTq4IDNhaPL6XhvCz7kCFmOs4A28g4+NY8arArLODeRjwe/zxpdQhkoH3sMMdyglHGdE+9ROApTKryeM6/G/HWgt93cL/xp7VQd6f7SIU0jCU1gGeW/qfg3nes0llaRUfttxqcpOeE2lRrfW8Bv8yc4djOeM1RP2mYD6dgIx3zZ3+D7D90D8hDsvcEEZzCds2fEFs3KiJGSOGJVZhDVPLw2mX5hFWLUTLWgT1lZqMW4r9eISaglWLXUQVpny/EiXLGHSnBw+cMdtLjvEU/6KMZ/HOWOOGFqa8x5Njy3/c9Sft8Ce4eLbScP5AmveXK9YsSPfAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100% auto;
}

.tabs-design .nav-tabs .nav-item .nav-link.active {
  background-color: #fff;
  color: #444444;
  border-top: 3px solid #009245;
  border-left: 1px solid #e9ecef;
  border-right: 1px solid #e9ecef;
}

.tabs-design .nav-tabs .nav-item .nav-link.active i.tab-star-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAbRJREFUOBGlk89LAlEQx2feCl2kQ5mQBHmIqJZ+KSGBhIeCSIgu9Q906tBZ9Bx169o1qFt07SzaJcQUUqFuRZCgdI90p3naxr6XbS4+eMy8me/3s+O+FeGfZa4klqDVvurIfMZutZAtu1mEW5OIkD5blxynOrubo5vHFbiwvLbNZtMBML9rjpKaugLbAGlVDtCr5tT8CTQj8U0AijnF3Zxi3d7vjqwo7yMaTQQ+2tY0CYoRQQaIAj1tiE1EOEYL74YM8VQsZpu2Ducj8ahFcAIEUQIYsRteIk/1zqMVBULaZxFe8A3OegHo2s4gBBsW4IR8h35dMMDZz0BKMYAfMvBiBqWMRv2lMhYK1/kCkoxULsnDIwiEOKiV8ueGNDXenovBULjJ0C0PkB8pCnFYu8+dyUIHKBOGFoLjk8OcrspzvwsRT6ul/JGtVz5sJLy2G/1G3aMASeBovyBbp3sUIFB7zhb2HTWPCgTwDtQ8GhB7/mP4W3qUu/fUqkcBEv9mzVQxQCSr5dsZuWXO/YqmaTnPClAYvjQCvsppBIr9vZ31xYdy7sY2yFzWZK87NWsNI2P3ZfwC/3qOtMCKcywAAAAASUVORK5CYII=);
}

.tabs-design .nav-tabs .nav-item .nav-link.active i.tab-dollar-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAqZJREFUOBGllc1rU0EQwGf2Pdsk1qQUohG0SqlCmlSaHCqBxFQ8iEjTKuZQvXj0oh5E6EkCXvQiVW/2DxBUbEI9SL0EEkGhSYttQVuFosVvqZaWpjHvjbP54jV5sYh72bfz8dvZmdl9CCajr69P/fZLOwNA/UAYACQXECgE+FEAPCeEuEW4E5nMvd+17lgr6O4JDegId4lob63OuEbEt0LA1ZlMKm6U84alwQD0+IMjGlB8K5j0YJtOTaMxjy94IxaLVTnVCCWMdLhc5v/ThAg356bSw9KpCPT6w6d0XXvciKIADpIQYiubmelUAmUBvv7UFvgQ+82AvOMytKrtLetWsbqx+pAA2I4O1tkiLux0KF2VaprDEMYVp23o1cTEWhlwPBCIWldyn1c4h+omKNGB7yt6RAojmxSGRRNYL3Q6HDnNHzoPOtmkimHuOljZhwgGVC7XYQPD8Ikb2ezEJ1/g6D7uwVE+aiki9mo8KCC4LC5zA2o+5A8dm36RXIRO13alBdq496Kc0y/m9kXpbtk/xUqbGWmA97v8R86pSz+cdmorzE2lHoEQZ81sizLie+XpCb7jQ3Q0NCorODoNRHPH7OSzD15fKMc+TbU+bDOvAuJLzqMpEAXcRsI30pHv8Vq0P7jU3RveYwYrwzMqUxNctaG63QDyTrs6nEwmcxVdq611BxVotLKunbn3x/7a2HylXnOKF+0W1+l8frlpXc+951DttaDSGuetittbLIh8YeSjYG7ISKFESNcsrH/Q2AZOzGXTT6sV/r/HAa9zB1yTm1WBnEd+vsIjQPqlRlGYybkGtxh2paKrAiuC0gNLd/hCtFdk5jMuCkEXZ7PpJ0Z9HVAqy7+AQU7eSY64l8+xixtnG7ftEgJOcv+OOx1KnDugYITJ7z/woQGfVd5DSwAAAABJRU5ErkJggg==);
}

.tabs-design .nav-tabs .nav-item .nav-link.active i.tab-report-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABGdBTUEAALGPC/xhBQAAAXhJREFUSA1jZKAFWBXKxvDiQxMDA2McA8N/SYQVjM+B/EUMEgJ1zAhBKrJspVuBppUDMS+aqSC+DcOXH2xMaBJU4oJ8ig8wxtHIYuTgxeaA/5I0shibZahiA2YxCwMRKZAhbPUvVPdSzmOBJHtQCvyPZho4nsqB8iDxCjRJirnAoCacAim2BYsBQIsJp0As+igWGrDENWoxxXFHrAEDFtQsxLoQrG6qhynD338TgGwTYG5gg+hlBBUuZxiYmQoYsnechogRJon38Ux3SYa/f3cBLbRCWAqyAOQAoBhIDqSGSEC8xb//+wLNFMBjrgADRA0eJQgp4i3+zyCF0IaDRYwaqFbiLcZhF7nCoxaTG3Ik6xsNapKDjFwNAxnUoG4FPgCVZ2R4hk8VWA6uhrCZQB8D+zJ4AVSelXEzUBm45YdD+QcGiBqgNGEzmUAdKKDKTmCjD83nYH4nVJ6BIX0nUJ7JHajuGBCDaiQoALGBYszMbhA1QGEizAQAyINe7Ixk5V0AAAAASUVORK5CYII=);
}

.tabs-filter {
  padding: 30px 40px;
  border: 1px solid #E5E1E1;
}

.tabs-filter .filters-block {
  float: left;
  margin-bottom: 20px;
}

.tabs-filter .filters-block label {
  float: left;
  margin-right: 20px;
  margin-top: 8px;
  color: #4A4A4A;
}

.tabs-filter .filters-block .filters {
  float: left;
  border: 1px solid #E5E1E1;
  border-radius: 100px;
}

.tabs-filter .filters-block .filters button {
  float: left;
  border: none;
  width: 130px;
  padding: 0 0;
  height: 30px;
  font-size: 12px;
  border-radius: 100px;
}

.tabs-filter .filters-block .filters button .btn-icon {
  margin-right: 5px;
  display: inline-block;
  position: relative;
  top: 1px;
}

.tabs-filter .filters-block .filters button .unactive {
  display: inline-block;
}

.tabs-filter .filters-block .filters button .active {
  display: none;
}

.tabs-filter .filters-block .filters button.btn-success .unactive {
  display: none;
}

.tabs-filter .filters-block .filters button.btn-success .active {
  display: inline-block;
}

.tabs-filter .filters-block .marked-options {
  margin-left: 20px;
  margin-top: -15px;
}

.tabs-filter .filters-block .marked-options .title {
  float: left;
  font-size: 12px;
  margin-bottom: 3px;
}

.tabs-filter .filters-block .marked-options .clear {
  clear: both;
}

.tabs-filter .filters-block .marked-options .btn {
  float: left;
  margin-right: 10px;
  border-radius: 100px;
  height: 30px;
  color: #fff;
  padding: 0 10px;
  width: 100px;
  text-align: left;
  font-size: 13px;
}

.green-checkbox svg {
  color: green;
}

.radio-button-design {
  display: inline-block;
  width: 93px;
  height: 30px;
  background-color: #fff;
  border: 1px solid rgba(121, 124, 132, 0.3);
  position: relative;
  border-radius: 100px;
  cursor: pointer;
}

.radio-button-design i {
  width: 26px;
  height: 26px;
  background-color: #797C84;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}

.radio-button-design span {
  position: absolute;
  right: 10px;
  top: 6px;
  font-size: 13px;
}

.radio-button-design.active i {
  right: 3px;
  left: auto;
  background-color: #009245;
}

.radio-button-design.active span {
  right: auto;
  left: 10px;
}

.search-field .input-group-prepend .input-group-text {
  background-color: #009245;
  width: 40px;
}

.upload-btn {
  float: left;
  width: 90px;
  height: 30px;
  padding: 0;
  font-size: 11px;
  background-color: transparent !important;
  color: #4A4A4A !important;
  overflow: hidden;
  position: relative;
}

.upload-btn img {
  width: 12px;
  margin: 0px 0 0 7px;
  position: relative;
  top: 1px;
}

.upload-btn input {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  color: #4A4A4A;
}

.download-btn {
  float: left;
  width: 120px;
  height: 30px;
  padding: 0;
  font-size: 11px;
  background-color: transparent !important;
  color: #4A4A4A !important;
  overflow: hidden;
  position: relative;
  padding-top: 5px;
}

.download-btn img {
  width: 12px;
  margin: 0px 0 0 7px;
  position: relative;
  top: 1px;
}

.download-btn input {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  color: #4A4A4A;
}

.warning-text {
  float: left;
  color: #BEBEBE;
  font-size: 12px;
  font-weight: 300;
  margin: 7px 0 0 10px;
}

.eir-meeting-view-label {
  display: 'inline-block';
  text-decoration: underline;
  padding-right: 5px;
  padding-left: 3px;
}

.btn-confirmed {
  border: 1px solid #006e51;
  background-color: #006e51;
}

.btn-pending {
  border: 1px solid #EFA731;
  background-color: #EFA731;
}

.btn-cancelled {
  border: 1px solid #F36868;
  background-color: #F36868;
}

/*@import "./fonts.scss";*/

.login-page {
  /*background-image: url('../images/login-background.png');*/
  background-position: center 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: white;
}

body {
  white-space: normal;
  font-style: normal;
  font-family: roboto;
  overflow-x: hidden;
  padding: 0 !important;
  letter-spacing: 0.2px;
}

.login-block .header {
  padding: 2rem 0 5rem 0;
  text-align: center;
}

.login-block .header .title {
  padding: 0;
  font-weight: bolder;
  font-size: 32px;
  line-height: 1;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #006e51;
}

.login-block .header .sub {
  padding: 0px 0px 10px 0px;
  font-size: 22px;
  color: #fff;
  margin: 0 auto;
  color: #006e51;
}

.login-block .form-control {
  height: 50px;
  border-radius: 7px;
}

.login-block .dp-center {
  margin: 0px auto;
  display: table;
}

.login-block .btn-group-lg > .btn {
  color: #fff;
  background-color: #006e51;
  border: none;
  width: 100%;
  border-radius: 100px;
}

.login-block .btn-lg,
.login-block .btn-group-lg > .btn {
  color: #fff;
  background-color: #006e51;
  border: none;
  width: 100%;
  border-radius: 100px;
}

.login-block .btn-primary {
  color: #fff;
  background-color: #006e51;
}

.login-block .btn-primary:hover {
  color: #fff;
  background-color: #015e45;
  box-shadow: none;
}

.login-block .btn-primary:not(:disabled):not(.disabled).active:focus {
  color: #fff;
  background-color: #015e45;
  box-shadow: none;
}

.login-block .btn-primary:not(:disabled):not(.disabled):active:focus {
  color: #fff;
  background-color: #015e45;
  box-shadow: none;
}

.login-block .btn-primary:focus {
  box-shadow: none;
}

.login-block .show > .btn-primary.dropdown-toggle:focus {
  color: #fff;
  background-color: #015e45;
  box-shadow: none;
}

.login-block .btn-primary.focus {
  box-shadow: none;
}

.login-block .basecolor1 {
  color: #006e51;
}

.login-block .basecolor1-bg {
  background-color: #006e51;
}

.login-block .white {
  color: #fff;
}

.login-block .darkgray {
  color: #222;
}

.login-block h1 {
  font-size: 52px;
  font-weight: bold;
}

.login-block h2 {
  font-size: 2rem;
}

.login-block h3 {
  font-size: 1.75rem;
}

.login-block .login-section {
  flex-direction: row;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 15px 30px;
}

.login-block .login-section .col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-block .login-section .col.col-left {
  padding: 0 8vh;
}

.login-block .login-section .col.col-right > div {
  width: 100%;
  padding: 0 12vh;
}

.login-block .login-section .col-left h1 {
  margin-bottom: 60px;
}

.login-block .login-section .col-right .logo {
  margin-bottom: 40px;
}

.login-block .login-section .col-right .form-wraper {
  background-color: #f4f4f4;
  padding: 8vh;
}

.login-block .login-section .col-right .form-wraper .form-control {
  font-size: 15px;
  color: #aaaaaa;
}

.login-block .login-section .col-right .form-wraper .btn {
  margin-top: 0px;
  height: 50px;
}

.login-block .login-section .col-right .form-wraper p {
  margin-bottom: 8px;
}

.login-block .login-section-in {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 1200px) {
  .login-block .login-section .col.col-right > div {
    padding: 0 4vh;
  }
}

@media only screen and (max-width: 991px) {
  .login-block h1 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .login-block .login-section {
    width: 100%;
    height: 100%;
    flex-direction: row;
    position: relative;
  }

  .login-block .login-section .col-left p {
    font-size: 14px;
    line-height: 1.3;
  }

  .login-block .login-section .col-left h1 {
    margin-bottom: 15px;
  }

  .login-block .login-section .col.col-left {
    padding: 3vh 4vh;
  }

  .login-block .login-section .col {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  .login-block .login-section .col.col-right > div {
    padding: 0 0vh;
  }

  .login-block .login-section .col-right .form-wraper {
    background: none;
    padding: 30px 0;
  }

  .login-block .login-section .col-right .form-wraper p {
    font-size: 14px;
  }

  .login-block .login-section .col-right .form-wraper .btn {
    margin-top: 15px;
  }

  .login-block .logo {
    padding: 22px 0;
  }

  .login-block .logo img {
    width: 75%;
  }
}

.login-block .form-group {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0 0 30px;
}

.login-block .form-group .btn-success {
  width: 100%;
}

.login-block .checkbox {
  float: left;
  width: 100%;
  margin: -10px 0 0;
}

.login-block .checkbox label {
  color: #006e51;
  font-weight: 300;
  font-size: 16px;
}

.login-block .submit-block {
  margin-top: 30px;
  margin-bottom: 14px;
}

.login-block .title-bottom-register {
  color: #006e51;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

.login-block .title-bottom-register a {
  font-weight: 500;
  color: #006e51;
}

.login-block .title-bottom-request-password {
  color: #006e51;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  padding-top: 20px;
}

.login-block .title-bottom-request-password a {
  font-weight: 500;
  color: #006e51;
}

.register-page {
  background-image: url(/dist/1e0f670391d32206229a10bdc785c23a.png);
  background-position: center 0;
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: 54px;
  padding-top: 0px;
}

.stepOne .header {
  padding: 3rem 0 2rem 0;
  text-align: center;
}

.stepOne .header .title {
  padding: 0;
  font-weight: bolder;
  font-size: 32px;
  line-height: 1;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #fff;
}

.stepOne .header .sub {
  padding: 0;
  font-size: 22px;
  color: #fff;
  margin: 0 auto;
}

.stepOne .center {
  width: 836px;
  margin: 0 auto;
}

.stepOne .regForm {
  float: left;
  width: 100%;
  padding: 70px 76px 13px;
  margin-top: 20px;
  margin-bottom: 100px;
  position: relative;
  background-color: #f6f6f6;
  box-shadow: 0 2px 134px 0 rgba(0, 0, 0, 0.16);
  border: solid 1px #dcdcdc;
}

.stepOne .regForm label {
  float: left;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  color: #4a4a4a;
}

.stepOne .regForm .text {
  float: left;
  text-align: left;
  font-size: 14px;
  color: #4A4A4A;
  font-weight: 300;
  line-height: 20px;
}

.stepOne .regForm .green-link {
  float: right;
  color: #009245;
}

.stepOne .regForm .registerFormOne .Select.form-control .Select-placeholder {
  padding-left: 10px;
}

.stepOne .regForm .registerFormOne .Select.form-control .Select-input {
  padding-left: 10px;
}

.stepOne .regForm .registerFormOne .Select.form-control .Select-control {
  border: none;
}

.stepOne .regForm .registerFormOne .inputEmail {
  display: inline-block;
  width: 80%;
}

.stepOne .regForm .registerFormOne .enableEmail {
  cursor: pointer;
  margin-left: 1.5em;
  font-size: 0.8em;
  font-style: italic;
}

.stepOne .regForm .registerFormOne .location {
  position: relative;
  z-index: 1000;
}

.stepOne .regForm .registerFormOne .location input {
  width: 100%;
  padding: 0.7rem;
  margin-top: 2rem;
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #009245;
}

.stepOne .regForm .registerFormOne .location .typeahead-selector {
  position: absolute;
  background: #ffffff;
  width: 100%;
  border: 1px solid #dadada;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin: 0;
  padding: 0;
  left: 2px;
  list-style: none;
}

.stepOne .regForm .registerFormOne .location .typeahead-selector .hover {
  background-color: #cecece;
}

.stepOne .regForm .registerFormOne .location .typeahead-selector li {
  padding: 0.7rem;
  font-size: 1.6rem;
  text-align: left;
}

.stepOne .regForm .registerFormOne .location .typeahead-selector li a,
.stepOne .regForm .registerFormOne .location .typeahead-selector li a:active,
.stepOne .regForm .registerFormOne .location .typeahead-selector li a:hover,
.stepOne .regForm .registerFormOne .location .typeahead-selector li a:focus {
  color: #000000;
  text-decoration: none;
}

.stepOne .form-group {
  float: left;
  width: 100%;
  padding: 0;
}

.stepOne .form-group input {
  text-align: left;
}

.stepOne .registerFormOne div {
  padding: 0;
}

.stepOne .registerFormOne .control-label {
  margin-bottom: 10px;
}

.stepOne .registerFormOne .p-right {
  padding-right: 9px;
}

.stepOne .registerFormOne .p-left {
  padding-left: 9px;
}

.stepOne .row {
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: 0;
}

.stepOne .role-block .block {
  text-align: center;
}

.stepOne .role-block .block:nth-child(1) .form-group {
  float: left;
}

.stepOne .role-block .block:nth-child(2) .form-group {
  float: none;
}

.stepOne .role-block .block:nth-child(3) .form-group {
  float: right;
}

.stepOne .role-block .block .form-group {
  margin: 0;
  width: 224px;
  display: inline-block;
  position: relative;
}

.stepOne .role-block .block .form-group .btnRadio {
  display: none;
}

.stepOne .role-block .block .form-group .btnRadio ~ .tick-icon {
  display: none;
  position: absolute;
  left: 19px;
  top: 0;
  width: 10px;
  bottom: 0;
  margin: auto;
}

.stepOne .role-block .block .form-group .btnRadio:checked ~ .tick-icon {
  display: block;
}

.stepOne .role-block .block .form-group .btnRadio ~ .btn {
  width: 100%;
  background-color: #fff;
  border-radius: 100px;
  border: 1px solid #bdbdbd;
  height: 46px;
  margin: 0;
  padding: 11px 0;
}

.stepOne .role-block .block .form-group .btnRadio:checked ~ .btn {
  border-color: #009245;
}

.stepOne .terms a {
  color: #009245;
}

.stepOne .terms-notice {
  text-align: center;
  font-size: 12px;
}

.register-2-page {
  background-color: #006e51;
  background-position: center 0;
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: 54px;
  padding-top: 0px;
  max-height: 300px;
}

.stepTwo .header {
  padding: 3rem 0 2rem 0;
  text-align: center;
}

.stepTwo .header .title {
  padding: 0;
  font-weight: bolder;
  font-size: 32px;
  line-height: 1.4;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #fff;
}

.stepTwo .header .sub {
  padding: 0;
  font-size: 22px;
  color: #fff;
  margin: 0 auto;
}

.stepTwo .center {
  width: 836px;
  margin: 0 auto;
}

.stepTwo .regForm {
  float: left;
  width: 100%;
  padding: 70px 76px 13px;
  margin-top: 20px;
  margin-bottom: 100px;
  position: relative;
  background-color: #f6f6f6;
  box-shadow: 0 2px 134px 0 rgba(0, 0, 0, 0.16);
  border: solid 1px #dcdcdc;
}

.stepTwo .regForm label {
  float: left;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  color: #4a4a4a;
}

.stepTwo .regForm .text {
  float: left;
  width: 380px;
  text-align: left;
  font-size: 14px;
  color: #4A4A4A;
  font-weight: 300;
  line-height: 20px;
}

.stepTwo .regForm .green-link {
  float: right;
  color: #009245;
}

.stepTwo .regForm .registerFormTwo .inputEmail {
  display: inline-block;
  width: 80%;
}

.stepTwo .regForm .registerFormTwo .reg-intro {
  text-align: center;
  padding-bottom: 20px;
  font-style: italic;
}

.stepTwo .regForm .registerFormTwo .reg-skip-notification {
  text-align: center;
  background: #006e51;
  color: white;
  line-height: 25px;
}

.stepTwo .regForm .registerFormTwo .enableEmail {
  cursor: pointer;
  margin-left: 1.5em;
  font-size: 0.8em;
  font-style: italic;
}

.stepTwo .regForm .registerFormTwo .location {
  position: relative;
  z-index: 1000;
}

.stepTwo .regForm .registerFormTwo .location input {
  width: 100%;
  padding: 0.7rem;
  margin-top: 2rem;
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #009245;
}

.stepTwo .regForm .registerFormTwo .location .typeahead-selector {
  position: absolute;
  background: #ffffff;
  width: 100%;
  border: 1px solid #dadada;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin: 0;
  padding: 0;
  left: 2px;
  list-style: none;
}

.stepTwo .regForm .registerFormTwo .location .typeahead-selector .hover {
  background-color: #cecece;
}

.stepTwo .regForm .registerFormTwo .location .typeahead-selector li {
  padding: 0.7rem;
  font-size: 1.6rem;
  text-align: left;
}

.stepTwo .regForm .registerFormTwo .location .typeahead-selector li a,
.stepTwo .regForm .registerFormTwo .location .typeahead-selector li a:active,
.stepTwo .regForm .registerFormTwo .location .typeahead-selector li a:hover,
.stepTwo .regForm .registerFormTwo .location .typeahead-selector li a:focus {
  color: #000000;
  text-decoration: none;
}

.stepTwo .form-group {
  float: left;
  width: 100%;
  padding: 0;
  text-align: center;
}

.stepTwo .form-group input {
  text-align: left;
}

.stepTwo .form-group .btn {
  width: 50%;
}

.stepTwo .comp-button {
  text-align: center;
}

.stepTwo .registerFormTwo div {
  padding: 0;
}

.stepTwo .registerFormTwo .control-label {
  margin-bottom: 10px;
}

.stepTwo .registerFormTwo .p-right {
  padding-right: 9px;
}

.stepTwo .registerFormTwo .p-left {
  padding-left: 9px;
}

.stepTwo .row {
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
}

.stepTwo .role-block .block {
  text-align: center;
}

.stepTwo .role-block .block:nth-child(1) .form-group {
  float: left;
}

.stepTwo .role-block .block:nth-child(2) .form-group {
  float: none;
}

.stepTwo .role-block .block:nth-child(3) .form-group {
  float: right;
}

.stepTwo .role-block .block .form-group {
  margin: 0;
  width: 224px;
  display: inline-block;
  position: relative;
}

.stepTwo .role-block .block .form-group .btnRadio {
  display: none;
}

.stepTwo .role-block .block .form-group .btnRadio ~ .tick-icon {
  display: none;
  position: absolute;
  left: 19px;
  top: 0;
  width: 10px;
  bottom: 0;
  margin: auto;
}

.stepTwo .role-block .block .form-group .btnRadio:checked ~ .tick-icon {
  display: block;
}

.stepTwo .role-block .block .form-group .btnRadio ~ .btn {
  width: 100%;
  background-color: #fff;
  border-radius: 100px;
  border: 1px solid #bdbdbd;
  height: 46px;
  margin: 0;
  padding: 11px 0;
}

.stepTwo .role-block .block .form-group .btnRadio:checked ~ .btn {
  border-color: #009245;
}

.stepTwo .terms a {
  color: #009245;
}

.stepTwo .upload-file-box {
  float: left;
  width: 216px;
  height: 216px;
  border: 1px dashed #cfcfcf;
  background-color: #fff;
  padding-top: 55px !important;
  text-align: center;
  clear: both;
  position: relative;
}

.stepTwo .upload-file-box input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.stepTwo .upload-file-box a {
  color: #009245;
  font-size: 16px;
  float: left;
  width: 100%;
}

.stepTwo .file-attachment {
  float: left;
  margin-left: 54px;
  max-width: 165px;
  border-radius: 10px;
}

.stepTwo .file-attachment img {
  border-radius: 10px;
  float: left;
  max-width: 200px;
  max-height: 200px;
}

.success-page {
  background-image: url(/dist/ee90e2d245d0e1114ea9b32acd18e10c.png);
  background-position: center 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.success-block {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: table;
  width: 100%;
  height: 100%;
  padding-top: 60px;
}

.success-block .cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.success-block .header {
  padding: 2rem 0 5rem 0;
  text-align: center;
}

.success-block .header .title {
  padding: 0;
  font-weight: bolder;
  font-size: 32px;
  line-height: 1;
  margin-top: 115px;
  margin-bottom: 10px;
  color: #fff;
}

.success-block .header .sub {
  padding: 0;
  font-size: 22px;
  color: #fff;
  width: 452px;
  margin: 0 auto;
}

.request-password-page {
  background-image: url(/dist/1e0f670391d32206229a10bdc785c23a.png);
  background-position: center 0;
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: 54px;
  padding-top: 0px;
}

.request-password .header {
  padding: 3rem 0 2rem 0;
  text-align: center;
}

.request-password .header .title {
  padding: 0;
  font-weight: bolder;
  font-size: 32px;
  line-height: 1;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #fff;
}

.request-password .header .sub {
  padding: 0;
  font-size: 22px;
  color: #fff;
  margin: 0 auto;
  line-height: 160%;
}

.request-password .center {
  width: 836px;
  margin: 0 auto;
}

.request-password .form {
  float: left;
  width: 100%;
  padding: 70px 76px 13px;
  margin-top: 20px;
  margin-bottom: 100px;
  position: relative;
  background-color: #f6f6f6;
  box-shadow: 0 2px 134px 0 rgba(0, 0, 0, 0.16);
  border: solid 1px #dcdcdc;
}

.request-password .form label {
  float: left;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  color: #4a4a4a;
}

.request-password .form .text {
  float: left;
  text-align: left;
  font-size: 14px;
  color: #4A4A4A;
  font-weight: 300;
  line-height: 20px;
}

.request-password .form .inputEmail {
  display: inline-block;
  width: 80%;
}

.request-password .form-group {
  float: left;
  width: 100%;
  padding: 0;
}

.request-password .form-group input {
  text-align: left;
}

.request-password .row {
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: 0;
}

.left-side-bar {
  position: fixed;
  left: 0;
  top: 54px;
  bottom: 0;
  width: 220px;
  background-color: #2a303b;
  z-index: 1000;
  padding-top: 10px;
}

.left-side-bar.active {
  width: 47px;
}

.left-side-bar.active .arrow {
  display: none;
}

.left-side-bar.active .text {
  visibility: hidden;
}

.left-side-bar.active .sub-menu {
  display: none;
}

.left-side-bar .menu-list ul {
  float: left;
  width: 100%;
  padding: 0;
}

.left-side-bar .menu-list ul li a:hover {
  border-left: 3px solid transparent;
}

.left-side-bar .menu-list ul.sub-menu.in {
  background-color: #1f242e;
}

.left-side-bar .menu-list li {
  float: left;
  width: 100%;
  list-style: none;
}

.left-side-bar .menu-list li a {
  float: left;
  width: 100%;
  font-size: 14px;
  color: #F6F6F6;
  position: relative;
  padding: 10px 0 10px 40px;
  border-left: 3px solid transparent;
  height: 36px;
}

.left-side-bar .menu-list li a .icon {
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.left-side-bar .menu-list li a .icon.onActive {
  display: none;
}

.left-side-bar .menu-list li a:hover,
.left-side-bar .menu-list li a.active {
  background-color: #1f242e;
  border-left: 3px solid #009245;
  text-decoration: none;
  color: #009245;
}

.left-side-bar .menu-list li a:hover .icon,
.left-side-bar .menu-list li a.active .icon {
  display: none;
}

.left-side-bar .menu-list li a:hover .icon.onActive,
.left-side-bar .menu-list li a.active .icon.onActive {
  display: block;
}

.left-side-bar .menu-list li.heading {
  background-color: #1f242e;
}

.left-side-bar .menu-list li.heading.collapsed {
  background-color: #2a303b;
}

.left-side-bar .menu-list li.heading.collapsed .arrow {
  /*@include rotate(0deg);*/
}

.left-side-bar .menu-list li.heading a .arrow {
  position: absolute;
  width: 12px;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  /*@include transition(.3s);
						@include rotate(180deg);*/
}

.left-side-bar .menu-btn {
  position: absolute;
  right: -22px;
  top: 0;
  width: 22px;
  height: 36px;
  background-color: #009245;
  border-radius: 0 4px 4px 0;
}

.left-side-bar .menu-btn i {
  position: absolute;
  width: 8px;
  height: 1px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
}

.left-side-bar .menu-btn i:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 1px;
  left: 0;
  right: 0;
  top: -3px;
  margin: auto;
  background-color: #fff;
}

.left-side-bar .menu-btn i:after {
  content: '';
  position: absolute;
  width: 8px;
  height: 1px;
  left: 0;
  right: 0;
  top: 3px;
  margin: auto;
  background-color: #fff;
}

.header-block {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: #e8e9ec;
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 0;
  z-index: 9;
  height: 54px;
  margin-bottom: 0;
  padding: 0 25px;
}

.header-block .brand-logo {
  float: left;
  margin-top: 5px;
  color: #444444;
}

.header-block .right-nav {
  float: left;
}

.header-block .right-nav .links {
  float: left;
  padding: 0;
  margin: 20px 0 0 0;
}

.header-block .right-nav .links li {
  float: left;
  list-style: none;
  margin-right: 35px;
}

.header-block .right-nav .links li a {
  float: left;
  font-size: 14px;
  color: #7e889d;
  position: relative;
}

.header-block .right-nav .links li a span {
  float: left;
  margin-right: 5px;
}

.header-block .right-nav .links li a img {
  float: left;
}

.header-block .right-nav .links li a .badge {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  text-indent: 1px;
  color: #fff;
  font-size: 9px;
  font-style: inherit;
  line-height: 1.7;
}

.header-block .right-nav .links li a .badge.orange {
  background-color: #efa730;
}

.header-block .right-nav .links li a .badge.green {
  background-color: #009245;
}

.header-block .right-nav .links li:last-child {
  margin-right: 0;
}

.header-block .right-nav .search {
  float: left;
  margin: 11px 56px;
  position: relative;
}

.header-block .right-nav .search .form-control {
  background-color: #fff;
  color: #4a4a4a;
  height: 29px;
  border: none;
  border-radius: 100px;
  margin: 0 0;
  font-size: 14px;
  width: 200px;
  outline: none;
}

.header-block .right-nav .search .btn-success {
  position: absolute;
  right: 2px;
  top: 2px;
  border-radius: 50%;
  padding: 0;
  width: 24px;
  height: 24px;
  min-width: 22px;
}

.header-block .right-nav .profile-nav {
  float: left;
  color: #9da5b4;
  font-size: 14px;
  margin-top: 10px;
  cursor: pointer;
  /*background-image: url(../images/arrow-down-icon@2x.png);*/
  background-size: 6px;
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 12px;
  position: relative;
  font-weight: 300;
}

.header-block .right-nav .profile-nav span {
  color: #444444;
  margin-right: 9px;
  font-weight: 400;
}

.header-block .right-nav .profile-nav i {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  color: #009245;
  font-style: initial;
  text-align: center;
  padding-top: 10px;
  font-size: 11px;
  cursor: pointer;
}

.header-block .right-nav .profile-nav i.icon {
  text-transform: uppercase;
}

.header-block .right-nav .profile-nav i.picture {
  background-size: 30px;
}

.header-block .right-nav .profile-nav .dropdown-menu {
  margin-top: 20px;
}

.header-block .right-nav .profile-nav .dropdown-menu li {
  font-size: 14px;
  color: #4a4a4a;
  margin: 5px 0px;
}

.header-block .right-nav .profile-nav .dropdown-menu li img {
  width: 12px;
  margin-right: 15px;
}

.header-block .right-nav .signup-link img {
  width: 12px;
  margin-right: 8px;
}

.user-profile .link {
  margin-bottom: 26px;
  float: left;
  font-size: 14px;
  font-weight: 300;
  color: #009245;
  text-decoration: underline;
  margin-right: 13px;
}

.user-profile .user-profile-info {
  position: relative;
  padding-left: 140px;
}

.user-profile .user-profile-info .pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.user-profile .user-profile-info h2 {
  float: left;
  width: 100%;
  font-size: 32px;
  color: #009245;
  font-weight: 700;
  margin: 0 0 0;
}

.user-profile .user-profile-info small {
  float: left;
  width: 100%;
  font-size: 16px;
  color: #444444;
  margin: 0 0 6px;
}

.user-profile .user-profile-info .link {
  margin-bottom: 26px;
}

.user-profile .user-profile-info .link a {
  float: left;
  font-size: 14px;
  font-weight: 300;
  color: #009245;
  text-decoration: underline;
  margin-right: 13px;
}

.user-profile .user-profile-info .link .btn-light {
  float: left;
  height: 22px;
  font-size: 12px;
  background-color: #fff;
  color: #444444;
  margin-top: -3px;
  padding: 0 12px;
}

.user-profile .profile-notification {
  font-size: 14px;
  color: #444444;
  font-weight: 300;
  margin-bottom: 20px;
  width: 100%;
  margin-right: 15px;
}

.user-profile .profile-notification .text {
  float: left;
  width: 200px;
  max-width: 100%;
  margin-right: 15px;
}

.user-profile .profile-notification .radio {
  float: left;
  margin-top: -15px;
}

.user-profile .profile-information section {
  position: relative;
  margin-bottom: 5px;
}

.user-profile .profile-information section h2 {
  float: left;
  width: 100%;
  margin: 0;
  font-size: 16px;
  color: #4A4A4A;
  font-weight: 500;
}

.user-profile .profile-information section h3 {
  float: left;
  width: 100%;
  font-size: 14px;
  color: #4A4A4A;
  font-weight: 500;
}

.user-profile .profile-information section.padding-right {
  padding-right: 190px;
}

.user-profile .profile-information section .head {
  background-color: #fff;
  padding: 8px 0 12px 30px;
  position: relative;
  font-weight: 700;
  color: #444444;
  font-size: 16px;
  height: 34px;
}

.user-profile .profile-information section .head .icon {
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 15px;
  max-height: 18px;
}

.user-profile .profile-information section .body {
  margin-top: 20px;
  font-size: 14px;
  color: #4A4A4A;
}

.user-profile .profile-information section .body .mobile {
  width: 100%;
}

.user-profile .profile-information section .body .mobile .mobile-title {
  display: inline-block;
}

.user-profile .profile-information section .body .mobile .note {
  display: inline-block;
  font-style: italic;
  text-decoration: underline;
}

.user-profile .profile-information section .body .title {
  font-weight: 300;
  line-height: 22px;
}

.user-profile .profile-information section .body .col-sm-6 {
  margin-bottom: 20px;
}

.user-profile .profile-information section .body .badge {
  margin-right: 10px;
}

.user-profile .profile-information section .body .edit-field {
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  position: relative;
  padding-left: 100px;
}

.user-profile .profile-information section .body .edit-field .title {
  position: absolute;
  left: 10px;
  top: 9px;
  font-size: 14px;
  color: #4A4A4A;
  font-weight: 300;
}

.user-profile .profile-information section .body .edit-field .field {
  float: left;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: #444444;
  text-align: center;
}

.user-profile .profile-information section .body .edit-field textarea.field {
  height: 100px;
  text-align: left;
}

.user-profile .profile-information section .body p {
  float: left;
  font-size: 14px;
  font-weight: 300;
  color: #4A4A4A;
}

.user-profile .upload-file {
  float: left;
  background-color: #fff;
}

.user-profile .upload-file input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.left-side-bar {
  position: fixed;
  left: 0;
  top: 54px;
  bottom: 0;
  width: 220px;
  background-color: #2a303b;
  z-index: 1000;
  padding-top: 10px;
}

.left-side-bar.active {
  width: 47px;
}

.left-side-bar.active .arrow {
  display: none;
}

.left-side-bar.active .text {
  visibility: hidden;
}

.left-side-bar.active .sub-menu {
  display: none;
}

.left-side-bar .menu-list ul {
  float: left;
  width: 100%;
  padding: 0;
}

.left-side-bar .menu-list ul li a:hover {
  border-left: 3px solid transparent;
}

.left-side-bar .menu-list ul.sub-menu.in {
  background-color: #1f242e;
}

.left-side-bar .menu-list li {
  float: left;
  width: 100%;
  list-style: none;
}

.left-side-bar .menu-list li a {
  float: left;
  width: 100%;
  font-size: 14px;
  color: #F6F6F6;
  position: relative;
  padding: 10px 0 10px 40px;
  border-left: 3px solid transparent;
  height: 36px;
}

.left-side-bar .menu-list li a .icon {
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.left-side-bar .menu-list li a .icon.onActive {
  display: none;
}

.left-side-bar .menu-list li a:hover,
.left-side-bar .menu-list li a.active {
  background-color: #1f242e;
  border-left: 3px solid #009245;
  text-decoration: none;
  color: #009245;
}

.left-side-bar .menu-list li a:hover .icon,
.left-side-bar .menu-list li a.active .icon {
  display: none;
}

.left-side-bar .menu-list li a:hover .icon.onActive,
.left-side-bar .menu-list li a.active .icon.onActive {
  display: block;
}

.left-side-bar .menu-list li.heading {
  background-color: #1f242e;
}

.left-side-bar .menu-list li.heading.collapsed {
  background-color: #2a303b;
}

.left-side-bar .menu-list li.heading.collapsed .arrow {
  /*@include rotate(0deg);*/
}

.left-side-bar .menu-list li.heading a .arrow {
  position: absolute;
  width: 12px;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  /*@include transition(.3s);
						@include rotate(180deg);*/
}

.left-side-bar .menu-btn {
  position: absolute;
  right: -22px;
  top: 0;
  width: 22px;
  height: 36px;
  background-color: #009245;
  border-radius: 0 4px 4px 0;
}

.left-side-bar .menu-btn i {
  position: absolute;
  width: 8px;
  height: 1px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
}

.left-side-bar .menu-btn i:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 1px;
  left: 0;
  right: 0;
  top: -3px;
  margin: auto;
  background-color: #fff;
}

.left-side-bar .menu-btn i:after {
  content: '';
  position: absolute;
  width: 8px;
  height: 1px;
  left: 0;
  right: 0;
  top: 3px;
  margin: auto;
  background-color: #fff;
}

.dashboard-header {
  position: relative;
  padding: 18px 141px 18px 85px;
  background-color: #fff;
}

.dashboard-header:before {
  content: '';
  left: 0;
  right: 0;
  top: 0;
  background-color: #009245;
  border-radius: 10px;
  height: 3px;
  width: 100%;
  position: absolute;
}

.dashboard-header .alert-icon {
  float: left;
  margin-right: 27px;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background-color: #009245;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.dashboard-header .alert-icon img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.dashboard-header b {
  font-size: 16px;
  float: left;
  margin-top: 17px;
  font-weight: 700;
  width: 156px;
  max-width: 100%;
}

.dashboard-header p {
  font-size: 15px;
  color: #4A4A4A;
  font-weight: 300;
}

.dashboard-header .btn-white {
  position: absolute;
  right: 20px;
  top: 20px;
}

.block-design {
  position: relative;
  box-shadow: 0 0 3px #E7E7E7;
  background-color: #fff;
  border-radius: 4px;
  min-height: 253px;
}

.block-design .heading {
  background-color: #2A303C;
  border-radius: 4px 4px 0 0;
  padding: 14px 10px;
  font-weight: 500;
  color: #FFFFFF;
  font-family: 'Raleway';
  font-size: 14px;
  height: 45px;
}

.block-design .heading.bg-green {
  background-color: #009245;
  color: #fff;
}

.block-design .heading .btn {
  margin-top: -3px;
}

.block-design .heading small {
  font-weight: 300;
  border-left: 1px solid #fff;
  padding-left: 10px;
  margin-left: 10px;
}

.block-design .body {
  padding: 20px;
}

.block-design .body .block {
  margin-bottom: 15px;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 15px;
}

.block-design .body .block:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.block-design .body .block > h2 {
  float: left;
  width: 100%;
  color: #535353;
  font-weight: 700;
  margin: 0 0 12px;
  font-size: 20px;
  font-family: 'Raleway';
}

.block-design .body .block p {
  float: left;
  width: 100%;
  color: #4A4A4A;
  font-size: 14px;
  font-weight: 300;
  margin: 0 0 8px;
  line-height: 20px;
}

.block-design .body .block .price-block {
  font-size: 12px;
  color: #4A4A4A;
}

.block-design .body .block .green {
  color: #009245;
  font-weight: 300;
}

.block-design .body .block .text-12 {
  font-size: 12px;
  font-weight: 400;
}

.block-design .body .block .label {
  font-weight: 300;
  font-style: italic;
}

.block-design .body .block .profile {
  float: left;
  width: 100%;
  padding: 0 0 0 64px;
  position: relative;
}

.block-design .body .block .profile h2 {
  font-size: 15px;
}

.block-design .body .block .profile i {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 0;
  left: 0;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-repeat: no-repeat;
  background-size: cover;
}

.block-design .body .block .time {
  font-size: 12px;
  color: #009245;
  font-weight: 500;
}

.block-design .body .block table tr:first-child td {
  border-top: none;
}

.block-design .body .block table .profile-sm i {
  float: left;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-repeat: no-repeat;
  background-size: cover;
}

.block-design .body .block table .chat-block-2 {
  width: 85px;
  padding: 0.75rem 0.4rem 0.50rem 0.4rem;
}

.block-design .body .block table h3 {
  float: left;
  width: 100%;
  color: #009245;
  font-size: 14px;
  margin: 0;
  font-weight: 400;
}

.block-design .body .block table small {
  font-size: 10px;
  color: #797C84;
  font-weight: 300;
  white-space: nowrap;
}

.block-design .body .block table small .head {
  font-size: 12px;
}

.block-design .body .block .latest-chat {
  background-color: #F1F4FA;
  box-shadow: 0 1px 1px #D8D9DD;
}

.block-design .body .block .latest-chat.bg-2 {
  background-color: #F6F6F6;
}

.block-design .body .block .latest-chat.bg-2 .chat-block-2 {
  width: 100%;
}

.block-design .body .block .latest-chat.bg-2 h2 {
  margin: 0;
  font-size: 16px;
  color: #444444;
}

.block-design .body .block .latest-chat.bg-2 .green {
  font-size: 12px;
  font-weight: 500;
  float: left;
  width: 100%;
  color: #009245;
  margin-bottom: 5px;
}

.block-design .body .block .latest-chat .map {
  font-size: 12px;
  color: #B1B1B1;
}

.block-design .body .block .latest-chat .map span {
  margin: 0 0 0 4px;
}

.block-design .body .block .latest-chat .map img {
  width: 7px;
}

.block-design .body .block .startups-block {
  height: 143px;
  background-color: #F6F6F6;
}

.block-design .body .block .startups-block .bg {
  background-repeat: no-repeat;
  background-size: cover;
  float: left;
  height: 100%;
}

.block-design .body .block .startups-block .content {
  padding: 11px 15px;
  float: left;
  height: 100%;
  position: relative;
}

.block-design .body .block .startups-block .content small {
  font-size: 8px;
}

.block-design .body .block .startups-block .content .btn-transparent {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  margin: auto;
}

.set-calender-left {
  padding-left: 182px;
}

.set-calender-left .calender-block {
  position: absolute;
  left: 0;
  top: 0;
  width: 164px;
  box-shadow: 0 0 3px #E7E7E7;
  border-radius: 4px;
  min-height: 253px;
  background-color: #fff;
}

.set-calender-left .calender-block .green-cell {
  background-color: #009245;
  height: 98px;
  text-align: center;
  background-image: url("/images/calender-dots.png");
  background-repeat: no-repeat;
  background-position: center 0;
}

.set-calender-left .calender-block .green-cell:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50%;
  width: 112px;
  height: 112px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
}

.set-calender-left .calender-block .green-cell h2 {
  float: left;
  width: 100%;
  color: #fff;
  font-weight: 500;
  margin: 21px 0 6px;
  font-size: 14px;
}

.set-calender-left .calender-block .green-cell big {
  float: left;
  width: 100%;
  color: #fff;
  font-weight: 300;
  margin: 0 0 0;
  font-size: 26px;
  line-height: 1.2;
}

.set-calender-left .calender-block .green-cell small {
  float: left;
  width: 100%;
  color: #fff;
  font-weight: 300;
  margin: 0 0 0;
  font-size: 12px;
}

.set-calender-left .calender-block .body {
  padding: 15px;
  background-color: #fff;
  text-align: center;
}

.set-calender-left .calender-block .body h3 {
  float: left;
  width: 100%;
  color: #444444;
  font-weight: 500;
  margin: 0 0 6px;
  font-size: 16px;
}

.set-calender-left .calender-block .body small {
  float: left;
  width: 100%;
  color: #4A4A4A;
  font-weight: 300;
  margin: 0 0 28px;
  font-size: 12px;
}

.card-block {
  float: left;
  width: 100%;
  position: relative;
  border: 1px solid #E9E9E9;
  border-radius: 4px 4px 0 0;
}

.card-block .card-img-top {
  float: left;
  width: 100%;
  position: relative;
  height: 150px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.card-block .card-img-top .label {
  position: absolute;
  left: 0;
  top: 13px;
  background-color: #EFA731;
  width: 47px;
  height: 26px;
  border-radius: 0 100px 100px 0;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 8px;
}

.card-block .card-img-top .label img {
  margin: 0px 0 0 4px;
}

.card-block .card-title {
  float: left;
  width: 100%;
  margin: 0 0 7px;
  font-size: 16px;
  font-weight: 700;
  color: #444444;
  font-family: 'Raleway';
}

.card-block .card-body {
  float: left;
  width: 100%;
  padding: 15px 20px;
}

.card-block .card-body p {
  float: left;
  width: 100%;
  color: #4A4A4A;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
}

.card-block .card-body .card-profile {
  float: left;
  width: 100%;
  margin-top: 10px;
}

.card-block .card-body .card-profile i {
  float: left;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-right: 10px;
}

.card-block .card-body .card-profile i:last-child {
  margin-right: 0;
}

.card-block .card-footer {
  float: left;
  width: 100%;
  padding: 11px 20px;
  border-top: 1px solid #E9E9E9;
}

.card-block .card-footer .time {
  float: left;
  color: #797C84;
  font-size: 12px;
  font-weight: 300;
}

.comments-card-block {
  float: left;
  width: 100%;
  position: relative;
  background-color: #F1F4FA;
  border: 1px solid #D8D9DD;
  border-radius: 6px;
  padding: 14px;
  margin-bottom: 20px;
}

.comments-card-block:last-child {
  margin-bottom: 0;
}

.comments-card-block .card-header {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 12px;
}

.comments-card-block .card-header .card-img {
  float: left;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  margin-right: 9px;
}

.comments-card-block .card-header h3 {
  float: left;
  font-size: 16px;
  font-weight: 700;
  color: #444444;
}

.comments-card-block .card-header small {
  float: left;
  clear: both;
  font-size: 12px;
  color: #797C84;
}

.comments-card-block .card-body {
  float: left;
  width: 100%;
}

.comments-card-block .card-body p {
  color: #4A4A4A;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 7px;
  float: left;
}

.comments-card-block .card-body a {
  font-size: 14px;
  color: #009245;
  float: left;
}

.startup-block {
  position: relative;
  border: 1px solid #E9E9E9;
  border-radius: 4px 4px 0 0;
}

.startup-block .startup-block-body {
  float: left;
  width: 100%;
  padding: 20px;
}

.startup-block .startup-block-body h3 {
  float: left;
  width: 100%;
  margin: 0 0 6px;
  font-size: 20px;
  color: #535353;
  font-family: 'Raleway';
}

.startup-block .startup-block-body .location {
  float: left;
  width: 100%;
  font-size: 12px;
  color: #777777;
  font-weight: 500;
  margin-bottom: 5px;
}

.startup-block .startup-block-body .label {
  float: left;
  width: 100%;
  margin: 0 0 11px;
  font-size: 12px;
  color: #CDCDCD;
}

.startup-block .startup-block-body .user-profile {
  float: left;
  width: 100%;
  margin-bottom: 13px;
}

.startup-block .startup-block-body .user-profile i {
  float: left;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 11px;
}

.startup-block .startup-block-body .user-profile h4 {
  float: left;
  font-size: 14px;
  color: #444444;
  font-weight: 500;
  margin: 4px 0 6px;
}

.startup-block .startup-block-body .user-profile .time {
  float: left;
  clear: both;
  font-size: 12px;
  color: #797C84;
}

.startup-block .startup-block-body .card-profile {
  float: left;
  width: 100%;
  margin-top: 10px;
}

.startup-block .startup-block-body .card-profile i {
  float: left;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-right: 10px;
}

.startup-block .startup-block-body .card-profile i:last-child {
  margin-right: 0;
}

.latest-opportunites-block {
  position: relative;
}

.latest-opportunites-block.set-border-right:before {
  content: '';
  position: absolute;
  right: -30px;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 1px;
  background-color: #E9E9E9;
  min-height: 150px;
}

.latest-opportunites-block h2 {
  position: relative;
  font-size: 20px;
  color: #535353;
  font-family: 'Raleway';
}

.latest-opportunites-block .name {
  margin-bottom: 13px;
}

.latest-opportunites-block .name span {
  float: left;
}

.latest-opportunites-block .name span:first-child {
  color: #BEBEBE;
  font-size: 14px;
  margin-right: 30px;
}

.latest-opportunites-block .name span:last-child {
  color: #777777;
  font-size: 12px;
  font-weight: 500;
}

.latest-opportunites-block .more-info {
  margin-bottom: 9px;
}

.latest-opportunites-block .more-info span {
  float: left;
  font-size: 12px;
  color: #4A4A4A;
  border-left: 1px solid #BEBEBE;
  padding-left: 6px;
  margin-left: 6px;
  margin-top: 4px;
}

.latest-opportunites-block .more-info .price {
  font-size: 18px;
  color: #009245;
  font-weight: 500;
  border-left: none;
  padding-left: 0;
  margin-left: 0;
  margin-top: 0;
}

.latest-opportunites-block p {
  font-weight: 300;
  line-height: 22px;
  color: #4A4A4A;
}

.dropdown-multiselect {
  display: inline-block;
  position: relative;
  z-index: 100;
}

.dropdown-multiselect svg path {
  color: #009245;
}

.dropdown-multiselect .default {
  float: left;
  color: #535353;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}

.dropdown-multiselect .default:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #535353 transparent transparent transparent;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.dropdown-multiselect ul {
  position: absolute;
  left: -30%;
  right: 0;
  top: 24px;
  background-color: #fff;
  border: 1px solid #DEDEDE;
  padding: 2px 0;
  width: 150px;
  display: none;
  overflow: hidden;
}

.dropdown-multiselect ul.show {
  display: block;
}

.dropdown-multiselect ul li {
  float: left;
  width: 100%;
  font-size: 14px;
  color: #535353;
  cursor: pointer;
  padding: 10px 0;
}

.dropdown-multiselect ul li .checkbox label {
  width: 100%;
  margin: 0;
}

.dropdown-multiselect ul li .checkbox label > span {
  height: auto;
}

.dropdown-multiselect ul li .title {
  float: left;
  margin-top: 4px;
}

.dropdown-multiselect ul li i {
  float: left;
  width: 16px;
  height: 16px;
  border: 1px solid #CFCFCF;
  background-color: #fff;
  margin-right: 22px;
}

.dropdown-multiselect ul li:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.dropdown-multiselect ul li.active {
  font-weight: 700;
}

.dropdown-multiselect ul li.active i {
  border-color: #009245;
  background-color: #009245;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAQCAYAAAAWGF8bAAAABGdBTUEAALGPC/xhBQAAASVJREFUOBGlkiFPw1AUhbe0SWlCgpjAzGBQUzh+AQ5ZW1uLRc8OCxK7zEAwSBwKhcJgZhCIqWUJy7rv0r6X2+by0tCbnLxzzz33JO+1g0HPKstyBoqeMdU6QVMgtQN5r1ACriVJ1Rae/SuUxSsVpOnCB6IOwYEX/iB4Cp2g+DM88Ws0d6Ap+mlFmOdA3qtdLwipt9PcKMcjPPbDmqBlQN6pXa8Ih95P476UNs5pImeCX4Ifbaj5G+eR8/2eCFag+O+BvOsF2IB2vSOMGmGuYaCvrBcfaNZaqPkH57HbN08Mt8aiJX0ijs0QLWKS68k1Q7VkeKL3ghxzBOSDWPWFeBoMsIYsxUB+HV3fNBPL30ljOQHyk0utwFmnxZCJkBQ8gfOQrz3bA9cVHUqHo5gzAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
}

.dropdown-multiselect ul .currency-selector {
  position: absolute;
  padding: 5px 10px;
  cursor: pointer;
  top: 0;
  right: 0;
}

.dropdown-multiselect ul .currency-selector:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.dropdown-multiselect ul .currency-list {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -10;
  width: 100%;
  transition: 0.3s;
}

.dropdown-multiselect ul .currency-list:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.dropdown-multiselect ul .currency-list .block {
  float: right;
  width: 50px;
  background-color: white;
  height: 100%;
  z-index: 10;
  position: relative;
  right: -50px;
  transition: 0.3s;
}

.dropdown-multiselect ul .currency-list span {
  float: left;
  width: 100%;
  padding: 10px;
  text-align: center;
  cursor: pointer;
}

.dropdown-multiselect ul .currency-list span:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.dropdown-multiselect ul .currency-list.active {
  z-index: 10;
}

.dropdown-multiselect ul .currency-list.active .block {
  right: 0;
}

.dropdown-multiselect ul.salary-dropdown {
  width: 200px;
  padding-top: 8px;
}

.dropdown-multiselect ul.salary-dropdown .footer {
  float: left;
  width: 100%;
}

.dropdown-multiselect ul.salary-dropdown .footer p {
  color: #4A4A4A;
  font-size: 13px;
  padding-right: 10px;
  margin-top: 9px;
}

.apply-dailog > div:nth-child(2) {
  padding: 40px 60px;
  width: 620px;
}

.apply-dailog .cv {
  margin-top: 17px;
}

.apply-dailog .cv h5 {
  float: left;
  width: 100%;
  font-size: 16px;
  color: #4A4A4A;
  font-weight: 500;
  margin-bottom: 10px;
}

.apply-dailog .cv .upload-btn {
  float: left;
  width: 90px;
  height: 30px;
  padding: 0;
  font-size: 11px;
  background-color: transparent !important;
  color: #009245;
  overflow: hidden;
  position: relative;
}

.apply-dailog .cv .upload-btn input {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.apply-dailog .cv .upload-btn img {
  width: 12px;
  margin: 0px 0 0 7px;
  position: relative;
  top: 1px;
}

.apply-dailog .cv span {
  float: left;
  color: #BEBEBE;
  font-size: 12px;
  font-weight: 300;
  margin: 7px 0 0 10px;
}

.apply-dailog .action-btn .btn {
  margin: 0 10px;
}

.big-calendar-navigation .label-date {
  float: left;
  font-size: 14px;
  color: #444444;
  font-weight: 500;
  margin-right: 10px;
  margin-top: 4px;
}

.big-calendar-navigation .nav-btn {
  float: left;
  border: 1px solid #E7E7E7;
  border-radius: 100px;
  width: 41px;
  height: 23px;
  overflow: hidden;
}

.big-calendar-navigation .nav-btn button {
  border: none;
  background-color: #fff;
  float: left;
  width: 50%;
  height: 100%;
  outline: none !important;
  font-size: 15px;
  line-height: 1;
  margin-top: -1px;
}

.big-calendar-navigation .nav-btn .disabled {
  color: #CDCDCD;
  cursor: not-allowed;
}

.big-calendar-navigation .intro-description {
  color: black;
  font-style: italic;
  text-align: center;
  padding-bottom: 10px;
  font-size: 15px;
}

.big-calendar-navigation .btn-status {
  text-align: center !important;
}

.big-calendar .rbc-month-header {
  height: 33px;
}

.big-calendar .rbc-month-header .rbc-header {
  padding-top: 9px;
  font-size: 13px;
  color: #CDCDCD;
  font-weight: 400;
  text-transform: uppercase;
}

.big-calendar .rbc-month-view {
  border-radius: 10px 10px 0 0;
}

.big-calendar .rbc-month-view .rbc-event {
  padding: 5px 11px;
  border-radius: 15px;
}

.big-calendar .rbc-month-view .rbc-event.confirmed {
  border: 1px solid #006e51;
  background-color: #006e51;
}

.big-calendar .rbc-month-view .rbc-event.pending {
  border: 1px solid #EFA731;
  background-color: #EFA731;
}

.big-calendar .rbc-month-view .rbc-event.cancelled {
  border: 1px solid #F36868;
  background-color: #F36868;
}

.big-calendar .rbc-month-view .rbc-row-bg .blocked-date {
  background: #e5e5e5;
  /*border: 1px red solid;*/
}

.big-calendar .rbc-month-view .rbc-row-bg .blocked-date-admin {
  background: #425d9e;
  /*border: 1px red solid;*/
}

.big-calendar .rbc-month-view .rbc-row-bg .rbc-today {
  background: #78ec71;
}

.big-calendar .rbc-time-view {
  /*.rbc-events-container {
		    bottom: 5px;
		    left: 5px;
		    position: absolute;
		    right: 5px;
		    top: 5px;
		}*/
}

.big-calendar .rbc-time-view .rbc-timeslot-group {
  min-height: 60px;
}

.big-calendar .rbc-time-view .rbc-event {
  padding: 5px 11px;
}

.big-calendar .rbc-time-view .rbc-event.confirmed {
  border: 1px solid #006e51;
  background-color: #006e51;
}

.big-calendar .rbc-time-view .rbc-event.pending {
  border: 1px solid #EFA731;
  background-color: #EFA731;
}

.big-calendar .rbc-time-view .rbc-event.cancelled {
  border: 1px solid #F36868;
  background-color: #F36868;
}

.eir-popup .cross {
  position: absolute;
  right: 10px;
  top: 14px;
  width: 15px;
}

.eir-popup .modal-width {
  width: 454px;
}

.eir-popup .popup-header {
  background-color: #2A303C;
  height: 45px;
  color: #fff;
  padding: 11px 15px;
}

.eir-popup .current-date {
  background-color: #F6F6F6;
  border-bottom: 1px solid #EEEEEE;
  padding: 14px 0;
}

.eir-popup .current-date .table {
  margin: 0 auto;
  width: auto;
  display: table;
}

.eir-popup .current-date .table .date {
  font-size: 25px;
  color: #009245;
  font-weight: 500;
  font-family: 'Raleway';
  display: inline-block;
  margin-right: 4px;
}

.eir-popup .current-date .table .month {
  font-size: 14px;
  color: #444444;
  font-weight: 500;
  font-family: 'Raleway';
}

.eir-popup .current-date .table .day {
  font-size: 12px;
  color: #797C84;
  font-weight: 300;
}

.eir-popup .modal-body {
  padding: 17px 30px 30px;
}

.eir-popup .modal-body h2 {
  float: left;
  width: 100%;
  color: #444444;
  font-weight: 700;
  font-size: 16px;
}

.eir-popup .modal-body .select-field {
  margin-bottom: 10px;
}

.eir-popup .modal-body .select-field label {
  float: left;
  font-size: 14px;
  color: #4A4A4A;
  font-weight: 300;
  margin-right: 6px;
  margin-top: 7px;
}

.eir-popup .modal-body .select-field select.form-control {
  width: auto;
  font-size: 14px;
  font-weight: 300;
  color: #444444;
  height: 33px;
}

.eir-popup .modal-body .lunch-explanation {
  color: rgba(0, 0, 0, 0.87);
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  line-height: 1.46429em;
  padding-bottom: 10px;
}

.eir-popup .time-selection > label {
  margin-left: -13px;
  margin-right: 20px;
}

.eir-popup .modal-body-disable {
  background-color: #CDCDCD;
  padding: 30px 0;
}

.eir-popup .modal-body-disable .center {
  width: 290px;
  margin: 0 auto;
}

.eir-popup .modal-body-disable p {
  font-size: 14px;
  color: #4A4A4A;
  font-weight: 300;
}

.eir-popup .modal-body-disable table td {
  border: none;
  font-size: 14px;
}

.eir-popup .modal-body-disable table .light {
  font-weight: 300;
}

.eir-popup .rating .high {
  color: #009245;
}

.requests_report_block {
  padding: 15px 20px 100px;
}

.requests_report_block h2 {
  float: left;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #444444;
}

.requests_report_block h2.first-heading {
  margin-top: 14px;
}

.requests_report_block .icon {
  float: left;
  width: 16px;
  text-align: center;
  margin-right: 5px;
}

.requests_report_block .btn-outline-success {
  min-width: 60px;
}

.requests_report_block .table td {
  font-size: 12px;
  vertical-align: middle;
}

.requests_report_block .table .text-success {
  font-size: 14px;
}

.requests_report_block .reports-section {
  background-color: #F6F6F6;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  height: 500px;
  padding: 15px;
}

/*profile-pic being use on multiple places*/

.profile-pic {
  float: left;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
  background-size: 50px;
}

.eir_status_list {
  padding: 15px 15px 100px;
}

.eir_status_list .table {
  /*.profile-pic{
			float: left;
			width: 50px;
			height: 50px;
			border-radius: 50%;
			overflow: hidden;
			background-color: rgba(0,0,0,0.05);
		}*/
}

.eir_status_list .table th {
  background-color: #F6F6F6;
  vertical-align: middle;
  text-align: left;
  font-size: 13px;
  border: none;
}

.eir_status_list .table th select {
  background-color: transparent;
  border: none;
  width: auto;
  font-size: 13px;
}

.eir_status_list .table td {
  vertical-align: middle;
  font-size: 14px;
}

.eir_status_list .table td b {
  font-weight: 700;
  font-size: 16px;
}

.eir_status_list .table td .icon {
  float: left;
  width: 16px;
  text-align: center;
  margin-right: 5px;
}

.students_list_block,
.eris_list_block {
  padding: 33px 20px;
}

.students_list_block .head-block,
.eris_list_block .head-block {
  float: left;
  width: 100%;
}

.students_list_block .head-block .block,
.eris_list_block .head-block .block {
  float: left;
  margin-right: 50px;
}

.students_list_block .head-block .block label,
.eris_list_block .head-block .block label {
  float: left;
  font-size: 14px;
  color: #4A4A4A;
  font-weight: 300;
  margin-right: 15px;
}

.students_list_block .head-block .block .regular,
.eris_list_block .head-block .block .regular {
  float: left;
  font-size: 14px;
  color: #4A4A4A;
}

.students_list_block .head-block .block .red-arrow,
.eris_list_block .head-block .block .red-arrow {
  float: left;
  width: 20px;
  margin-right: 15px;
}

.students_list_block .head-block .block .light-text,
.eris_list_block .head-block .block .light-text {
  font-weight: 300;
}

.students_list_block .head-block .block .cross-icon,
.eris_list_block .head-block .block .cross-icon {
  width: 20px;
  cursor: pointer;
  margin-left: 15px;
}

.students_list_block .head-block .block .upload-block,
.eris_list_block .head-block .block .upload-block {
  margin-top: -6px;
}

.students_list_block .head-block .block .download-block,
.eris_list_block .head-block .block .download-block {
  margin-top: -6px;
}

.students_list_block .table-block,
.eris_list_block .table-block {
  margin-top: 15px;
}

.students_list_block .table-block .table th,
.eris_list_block .table-block .table th {
  background-color: #F6F6F6;
  vertical-align: middle;
  text-align: left;
  font-size: 13px;
  border: none;
}

.students_list_block .table-block .table th select,
.eris_list_block .table-block .table th select {
  background-color: transparent;
  border: none;
  width: auto;
  font-size: 13px;
}

.students_list_block .table-block .table td,
.eris_list_block .table-block .table td {
  vertical-align: middle;
  font-size: 14px;
  color: #444444;
}

.students_list_block .table-block .table td b,
.eris_list_block .table-block .table td b {
  font-weight: 600;
  font-size: 16px;
  color: #444444;
}

.students_list_block .table-block .table td .profile-pic-list,
.eris_list_block .table-block .table td .profile-pic-list {
  float: left;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
  margin-right: 8px;
  display: block;
  margin: auto;
  background-size: 50px;
}

.students_list_block .table-block .table td .eir-name,
.eris_list_block .table-block .table td .eir-name {
  margin-top: 10px;
  text-align: center;
}

.students_list_block .table-block .table td .eir-linkedin,
.eris_list_block .table-block .table td .eir-linkedin {
  display: block;
  margin: auto;
  text-align: center;
  margin-top: 10px;
}

.students_list_block .table-block .table .eir-list-header,
.eris_list_block .table-block .table .eir-list-header {
  text-align: center;
}

.students_list_block .markt-btn,
.eris_list_block .markt-btn {
  float: left;
  width: 205px;
}

.students_list_block .markt-btn .btn.size-1,
.eris_list_block .markt-btn .btn.size-1 {
  min-width: 192px;
}

.meeting_list_view .table th {
  background-color: #F6F6F6;
  vertical-align: middle;
  text-align: left;
  font-size: 13px;
  border: none;
}

.meeting_list_view .table th select {
  background-color: transparent;
  border: none;
  width: auto;
  font-size: 13px;
}

.meeting_list_view .table td {
  vertical-align: middle;
  font-size: 14px;
  color: #444444;
}

.meeting_list_view .table td b {
  font-weight: 600;
  font-size: 16px;
  color: #444444;
}

.meeting_list_view .table td b.username {
  float: left;
  margin-top: 15px;
}

.meeting_list_view .table td p {
  line-height: 22px;
  font-weight: 300;
}

.meeting_list_view .table td .date {
  display: inline-block;
  border-right: 1px solid #CDCDCD;
  padding: 0 9px;
}

.meeting_list_view .table td .date big {
  font-size: 25px;
  color: #009245;
  font-weight: 300;
  display: inline-block;
}

.meeting_list_view .table td .date small {
  font-size: 14px;
  color: #444444;
  font-weight: 300;
  display: inline-block;
  margin-left: 5px;
}

.meeting_list_view .table td .date span {
  font-size: 12px;
  color: #797C84;
  font-weight: 300;
  display: inline-block;
  width: 100%;
}

.meeting_list_view .table td .time {
  display: inline-block;
}

.meeting_list_view .table td .time big {
  font-size: 22px;
  color: #009245;
  font-weight: 300;
  display: inline-block;
}

.meeting_list_view .table td .time small {
  font-size: 14px;
  color: #444444;
  font-weight: 300;
  display: inline-block;
  margin-left: 5px;
}

.meeting_list_view .table td .separtor {
  display: inline-block;
  font-size: 14px;
  color: #444444;
  font-weight: 300;
  margin: 0 10px;
}

.meeting_list_view .table td .profile-pic {
  /*float: left;
				width: 50px;
				height: 50px;
				background-size: 50px;
				border-radius: 50%;
				overflow: hidden;
				background-color: rgba(0,0,0,0.05);*/
  margin-right: 8px;
}

.meeting_list_view td .address,
.eris_list_block td .address {
  padding-left: 20px;
  position: relative;
  text-align: center;
}

.meeting_list_view td .address a,
.eris_list_block td .address a {
  color: #444444;
  text-decoration: underline;
}

.meeting_list_view td .address_1,
.eris_list_block td .address_1 {
  position: relative;
  text-align: center;
}

.meeting_list_view td .rating,
.eris_list_block td .rating {
  padding-left: 0px;
  width: 150px;
}

.meeting_list_view td .rating .high,
.eris_list_block td .rating .high {
  color: #009245;
}

.er_availability_list_view_block .table th {
  background-color: #F6F6F6;
  vertical-align: middle;
  text-align: left;
  font-size: 13px;
  border: none;
}

.er_availability_list_view_block .table th select {
  background-color: transparent;
  border: none;
  width: auto;
  font-size: 13px;
}

.er_availability_list_view_block .table td {
  vertical-align: middle;
  font-size: 14px;
  color: #444444;
}

.er_availability_list_view_block .table td h2 {
  font-size: 18px;
  color: #444444;
  font-weight: 600;
}

.er_availability_list_view_block .table td p {
  line-height: 22px;
  font-weight: 300;
}

.er_availability_list_view_block .table td b {
  font-weight: 700;
  font-size: 16px;
  color: #444444;
}

.er_availability_list_view_block .table td .text-success.more {
  border-bottom: 1px dashed;
}

.er_availability_list_view_block .table td .date {
  background-color: #F3F3F3;
  border-radius: 100px;
  padding: 6px 15px;
  font-size: 14px;
  color: #444444;
  margin-bottom: 5px;
  width: 350px;
}

.er_availability_list_view_block .table td .profile-pic {
  margin-right: 8px;
  background-size: 50px;
}

.er_availability_list_view_block .table td .set-icon-left {
  padding-left: 20px;
  position: relative;
}

.er_availability_list_view_block .table td .set-icon-left img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.er_availability_list_view_block .table td .more-dates {
  text-decoration: underline;
  color: #444444;
}

.er_availability_list_view_block .table td .more-dates img {
  width: 10px;
  margin-left: 7px;
}

.er_availability_list_view_block .table td .v-top {
  vertical-align: top;
}

/* weekly eir schedule START */

.eir_shedule_weekly {
  /*.profile-pic{
		float: left;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		overflow: hidden;
		background-color: rgba(0,0,0,0.05);
	}*/
}

.eir_shedule_weekly .tabs-filter {
  padding: 30px 0;
  border: none;
}

.eir_shedule_weekly .rbc-time-view {
  background: white;
}

.eir_shedule_weekly .marked-options {
  margin-top: 8px !important;
}

.eir_shedule_weekly .big-calendar-navigation .block {
  margin-right: 50px;
}

.eir_shedule_weekly .big-calendar-navigation .block .text-val {
  font-size: 13px;
  color: rgba(68, 68, 68, 0.71);
}

.eir-popup.schedule-status textarea {
  height: 110px;
  resize: none;
}

/* weekly eir schedule END */

.time-selection > div {
  display: block;
}

/**
 * Override Bootstrap styles that you can't modify via variables here.
 *
 */

.app .btn-primary {
  background-color: #006e51;
  border-color: #006e51;
}

.appContent {
  padding-bottom: 10rem;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  padding: 10px !important;
  text-align: left;
  margin: 10px 0;
}

.mcheckbox {
  position: absolute;
  left: -14px;
  top: 0;
}

.mcheckbox > span {
  float: left;
}

.mcheckbox > span:last-child {
  float: left;
  margin-top: 14px;
}

.mcheckbox svg path {
  color: #009245;
}

.switch-checked {
  color: #009245 !important;
}

.switch-bar {
  background-color: #009245 !important;
}


/*# sourceMappingURL=main-68749f4f66aae36c78e2.css.map*/