/* You can add global styles to this file, and also import other style files */

/*
 * Container style
 */

.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */

.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */

.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */

@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

.cal-month-view .cal-header {
  text-align: center;
  font-weight: bolder; }

.cal-month-view .cal-header .cal-cell {
  padding: 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap; }

.cal-month-view .cal-days {
  border: 1px solid;
  border-bottom: 0; }

.cal-month-view .cal-cell-top {
  min-height: 78px;
  flex: 1; }

.cal-month-view .cal-cell-row {
  -js-display: flex;
  display: flex; }

.cal-month-view .cal-cell {
  float: left;
  flex: 1;
  -js-display: flex;
  display: flex;
  flex-direction: column;
  align-items: stretch; }

.cal-month-view .cal-day-cell {
  min-height: 100px; }

@media all and (-ms-high-contrast: none) {
    .cal-month-view .cal-day-cell {
      display: block; } }

.cal-month-view .cal-day-cell:not(:last-child) {
  border-right: 1px solid; }

.cal-month-view .cal-days .cal-cell-row {
  border-bottom: 1px solid; }

.cal-month-view .cal-day-badge {
  margin-top: 18px;
  margin-left: 10px;
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 10px; }

.cal-month-view .cal-day-number {
  font-size: 1.2em;
  font-weight: 400;
  opacity: 0.5;
  margin-top: 15px;
  margin-right: 15px;
  float: right;
  margin-bottom: 10px; }

.cal-month-view .cal-events {
  flex: 1;
  align-items: flex-end;
  margin: 3px;
  line-height: 10px;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap; }

.cal-month-view .cal-event {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 2px; }

.cal-month-view .cal-day-cell.cal-in-month.cal-has-events {
  cursor: pointer; }

.cal-month-view .cal-day-cell.cal-out-month .cal-day-number {
  opacity: 0.1;
  cursor: default; }

.cal-month-view .cal-day-cell.cal-today .cal-day-number {
  font-size: 1.9em; }

.cal-month-view .cal-open-day-events {
  padding: 15px; }

.cal-month-view .cal-open-day-events .cal-event {
  position: relative;
  top: 2px; }

.cal-month-view .cal-out-month .cal-day-badge,
.cal-month-view .cal-out-month .cal-event {
  opacity: 0.3; }

.cal-month-view .cal-draggable {
  cursor: move; }

.cal-month-view .cal-drag-active * {
  pointer-events: none; }

.cal-month-view .cal-event-title {
  cursor: pointer; }

.cal-month-view .cal-event-title:hover {
    text-decoration: underline; }

.cal-month-view {
  background-color: #fff; }

.cal-month-view .cal-cell-row:hover {
    background-color: #fafafa; }

.cal-month-view .cal-cell-row .cal-cell:hover,
  .cal-month-view .cal-cell.cal-has-events.cal-open {
    background-color: #ededed; }

.cal-month-view .cal-days {
    border-color: #e1e1e1; }

.cal-month-view .cal-day-cell:not(:last-child) {
    border-right-color: #e1e1e1; }

.cal-month-view .cal-days .cal-cell-row {
    border-bottom-color: #e1e1e1; }

.cal-month-view .cal-day-badge {
    background-color: #b94a48;
    color: #fff; }

.cal-month-view .cal-event {
    background-color: #1e90ff;
    border-color: #d1e8ff;
    color: #fff; }

.cal-month-view .cal-day-cell.cal-weekend .cal-day-number {
    color: #8b0000; }

.cal-month-view .cal-day-cell.cal-today {
    background-color: #e8fde7; }

.cal-month-view .cal-day-cell.cal-drag-over {
    background-color: #e0e0e0 !important; }

.cal-month-view .cal-open-day-events {
    color: #fff;
    background-color: #555;
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.5); }

.cal-week-view {
  /* stylelint-disable-next-line selector-type-no-unknown */ }

.cal-week-view * {
    box-sizing: border-box; }

.cal-week-view .cal-day-headers {
    -js-display: flex;
    display: flex;
    padding-left: 70px;
    border: 1px solid; }

.cal-week-view .cal-day-headers .cal-header {
    flex: 1;
    text-align: center;
    padding: 5px; }

.cal-week-view .cal-day-headers .cal-header:not(:last-child) {
      border-right: 1px solid; }

.cal-week-view .cal-day-headers .cal-header:first-child {
      border-left: 1px solid; }

.cal-week-view .cal-day-headers span {
    font-weight: 400;
    opacity: 0.5; }

.cal-week-view .cal-day-column {
    flex-grow: 1;
    border-left: solid 1px; }

.cal-week-view .cal-event {
    font-size: 12px;
    border: 1px solid; }

.cal-week-view .cal-time-label-column {
    width: 70px;
    height: 100%; }

.cal-week-view .cal-all-day-events {
    border: solid 1px;
    border-top: 0;
    border-bottom-width: 3px;
    padding-top: 3px;
    position: relative; }

.cal-week-view .cal-all-day-events .cal-day-columns {
      height: 100%;
      width: 100%;
      -js-display: flex;
      display: flex;
      position: absolute;
      top: 0;
      z-index: 0; }

.cal-week-view .cal-all-day-events .cal-events-row {
      position: relative;
      height: 31px;
      margin-left: 70px; }

.cal-week-view .cal-all-day-events .cal-event-container {
      display: inline-block;
      position: absolute; }

.cal-week-view .cal-all-day-events .cal-event-container.resize-active {
        z-index: 1;
        pointer-events: none; }

.cal-week-view .cal-all-day-events .cal-event {
      padding: 0 5px;
      margin-left: 2px;
      margin-right: 2px;
      height: 28px;
      line-height: 28px; }

.cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px; }

.cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px; }

.cal-week-view .cal-all-day-events .cal-time-label-column {
      -js-display: flex;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px; }

.cal-week-view .cal-all-day-events .cal-resize-handle {
      width: 6px;
      height: 100%;
      cursor: col-resize;
      position: absolute;
      top: 0; }

.cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
        right: 0; }

.cal-week-view .cal-event,
  .cal-week-view .cal-header {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }

.cal-week-view .cal-drag-active {
    pointer-events: none;
    z-index: 1; }

.cal-week-view .cal-drag-active * {
      pointer-events: none; }

.cal-week-view .cal-time-events {
    position: relative;
    border: solid 1px;
    border-top: 0;
    -js-display: flex;
    display: flex; }

.cal-week-view .cal-time-events .cal-day-columns {
      -js-display: flex;
      display: flex;
      flex-grow: 1; }

.cal-week-view .cal-time-events .cal-day-column {
      position: relative; }

.cal-week-view .cal-time-events .cal-event-container {
      position: absolute;
      z-index: 1; }

.cal-week-view .cal-time-events .cal-event {
      width: calc(100% - 2px);
      height: calc(100% - 2px);
      margin: 1px;
      padding: 0 5px;
      line-height: 25px; }

.cal-week-view .cal-time-events .cal-resize-handle {
      width: 100%;
      height: 4px;
      cursor: row-resize;
      position: absolute; }

.cal-week-view .cal-time-events .cal-resize-handle.cal-resize-handle-after-end {
        bottom: 0; }

.cal-week-view .cal-hour-segment {
    position: relative; }

.cal-week-view .cal-hour-segment::after {
      content: '\00a0'; }

.cal-week-view .cal-event-container:not(.cal-draggable) {
    cursor: pointer; }

.cal-week-view .cal-draggable {
    cursor: move; }

.cal-week-view mwl-calendar-week-view-hour-segment,
  .cal-week-view .cal-hour-segment {
    display: block; }

.cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
  .cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
    border-bottom: thin dashed; }

.cal-week-view .cal-time {
    font-weight: bold;
    padding-top: 5px;
    width: 70px;
    text-align: center; }

.cal-week-view .cal-hour-segment.cal-after-hour-start .cal-time {
    display: none; }

.cal-week-view .cal-starts-within-day .cal-event {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px; }

.cal-week-view .cal-ends-within-day .cal-event {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px; }

.cal-week-view {
  background-color: #fff; }

.cal-week-view .cal-day-headers {
    border-color: #e1e1e1; }

.cal-week-view .cal-day-headers .cal-header:not(:last-child) {
    border-right-color: #e1e1e1; }

.cal-week-view .cal-day-headers .cal-header:first-child {
    border-left-color: #e1e1e1; }

.cal-week-view .cal-day-headers .cal-header:hover,
  .cal-week-view .cal-day-headers .cal-drag-over {
    background-color: #ededed; }

.cal-week-view .cal-day-column {
    border-left-color: #e1e1e1; }

.cal-week-view .cal-event {
    background-color: #d1e8ff;
    border-color: #1e90ff;
    color: #1e90ff; }

.cal-week-view .cal-all-day-events {
    border-color: #e1e1e1; }

.cal-week-view .cal-header.cal-today {
    background-color: #e8fde7; }

.cal-week-view .cal-header.cal-weekend span {
    color: #8b0000; }

.cal-week-view .cal-time-events {
    border-color: #e1e1e1; }

.cal-week-view .cal-time-events .cal-day-columns:not(.cal-resize-active) .cal-hour-segment:hover {
      background-color: #ededed; }

.cal-week-view .cal-hour-odd {
    background-color: #fafafa; }

.cal-week-view .cal-drag-over .cal-hour-segment {
    background-color: #ededed; }

.cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
  .cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
    border-bottom-color: #e1e1e1; }

.cal-day-view {
  /* stylelint-disable-next-line selector-type-no-unknown */ }

.cal-day-view * {
    box-sizing: border-box; }

.cal-day-view .cal-hour-rows {
    width: 100%;
    border: solid 1px;
    overflow-x: auto;
    position: relative; }

.cal-day-view mwl-calendar-day-view-hour-segment,
  .cal-day-view .cal-hour-segment {
    display: block; }

.cal-day-view .cal-hour-segment::after {
    content: '\00a0'; }

.cal-day-view .cal-hour:not(:last-child) .cal-hour-segment,
  .cal-day-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
    border-bottom: thin dashed; }

.cal-day-view .cal-time {
    font-weight: bold;
    width: 70px;
    height: 100%;
    -js-display: flex;
    display: flex;
    justify-content: center;
    align-items: center; }

.cal-day-view .cal-hour-segment.cal-after-hour-start .cal-time {
    display: none; }

.cal-day-view .cal-drag-active .cal-hour-segment {
    pointer-events: none; }

.cal-day-view .cal-event-container {
    position: absolute;
    cursor: pointer; }

.cal-day-view .cal-event-container.resize-active {
      z-index: 1;
      pointer-events: none; }

.cal-day-view .cal-event {
    padding: 5px;
    font-size: 12px;
    border: 1px solid;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 100%; }

.cal-day-view .cal-all-day-events > * {
    cursor: pointer; }

.cal-day-view .cal-draggable {
    cursor: move; }

.cal-day-view .cal-starts-within-day .cal-event {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px; }

.cal-day-view .cal-ends-within-day .cal-event {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px; }

.cal-day-view .cal-drag-active {
    z-index: 1; }

.cal-day-view .cal-drag-active * {
      pointer-events: none; }

.cal-day-view .cal-resize-handle {
    width: 100%;
    height: 4px;
    cursor: row-resize;
    position: absolute; }

.cal-day-view .cal-resize-handle.cal-resize-handle-after-end {
      bottom: 0; }

.cal-day-view {
  background-color: #fff; }

.cal-day-view .cal-hour-rows {
    border-color: #e1e1e1; }

.cal-day-view .cal-hour:nth-child(odd) {
    background-color: #fafafa; }

.cal-day-view .cal-hour:not(:last-child) .cal-hour-segment,
  .cal-day-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
    border-bottom-color: #e1e1e1; }

.cal-day-view .cal-hour-segment:hover,
  .cal-day-view .cal-drag-over .cal-hour-segment {
    background-color: #ededed; }

.cal-day-view .cal-event {
    background-color: #d1e8ff;
    border-color: #1e90ff;
    color: #1e90ff; }

.cal-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 11px;
  word-wrap: break-word;
  opacity: 0.9; }

.cal-tooltip.cal-tooltip-top {
  padding: 5px 0;
  margin-top: -3px; }

.cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0; }

.cal-tooltip.cal-tooltip-right {
  padding: 0 5px;
  margin-left: 3px; }

.cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0; }

.cal-tooltip.cal-tooltip-bottom {
  padding: 5px 0;
  margin-top: 3px; }

.cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px; }

.cal-tooltip.cal-tooltip-left {
  padding: 0 5px;
  margin-left: -3px; }

.cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px; }

.cal-tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  text-align: center;
  border-radius: 0.25rem; }

.cal-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  border-top-color: #000; }

.cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  border-right-color: #000; }

.cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  border-bottom-color: #000; }

.cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  border-left-color: #000; }

.cal-tooltip-inner {
  color: #fff;
  background-color: #000; }

/*
body {
    background: #fff;
    font-family: "Raleway", sans-serif!important;
    margin: 0;
    overflow-x: hidden;
    color: #7d8b92;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.form-control {
    min-height: 50px!important;
    border-radius: 0!important;
}

  */

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

.login-box .card-body {
  padding: 1.25rem 3rem !important;
}

.login-logo {
  display: block;
  max-height: 175px;
}

.btn-lg,
.btn-group-lg > .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  border-radius: 0 !important;
  border: 0 !important;
  background: #1766af !important;
}

.ps .ps__scrollbar-y-rail {
  left: 3px;
  right: auto;
}

.float-right {
  float: right;
}

.dark-logo.text {
  max-height: 19px;
}

.login-logo {
  display: block;
  max-height: 150px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  margin-top: 20px;
}

.hidden-title ul[role="tablist"] {
  display: none;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem #1976d273 !important;
}

.delivery-fa {
  margin-left: 10px;
}

.dt-btn {
  margin-left: 5px;
}

.row-widget {
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  margin-right: 0px !important;
  margin-left: 0px !important;
}

.card-widget {
  height: 100%;
}

.no-padding {
  padding: 0px !important;
}

.no-margin {
  margin: 0px !important;
}

.no-sides-margin {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.h-fill-available {
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
}

gridster {
  background-color: #00000000 !important;
}

footer {
  z-index: 1;
}

.remove-widget {
  z-index: 2;
  position: absolute;
  right: 0;
  margin: 5px;
  display: none;
}

.row-widget:hover + .remove-widget,
.remove-widget:hover {
  display: inline-block;
}

.edit-diary {
  opacity: 0;
}

.diary-row:hover .edit-diary{
  opacity: 100;
}

.gridster-preview {
  display: none !important;
}

.m-l-3 {
  margin-left: 3px;
}

.m-l-8 {
  margin-left: 8px;
}

.email-container-header {
  background-color: grey;
}

.message-me {
  background-color: aquamarine;
}

.dropdown-icon {
  margin-right: 6px;
}

.dropdown-item {
  cursor: pointer;
}

.dropdown-item:active {
  background-color: #cfcfcf !important;
}

.blue .topbar .navbar-header {
  background: #1870c7 !important;
  padding: 3px 0;
}

.blue .topbar {
  background: #555 !important;
}

.btn {
  border-radius: 0 !important;
  /*background: #1870c7 !important;*/
  border: 0 !important;
  /*color: #fff !important;*/
  /*color: #999 !important;*/
}

.card-widget {
    padding: 20px !important;
}

.breadcrumb-item {
  margin-top: 10px !important;
}

.breadcrumb-fav-button {
  border-color: #b1b8bb00 !important;
  padding: 2px 7px !important;
  background-color: #f2f2f2 !important;
}

.dropdown-menu.show.scrollable {
  overflow-y: auto;
  max-height: 260px;
}

.profile-pic {
  background-color: white;
}

.user-profile {
  padding-top: 15px;
}

table.dataTable.dtr-inline.collapsed
  > tbody
  > tr[role="row"]
  > td:first-child::before,
table.dataTable.dtr-inline.collapsed
  > tbody
  > tr[role="row"]
  > th:first-child::before {
  top: 20px !important;
  height: 17px !important;
  width: 17px !important;
  border: 0 !important;
  border-radius: 19px !important;
  box-shadow: 0 0 0 0 !important;
  line-height: 19px !important;
  background-color: #1870c7 !important;
}

table.dataTable.dtr-inline.collapsed
  > tbody
  > tr.parent
  > td:first-child::before {
  background-color: #999 !important;
}

.page-wrapper {
  /*background: #fcfcfc !important;*/
}

.card {

    border: 0px!important;
    border-radius: 0!important;

}

/*¡
body{color:#777!important}
.user-profile .profile-img img {
    width: auto!important;
    padding: 0!important;
    height: 100px!important;
    border: 0 !important;
    margin: 0!important;
    border-radius: 0 !important;

}
.mini-sidebar .user-profile .profile-img {
    width: 50px!important;
    height: 50px!important;

  }
.user-profile .profile-img {
    width: 100px!important;
    margin: 10px auto!important;
    padding: 0!important;
    border-radius: 100%;
    height: 100px!important;
    overflow: hidden!important;
  border: 3px solid #fff;
  -webkit-box-shadow: 0px 0px 0px 2px rgba(25,118,210,1);
  -moz-box-shadow: 0px 0px 0px 2px rgba(25,118,210,1);
  box-shadow: 0px 0px 0px 1px rgba(25,118,210,1);
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.profile-text i{font-size: 1.5rem!important;}
h1, h2, h3, h4, h5, h6 {

    color: #455a64;
    font-family: "Raleway", sans-serif!important;
    font-weight: 400;

}


.nav-small-cap {
    display: none;
}
.sidebar-nav .has-arrow::after {
    top: 35px!important;
}
.sidebar-nav ul li a {
    color:  #777!important;}
.sidebar-nav > ul > li > a {
    color: #777!important;

  }
.sidebar-nav > ul > li > a i {
    width: 45px!important;
    font-size: 36px!important;
    color: inherit!important;

  }

  .sidebar-nav > ul > li > a:hover {

        color: #1870c7!important;
    }
.mini-sidebar .sidebar-nav #sidebarnav > li > a {
    padding: 10px 17.5px!important;
    width: 70px;

}


.user-profile .profile-text > a {
    color: #777!important;
}
.user-profile .profile-text > a:hover {
    color: #1870c7!important;
}
.user-profile .profile-text > h5 {
    color: #555!important;
}
.topbar .top-navbar .navbar-nav > .nav-item > .nav-link {
    padding-left: 1rem!important;
    padding-right: 1rem!important;
    font-size: 1.5rem!important;

}

.dark-logo.text {
    max-height: 24px!important;
    margin: 0 0 0 3px!important;
  }
.sidebar-nav ul li a i {
    font-size: 1.5rem;
    display: inline-block;
    vertical-align: middle;
}
.sidebar-nav .collapse li .has-arrow::after {
    top: 24px !important;
}
.sidebar-nav ul li ul {
    padding-left: 15px!important;
}
.mini-sidebar .sidebar-nav #sidebarnav > li:hover > a {
    background: #f5f5f5!important;
}

.mini-sidebar .sidebar-nav #sidebarnav > li > ul {
    background: #f5f5f5!important;
}
.pace .pace-progress {
    background: #1870c7!important;}

.card-title {

        margin-bottom: 0.75rem!important;
        font-size: 1.5rem!important;
        font-weight: 700!important;
        color: #555!important;

    }
  .card .card-subtitle {

    font-weight: 300!important;
    margin-bottom: 15px!important;
    color: #777!important;
    background: #fff!important;
    font-size: 1.1rem;
    padding: 10px 0 10px 70px!important;
    margin: 10px 0 15px -70px!important;

}
.form-horizontal label {
    margin: 10px 0!important;}

  .switch.checked {
        background: #1870c7!important;
    }


.label-warning {
    background-color: #fff!important;
    color: #555!important;
}
.label {
    padding: 5px 10px!important;
    border-radius: 0!important;

}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.current {
    color: #fff!important;
    border: 0!important;
    background: #1870c7!important;
    border-radius: 0!important;
}
table.dataTable.no-footer {
    border-bottom: 1px solid #999 !important;

}
table.dataTable tbody td {
    padding-top: 15px!important;
    padding-bottom: 15px!important;
}
[type="search"] {
    border: 1px solid #555;
}
*/

.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  color: #fff!important;
  border: 0px!important;
  background: #1870c7!important;
  border-radius: 0px!important;
}

.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button {
  border: 0px!important;
  border-radius: 0px!important;
}

.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: #212529 !important;
  border: 0px !important;
  background-color: #eaeaea;
  background: #eaeaea;
  border-radius: 0px!important;
}

.table-responsive .dataTables_wrapper .dataTables_paginate {
  margin-top: 10px;
}

.table-responsive .dataTables_wrapper .dataTables_info {
  margin-top: 10px;
}

table.dataTable tbody > tr.selected,
table.dataTable tbody > tr > .selected {
  color: #000000;
}

[aria-level="1"] .gantt_add {
  display: none !important
}

.stage-delete {
  margin-left: 2px;
}

.stage-edit {
  margin-left: 2px;
}

.stage-task-new {
  margin-left: 18px;
}

.task-info {
  margin-left: 20px;
  margin-top: 20px;
  font-style: italic;
  font-weight: 500;
}

.sig-container {
  border-style: dashed;
  border-width: 1px;
}

.sig-container canvas {
  border-style: solid;
  border-width: 1px;
}

.sig-container-image {
  height: 400px;
  width: 700px;
}

.ql-editor{
  min-height:200px;
}

.hide-top-border {
  border-top: none !important;
}

.cal-day-selected{
  background-color: #77e7fd8f !important;
}

.cal-day-badge {
  display: none !important;
}

.cal-out-month .cal-cell-top {
  visibility: hidden;
}

.cal-out-month .cal-events {
  visibility: hidden;
}

.cal-out-month.cal-today {
  background-color: #fff !important;
}

.cal-out-month.cal-day-selected {
  background-color: #fff !important;
}

.modal90 .modal-dialog {
  max-width: 90%;
  width: 90%;
}

.mail-contnet.custom {
  display: inline-block;
  width: 100% !important;
  vertical-align: middle;
}

.custom-accordion .card-header:only-child {
  display: none !important;
  background-color: red !important;
}

.custom-accordion .acc-toggle {
  display: block !important;
}

.custom-button {
  background-color: transparent !important;
  color: #7d8b92 !important;
  box-shadow: none !important;
  margin: 3px 0px !important;
}

.custom-button .btn-label{
  background-color: white !important;
  padding: 5px;
}

.form-valid {
  border-color: #3e70c6 !important;
  border-width: thick !important;
}

.select-low {
  background-color: #d8d5d5;
  color: white;
}

.select-high {
  background-color: #ffff98;
}

.select-max {
  background-color: #ff7373 !important;
  color: white;
}

.max-height {
  height: 100%;
}

.form-switch {
  display: flex;
  justify-content: initial;
  align-items: center;
  height: 100%;
  flex-wrap: wrap;
}

.form-switch label {
  margin-right: 8px;
}

.vertical-flex {
  display: flex !important;
  flex-direction: column;
}

.overflow-x-hidden {
  overflow-x: hidden;
  width: 100%;
}

.modal-open .modal {
  scroll-behavior: smooth;
}

.form-control-plaintext {
  border-width: 1px !important;
  transition: border-color 0.15s ease-in-out;
  border-radius: 0.25rem;
}

.form-control-plaintext:focus {
  border: 1px solid #ced4da;
}

.custom-logo {
  max-height: 50px;
}


@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
/*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
/**
 * Table Of Content
 *
 * 	1. Globals
 *	2. Headers
 *	3. Navigations
 *	4. Banners
 *	5. Footers
 *	6. app
 *	7. Widgets
 *	8. Custom Templates
 */
/*
  This stylesheet uses scss valiables for most of the colors / background-colors of the table
  to enable the customization of the displayed table without cloning the stylesheet into the
  own application.

  To modify table colors, add the following lines to the scss file of your application
  (this example modifies the color of the selected row - selectionType = single, multi or multiClick):

  $ngx-datatable-selected-active-background: yellow;
  $ngx-datatable-selected-active-background-hover: rgba(yellow, 0.2);

  @import '~@swimlane/ngx-datatable/index.css';
  @import '~@swimlane/ngx-datatable/themes/material.scss';
  @import '~@swimlane/ngx-datatable/assets/icons.css';

That's all.
*/
.ngx-datatable.material {
  background: #fff;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  /**
	 * Shared Styles
	 */
  /**
	 * Global Row Styles
	 */
  /**
	 * Header Styles
	 */
  /**
	 * Body Styles
	 */
  /**
	 * Footer Styles
	 */ }
.ngx-datatable.material.striped .datatable-row-odd {
    background: #eee; }
.ngx-datatable.material.single-selection .datatable-body-row.active,
  .ngx-datatable.material.single-selection .datatable-body-row.active .datatable-row-group, .ngx-datatable.material.multi-selection .datatable-body-row.active,
  .ngx-datatable.material.multi-selection .datatable-body-row.active .datatable-row-group, .ngx-datatable.material.multi-click-selection .datatable-body-row.active,
  .ngx-datatable.material.multi-click-selection .datatable-body-row.active .datatable-row-group {
    background-color: #304ffe;
    color: #fff; }
.ngx-datatable.material.single-selection .datatable-body-row.active:hover,
  .ngx-datatable.material.single-selection .datatable-body-row.active:hover .datatable-row-group, .ngx-datatable.material.multi-selection .datatable-body-row.active:hover,
  .ngx-datatable.material.multi-selection .datatable-body-row.active:hover .datatable-row-group, .ngx-datatable.material.multi-click-selection .datatable-body-row.active:hover,
  .ngx-datatable.material.multi-click-selection .datatable-body-row.active:hover .datatable-row-group {
    background-color: #193ae4;
    color: #fff; }
.ngx-datatable.material.single-selection .datatable-body-row.active:focus,
  .ngx-datatable.material.single-selection .datatable-body-row.active:focus .datatable-row-group, .ngx-datatable.material.multi-selection .datatable-body-row.active:focus,
  .ngx-datatable.material.multi-selection .datatable-body-row.active:focus .datatable-row-group, .ngx-datatable.material.multi-click-selection .datatable-body-row.active:focus,
  .ngx-datatable.material.multi-click-selection .datatable-body-row.active:focus .datatable-row-group {
    background-color: #2041ef;
    color: #fff; }
.ngx-datatable.material:not(.cell-selection) .datatable-body-row:hover,
  .ngx-datatable.material:not(.cell-selection) .datatable-body-row:hover .datatable-row-group {
    background-color: #eee;
    transition-property: background;
    transition-duration: 0.3s;
    transition-timing-function: linear; }
.ngx-datatable.material:not(.cell-selection) .datatable-body-row:focus,
  .ngx-datatable.material:not(.cell-selection) .datatable-body-row:focus .datatable-row-group {
    background-color: #ddd; }
.ngx-datatable.material.cell-selection .datatable-body-cell:hover,
  .ngx-datatable.material.cell-selection .datatable-body-cell:hover .datatable-row-group {
    background-color: #eee;
    transition-property: background;
    transition-duration: 0.3s;
    transition-timing-function: linear; }
.ngx-datatable.material.cell-selection .datatable-body-cell:focus,
  .ngx-datatable.material.cell-selection .datatable-body-cell:focus .datatable-row-group {
    background-color: #ddd; }
.ngx-datatable.material.cell-selection .datatable-body-cell.active,
  .ngx-datatable.material.cell-selection .datatable-body-cell.active .datatable-row-group {
    background-color: #304ffe;
    color: #fff; }
.ngx-datatable.material.cell-selection .datatable-body-cell.active:hover,
  .ngx-datatable.material.cell-selection .datatable-body-cell.active:hover .datatable-row-group {
    background-color: #193ae4;
    color: #fff; }
.ngx-datatable.material.cell-selection .datatable-body-cell.active:focus,
  .ngx-datatable.material.cell-selection .datatable-body-cell.active:focus .datatable-row-group {
    background-color: #2041ef;
    color: #fff; }
.ngx-datatable.material .empty-row {
    height: 50px;
    text-align: left;
    padding: 0.5rem 1.2rem;
    vertical-align: top;
    border-top: 0; }
.ngx-datatable.material .loading-row {
    text-align: left;
    padding: 0.5rem 1.2rem;
    vertical-align: top;
    border-top: 0; }
.ngx-datatable.material .datatable-header .datatable-row-left,
  .ngx-datatable.material .datatable-body .datatable-row-left {
    background-color: #fff;
    background-position: 100% 0;
    background-repeat: repeat-y;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAFklEQVQIHWPSkNeSBmJhTQVtbiDNCgASagIIuJX8OgAAAABJRU5ErkJggg==); }
.ngx-datatable.material .datatable-header .datatable-row-right,
  .ngx-datatable.material .datatable-body .datatable-row-right {
    background-position: 0 0;
    background-color: #fff;
    background-repeat: repeat-y;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAFklEQVQI12PQkNdi1VTQ5gbSwkAsDQARLAIGtOSFUAAAAABJRU5ErkJggg==); }
.ngx-datatable.material .datatable-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
.ngx-datatable.material .datatable-header .datatable-header-cell {
      text-align: left;
      padding: 0.9rem 1.2rem;
      font-weight: 400;
      background-color: #fff;
      color: rgba(0, 0, 0, 0.54);
      vertical-align: bottom;
      font-size: 12px;
      font-weight: 500; }
.ngx-datatable.material .datatable-header .datatable-header-cell .datatable-header-cell-wrapper {
        position: relative; }
.ngx-datatable.material .datatable-header .datatable-header-cell.longpress .draggable::after {
        transition: transform 400ms ease, opacity 400ms ease;
        opacity: 0.5;
        transform: scale(1); }
.ngx-datatable.material .datatable-header .datatable-header-cell .draggable::after {
        content: ' ';
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -30px 0 0 -30px;
        height: 60px;
        width: 60px;
        background: #eee;
        border-radius: 100%;
        opacity: 1;
        filter: none;
        transform: scale(0);
        z-index: 9999;
        pointer-events: none; }
.ngx-datatable.material .datatable-header .datatable-header-cell.dragging .resize-handle {
        border-right: none; }
.ngx-datatable.material .datatable-header .resize-handle {
      border-right: solid 1px #eee; }
.ngx-datatable.material .datatable-body .datatable-row-detail {
    background: #f5f5f5;
    padding: 10px; }
.ngx-datatable.material .datatable-body .datatable-group-header {
    background: #f5f5f5;
    border-bottom: solid 1px #d9d8d9;
    border-top: solid 1px #d9d8d9; }
.ngx-datatable.material .datatable-body .datatable-body-row .datatable-body-cell {
    text-align: left;
    padding: 0.9rem 1.2rem;
    vertical-align: top;
    border-top: 0;
    color: rgba(0, 0, 0, 0.87);
    transition: width 0.3s ease;
    font-size: 14px;
    font-weight: 400; }
.ngx-datatable.material .datatable-body .datatable-body-row .datatable-body-group-cell {
    text-align: left;
    padding: 0.9rem 1.2rem;
    vertical-align: top;
    border-top: 0;
    color: rgba(0, 0, 0, 0.87);
    transition: width 0.3s ease;
    font-size: 14px;
    font-weight: 400; }
.ngx-datatable.material .datatable-body .progress-linear {
    display: block;
    position: relative;
    width: 100%;
    height: 5px;
    padding: 0;
    margin: 0;
    position: absolute; }
.ngx-datatable.material .datatable-body .progress-linear .container {
      display: block;
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 5px;
      transform: translate(0, 0) scale(1, 1);
      background-color: #aad1f9; }
.ngx-datatable.material .datatable-body .progress-linear .container .bar {
        transition: all 0.2s linear;
        animation: query 0.8s infinite cubic-bezier(0.39, 0.575, 0.565, 1);
        transition: transform 0.2s linear;
        background-color: #106cc8;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 5px; }
.ngx-datatable.material .datatable-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.54); }
.ngx-datatable.material .datatable-footer .page-count {
      line-height: 50px;
      height: 50px;
      padding: 0 1.2rem; }
.ngx-datatable.material .datatable-footer .datatable-pager {
      margin: 0 10px; }
.ngx-datatable.material .datatable-footer .datatable-pager li {
        vertical-align: middle; }
.ngx-datatable.material .datatable-footer .datatable-pager li.disabled a {
          color: rgba(0, 0, 0, 0.26) !important;
          background-color: transparent !important; }
.ngx-datatable.material .datatable-footer .datatable-pager li.active a {
          background-color: rgba(158, 158, 158, 0.2);
          font-weight: bold; }
.ngx-datatable.material .datatable-footer .datatable-pager a {
        height: 22px;
        min-width: 24px;
        line-height: 22px;
        padding: 0 6px;
        border-radius: 3px;
        margin: 6px 3px;
        text-align: center;
        vertical-align: top;
        color: rgba(0, 0, 0, 0.54);
        text-decoration: none;
        vertical-align: bottom; }
.ngx-datatable.material .datatable-footer .datatable-pager a:hover {
          color: rgba(0, 0, 0, 0.75);
          background-color: rgba(158, 158, 158, 0.2); }
.ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-left,
      .ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-skip,
      .ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-right,
      .ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-prev {
        font-size: 20px;
        line-height: 20px;
        padding: 0 3px; }
.ngx-datatable.material .datatable-summary-row .datatable-body-row {
    background-color: #ddd; }
.ngx-datatable.material .datatable-summary-row .datatable-body-row:hover {
      background-color: #ddd; }
.ngx-datatable.material .datatable-summary-row .datatable-body-row .datatable-body-cell {
      font-weight: bold; }
/**
 * Checkboxes
**/
.datatable-checkbox {
  position: relative;
  margin: 0;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  box-sizing: border-box;
  padding: 0; }
.datatable-checkbox input[type='checkbox'] {
    position: relative;
    margin: 0 1rem 0 0;
    cursor: pointer;
    outline: none; }
.datatable-checkbox input[type='checkbox']:before {
      transition: all 0.3s ease-in-out;
      content: '';
      position: absolute;
      left: 0;
      z-index: 1;
      width: 1rem;
      height: 1rem;
      border: 2px solid #f2f2f2; }
.datatable-checkbox input[type='checkbox']:checked:before {
      transform: rotate(-45deg);
      height: 0.5rem;
      border-color: #009688;
      border-top-style: none;
      border-right-style: none; }
.datatable-checkbox input[type='checkbox']:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 1rem;
      height: 1rem;
      background: #fff;
      cursor: pointer; }
/**
 * Progress bar animations
 */
@keyframes query {
  0% {
    opacity: 1;
    transform: translateX(35%) scale(0.3, 1); }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(0, 1); } }
@charset "UTF-8";
@font-face {
  font-family: 'data-table';
  src: url('data-table.eot');
  src: url('data-table.eot?#iefix') format('embedded-opentype'), url('data-table.woff') format('woff'),
    url('data-table.ttf') format('truetype'), url('data-table.svg#data-table') format('svg');
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: 'data-table' !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^='datatable-icon-']:before,
[class*=' datatable-icon-']:before {
  font-family: 'data-table' !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.datatable-icon-filter:before {
  content: '\62';
}
.datatable-icon-collapse:before {
  content: '\61';
}
.datatable-icon-expand:before {
  content: '\63';
}
.datatable-icon-close:before {
  content: '\64';
}
.datatable-icon-up:before {
  content: '\65';
}
.datatable-icon-down:before {
  content: '\66';
}
.datatable-icon-sort:before {
  content: '\67';
}
.datatable-icon-done:before {
  content: '\68';
}
.datatable-icon-done-all:before {
  content: '\69';
}
.datatable-icon-search:before {
  content: '\6a';
}
.datatable-icon-pin:before {
  content: '\6b';
}
.datatable-icon-add:before {
  content: '\6d';
}
.datatable-icon-left:before {
  content: '\6f';
}
.datatable-icon-right:before {
  content: '\70';
}
.datatable-icon-skip:before {
  content: '\71';
}
.datatable-icon-prev:before {
  content: '\72';
}
/*!
 *  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-face{font-family:'FontAwesome';src:url('fontawesome-webfont.eot?v=4.7.0');src:url('fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('fontawesome-webfont.woff?v=4.7.0') format('woff'),url('fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') 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}
.fa-lg{font-size:1.33333333em;line-height:.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.28571429em;text-align:center}
.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}
.fa-ul>li{position:relative}
.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}
.fa-li.fa-lg{left:-1.85714286em}
.fa-border{padding:.2em .25em .15em;border:solid .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}
.pull-right{float:right}
.pull-left{float:left}
.fa.pull-left{margin-right:.3em}
.fa.pull-right{margin-left:.3em}
.fa-spin{animation:fa-spin 2s infinite linear}
.fa-pulse{animation:fa-spin 1s infinite steps(8)}
@keyframes fa-spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}
.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}
.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}
.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}
.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scale(-1, 1)}
.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=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}
.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}
@font-face {
  font-family: 'simple-line-icons';
  src: url('Simple-Line-Icons.eot?-i3a2kk');
  src: url('Simple-Line-Icons.eot?#iefix-i3a2kk') format('embedded-opentype'), url('Simple-Line-Icons.ttf?-i3a2kk') format('truetype'), url('Simple-Line-Icons.woff2?-i3a2kk') format('woff2'), url('Simple-Line-Icons.woff?-i3a2kk') format('woff'), url('Simple-Line-Icons.svg?-i3a2kk#simple-line-icons') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*
 Use the following CSS code if you want to have a class per icon.
 Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector, but it's slower: 
*/
.icon-user,
.icon-people,
.icon-user-female,
.icon-user-follow,
.icon-user-following,
.icon-user-unfollow,
.icon-login,
.icon-logout,
.icon-emotsmile,
.icon-phone,
.icon-call-end,
.icon-call-in,
.icon-call-out,
.icon-map,
.icon-location-pin,
.icon-direction,
.icon-directions,
.icon-compass,
.icon-layers,
.icon-menu,
.icon-list,
.icon-options-vertical,
.icon-options,
.icon-arrow-down,
.icon-arrow-left,
.icon-arrow-right,
.icon-arrow-up,
.icon-arrow-up-circle,
.icon-arrow-left-circle,
.icon-arrow-right-circle,
.icon-arrow-down-circle,
.icon-check,
.icon-clock,
.icon-plus,
.icon-close,
.icon-trophy,
.icon-screen-smartphone,
.icon-screen-desktop,
.icon-plane,
.icon-notebook,
.icon-mustache,
.icon-mouse,
.icon-magnet,
.icon-energy,
.icon-disc,
.icon-cursor,
.icon-cursor-move,
.icon-crop,
.icon-chemistry,
.icon-speedometer,
.icon-shield,
.icon-screen-tablet,
.icon-magic-wand,
.icon-hourglass,
.icon-graduation,
.icon-ghost,
.icon-game-controller,
.icon-fire,
.icon-eyeglass,
.icon-envelope-open,
.icon-envelope-letter,
.icon-bell,
.icon-badge,
.icon-anchor,
.icon-wallet,
.icon-vector,
.icon-speech,
.icon-puzzle,
.icon-printer,
.icon-present,
.icon-playlist,
.icon-pin,
.icon-picture,
.icon-handbag,
.icon-globe-alt,
.icon-globe,
.icon-folder-alt,
.icon-folder,
.icon-film,
.icon-feed,
.icon-drop,
.icon-drawar,
.icon-docs,
.icon-doc,
.icon-diamond,
.icon-cup,
.icon-calculator,
.icon-bubbles,
.icon-briefcase,
.icon-book-open,
.icon-basket-loaded,
.icon-basket,
.icon-bag,
.icon-action-undo,
.icon-action-redo,
.icon-wrench,
.icon-umbrella,
.icon-trash,
.icon-tag,
.icon-support,
.icon-frame,
.icon-size-fullscreen,
.icon-size-actual,
.icon-shuffle,
.icon-share-alt,
.icon-share,
.icon-rocket,
.icon-question,
.icon-pie-chart,
.icon-pencil,
.icon-note,
.icon-loop,
.icon-home,
.icon-grid,
.icon-graph,
.icon-microphone,
.icon-music-tone-alt,
.icon-music-tone,
.icon-earphones-alt,
.icon-earphones,
.icon-equalizer,
.icon-like,
.icon-dislike,
.icon-control-start,
.icon-control-rewind,
.icon-control-play,
.icon-control-pause,
.icon-control-forward,
.icon-control-end,
.icon-volume-1,
.icon-volume-2,
.icon-volume-off,
.icon-calender,
.icon-bulb,
.icon-chart,
.icon-ban,
.icon-bubble,
.icon-camrecorder,
.icon-camera,
.icon-cloud-download,
.icon-cloud-upload,
.icon-envelope,
.icon-eye,
.icon-flag,
.icon-heart,
.icon-info,
.icon-key,
.icon-link,
.icon-lock,
.icon-lock-open,
.icon-magnifier,
.icon-magnifier-add,
.icon-magnifier-remove,
.icon-paper-clip,
.icon-paper-plane,
.icon-power,
.icon-refresh,
.icon-reload,
.icon-settings,
.icon-star,
.icon-symble-female,
.icon-symbol-male,
.icon-target,
.icon-credit-card,
.icon-paypal,
.icon-social-tumblr,
.icon-social-twitter,
.icon-social-facebook,
.icon-social-instagram,
.icon-social-linkedin,
.icon-social-pintarest,
.icon-social-github,
.icon-social-gplus,
.icon-social-reddit,
.icon-social-skype,
.icon-social-dribbble,
.icon-social-behance,
.icon-social-foursqare,
.icon-social-soundcloud,
.icon-social-spotify,
.icon-social-stumbleupon,
.icon-social-youtube,
.icon-social-dropbox {
  font-family: 'simple-line-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-user:before {
  content: "\e005";
}
.icon-people:before {
  content: "\e001";
}
.icon-user-female:before {
  content: "\e000";
}
.icon-user-follow:before {
  content: "\e002";
}
.icon-user-following:before {
  content: "\e003";
}
.icon-user-unfollow:before {
  content: "\e004";
}
.icon-login:before {
  content: "\e066";
}
.icon-logout:before {
  content: "\e065";
}
.icon-emotsmile:before {
  content: "\e021";
}
.icon-phone:before {
  content: "\e600";
}
.icon-call-end:before {
  content: "\e048";
}
.icon-call-in:before {
  content: "\e047";
}
.icon-call-out:before {
  content: "\e046";
}
.icon-map:before {
  content: "\e033";
}
.icon-location-pin:before {
  content: "\e096";
}
.icon-direction:before {
  content: "\e042";
}
.icon-directions:before {
  content: "\e041";
}
.icon-compass:before {
  content: "\e045";
}
.icon-layers:before {
  content: "\e034";
}
.icon-menu:before {
  content: "\e601";
}
.icon-list:before {
  content: "\e067";
}
.icon-options-vertical:before {
  content: "\e602";
}
.icon-options:before {
  content: "\e603";
}
.icon-arrow-down:before {
  content: "\e604";
}
.icon-arrow-left:before {
  content: "\e605";
}
.icon-arrow-right:before {
  content: "\e606";
}
.icon-arrow-up:before {
  content: "\e607";
}
.icon-arrow-up-circle:before {
  content: "\e078";
}
.icon-arrow-left-circle:before {
  content: "\e07a";
}
.icon-arrow-right-circle:before {
  content: "\e079";
}
.icon-arrow-down-circle:before {
  content: "\e07b";
}
.icon-check:before {
  content: "\e080";
}
.icon-clock:before {
  content: "\e081";
}
.icon-plus:before {
  content: "\e095";
}
.icon-close:before {
  content: "\e082";
}
.icon-trophy:before {
  content: "\e006";
}
.icon-screen-smartphone:before {
  content: "\e010";
}
.icon-screen-desktop:before {
  content: "\e011";
}
.icon-plane:before {
  content: "\e012";
}
.icon-notebook:before {
  content: "\e013";
}
.icon-mustache:before {
  content: "\e014";
}
.icon-mouse:before {
  content: "\e015";
}
.icon-magnet:before {
  content: "\e016";
}
.icon-energy:before {
  content: "\e020";
}
.icon-disc:before {
  content: "\e022";
}
.icon-cursor:before {
  content: "\e06e";
}
.icon-cursor-move:before {
  content: "\e023";
}
.icon-crop:before {
  content: "\e024";
}
.icon-chemistry:before {
  content: "\e026";
}
.icon-speedometer:before {
  content: "\e007";
}
.icon-shield:before {
  content: "\e00e";
}
.icon-screen-tablet:before {
  content: "\e00f";
}
.icon-magic-wand:before {
  content: "\e017";
}
.icon-hourglass:before {
  content: "\e018";
}
.icon-graduation:before {
  content: "\e019";
}
.icon-ghost:before {
  content: "\e01a";
}
.icon-game-controller:before {
  content: "\e01b";
}
.icon-fire:before {
  content: "\e01c";
}
.icon-eyeglass:before {
  content: "\e01d";
}
.icon-envelope-open:before {
  content: "\e01e";
}
.icon-envelope-letter:before {
  content: "\e01f";
}
.icon-bell:before {
  content: "\e027";
}
.icon-badge:before {
  content: "\e028";
}
.icon-anchor:before {
  content: "\e029";
}
.icon-wallet:before {
  content: "\e02a";
}
.icon-vector:before {
  content: "\e02b";
}
.icon-speech:before {
  content: "\e02c";
}
.icon-puzzle:before {
  content: "\e02d";
}
.icon-printer:before {
  content: "\e02e";
}
.icon-present:before {
  content: "\e02f";
}
.icon-playlist:before {
  content: "\e030";
}
.icon-pin:before {
  content: "\e031";
}
.icon-picture:before {
  content: "\e032";
}
.icon-handbag:before {
  content: "\e035";
}
.icon-globe-alt:before {
  content: "\e036";
}
.icon-globe:before {
  content: "\e037";
}
.icon-folder-alt:before {
  content: "\e039";
}
.icon-folder:before {
  content: "\e089";
}
.icon-film:before {
  content: "\e03a";
}
.icon-feed:before {
  content: "\e03b";
}
.icon-drop:before {
  content: "\e03e";
}
.icon-drawar:before {
  content: "\e03f";
}
.icon-docs:before {
  content: "\e040";
}
.icon-doc:before {
  content: "\e085";
}
.icon-diamond:before {
  content: "\e043";
}
.icon-cup:before {
  content: "\e044";
}
.icon-calculator:before {
  content: "\e049";
}
.icon-bubbles:before {
  content: "\e04a";
}
.icon-briefcase:before {
  content: "\e04b";
}
.icon-book-open:before {
  content: "\e04c";
}
.icon-basket-loaded:before {
  content: "\e04d";
}
.icon-basket:before {
  content: "\e04e";
}
.icon-bag:before {
  content: "\e04f";
}
.icon-action-undo:before {
  content: "\e050";
}
.icon-action-redo:before {
  content: "\e051";
}
.icon-wrench:before {
  content: "\e052";
}
.icon-umbrella:before {
  content: "\e053";
}
.icon-trash:before {
  content: "\e054";
}
.icon-tag:before {
  content: "\e055";
}
.icon-support:before {
  content: "\e056";
}
.icon-frame:before {
  content: "\e038";
}
.icon-size-fullscreen:before {
  content: "\e057";
}
.icon-size-actual:before {
  content: "\e058";
}
.icon-shuffle:before {
  content: "\e059";
}
.icon-share-alt:before {
  content: "\e05a";
}
.icon-share:before {
  content: "\e05b";
}
.icon-rocket:before {
  content: "\e05c";
}
.icon-question:before {
  content: "\e05d";
}
.icon-pie-chart:before {
  content: "\e05e";
}
.icon-pencil:before {
  content: "\e05f";
}
.icon-note:before {
  content: "\e060";
}
.icon-loop:before {
  content: "\e064";
}
.icon-home:before {
  content: "\e069";
}
.icon-grid:before {
  content: "\e06a";
}
.icon-graph:before {
  content: "\e06b";
}
.icon-microphone:before {
  content: "\e063";
}
.icon-music-tone-alt:before {
  content: "\e061";
}
.icon-music-tone:before {
  content: "\e062";
}
.icon-earphones-alt:before {
  content: "\e03c";
}
.icon-earphones:before {
  content: "\e03d";
}
.icon-equalizer:before {
  content: "\e06c";
}
.icon-like:before {
  content: "\e068";
}
.icon-dislike:before {
  content: "\e06d";
}
.icon-control-start:before {
  content: "\e06f";
}
.icon-control-rewind:before {
  content: "\e070";
}
.icon-control-play:before {
  content: "\e071";
}
.icon-control-pause:before {
  content: "\e072";
}
.icon-control-forward:before {
  content: "\e073";
}
.icon-control-end:before {
  content: "\e074";
}
.icon-volume-1:before {
  content: "\e09f";
}
.icon-volume-2:before {
  content: "\e0a0";
}
.icon-volume-off:before {
  content: "\e0a1";
}
.icon-calender:before {
  content: "\e075";
}
.icon-bulb:before {
  content: "\e076";
}
.icon-chart:before {
  content: "\e077";
}
.icon-ban:before {
  content: "\e07c";
}
.icon-bubble:before {
  content: "\e07d";
}
.icon-camrecorder:before {
  content: "\e07e";
}
.icon-camera:before {
  content: "\e07f";
}
.icon-cloud-download:before {
  content: "\e083";
}
.icon-cloud-upload:before {
  content: "\e084";
}
.icon-envelope:before {
  content: "\e086";
}
.icon-eye:before {
  content: "\e087";
}
.icon-flag:before {
  content: "\e088";
}
.icon-heart:before {
  content: "\e08a";
}
.icon-info:before {
  content: "\e08b";
}
.icon-key:before {
  content: "\e08c";
}
.icon-link:before {
  content: "\e08d";
}
.icon-lock:before {
  content: "\e08e";
}
.icon-lock-open:before {
  content: "\e08f";
}
.icon-magnifier:before {
  content: "\e090";
}
.icon-magnifier-add:before {
  content: "\e091";
}
.icon-magnifier-remove:before {
  content: "\e092";
}
.icon-paper-clip:before {
  content: "\e093";
}
.icon-paper-plane:before {
  content: "\e094";
}
.icon-power:before {
  content: "\e097";
}
.icon-refresh:before {
  content: "\e098";
}
.icon-reload:before {
  content: "\e099";
}
.icon-settings:before {
  content: "\e09a";
}
.icon-star:before {
  content: "\e09b";
}
.icon-symble-female:before {
  content: "\e09c";
}
.icon-symbol-male:before {
  content: "\e09d";
}
.icon-target:before {
  content: "\e09e";
}
.icon-credit-card:before {
  content: "\e025";
}
.icon-paypal:before {
  content: "\e608";
}
.icon-social-tumblr:before {
  content: "\e00a";
}
.icon-social-twitter:before {
  content: "\e009";
}
.icon-social-facebook:before {
  content: "\e00b";
}
.icon-social-instagram:before {
  content: "\e609";
}
.icon-social-linkedin:before {
  content: "\e60a";
}
.icon-social-pintarest:before {
  content: "\e60b";
}
.icon-social-github:before {
  content: "\e60c";
}
.icon-social-gplus:before {
  content: "\e60d";
}
.icon-social-reddit:before {
  content: "\e60e";
}
.icon-social-skype:before {
  content: "\e60f";
}
.icon-social-dribbble:before {
  content: "\e00d";
}
.icon-social-behance:before {
  content: "\e610";
}
.icon-social-foursqare:before {
  content: "\e611";
}
.icon-social-soundcloud:before {
  content: "\e612";
}
.icon-social-spotify:before {
  content: "\e613";
}
.icon-social-stumbleupon:before {
  content: "\e614";
}
.icon-social-youtube:before {
  content: "\e008";
}
.icon-social-dropbox:before {
  content: "\e00c";
}
@font-face {
	font-family: 'themify';
	src:url('themify.eot?-fvbane');
	src:url('themify.eot?#iefix-fvbane') format('embedded-opentype'),
		url('themify.woff') format('woff'),
		url('themify.ttf') format('truetype'),
		url('themify.svg?-fvbane#themify') format('svg');
	font-weight: normal;
	font-style: normal;
}
[class^="ti-"], [class*=" ti-"] {
	font-family: 'themify';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.ti-wand:before {
	content: "\e600";
}
.ti-volume:before {
	content: "\e601";
}
.ti-user:before {
	content: "\e602";
}
.ti-unlock:before {
	content: "\e603";
}
.ti-unlink:before {
	content: "\e604";
}
.ti-trash:before {
	content: "\e605";
}
.ti-thought:before {
	content: "\e606";
}
.ti-target:before {
	content: "\e607";
}
.ti-tag:before {
	content: "\e608";
}
.ti-tablet:before {
	content: "\e609";
}
.ti-star:before {
	content: "\e60a";
}
.ti-spray:before {
	content: "\e60b";
}
.ti-signal:before {
	content: "\e60c";
}
.ti-shopping-cart:before {
	content: "\e60d";
}
.ti-shopping-cart-full:before {
	content: "\e60e";
}
.ti-settings:before {
	content: "\e60f";
}
.ti-search:before {
	content: "\e610";
}
.ti-zoom-in:before {
	content: "\e611";
}
.ti-zoom-out:before {
	content: "\e612";
}
.ti-cut:before {
	content: "\e613";
}
.ti-ruler:before {
	content: "\e614";
}
.ti-ruler-pencil:before {
	content: "\e615";
}
.ti-ruler-alt:before {
	content: "\e616";
}
.ti-bookmark:before {
	content: "\e617";
}
.ti-bookmark-alt:before {
	content: "\e618";
}
.ti-reload:before {
	content: "\e619";
}
.ti-plus:before {
	content: "\e61a";
}
.ti-pin:before {
	content: "\e61b";
}
.ti-pencil:before {
	content: "\e61c";
}
.ti-pencil-alt:before {
	content: "\e61d";
}
.ti-paint-roller:before {
	content: "\e61e";
}
.ti-paint-bucket:before {
	content: "\e61f";
}
.ti-na:before {
	content: "\e620";
}
.ti-mobile:before {
	content: "\e621";
}
.ti-minus:before {
	content: "\e622";
}
.ti-medall:before {
	content: "\e623";
}
.ti-medall-alt:before {
	content: "\e624";
}
.ti-marker:before {
	content: "\e625";
}
.ti-marker-alt:before {
	content: "\e626";
}
.ti-arrow-up:before {
	content: "\e627";
}
.ti-arrow-right:before {
	content: "\e628";
}
.ti-arrow-left:before {
	content: "\e629";
}
.ti-arrow-down:before {
	content: "\e62a";
}
.ti-lock:before {
	content: "\e62b";
}
.ti-location-arrow:before {
	content: "\e62c";
}
.ti-link:before {
	content: "\e62d";
}
.ti-layout:before {
	content: "\e62e";
}
.ti-layers:before {
	content: "\e62f";
}
.ti-layers-alt:before {
	content: "\e630";
}
.ti-key:before {
	content: "\e631";
}
.ti-import:before {
	content: "\e632";
}
.ti-image:before {
	content: "\e633";
}
.ti-heart:before {
	content: "\e634";
}
.ti-heart-broken:before {
	content: "\e635";
}
.ti-hand-stop:before {
	content: "\e636";
}
.ti-hand-open:before {
	content: "\e637";
}
.ti-hand-drag:before {
	content: "\e638";
}
.ti-folder:before {
	content: "\e639";
}
.ti-flag:before {
	content: "\e63a";
}
.ti-flag-alt:before {
	content: "\e63b";
}
.ti-flag-alt-2:before {
	content: "\e63c";
}
.ti-eye:before {
	content: "\e63d";
}
.ti-export:before {
	content: "\e63e";
}
.ti-exchange-vertical:before {
	content: "\e63f";
}
.ti-desktop:before {
	content: "\e640";
}
.ti-cup:before {
	content: "\e641";
}
.ti-crown:before {
	content: "\e642";
}
.ti-comments:before {
	content: "\e643";
}
.ti-comment:before {
	content: "\e644";
}
.ti-comment-alt:before {
	content: "\e645";
}
.ti-close:before {
	content: "\e646";
}
.ti-clip:before {
	content: "\e647";
}
.ti-angle-up:before {
	content: "\e648";
}
.ti-angle-right:before {
	content: "\e649";
}
.ti-angle-left:before {
	content: "\e64a";
}
.ti-angle-down:before {
	content: "\e64b";
}
.ti-check:before {
	content: "\e64c";
}
.ti-check-box:before {
	content: "\e64d";
}
.ti-camera:before {
	content: "\e64e";
}
.ti-announcement:before {
	content: "\e64f";
}
.ti-brush:before {
	content: "\e650";
}
.ti-briefcase:before {
	content: "\e651";
}
.ti-bolt:before {
	content: "\e652";
}
.ti-bolt-alt:before {
	content: "\e653";
}
.ti-blackboard:before {
	content: "\e654";
}
.ti-bag:before {
	content: "\e655";
}
.ti-move:before {
	content: "\e656";
}
.ti-arrows-vertical:before {
	content: "\e657";
}
.ti-arrows-horizontal:before {
	content: "\e658";
}
.ti-fullscreen:before {
	content: "\e659";
}
.ti-arrow-top-right:before {
	content: "\e65a";
}
.ti-arrow-top-left:before {
	content: "\e65b";
}
.ti-arrow-circle-up:before {
	content: "\e65c";
}
.ti-arrow-circle-right:before {
	content: "\e65d";
}
.ti-arrow-circle-left:before {
	content: "\e65e";
}
.ti-arrow-circle-down:before {
	content: "\e65f";
}
.ti-angle-double-up:before {
	content: "\e660";
}
.ti-angle-double-right:before {
	content: "\e661";
}
.ti-angle-double-left:before {
	content: "\e662";
}
.ti-angle-double-down:before {
	content: "\e663";
}
.ti-zip:before {
	content: "\e664";
}
.ti-world:before {
	content: "\e665";
}
.ti-wheelchair:before {
	content: "\e666";
}
.ti-view-list:before {
	content: "\e667";
}
.ti-view-list-alt:before {
	content: "\e668";
}
.ti-view-grid:before {
	content: "\e669";
}
.ti-uppercase:before {
	content: "\e66a";
}
.ti-upload:before {
	content: "\e66b";
}
.ti-underline:before {
	content: "\e66c";
}
.ti-truck:before {
	content: "\e66d";
}
.ti-timer:before {
	content: "\e66e";
}
.ti-ticket:before {
	content: "\e66f";
}
.ti-thumb-up:before {
	content: "\e670";
}
.ti-thumb-down:before {
	content: "\e671";
}
.ti-text:before {
	content: "\e672";
}
.ti-stats-up:before {
	content: "\e673";
}
.ti-stats-down:before {
	content: "\e674";
}
.ti-split-v:before {
	content: "\e675";
}
.ti-split-h:before {
	content: "\e676";
}
.ti-smallcap:before {
	content: "\e677";
}
.ti-shine:before {
	content: "\e678";
}
.ti-shift-right:before {
	content: "\e679";
}
.ti-shift-left:before {
	content: "\e67a";
}
.ti-shield:before {
	content: "\e67b";
}
.ti-notepad:before {
	content: "\e67c";
}
.ti-server:before {
	content: "\e67d";
}
.ti-quote-right:before {
	content: "\e67e";
}
.ti-quote-left:before {
	content: "\e67f";
}
.ti-pulse:before {
	content: "\e680";
}
.ti-printer:before {
	content: "\e681";
}
.ti-power-off:before {
	content: "\e682";
}
.ti-plug:before {
	content: "\e683";
}
.ti-pie-chart:before {
	content: "\e684";
}
.ti-paragraph:before {
	content: "\e685";
}
.ti-panel:before {
	content: "\e686";
}
.ti-package:before {
	content: "\e687";
}
.ti-music:before {
	content: "\e688";
}
.ti-music-alt:before {
	content: "\e689";
}
.ti-mouse:before {
	content: "\e68a";
}
.ti-mouse-alt:before {
	content: "\e68b";
}
.ti-money:before {
	content: "\e68c";
}
.ti-microphone:before {
	content: "\e68d";
}
.ti-menu:before {
	content: "\e68e";
}
.ti-menu-alt:before {
	content: "\e68f";
}
.ti-map:before {
	content: "\e690";
}
.ti-map-alt:before {
	content: "\e691";
}
.ti-loop:before {
	content: "\e692";
}
.ti-location-pin:before {
	content: "\e693";
}
.ti-list:before {
	content: "\e694";
}
.ti-light-bulb:before {
	content: "\e695";
}
.ti-Italic:before {
	content: "\e696";
}
.ti-info:before {
	content: "\e697";
}
.ti-infinite:before {
	content: "\e698";
}
.ti-id-badge:before {
	content: "\e699";
}
.ti-hummer:before {
	content: "\e69a";
}
.ti-home:before {
	content: "\e69b";
}
.ti-help:before {
	content: "\e69c";
}
.ti-headphone:before {
	content: "\e69d";
}
.ti-harddrives:before {
	content: "\e69e";
}
.ti-harddrive:before {
	content: "\e69f";
}
.ti-gift:before {
	content: "\e6a0";
}
.ti-game:before {
	content: "\e6a1";
}
.ti-filter:before {
	content: "\e6a2";
}
.ti-files:before {
	content: "\e6a3";
}
.ti-file:before {
	content: "\e6a4";
}
.ti-eraser:before {
	content: "\e6a5";
}
.ti-envelope:before {
	content: "\e6a6";
}
.ti-download:before {
	content: "\e6a7";
}
.ti-direction:before {
	content: "\e6a8";
}
.ti-direction-alt:before {
	content: "\e6a9";
}
.ti-dashboard:before {
	content: "\e6aa";
}
.ti-control-stop:before {
	content: "\e6ab";
}
.ti-control-shuffle:before {
	content: "\e6ac";
}
.ti-control-play:before {
	content: "\e6ad";
}
.ti-control-pause:before {
	content: "\e6ae";
}
.ti-control-forward:before {
	content: "\e6af";
}
.ti-control-backward:before {
	content: "\e6b0";
}
.ti-cloud:before {
	content: "\e6b1";
}
.ti-cloud-up:before {
	content: "\e6b2";
}
.ti-cloud-down:before {
	content: "\e6b3";
}
.ti-clipboard:before {
	content: "\e6b4";
}
.ti-car:before {
	content: "\e6b5";
}
.ti-calendar:before {
	content: "\e6b6";
}
.ti-book:before {
	content: "\e6b7";
}
.ti-bell:before {
	content: "\e6b8";
}
.ti-basketball:before {
	content: "\e6b9";
}
.ti-bar-chart:before {
	content: "\e6ba";
}
.ti-bar-chart-alt:before {
	content: "\e6bb";
}
.ti-back-right:before {
	content: "\e6bc";
}
.ti-back-left:before {
	content: "\e6bd";
}
.ti-arrows-corner:before {
	content: "\e6be";
}
.ti-archive:before {
	content: "\e6bf";
}
.ti-anchor:before {
	content: "\e6c0";
}
.ti-align-right:before {
	content: "\e6c1";
}
.ti-align-left:before {
	content: "\e6c2";
}
.ti-align-justify:before {
	content: "\e6c3";
}
.ti-align-center:before {
	content: "\e6c4";
}
.ti-alert:before {
	content: "\e6c5";
}
.ti-alarm-clock:before {
	content: "\e6c6";
}
.ti-agenda:before {
	content: "\e6c7";
}
.ti-write:before {
	content: "\e6c8";
}
.ti-window:before {
	content: "\e6c9";
}
.ti-widgetized:before {
	content: "\e6ca";
}
.ti-widget:before {
	content: "\e6cb";
}
.ti-widget-alt:before {
	content: "\e6cc";
}
.ti-wallet:before {
	content: "\e6cd";
}
.ti-video-clapper:before {
	content: "\e6ce";
}
.ti-video-camera:before {
	content: "\e6cf";
}
.ti-vector:before {
	content: "\e6d0";
}
.ti-themify-logo:before {
	content: "\e6d1";
}
.ti-themify-favicon:before {
	content: "\e6d2";
}
.ti-themify-favicon-alt:before {
	content: "\e6d3";
}
.ti-support:before {
	content: "\e6d4";
}
.ti-stamp:before {
	content: "\e6d5";
}
.ti-split-v-alt:before {
	content: "\e6d6";
}
.ti-slice:before {
	content: "\e6d7";
}
.ti-shortcode:before {
	content: "\e6d8";
}
.ti-shift-right-alt:before {
	content: "\e6d9";
}
.ti-shift-left-alt:before {
	content: "\e6da";
}
.ti-ruler-alt-2:before {
	content: "\e6db";
}
.ti-receipt:before {
	content: "\e6dc";
}
.ti-pin2:before {
	content: "\e6dd";
}
.ti-pin-alt:before {
	content: "\e6de";
}
.ti-pencil-alt2:before {
	content: "\e6df";
}
.ti-palette:before {
	content: "\e6e0";
}
.ti-more:before {
	content: "\e6e1";
}
.ti-more-alt:before {
	content: "\e6e2";
}
.ti-microphone-alt:before {
	content: "\e6e3";
}
.ti-magnet:before {
	content: "\e6e4";
}
.ti-line-double:before {
	content: "\e6e5";
}
.ti-line-dotted:before {
	content: "\e6e6";
}
.ti-line-dashed:before {
	content: "\e6e7";
}
.ti-layout-width-full:before {
	content: "\e6e8";
}
.ti-layout-width-default:before {
	content: "\e6e9";
}
.ti-layout-width-default-alt:before {
	content: "\e6ea";
}
.ti-layout-tab:before {
	content: "\e6eb";
}
.ti-layout-tab-window:before {
	content: "\e6ec";
}
.ti-layout-tab-v:before {
	content: "\e6ed";
}
.ti-layout-tab-min:before {
	content: "\e6ee";
}
.ti-layout-slider:before {
	content: "\e6ef";
}
.ti-layout-slider-alt:before {
	content: "\e6f0";
}
.ti-layout-sidebar-right:before {
	content: "\e6f1";
}
.ti-layout-sidebar-none:before {
	content: "\e6f2";
}
.ti-layout-sidebar-left:before {
	content: "\e6f3";
}
.ti-layout-placeholder:before {
	content: "\e6f4";
}
.ti-layout-menu:before {
	content: "\e6f5";
}
.ti-layout-menu-v:before {
	content: "\e6f6";
}
.ti-layout-menu-separated:before {
	content: "\e6f7";
}
.ti-layout-menu-full:before {
	content: "\e6f8";
}
.ti-layout-media-right-alt:before {
	content: "\e6f9";
}
.ti-layout-media-right:before {
	content: "\e6fa";
}
.ti-layout-media-overlay:before {
	content: "\e6fb";
}
.ti-layout-media-overlay-alt:before {
	content: "\e6fc";
}
.ti-layout-media-overlay-alt-2:before {
	content: "\e6fd";
}
.ti-layout-media-left-alt:before {
	content: "\e6fe";
}
.ti-layout-media-left:before {
	content: "\e6ff";
}
.ti-layout-media-center-alt:before {
	content: "\e700";
}
.ti-layout-media-center:before {
	content: "\e701";
}
.ti-layout-list-thumb:before {
	content: "\e702";
}
.ti-layout-list-thumb-alt:before {
	content: "\e703";
}
.ti-layout-list-post:before {
	content: "\e704";
}
.ti-layout-list-large-image:before {
	content: "\e705";
}
.ti-layout-line-solid:before {
	content: "\e706";
}
.ti-layout-grid4:before {
	content: "\e707";
}
.ti-layout-grid3:before {
	content: "\e708";
}
.ti-layout-grid2:before {
	content: "\e709";
}
.ti-layout-grid2-thumb:before {
	content: "\e70a";
}
.ti-layout-cta-right:before {
	content: "\e70b";
}
.ti-layout-cta-left:before {
	content: "\e70c";
}
.ti-layout-cta-center:before {
	content: "\e70d";
}
.ti-layout-cta-btn-right:before {
	content: "\e70e";
}
.ti-layout-cta-btn-left:before {
	content: "\e70f";
}
.ti-layout-column4:before {
	content: "\e710";
}
.ti-layout-column3:before {
	content: "\e711";
}
.ti-layout-column2:before {
	content: "\e712";
}
.ti-layout-accordion-separated:before {
	content: "\e713";
}
.ti-layout-accordion-merged:before {
	content: "\e714";
}
.ti-layout-accordion-list:before {
	content: "\e715";
}
.ti-ink-pen:before {
	content: "\e716";
}
.ti-info-alt:before {
	content: "\e717";
}
.ti-help-alt:before {
	content: "\e718";
}
.ti-headphone-alt:before {
	content: "\e719";
}
.ti-hand-point-up:before {
	content: "\e71a";
}
.ti-hand-point-right:before {
	content: "\e71b";
}
.ti-hand-point-left:before {
	content: "\e71c";
}
.ti-hand-point-down:before {
	content: "\e71d";
}
.ti-gallery:before {
	content: "\e71e";
}
.ti-face-smile:before {
	content: "\e71f";
}
.ti-face-sad:before {
	content: "\e720";
}
.ti-credit-card:before {
	content: "\e721";
}
.ti-control-skip-forward:before {
	content: "\e722";
}
.ti-control-skip-backward:before {
	content: "\e723";
}
.ti-control-record:before {
	content: "\e724";
}
.ti-control-eject:before {
	content: "\e725";
}
.ti-comments-smiley:before {
	content: "\e726";
}
.ti-brush-alt:before {
	content: "\e727";
}
.ti-youtube:before {
	content: "\e728";
}
.ti-vimeo:before {
	content: "\e729";
}
.ti-twitter:before {
	content: "\e72a";
}
.ti-time:before {
	content: "\e72b";
}
.ti-tumblr:before {
	content: "\e72c";
}
.ti-skype:before {
	content: "\e72d";
}
.ti-share:before {
	content: "\e72e";
}
.ti-share-alt:before {
	content: "\e72f";
}
.ti-rocket:before {
	content: "\e730";
}
.ti-pinterest:before {
	content: "\e731";
}
.ti-new-window:before {
	content: "\e732";
}
.ti-microsoft:before {
	content: "\e733";
}
.ti-list-ol:before {
	content: "\e734";
}
.ti-linkedin:before {
	content: "\e735";
}
.ti-layout-sidebar-2:before {
	content: "\e736";
}
.ti-layout-grid4-alt:before {
	content: "\e737";
}
.ti-layout-grid3-alt:before {
	content: "\e738";
}
.ti-layout-grid2-alt:before {
	content: "\e739";
}
.ti-layout-column4-alt:before {
	content: "\e73a";
}
.ti-layout-column3-alt:before {
	content: "\e73b";
}
.ti-layout-column2-alt:before {
	content: "\e73c";
}
.ti-instagram:before {
	content: "\e73d";
}
.ti-google:before {
	content: "\e73e";
}
.ti-github:before {
	content: "\e73f";
}
.ti-flickr:before {
	content: "\e740";
}
.ti-facebook:before {
	content: "\e741";
}
.ti-dropbox:before {
	content: "\e742";
}
.ti-dribbble:before {
	content: "\e743";
}
.ti-apple:before {
	content: "\e744";
}
.ti-android:before {
	content: "\e745";
}
.ti-save:before {
	content: "\e746";
}
.ti-save-alt:before {
	content: "\e747";
}
.ti-yahoo:before {
	content: "\e748";
}
.ti-wordpress:before {
	content: "\e749";
}
.ti-vimeo-alt:before {
	content: "\e74a";
}
.ti-twitter-alt:before {
	content: "\e74b";
}
.ti-tumblr-alt:before {
	content: "\e74c";
}
.ti-trello:before {
	content: "\e74d";
}
.ti-stack-overflow:before {
	content: "\e74e";
}
.ti-soundcloud:before {
	content: "\e74f";
}
.ti-sharethis:before {
	content: "\e750";
}
.ti-sharethis-alt:before {
	content: "\e751";
}
.ti-reddit:before {
	content: "\e752";
}
.ti-pinterest-alt:before {
	content: "\e753";
}
.ti-microsoft-alt:before {
	content: "\e754";
}
.ti-linux:before {
	content: "\e755";
}
.ti-jsfiddle:before {
	content: "\e756";
}
.ti-joomla:before {
	content: "\e757";
}
.ti-html5:before {
	content: "\e758";
}
.ti-flickr-alt:before {
	content: "\e759";
}
.ti-email:before {
	content: "\e75a";
}
.ti-drupal:before {
	content: "\e75b";
}
.ti-dropbox-alt:before {
	content: "\e75c";
}
.ti-css3:before {
	content: "\e75d";
}
.ti-rss:before {
	content: "\e75e";
}
.ti-rss-alt:before {
	content: "\e75f";
}
@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated{animation-duration:1s;animation-fill-mode:both}
.animated.infinite{animation-iteration-count:infinite}
.animated.hinge{animation-duration:2s}
.animated.flipOutX,.animated.flipOutY,.animated.bounceIn,.animated.bounceOut{animation-duration:.75s}
@keyframes bounce{from,20%,53%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1.000);transform:translate3d(0,0,0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0)}90%{transform:translate3d(0,-4px,0)}}
.bounce{animation-name:bounce;transform-origin:center bottom}
@keyframes flash{from,50%,to{opacity:1}25%,75%{opacity:0}}
.flash{animation-name:flash}
@keyframes pulse{from{transform:scale3d(1,1,1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scale3d(1,1,1)}}
.pulse{animation-name:pulse}
@keyframes rubberBand{from{transform:scale3d(1,1,1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}to{transform:scale3d(1,1,1)}}
.rubberBand{animation-name:rubberBand}
@keyframes shake{from,to{transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}
.shake{animation-name:shake}
@keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}
.headShake{animation-timing-function:ease-in-out;animation-name:headShake}
@keyframes swing{20%{transform:rotate3d(0,0,1,15deg)}40%{transform:rotate3d(0,0,1,-10deg)}60%{transform:rotate3d(0,0,1,5deg)}80%{transform:rotate3d(0,0,1,-5deg)}to{transform:rotate3d(0,0,1,0deg)}}
.swing{transform-origin:top center;animation-name:swing}
@keyframes tada{from{transform:scale3d(1,1,1)}10%,20%{transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}to{transform:scale3d(1,1,1)}}
.tada{animation-name:tada}
@keyframes wobble{from{transform:none}15%{transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}to{transform:none}}
.wobble{animation-name:wobble}
@keyframes jello{from,11.1%,to{transform:none}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.1953125deg)}}
.jello{animation-name:jello;transform-origin:center}
@keyframes bounceIn{from,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1.000)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scale3d(1,1,1)}}
.bounceIn{animation-name:bounceIn}
@keyframes bounceInDown{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1.000)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}
.bounceInDown{animation-name:bounceInDown}
@keyframes bounceInLeft{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1.000)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}
.bounceInLeft{animation-name:bounceInLeft}
@keyframes bounceInRight{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1.000)}from{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}
.bounceInRight{animation-name:bounceInRight}
@keyframes bounceInUp{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1.000)}from{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translate3d(0,0,0)}}
.bounceInUp{animation-name:bounceInUp}
@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}
.bounceOut{animation-name:bounceOut}
@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}
.bounceOutDown{animation-name:bounceOutDown}
@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}
.bounceOutLeft{animation-name:bounceOutLeft}
@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}
.bounceOutRight{animation-name:bounceOutRight}
@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}
.bounceOutUp{animation-name:bounceOutUp}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.fadeIn{animation-name:fadeIn}
@keyframes fadeInDown{from{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:none}}
.fadeInDown{animation-name:fadeInDown}
@keyframes fadeInDownBig{from{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:none}}
.fadeInDownBig{animation-name:fadeInDownBig}
@keyframes fadeInLeft{from{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:none}}
.fadeInLeft{animation-name:fadeInLeft}
@keyframes fadeInLeftBig{from{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:none}}
.fadeInLeftBig{animation-name:fadeInLeftBig}
@keyframes fadeInRight{from{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:none}}
.fadeInRight{animation-name:fadeInRight}
@keyframes fadeInRightBig{from{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:none}}
.fadeInRightBig{animation-name:fadeInRightBig}
@keyframes fadeInUp{from{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:none}}
.fadeInUp{animation-name:fadeInUp}
@keyframes fadeInUpBig{from{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:none}}
.fadeInUpBig{animation-name:fadeInUpBig}
@keyframes fadeOut{from{opacity:1}to{opacity:0}}
.fadeOut{animation-name:fadeOut}
@keyframes fadeOutDown{from{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}
.fadeOutDown{animation-name:fadeOutDown}
@keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}
.fadeOutDownBig{animation-name:fadeOutDownBig}
@keyframes fadeOutLeft{from{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}
.fadeOutLeft{animation-name:fadeOutLeft}
@keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}
.fadeOutLeftBig{animation-name:fadeOutLeftBig}
@keyframes fadeOutRight{from{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}
.fadeOutRight{animation-name:fadeOutRight}
@keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}
.fadeOutRightBig{animation-name:fadeOutRightBig}
@keyframes fadeOutUp{from{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}
.fadeOutUp{animation-name:fadeOutUp}
@keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}
.fadeOutUpBig{animation-name:fadeOutUpBig}
@keyframes flip{from{transform:perspective(400px) rotate3d(0,1,0,-360deg);animation-timing-function:ease-out}40%{transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95);animation-timing-function:ease-in}to{transform:perspective(400px);animation-timing-function:ease-in}}
.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation-name:flip}
@keyframes flipInX{from{transform:perspective(400px) rotate3d(1,0,0,90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotate3d(1,0,0,-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{transform:perspective(400px)}}
.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipInX}
@keyframes flipInY{from{transform:perspective(400px) rotate3d(0,1,0,90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotate3d(0,1,0,-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{transform:perspective(400px)}}
.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipInY}
@keyframes flipOutX{from{transform:perspective(400px)}30%{transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}
.flipOutX{animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
@keyframes flipOutY{from{transform:perspective(400px)}30%{transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}
.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipOutY}
@keyframes lightSpeedIn{from{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg);opacity:1}to{transform:none;opacity:1}}
.lightSpeedIn{animation-name:lightSpeedIn;animation-timing-function:ease-out}
@keyframes lightSpeedOut{from{opacity:1}to{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}
.lightSpeedOut{animation-name:lightSpeedOut;animation-timing-function:ease-in}
@keyframes rotateIn{from{transform-origin:center;transform:rotate3d(0,0,1,-200deg);opacity:0}to{transform-origin:center;transform:none;opacity:1}}
.rotateIn{animation-name:rotateIn}
@keyframes rotateInDownLeft{from{transform-origin:left bottom;transform:rotate3d(0,0,1,-45deg);opacity:0}to{transform-origin:left bottom;transform:none;opacity:1}}
.rotateInDownLeft{animation-name:rotateInDownLeft}
@keyframes rotateInDownRight{from{transform-origin:right bottom;transform:rotate3d(0,0,1,45deg);opacity:0}to{transform-origin:right bottom;transform:none;opacity:1}}
.rotateInDownRight{animation-name:rotateInDownRight}
@keyframes rotateInUpLeft{from{transform-origin:left bottom;transform:rotate3d(0,0,1,45deg);opacity:0}to{transform-origin:left bottom;transform:none;opacity:1}}
.rotateInUpLeft{animation-name:rotateInUpLeft}
@keyframes rotateInUpRight{from{transform-origin:right bottom;transform:rotate3d(0,0,1,-90deg);opacity:0}to{transform-origin:right bottom;transform:none;opacity:1}}
.rotateInUpRight{animation-name:rotateInUpRight}
@keyframes rotateOut{from{transform-origin:center;opacity:1}to{transform-origin:center;transform:rotate3d(0,0,1,200deg);opacity:0}}
.rotateOut{animation-name:rotateOut}
@keyframes rotateOutDownLeft{from{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate3d(0,0,1,45deg);opacity:0}}
.rotateOutDownLeft{animation-name:rotateOutDownLeft}
@keyframes rotateOutDownRight{from{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate3d(0,0,1,-45deg);opacity:0}}
.rotateOutDownRight{animation-name:rotateOutDownRight}
@keyframes rotateOutUpLeft{from{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate3d(0,0,1,-45deg);opacity:0}}
.rotateOutUpLeft{animation-name:rotateOutUpLeft}
@keyframes rotateOutUpRight{from{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate3d(0,0,1,90deg);opacity:0}}
.rotateOutUpRight{animation-name:rotateOutUpRight}
@keyframes hinge{0%{transform-origin:top left;animation-timing-function:ease-in-out}20%,60%{transform:rotate3d(0,0,1,80deg);transform-origin:top left;animation-timing-function:ease-in-out}40%,80%{transform:rotate3d(0,0,1,60deg);transform-origin:top left;animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0,700px,0);opacity:0}}
.hinge{animation-name:hinge}
@keyframes rollIn{from{opacity:0;transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;transform:none}}
.rollIn{animation-name:rollIn}
@keyframes rollOut{from{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}
.rollOut{animation-name:rollOut}
@keyframes zoomIn{from{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}
.zoomIn{animation-name:zoomIn}
@keyframes zoomInDown{from{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}
.zoomInDown{animation-name:zoomInDown}
@keyframes zoomInLeft{from{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}
.zoomInLeft{animation-name:zoomInLeft}
@keyframes zoomInRight{from{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}
.zoomInRight{animation-name:zoomInRight}
@keyframes zoomInUp{from{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}
.zoomInUp{animation-name:zoomInUp}
@keyframes zoomOut{from{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}
.zoomOut{animation-name:zoomOut}
@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}
.zoomOutDown{animation-name:zoomOutDown}
@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}
.zoomOutLeft{animation-name:zoomOutLeft}
@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}
.zoomOutRight{animation-name:zoomOutRight}
@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}
.zoomOutUp{animation-name:zoomOutUp}
@keyframes slideInDown{from{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translate3d(0,0,0)}}
.slideInDown{animation-name:slideInDown}
@keyframes slideInLeft{from{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translate3d(0,0,0)}}
.slideInLeft{animation-name:slideInLeft}
@keyframes slideInRight{from{transform:translate3d(100%,0,0);visibility:visible}to{transform:translate3d(0,0,0)}}
.slideInRight{animation-name:slideInRight}
@keyframes slideInUp{from{transform:translate3d(0,100%,0);visibility:visible}to{transform:translate3d(0,0,0)}}
.slideInUp{animation-name:slideInUp}
@keyframes slideOutDown{from{transform:translate3d(0,0,0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}
.slideOutDown{animation-name:slideOutDown}
@keyframes slideOutLeft{from{transform:translate3d(0,0,0)}to{visibility:hidden;transform:translate3d(-100%,0,0)}}
.slideOutLeft{animation-name:slideOutLeft}
@keyframes slideOutRight{from{transform:translate3d(0,0,0)}to{visibility:hidden;transform:translate3d(100%,0,0)}}
.slideOutRight{animation-name:slideOutRight}
@keyframes slideOutUp{from{transform:translate3d(0,0,0)}to{visibility:hidden;transform:translate3d(0,-100%,0)}}
.slideOutUp{animation-name:slideOutUp}
/* MaterialDesignIcons.com */
@font-face{font-family:"Material Design Icons";src:url('materialdesignicons-webfont.eot?v=1.8.36');src:url('materialdesignicons-webfont.eot?#iefix&v=1.8.36') format("embedded-opentype"),url('materialdesignicons-webfont.woff2?v=1.8.36') format("woff2"),url('materialdesignicons-webfont.woff?v=1.8.36') format("woff"),url('materialdesignicons-webfont.ttf?v=1.8.36') format("truetype"),url('materialdesignicons-webfont.svg?v=1.8.36#materialdesigniconsregular') format("svg");font-weight:normal;font-style:normal}
.mdi:before,.mdi-set{display:inline-block;font:normal normal normal 24px/1 "Material Design Icons";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}
.mdi-access-point:before{content:"\F002"}
.mdi-access-point-network:before{content:"\F003"}
.mdi-account:before{content:"\F004"}
.mdi-account-alert:before{content:"\F005"}
.mdi-account-box:before{content:"\F006"}
.mdi-account-box-outline:before{content:"\F007"}
.mdi-account-card-details:before{content:"\F5D2"}
.mdi-account-check:before{content:"\F008"}
.mdi-account-circle:before{content:"\F009"}
.mdi-account-convert:before{content:"\F00A"}
.mdi-account-edit:before{content:"\F6BB"}
.mdi-account-key:before{content:"\F00B"}
.mdi-account-location:before{content:"\F00C"}
.mdi-account-minus:before{content:"\F00D"}
.mdi-account-multiple:before{content:"\F00E"}
.mdi-account-multiple-minus:before{content:"\F5D3"}
.mdi-account-multiple-outline:before{content:"\F00F"}
.mdi-account-multiple-plus:before{content:"\F010"}
.mdi-account-network:before{content:"\F011"}
.mdi-account-off:before{content:"\F012"}
.mdi-account-outline:before{content:"\F013"}
.mdi-account-plus:before{content:"\F014"}
.mdi-account-remove:before{content:"\F015"}
.mdi-account-search:before{content:"\F016"}
.mdi-account-settings:before{content:"\F630"}
.mdi-account-settings-variant:before{content:"\F631"}
.mdi-account-star:before{content:"\F017"}
.mdi-account-star-variant:before{content:"\F018"}
.mdi-account-switch:before{content:"\F019"}
.mdi-adjust:before{content:"\F01A"}
.mdi-air-conditioner:before{content:"\F01B"}
.mdi-airballoon:before{content:"\F01C"}
.mdi-airplane:before{content:"\F01D"}
.mdi-airplane-landing:before{content:"\F5D4"}
.mdi-airplane-off:before{content:"\F01E"}
.mdi-airplane-takeoff:before{content:"\F5D5"}
.mdi-airplay:before{content:"\F01F"}
.mdi-alarm:before{content:"\F020"}
.mdi-alarm-check:before{content:"\F021"}
.mdi-alarm-multiple:before{content:"\F022"}
.mdi-alarm-off:before{content:"\F023"}
.mdi-alarm-plus:before{content:"\F024"}
.mdi-alarm-snooze:before{content:"\F68D"}
.mdi-album:before{content:"\F025"}
.mdi-alert:before{content:"\F026"}
.mdi-alert-box:before{content:"\F027"}
.mdi-alert-circle:before{content:"\F028"}
.mdi-alert-circle-outline:before{content:"\F5D6"}
.mdi-alert-octagon:before{content:"\F029"}
.mdi-alert-octagram:before{content:"\F6BC"}
.mdi-alert-outline:before{content:"\F02A"}
.mdi-all-inclusive:before{content:"\F6BD"}
.mdi-alpha:before{content:"\F02B"}
.mdi-alphabetical:before{content:"\F02C"}
.mdi-altimeter:before{content:"\F5D7"}
.mdi-amazon:before{content:"\F02D"}
.mdi-amazon-clouddrive:before{content:"\F02E"}
.mdi-ambulance:before{content:"\F02F"}
.mdi-amplifier:before{content:"\F030"}
.mdi-anchor:before{content:"\F031"}
.mdi-android:before{content:"\F032"}
.mdi-android-debug-bridge:before{content:"\F033"}
.mdi-android-studio:before{content:"\F034"}
.mdi-angular:before{content:"\F6B1"}
.mdi-angularjs:before{content:"\F6BE"}
.mdi-animation:before{content:"\F5D8"}
.mdi-apple:before{content:"\F035"}
.mdi-apple-finder:before{content:"\F036"}
.mdi-apple-ios:before{content:"\F037"}
.mdi-apple-keyboard-caps:before{content:"\F632"}
.mdi-apple-keyboard-command:before{content:"\F633"}
.mdi-apple-keyboard-control:before{content:"\F634"}
.mdi-apple-keyboard-option:before{content:"\F635"}
.mdi-apple-keyboard-shift:before{content:"\F636"}
.mdi-apple-mobileme:before{content:"\F038"}
.mdi-apple-safari:before{content:"\F039"}
.mdi-application:before{content:"\F614"}
.mdi-apps:before{content:"\F03B"}
.mdi-archive:before{content:"\F03C"}
.mdi-arrange-bring-forward:before{content:"\F03D"}
.mdi-arrange-bring-to-front:before{content:"\F03E"}
.mdi-arrange-send-backward:before{content:"\F03F"}
.mdi-arrange-send-to-back:before{content:"\F040"}
.mdi-arrow-all:before{content:"\F041"}
.mdi-arrow-bottom-left:before{content:"\F042"}
.mdi-arrow-bottom-right:before{content:"\F043"}
.mdi-arrow-compress:before{content:"\F615"}
.mdi-arrow-compress-all:before{content:"\F044"}
.mdi-arrow-down:before{content:"\F045"}
.mdi-arrow-down-bold:before{content:"\F046"}
.mdi-arrow-down-bold-circle:before{content:"\F047"}
.mdi-arrow-down-bold-circle-outline:before{content:"\F048"}
.mdi-arrow-down-bold-hexagon-outline:before{content:"\F049"}
.mdi-arrow-down-box:before{content:"\F6BF"}
.mdi-arrow-down-drop-circle:before{content:"\F04A"}
.mdi-arrow-down-drop-circle-outline:before{content:"\F04B"}
.mdi-arrow-expand:before{content:"\F616"}
.mdi-arrow-expand-all:before{content:"\F04C"}
.mdi-arrow-left:before{content:"\F04D"}
.mdi-arrow-left-bold:before{content:"\F04E"}
.mdi-arrow-left-bold-circle:before{content:"\F04F"}
.mdi-arrow-left-bold-circle-outline:before{content:"\F050"}
.mdi-arrow-left-bold-hexagon-outline:before{content:"\F051"}
.mdi-arrow-left-box:before{content:"\F6C0"}
.mdi-arrow-left-drop-circle:before{content:"\F052"}
.mdi-arrow-left-drop-circle-outline:before{content:"\F053"}
.mdi-arrow-right:before{content:"\F054"}
.mdi-arrow-right-bold:before{content:"\F055"}
.mdi-arrow-right-bold-circle:before{content:"\F056"}
.mdi-arrow-right-bold-circle-outline:before{content:"\F057"}
.mdi-arrow-right-bold-hexagon-outline:before{content:"\F058"}
.mdi-arrow-right-box:before{content:"\F6C1"}
.mdi-arrow-right-drop-circle:before{content:"\F059"}
.mdi-arrow-right-drop-circle-outline:before{content:"\F05A"}
.mdi-arrow-top-left:before{content:"\F05B"}
.mdi-arrow-top-right:before{content:"\F05C"}
.mdi-arrow-up:before{content:"\F05D"}
.mdi-arrow-up-bold:before{content:"\F05E"}
.mdi-arrow-up-bold-circle:before{content:"\F05F"}
.mdi-arrow-up-bold-circle-outline:before{content:"\F060"}
.mdi-arrow-up-bold-hexagon-outline:before{content:"\F061"}
.mdi-arrow-up-box:before{content:"\F6C2"}
.mdi-arrow-up-drop-circle:before{content:"\F062"}
.mdi-arrow-up-drop-circle-outline:before{content:"\F063"}
.mdi-assistant:before{content:"\F064"}
.mdi-asterisk:before{content:"\F6C3"}
.mdi-at:before{content:"\F065"}
.mdi-attachment:before{content:"\F066"}
.mdi-audiobook:before{content:"\F067"}
.mdi-auto-fix:before{content:"\F068"}
.mdi-auto-upload:before{content:"\F069"}
.mdi-autorenew:before{content:"\F06A"}
.mdi-av-timer:before{content:"\F06B"}
.mdi-baby:before{content:"\F06C"}
.mdi-baby-buggy:before{content:"\F68E"}
.mdi-backburger:before{content:"\F06D"}
.mdi-backspace:before{content:"\F06E"}
.mdi-backup-restore:before{content:"\F06F"}
.mdi-bandcamp:before{content:"\F674"}
.mdi-bank:before{content:"\F070"}
.mdi-barcode:before{content:"\F071"}
.mdi-barcode-scan:before{content:"\F072"}
.mdi-barley:before{content:"\F073"}
.mdi-barrel:before{content:"\F074"}
.mdi-basecamp:before{content:"\F075"}
.mdi-basket:before{content:"\F076"}
.mdi-basket-fill:before{content:"\F077"}
.mdi-basket-unfill:before{content:"\F078"}
.mdi-battery:before{content:"\F079"}
.mdi-battery-10:before{content:"\F07A"}
.mdi-battery-20:before{content:"\F07B"}
.mdi-battery-30:before{content:"\F07C"}
.mdi-battery-40:before{content:"\F07D"}
.mdi-battery-50:before{content:"\F07E"}
.mdi-battery-60:before{content:"\F07F"}
.mdi-battery-70:before{content:"\F080"}
.mdi-battery-80:before{content:"\F081"}
.mdi-battery-90:before{content:"\F082"}
.mdi-battery-alert:before{content:"\F083"}
.mdi-battery-charging:before{content:"\F084"}
.mdi-battery-charging-100:before{content:"\F085"}
.mdi-battery-charging-20:before{content:"\F086"}
.mdi-battery-charging-30:before{content:"\F087"}
.mdi-battery-charging-40:before{content:"\F088"}
.mdi-battery-charging-60:before{content:"\F089"}
.mdi-battery-charging-80:before{content:"\F08A"}
.mdi-battery-charging-90:before{content:"\F08B"}
.mdi-battery-minus:before{content:"\F08C"}
.mdi-battery-negative:before{content:"\F08D"}
.mdi-battery-outline:before{content:"\F08E"}
.mdi-battery-plus:before{content:"\F08F"}
.mdi-battery-positive:before{content:"\F090"}
.mdi-battery-unknown:before{content:"\F091"}
.mdi-beach:before{content:"\F092"}
.mdi-beaker:before{content:"\F68F"}
.mdi-beats:before{content:"\F097"}
.mdi-beer:before{content:"\F098"}
.mdi-behance:before{content:"\F099"}
.mdi-bell:before{content:"\F09A"}
.mdi-bell-off:before{content:"\F09B"}
.mdi-bell-outline:before{content:"\F09C"}
.mdi-bell-plus:before{content:"\F09D"}
.mdi-bell-ring:before{content:"\F09E"}
.mdi-bell-ring-outline:before{content:"\F09F"}
.mdi-bell-sleep:before{content:"\F0A0"}
.mdi-beta:before{content:"\F0A1"}
.mdi-bible:before{content:"\F0A2"}
.mdi-bike:before{content:"\F0A3"}
.mdi-bing:before{content:"\F0A4"}
.mdi-binoculars:before{content:"\F0A5"}
.mdi-bio:before{content:"\F0A6"}
.mdi-biohazard:before{content:"\F0A7"}
.mdi-bitbucket:before{content:"\F0A8"}
.mdi-black-mesa:before{content:"\F0A9"}
.mdi-blackberry:before{content:"\F0AA"}
.mdi-blender:before{content:"\F0AB"}
.mdi-blinds:before{content:"\F0AC"}
.mdi-block-helper:before{content:"\F0AD"}
.mdi-blogger:before{content:"\F0AE"}
.mdi-bluetooth:before{content:"\F0AF"}
.mdi-bluetooth-audio:before{content:"\F0B0"}
.mdi-bluetooth-connect:before{content:"\F0B1"}
.mdi-bluetooth-off:before{content:"\F0B2"}
.mdi-bluetooth-settings:before{content:"\F0B3"}
.mdi-bluetooth-transfer:before{content:"\F0B4"}
.mdi-blur:before{content:"\F0B5"}
.mdi-blur-linear:before{content:"\F0B6"}
.mdi-blur-off:before{content:"\F0B7"}
.mdi-blur-radial:before{content:"\F0B8"}
.mdi-bomb:before{content:"\F690"}
.mdi-bomb-off:before{content:"\F6C4"}
.mdi-bone:before{content:"\F0B9"}
.mdi-book:before{content:"\F0BA"}
.mdi-book-minus:before{content:"\F5D9"}
.mdi-book-multiple:before{content:"\F0BB"}
.mdi-book-multiple-variant:before{content:"\F0BC"}
.mdi-book-open:before{content:"\F0BD"}
.mdi-book-open-page-variant:before{content:"\F5DA"}
.mdi-book-open-variant:before{content:"\F0BE"}
.mdi-book-plus:before{content:"\F5DB"}
.mdi-book-variant:before{content:"\F0BF"}
.mdi-bookmark:before{content:"\F0C0"}
.mdi-bookmark-check:before{content:"\F0C1"}
.mdi-bookmark-music:before{content:"\F0C2"}
.mdi-bookmark-outline:before{content:"\F0C3"}
.mdi-bookmark-plus:before{content:"\F0C5"}
.mdi-bookmark-plus-outline:before{content:"\F0C4"}
.mdi-bookmark-remove:before{content:"\F0C6"}
.mdi-boombox:before{content:"\F5DC"}
.mdi-bootstrap:before{content:"\F6C5"}
.mdi-border-all:before{content:"\F0C7"}
.mdi-border-bottom:before{content:"\F0C8"}
.mdi-border-color:before{content:"\F0C9"}
.mdi-border-horizontal:before{content:"\F0CA"}
.mdi-border-inside:before{content:"\F0CB"}
.mdi-border-left:before{content:"\F0CC"}
.mdi-border-none:before{content:"\F0CD"}
.mdi-border-outside:before{content:"\F0CE"}
.mdi-border-right:before{content:"\F0CF"}
.mdi-border-style:before{content:"\F0D0"}
.mdi-border-top:before{content:"\F0D1"}
.mdi-border-vertical:before{content:"\F0D2"}
.mdi-bow-tie:before{content:"\F677"}
.mdi-bowl:before{content:"\F617"}
.mdi-bowling:before{content:"\F0D3"}
.mdi-box:before{content:"\F0D4"}
.mdi-box-cutter:before{content:"\F0D5"}
.mdi-box-shadow:before{content:"\F637"}
.mdi-bridge:before{content:"\F618"}
.mdi-briefcase:before{content:"\F0D6"}
.mdi-briefcase-check:before{content:"\F0D7"}
.mdi-briefcase-download:before{content:"\F0D8"}
.mdi-briefcase-upload:before{content:"\F0D9"}
.mdi-brightness-1:before{content:"\F0DA"}
.mdi-brightness-2:before{content:"\F0DB"}
.mdi-brightness-3:before{content:"\F0DC"}
.mdi-brightness-4:before{content:"\F0DD"}
.mdi-brightness-5:before{content:"\F0DE"}
.mdi-brightness-6:before{content:"\F0DF"}
.mdi-brightness-7:before{content:"\F0E0"}
.mdi-brightness-auto:before{content:"\F0E1"}
.mdi-broom:before{content:"\F0E2"}
.mdi-brush:before{content:"\F0E3"}
.mdi-buffer:before{content:"\F619"}
.mdi-bug:before{content:"\F0E4"}
.mdi-bulletin-board:before{content:"\F0E5"}
.mdi-bullhorn:before{content:"\F0E6"}
.mdi-bullseye:before{content:"\F5DD"}
.mdi-burst-mode:before{content:"\F5DE"}
.mdi-bus:before{content:"\F0E7"}
.mdi-cached:before{content:"\F0E8"}
.mdi-cake:before{content:"\F0E9"}
.mdi-cake-layered:before{content:"\F0EA"}
.mdi-cake-variant:before{content:"\F0EB"}
.mdi-calculator:before{content:"\F0EC"}
.mdi-calendar:before{content:"\F0ED"}
.mdi-calendar-blank:before{content:"\F0EE"}
.mdi-calendar-check:before{content:"\F0EF"}
.mdi-calendar-clock:before{content:"\F0F0"}
.mdi-calendar-multiple:before{content:"\F0F1"}
.mdi-calendar-multiple-check:before{content:"\F0F2"}
.mdi-calendar-plus:before{content:"\F0F3"}
.mdi-calendar-question:before{content:"\F691"}
.mdi-calendar-range:before{content:"\F678"}
.mdi-calendar-remove:before{content:"\F0F4"}
.mdi-calendar-text:before{content:"\F0F5"}
.mdi-calendar-today:before{content:"\F0F6"}
.mdi-call-made:before{content:"\F0F7"}
.mdi-call-merge:before{content:"\F0F8"}
.mdi-call-missed:before{content:"\F0F9"}
.mdi-call-received:before{content:"\F0FA"}
.mdi-call-split:before{content:"\F0FB"}
.mdi-camcorder:before{content:"\F0FC"}
.mdi-camcorder-box:before{content:"\F0FD"}
.mdi-camcorder-box-off:before{content:"\F0FE"}
.mdi-camcorder-off:before{content:"\F0FF"}
.mdi-camera:before{content:"\F100"}
.mdi-camera-burst:before{content:"\F692"}
.mdi-camera-enhance:before{content:"\F101"}
.mdi-camera-front:before{content:"\F102"}
.mdi-camera-front-variant:before{content:"\F103"}
.mdi-camera-iris:before{content:"\F104"}
.mdi-camera-off:before{content:"\F5DF"}
.mdi-camera-party-mode:before{content:"\F105"}
.mdi-camera-rear:before{content:"\F106"}
.mdi-camera-rear-variant:before{content:"\F107"}
.mdi-camera-switch:before{content:"\F108"}
.mdi-camera-timer:before{content:"\F109"}
.mdi-candle:before{content:"\F5E2"}
.mdi-candycane:before{content:"\F10A"}
.mdi-car:before{content:"\F10B"}
.mdi-car-battery:before{content:"\F10C"}
.mdi-car-connected:before{content:"\F10D"}
.mdi-car-wash:before{content:"\F10E"}
.mdi-cards:before{content:"\F638"}
.mdi-cards-outline:before{content:"\F639"}
.mdi-cards-playing-outline:before{content:"\F63A"}
.mdi-cards-variant:before{content:"\F6C6"}
.mdi-carrot:before{content:"\F10F"}
.mdi-cart:before{content:"\F110"}
.mdi-cart-off:before{content:"\F66B"}
.mdi-cart-outline:before{content:"\F111"}
.mdi-cart-plus:before{content:"\F112"}
.mdi-case-sensitive-alt:before{content:"\F113"}
.mdi-cash:before{content:"\F114"}
.mdi-cash-100:before{content:"\F115"}
.mdi-cash-multiple:before{content:"\F116"}
.mdi-cash-usd:before{content:"\F117"}
.mdi-cast:before{content:"\F118"}
.mdi-cast-connected:before{content:"\F119"}
.mdi-castle:before{content:"\F11A"}
.mdi-cat:before{content:"\F11B"}
.mdi-cellphone:before{content:"\F11C"}
.mdi-cellphone-android:before{content:"\F11D"}
.mdi-cellphone-basic:before{content:"\F11E"}
.mdi-cellphone-dock:before{content:"\F11F"}
.mdi-cellphone-iphone:before{content:"\F120"}
.mdi-cellphone-link:before{content:"\F121"}
.mdi-cellphone-link-off:before{content:"\F122"}
.mdi-cellphone-settings:before{content:"\F123"}
.mdi-certificate:before{content:"\F124"}
.mdi-chair-school:before{content:"\F125"}
.mdi-chart-arc:before{content:"\F126"}
.mdi-chart-areaspline:before{content:"\F127"}
.mdi-chart-bar:before{content:"\F128"}
.mdi-chart-bubble:before{content:"\F5E3"}
.mdi-chart-gantt:before{content:"\F66C"}
.mdi-chart-histogram:before{content:"\F129"}
.mdi-chart-line:before{content:"\F12A"}
.mdi-chart-pie:before{content:"\F12B"}
.mdi-chart-scatterplot-hexbin:before{content:"\F66D"}
.mdi-chart-timeline:before{content:"\F66E"}
.mdi-check:before{content:"\F12C"}
.mdi-check-all:before{content:"\F12D"}
.mdi-check-circle:before{content:"\F5E0"}
.mdi-check-circle-outline:before{content:"\F5E1"}
.mdi-checkbox-blank:before{content:"\F12E"}
.mdi-checkbox-blank-circle:before{content:"\F12F"}
.mdi-checkbox-blank-circle-outline:before{content:"\F130"}
.mdi-checkbox-blank-outline:before{content:"\F131"}
.mdi-checkbox-marked:before{content:"\F132"}
.mdi-checkbox-marked-circle:before{content:"\F133"}
.mdi-checkbox-marked-circle-outline:before{content:"\F134"}
.mdi-checkbox-marked-outline:before{content:"\F135"}
.mdi-checkbox-multiple-blank:before{content:"\F136"}
.mdi-checkbox-multiple-blank-circle:before{content:"\F63B"}
.mdi-checkbox-multiple-blank-circle-outline:before{content:"\F63C"}
.mdi-checkbox-multiple-blank-outline:before{content:"\F137"}
.mdi-checkbox-multiple-marked:before{content:"\F138"}
.mdi-checkbox-multiple-marked-circle:before{content:"\F63D"}
.mdi-checkbox-multiple-marked-circle-outline:before{content:"\F63E"}
.mdi-checkbox-multiple-marked-outline:before{content:"\F139"}
.mdi-checkerboard:before{content:"\F13A"}
.mdi-chemical-weapon:before{content:"\F13B"}
.mdi-chevron-double-down:before{content:"\F13C"}
.mdi-chevron-double-left:before{content:"\F13D"}
.mdi-chevron-double-right:before{content:"\F13E"}
.mdi-chevron-double-up:before{content:"\F13F"}
.mdi-chevron-down:before{content:"\F140"}
.mdi-chevron-left:before{content:"\F141"}
.mdi-chevron-right:before{content:"\F142"}
.mdi-chevron-up:before{content:"\F143"}
.mdi-chip:before{content:"\F61A"}
.mdi-church:before{content:"\F144"}
.mdi-cisco-webex:before{content:"\F145"}
.mdi-city:before{content:"\F146"}
.mdi-clipboard:before{content:"\F147"}
.mdi-clipboard-account:before{content:"\F148"}
.mdi-clipboard-alert:before{content:"\F149"}
.mdi-clipboard-arrow-down:before{content:"\F14A"}
.mdi-clipboard-arrow-left:before{content:"\F14B"}
.mdi-clipboard-check:before{content:"\F14C"}
.mdi-clipboard-flow:before{content:"\F6C7"}
.mdi-clipboard-outline:before{content:"\F14D"}
.mdi-clipboard-text:before{content:"\F14E"}
.mdi-clippy:before{content:"\F14F"}
.mdi-clock:before{content:"\F150"}
.mdi-clock-alert:before{content:"\F5CE"}
.mdi-clock-end:before{content:"\F151"}
.mdi-clock-fast:before{content:"\F152"}
.mdi-clock-in:before{content:"\F153"}
.mdi-clock-out:before{content:"\F154"}
.mdi-clock-start:before{content:"\F155"}
.mdi-close:before{content:"\F156"}
.mdi-close-box:before{content:"\F157"}
.mdi-close-box-outline:before{content:"\F158"}
.mdi-close-circle:before{content:"\F159"}
.mdi-close-circle-outline:before{content:"\F15A"}
.mdi-close-network:before{content:"\F15B"}
.mdi-close-octagon:before{content:"\F15C"}
.mdi-close-octagon-outline:before{content:"\F15D"}
.mdi-close-outline:before{content:"\F6C8"}
.mdi-closed-caption:before{content:"\F15E"}
.mdi-cloud:before{content:"\F15F"}
.mdi-cloud-check:before{content:"\F160"}
.mdi-cloud-circle:before{content:"\F161"}
.mdi-cloud-download:before{content:"\F162"}
.mdi-cloud-outline:before{content:"\F163"}
.mdi-cloud-outline-off:before{content:"\F164"}
.mdi-cloud-print:before{content:"\F165"}
.mdi-cloud-print-outline:before{content:"\F166"}
.mdi-cloud-sync:before{content:"\F63F"}
.mdi-cloud-upload:before{content:"\F167"}
.mdi-code-array:before{content:"\F168"}
.mdi-code-braces:before{content:"\F169"}
.mdi-code-brackets:before{content:"\F16A"}
.mdi-code-equal:before{content:"\F16B"}
.mdi-code-greater-than:before{content:"\F16C"}
.mdi-code-greater-than-or-equal:before{content:"\F16D"}
.mdi-code-less-than:before{content:"\F16E"}
.mdi-code-less-than-or-equal:before{content:"\F16F"}
.mdi-code-not-equal:before{content:"\F170"}
.mdi-code-not-equal-variant:before{content:"\F171"}
.mdi-code-parentheses:before{content:"\F172"}
.mdi-code-string:before{content:"\F173"}
.mdi-code-tags:before{content:"\F174"}
.mdi-code-tags-check:before{content:"\F693"}
.mdi-codepen:before{content:"\F175"}
.mdi-coffee:before{content:"\F176"}
.mdi-coffee-outline:before{content:"\F6C9"}
.mdi-coffee-to-go:before{content:"\F177"}
.mdi-coin:before{content:"\F178"}
.mdi-coins:before{content:"\F694"}
.mdi-collage:before{content:"\F640"}
.mdi-color-helper:before{content:"\F179"}
.mdi-comment:before{content:"\F17A"}
.mdi-comment-account:before{content:"\F17B"}
.mdi-comment-account-outline:before{content:"\F17C"}
.mdi-comment-alert:before{content:"\F17D"}
.mdi-comment-alert-outline:before{content:"\F17E"}
.mdi-comment-check:before{content:"\F17F"}
.mdi-comment-check-outline:before{content:"\F180"}
.mdi-comment-multiple-outline:before{content:"\F181"}
.mdi-comment-outline:before{content:"\F182"}
.mdi-comment-plus-outline:before{content:"\F183"}
.mdi-comment-processing:before{content:"\F184"}
.mdi-comment-processing-outline:before{content:"\F185"}
.mdi-comment-question-outline:before{content:"\F186"}
.mdi-comment-remove-outline:before{content:"\F187"}
.mdi-comment-text:before{content:"\F188"}
.mdi-comment-text-outline:before{content:"\F189"}
.mdi-compare:before{content:"\F18A"}
.mdi-compass:before{content:"\F18B"}
.mdi-compass-outline:before{content:"\F18C"}
.mdi-console:before{content:"\F18D"}
.mdi-contact-mail:before{content:"\F18E"}
.mdi-contacts:before{content:"\F6CA"}
.mdi-content-copy:before{content:"\F18F"}
.mdi-content-cut:before{content:"\F190"}
.mdi-content-duplicate:before{content:"\F191"}
.mdi-content-paste:before{content:"\F192"}
.mdi-content-save:before{content:"\F193"}
.mdi-content-save-all:before{content:"\F194"}
.mdi-content-save-settings:before{content:"\F61B"}
.mdi-contrast:before{content:"\F195"}
.mdi-contrast-box:before{content:"\F196"}
.mdi-contrast-circle:before{content:"\F197"}
.mdi-cookie:before{content:"\F198"}
.mdi-copyright:before{content:"\F5E6"}
.mdi-counter:before{content:"\F199"}
.mdi-cow:before{content:"\F19A"}
.mdi-creation:before{content:"\F1C9"}
.mdi-credit-card:before{content:"\F19B"}
.mdi-credit-card-multiple:before{content:"\F19C"}
.mdi-credit-card-off:before{content:"\F5E4"}
.mdi-credit-card-plus:before{content:"\F675"}
.mdi-credit-card-scan:before{content:"\F19D"}
.mdi-crop:before{content:"\F19E"}
.mdi-crop-free:before{content:"\F19F"}
.mdi-crop-landscape:before{content:"\F1A0"}
.mdi-crop-portrait:before{content:"\F1A1"}
.mdi-crop-rotate:before{content:"\F695"}
.mdi-crop-square:before{content:"\F1A2"}
.mdi-crosshairs:before{content:"\F1A3"}
.mdi-crosshairs-gps:before{content:"\F1A4"}
.mdi-crown:before{content:"\F1A5"}
.mdi-cube:before{content:"\F1A6"}
.mdi-cube-outline:before{content:"\F1A7"}
.mdi-cube-send:before{content:"\F1A8"}
.mdi-cube-unfolded:before{content:"\F1A9"}
.mdi-cup:before{content:"\F1AA"}
.mdi-cup-off:before{content:"\F5E5"}
.mdi-cup-water:before{content:"\F1AB"}
.mdi-currency-btc:before{content:"\F1AC"}
.mdi-currency-eur:before{content:"\F1AD"}
.mdi-currency-gbp:before{content:"\F1AE"}
.mdi-currency-inr:before{content:"\F1AF"}
.mdi-currency-ngn:before{content:"\F1B0"}
.mdi-currency-rub:before{content:"\F1B1"}
.mdi-currency-try:before{content:"\F1B2"}
.mdi-currency-usd:before{content:"\F1B3"}
.mdi-currency-usd-off:before{content:"\F679"}
.mdi-cursor-default:before{content:"\F1B4"}
.mdi-cursor-default-outline:before{content:"\F1B5"}
.mdi-cursor-move:before{content:"\F1B6"}
.mdi-cursor-pointer:before{content:"\F1B7"}
.mdi-cursor-text:before{content:"\F5E7"}
.mdi-database:before{content:"\F1B8"}
.mdi-database-minus:before{content:"\F1B9"}
.mdi-database-plus:before{content:"\F1BA"}
.mdi-debug-step-into:before{content:"\F1BB"}
.mdi-debug-step-out:before{content:"\F1BC"}
.mdi-debug-step-over:before{content:"\F1BD"}
.mdi-decimal-decrease:before{content:"\F1BE"}
.mdi-decimal-increase:before{content:"\F1BF"}
.mdi-delete:before{content:"\F1C0"}
.mdi-delete-circle:before{content:"\F682"}
.mdi-delete-empty:before{content:"\F6CB"}
.mdi-delete-forever:before{content:"\F5E8"}
.mdi-delete-sweep:before{content:"\F5E9"}
.mdi-delete-variant:before{content:"\F1C1"}
.mdi-delta:before{content:"\F1C2"}
.mdi-deskphone:before{content:"\F1C3"}
.mdi-desktop-mac:before{content:"\F1C4"}
.mdi-desktop-tower:before{content:"\F1C5"}
.mdi-details:before{content:"\F1C6"}
.mdi-developer-board:before{content:"\F696"}
.mdi-deviantart:before{content:"\F1C7"}
.mdi-dialpad:before{content:"\F61C"}
.mdi-diamond:before{content:"\F1C8"}
.mdi-dice-1:before{content:"\F1CA"}
.mdi-dice-2:before{content:"\F1CB"}
.mdi-dice-3:before{content:"\F1CC"}
.mdi-dice-4:before{content:"\F1CD"}
.mdi-dice-5:before{content:"\F1CE"}
.mdi-dice-6:before{content:"\F1CF"}
.mdi-dice-d20:before{content:"\F5EA"}
.mdi-dice-d4:before{content:"\F5EB"}
.mdi-dice-d6:before{content:"\F5EC"}
.mdi-dice-d8:before{content:"\F5ED"}
.mdi-dictionary:before{content:"\F61D"}
.mdi-directions:before{content:"\F1D0"}
.mdi-directions-fork:before{content:"\F641"}
.mdi-discord:before{content:"\F66F"}
.mdi-disk:before{content:"\F5EE"}
.mdi-disk-alert:before{content:"\F1D1"}
.mdi-disqus:before{content:"\F1D2"}
.mdi-disqus-outline:before{content:"\F1D3"}
.mdi-division:before{content:"\F1D4"}
.mdi-division-box:before{content:"\F1D5"}
.mdi-dna:before{content:"\F683"}
.mdi-dns:before{content:"\F1D6"}
.mdi-do-not-disturb:before{content:"\F697"}
.mdi-do-not-disturb-off:before{content:"\F698"}
.mdi-dolby:before{content:"\F6B2"}
.mdi-domain:before{content:"\F1D7"}
.mdi-dots-horizontal:before{content:"\F1D8"}
.mdi-dots-vertical:before{content:"\F1D9"}
.mdi-douban:before{content:"\F699"}
.mdi-download:before{content:"\F1DA"}
.mdi-drag:before{content:"\F1DB"}
.mdi-drag-horizontal:before{content:"\F1DC"}
.mdi-drag-vertical:before{content:"\F1DD"}
.mdi-drawing:before{content:"\F1DE"}
.mdi-drawing-box:before{content:"\F1DF"}
.mdi-dribbble:before{content:"\F1E0"}
.mdi-dribbble-box:before{content:"\F1E1"}
.mdi-drone:before{content:"\F1E2"}
.mdi-dropbox:before{content:"\F1E3"}
.mdi-drupal:before{content:"\F1E4"}
.mdi-duck:before{content:"\F1E5"}
.mdi-dumbbell:before{content:"\F1E6"}
.mdi-earth:before{content:"\F1E7"}
.mdi-earth-box:before{content:"\F6CC"}
.mdi-earth-box-off:before{content:"\F6CD"}
.mdi-earth-off:before{content:"\F1E8"}
.mdi-edge:before{content:"\F1E9"}
.mdi-eject:before{content:"\F1EA"}
.mdi-elevation-decline:before{content:"\F1EB"}
.mdi-elevation-rise:before{content:"\F1EC"}
.mdi-elevator:before{content:"\F1ED"}
.mdi-email:before{content:"\F1EE"}
.mdi-email-alert:before{content:"\F6CE"}
.mdi-email-open:before{content:"\F1EF"}
.mdi-email-open-outline:before{content:"\F5EF"}
.mdi-email-outline:before{content:"\F1F0"}
.mdi-email-secure:before{content:"\F1F1"}
.mdi-email-variant:before{content:"\F5F0"}
.mdi-emby:before{content:"\F6B3"}
.mdi-emoticon:before{content:"\F1F2"}
.mdi-emoticon-cool:before{content:"\F1F3"}
.mdi-emoticon-dead:before{content:"\F69A"}
.mdi-emoticon-devil:before{content:"\F1F4"}
.mdi-emoticon-excited:before{content:"\F69B"}
.mdi-emoticon-happy:before{content:"\F1F5"}
.mdi-emoticon-neutral:before{content:"\F1F6"}
.mdi-emoticon-poop:before{content:"\F1F7"}
.mdi-emoticon-sad:before{content:"\F1F8"}
.mdi-emoticon-tongue:before{content:"\F1F9"}
.mdi-engine:before{content:"\F1FA"}
.mdi-engine-outline:before{content:"\F1FB"}
.mdi-equal:before{content:"\F1FC"}
.mdi-equal-box:before{content:"\F1FD"}
.mdi-eraser:before{content:"\F1FE"}
.mdi-eraser-variant:before{content:"\F642"}
.mdi-escalator:before{content:"\F1FF"}
.mdi-ethernet:before{content:"\F200"}
.mdi-ethernet-cable:before{content:"\F201"}
.mdi-ethernet-cable-off:before{content:"\F202"}
.mdi-etsy:before{content:"\F203"}
.mdi-ev-station:before{content:"\F5F1"}
.mdi-evernote:before{content:"\F204"}
.mdi-exclamation:before{content:"\F205"}
.mdi-exit-to-app:before{content:"\F206"}
.mdi-export:before{content:"\F207"}
.mdi-eye:before{content:"\F208"}
.mdi-eye-off:before{content:"\F209"}
.mdi-eye-outline:before{content:"\F6CF"}
.mdi-eye-outline-off:before{content:"\F6D0"}
.mdi-eyedropper:before{content:"\F20A"}
.mdi-eyedropper-variant:before{content:"\F20B"}
.mdi-face:before{content:"\F643"}
.mdi-face-profile:before{content:"\F644"}
.mdi-facebook:before{content:"\F20C"}
.mdi-facebook-box:before{content:"\F20D"}
.mdi-facebook-messenger:before{content:"\F20E"}
.mdi-factory:before{content:"\F20F"}
.mdi-fan:before{content:"\F210"}
.mdi-fast-forward:before{content:"\F211"}
.mdi-fast-forward-outline:before{content:"\F6D1"}
.mdi-fax:before{content:"\F212"}
.mdi-feather:before{content:"\F6D2"}
.mdi-ferry:before{content:"\F213"}
.mdi-file:before{content:"\F214"}
.mdi-file-chart:before{content:"\F215"}
.mdi-file-check:before{content:"\F216"}
.mdi-file-cloud:before{content:"\F217"}
.mdi-file-delimited:before{content:"\F218"}
.mdi-file-document:before{content:"\F219"}
.mdi-file-document-box:before{content:"\F21A"}
.mdi-file-excel:before{content:"\F21B"}
.mdi-file-excel-box:before{content:"\F21C"}
.mdi-file-export:before{content:"\F21D"}
.mdi-file-find:before{content:"\F21E"}
.mdi-file-hidden:before{content:"\F613"}
.mdi-file-image:before{content:"\F21F"}
.mdi-file-import:before{content:"\F220"}
.mdi-file-lock:before{content:"\F221"}
.mdi-file-multiple:before{content:"\F222"}
.mdi-file-music:before{content:"\F223"}
.mdi-file-outline:before{content:"\F224"}
.mdi-file-pdf:before{content:"\F225"}
.mdi-file-pdf-box:before{content:"\F226"}
.mdi-file-powerpoint:before{content:"\F227"}
.mdi-file-powerpoint-box:before{content:"\F228"}
.mdi-file-presentation-box:before{content:"\F229"}
.mdi-file-restore:before{content:"\F670"}
.mdi-file-send:before{content:"\F22A"}
.mdi-file-tree:before{content:"\F645"}
.mdi-file-video:before{content:"\F22B"}
.mdi-file-word:before{content:"\F22C"}
.mdi-file-word-box:before{content:"\F22D"}
.mdi-file-xml:before{content:"\F22E"}
.mdi-film:before{content:"\F22F"}
.mdi-filmstrip:before{content:"\F230"}
.mdi-filmstrip-off:before{content:"\F231"}
.mdi-filter:before{content:"\F232"}
.mdi-filter-outline:before{content:"\F233"}
.mdi-filter-remove:before{content:"\F234"}
.mdi-filter-remove-outline:before{content:"\F235"}
.mdi-filter-variant:before{content:"\F236"}
.mdi-find-replace:before{content:"\F6D3"}
.mdi-fingerprint:before{content:"\F237"}
.mdi-fire:before{content:"\F238"}
.mdi-firefox:before{content:"\F239"}
.mdi-fish:before{content:"\F23A"}
.mdi-flag:before{content:"\F23B"}
.mdi-flag-checkered:before{content:"\F23C"}
.mdi-flag-outline:before{content:"\F23D"}
.mdi-flag-outline-variant:before{content:"\F23E"}
.mdi-flag-triangle:before{content:"\F23F"}
.mdi-flag-variant:before{content:"\F240"}
.mdi-flash:before{content:"\F241"}
.mdi-flash-auto:before{content:"\F242"}
.mdi-flash-off:before{content:"\F243"}
.mdi-flash-outline:before{content:"\F6D4"}
.mdi-flash-red-eye:before{content:"\F67A"}
.mdi-flashlight:before{content:"\F244"}
.mdi-flashlight-off:before{content:"\F245"}
.mdi-flask:before{content:"\F093"}
.mdi-flask-empty:before{content:"\F094"}
.mdi-flask-empty-outline:before{content:"\F095"}
.mdi-flask-outline:before{content:"\F096"}
.mdi-flattr:before{content:"\F246"}
.mdi-flip-to-back:before{content:"\F247"}
.mdi-flip-to-front:before{content:"\F248"}
.mdi-floppy:before{content:"\F249"}
.mdi-flower:before{content:"\F24A"}
.mdi-folder:before{content:"\F24B"}
.mdi-folder-account:before{content:"\F24C"}
.mdi-folder-download:before{content:"\F24D"}
.mdi-folder-google-drive:before{content:"\F24E"}
.mdi-folder-image:before{content:"\F24F"}
.mdi-folder-lock:before{content:"\F250"}
.mdi-folder-lock-open:before{content:"\F251"}
.mdi-folder-move:before{content:"\F252"}
.mdi-folder-multiple:before{content:"\F253"}
.mdi-folder-multiple-image:before{content:"\F254"}
.mdi-folder-multiple-outline:before{content:"\F255"}
.mdi-folder-outline:before{content:"\F256"}
.mdi-folder-plus:before{content:"\F257"}
.mdi-folder-remove:before{content:"\F258"}
.mdi-folder-star:before{content:"\F69C"}
.mdi-folder-upload:before{content:"\F259"}
.mdi-font-awesome:before{content:"\F03A"}
.mdi-food:before{content:"\F25A"}
.mdi-food-apple:before{content:"\F25B"}
.mdi-food-fork-drink:before{content:"\F5F2"}
.mdi-food-off:before{content:"\F5F3"}
.mdi-food-variant:before{content:"\F25C"}
.mdi-football:before{content:"\F25D"}
.mdi-football-australian:before{content:"\F25E"}
.mdi-football-helmet:before{content:"\F25F"}
.mdi-format-align-center:before{content:"\F260"}
.mdi-format-align-justify:before{content:"\F261"}
.mdi-format-align-left:before{content:"\F262"}
.mdi-format-align-right:before{content:"\F263"}
.mdi-format-annotation-plus:before{content:"\F646"}
.mdi-format-bold:before{content:"\F264"}
.mdi-format-clear:before{content:"\F265"}
.mdi-format-color-fill:before{content:"\F266"}
.mdi-format-color-text:before{content:"\F69D"}
.mdi-format-float-center:before{content:"\F267"}
.mdi-format-float-left:before{content:"\F268"}
.mdi-format-float-none:before{content:"\F269"}
.mdi-format-float-right:before{content:"\F26A"}
.mdi-format-font:before{content:"\F6D5"}
.mdi-format-header-1:before{content:"\F26B"}
.mdi-format-header-2:before{content:"\F26C"}
.mdi-format-header-3:before{content:"\F26D"}
.mdi-format-header-4:before{content:"\F26E"}
.mdi-format-header-5:before{content:"\F26F"}
.mdi-format-header-6:before{content:"\F270"}
.mdi-format-header-decrease:before{content:"\F271"}
.mdi-format-header-equal:before{content:"\F272"}
.mdi-format-header-increase:before{content:"\F273"}
.mdi-format-header-pound:before{content:"\F274"}
.mdi-format-horizontal-align-center:before{content:"\F61E"}
.mdi-format-horizontal-align-left:before{content:"\F61F"}
.mdi-format-horizontal-align-right:before{content:"\F620"}
.mdi-format-indent-decrease:before{content:"\F275"}
.mdi-format-indent-increase:before{content:"\F276"}
.mdi-format-italic:before{content:"\F277"}
.mdi-format-line-spacing:before{content:"\F278"}
.mdi-format-line-style:before{content:"\F5C8"}
.mdi-format-line-weight:before{content:"\F5C9"}
.mdi-format-list-bulleted:before{content:"\F279"}
.mdi-format-list-bulleted-type:before{content:"\F27A"}
.mdi-format-list-numbers:before{content:"\F27B"}
.mdi-format-page-break:before{content:"\F6D6"}
.mdi-format-paint:before{content:"\F27C"}
.mdi-format-paragraph:before{content:"\F27D"}
.mdi-format-pilcrow:before{content:"\F6D7"}
.mdi-format-quote:before{content:"\F27E"}
.mdi-format-rotate-90:before{content:"\F6A9"}
.mdi-format-section:before{content:"\F69E"}
.mdi-format-size:before{content:"\F27F"}
.mdi-format-strikethrough:before{content:"\F280"}
.mdi-format-strikethrough-variant:before{content:"\F281"}
.mdi-format-subscript:before{content:"\F282"}
.mdi-format-superscript:before{content:"\F283"}
.mdi-format-text:before{content:"\F284"}
.mdi-format-textdirection-l-to-r:before{content:"\F285"}
.mdi-format-textdirection-r-to-l:before{content:"\F286"}
.mdi-format-title:before{content:"\F5F4"}
.mdi-format-underline:before{content:"\F287"}
.mdi-format-vertical-align-bottom:before{content:"\F621"}
.mdi-format-vertical-align-center:before{content:"\F622"}
.mdi-format-vertical-align-top:before{content:"\F623"}
.mdi-format-wrap-inline:before{content:"\F288"}
.mdi-format-wrap-square:before{content:"\F289"}
.mdi-format-wrap-tight:before{content:"\F28A"}
.mdi-format-wrap-top-bottom:before{content:"\F28B"}
.mdi-forum:before{content:"\F28C"}
.mdi-forward:before{content:"\F28D"}
.mdi-foursquare:before{content:"\F28E"}
.mdi-fridge:before{content:"\F28F"}
.mdi-fridge-filled:before{content:"\F290"}
.mdi-fridge-filled-bottom:before{content:"\F291"}
.mdi-fridge-filled-top:before{content:"\F292"}
.mdi-fullscreen:before{content:"\F293"}
.mdi-fullscreen-exit:before{content:"\F294"}
.mdi-function:before{content:"\F295"}
.mdi-gamepad:before{content:"\F296"}
.mdi-gamepad-variant:before{content:"\F297"}
.mdi-garage:before{content:"\F6D8"}
.mdi-garage-open:before{content:"\F6D9"}
.mdi-gas-cylinder:before{content:"\F647"}
.mdi-gas-station:before{content:"\F298"}
.mdi-gate:before{content:"\F299"}
.mdi-gauge:before{content:"\F29A"}
.mdi-gavel:before{content:"\F29B"}
.mdi-gender-female:before{content:"\F29C"}
.mdi-gender-male:before{content:"\F29D"}
.mdi-gender-male-female:before{content:"\F29E"}
.mdi-gender-transgender:before{content:"\F29F"}
.mdi-ghost:before{content:"\F2A0"}
.mdi-gift:before{content:"\F2A1"}
.mdi-git:before{content:"\F2A2"}
.mdi-github-box:before{content:"\F2A3"}
.mdi-github-circle:before{content:"\F2A4"}
.mdi-github-face:before{content:"\F6DA"}
.mdi-glass-flute:before{content:"\F2A5"}
.mdi-glass-mug:before{content:"\F2A6"}
.mdi-glass-stange:before{content:"\F2A7"}
.mdi-glass-tulip:before{content:"\F2A8"}
.mdi-glassdoor:before{content:"\F2A9"}
.mdi-glasses:before{content:"\F2AA"}
.mdi-gmail:before{content:"\F2AB"}
.mdi-gnome:before{content:"\F2AC"}
.mdi-gondola:before{content:"\F685"}
.mdi-google:before{content:"\F2AD"}
.mdi-google-cardboard:before{content:"\F2AE"}
.mdi-google-chrome:before{content:"\F2AF"}
.mdi-google-circles:before{content:"\F2B0"}
.mdi-google-circles-communities:before{content:"\F2B1"}
.mdi-google-circles-extended:before{content:"\F2B2"}
.mdi-google-circles-group:before{content:"\F2B3"}
.mdi-google-controller:before{content:"\F2B4"}
.mdi-google-controller-off:before{content:"\F2B5"}
.mdi-google-drive:before{content:"\F2B6"}
.mdi-google-earth:before{content:"\F2B7"}
.mdi-google-glass:before{content:"\F2B8"}
.mdi-google-keep:before{content:"\F6DB"}
.mdi-google-maps:before{content:"\F5F5"}
.mdi-google-nearby:before{content:"\F2B9"}
.mdi-google-pages:before{content:"\F2BA"}
.mdi-google-photos:before{content:"\F6DC"}
.mdi-google-physical-web:before{content:"\F2BB"}
.mdi-google-play:before{content:"\F2BC"}
.mdi-google-plus:before{content:"\F2BD"}
.mdi-google-plus-box:before{content:"\F2BE"}
.mdi-google-translate:before{content:"\F2BF"}
.mdi-google-wallet:before{content:"\F2C0"}
.mdi-gradient:before{content:"\F69F"}
.mdi-grease-pencil:before{content:"\F648"}
.mdi-grid:before{content:"\F2C1"}
.mdi-grid-off:before{content:"\F2C2"}
.mdi-group:before{content:"\F2C3"}
.mdi-guitar-electric:before{content:"\F2C4"}
.mdi-guitar-pick:before{content:"\F2C5"}
.mdi-guitar-pick-outline:before{content:"\F2C6"}
.mdi-hackernews:before{content:"\F624"}
.mdi-hamburger:before{content:"\F684"}
.mdi-hand-pointing-right:before{content:"\F2C7"}
.mdi-hanger:before{content:"\F2C8"}
.mdi-hangouts:before{content:"\F2C9"}
.mdi-harddisk:before{content:"\F2CA"}
.mdi-headphones:before{content:"\F2CB"}
.mdi-headphones-box:before{content:"\F2CC"}
.mdi-headphones-settings:before{content:"\F2CD"}
.mdi-headset:before{content:"\F2CE"}
.mdi-headset-dock:before{content:"\F2CF"}
.mdi-headset-off:before{content:"\F2D0"}
.mdi-heart:before{content:"\F2D1"}
.mdi-heart-box:before{content:"\F2D2"}
.mdi-heart-box-outline:before{content:"\F2D3"}
.mdi-heart-broken:before{content:"\F2D4"}
.mdi-heart-half-outline:before{content:"\F6DD"}
.mdi-heart-half-part:before{content:"\F6DE"}
.mdi-heart-half-part-outline:before{content:"\F6DF"}
.mdi-heart-outline:before{content:"\F2D5"}
.mdi-heart-pulse:before{content:"\F5F6"}
.mdi-help:before{content:"\F2D6"}
.mdi-help-circle:before{content:"\F2D7"}
.mdi-help-circle-outline:before{content:"\F625"}
.mdi-hexagon:before{content:"\F2D8"}
.mdi-hexagon-multiple:before{content:"\F6E0"}
.mdi-hexagon-outline:before{content:"\F2D9"}
.mdi-highway:before{content:"\F5F7"}
.mdi-history:before{content:"\F2DA"}
.mdi-hololens:before{content:"\F2DB"}
.mdi-home:before{content:"\F2DC"}
.mdi-home-map-marker:before{content:"\F5F8"}
.mdi-home-modern:before{content:"\F2DD"}
.mdi-home-outline:before{content:"\F6A0"}
.mdi-home-variant:before{content:"\F2DE"}
.mdi-hook:before{content:"\F6E1"}
.mdi-hook-off:before{content:"\F6E2"}
.mdi-hops:before{content:"\F2DF"}
.mdi-hospital:before{content:"\F2E0"}
.mdi-hospital-building:before{content:"\F2E1"}
.mdi-hospital-marker:before{content:"\F2E2"}
.mdi-hotel:before{content:"\F2E3"}
.mdi-houzz:before{content:"\F2E4"}
.mdi-houzz-box:before{content:"\F2E5"}
.mdi-human:before{content:"\F2E6"}
.mdi-human-child:before{content:"\F2E7"}
.mdi-human-female:before{content:"\F649"}
.mdi-human-greeting:before{content:"\F64A"}
.mdi-human-handsdown:before{content:"\F64B"}
.mdi-human-handsup:before{content:"\F64C"}
.mdi-human-male:before{content:"\F64D"}
.mdi-human-male-female:before{content:"\F2E8"}
.mdi-human-pregnant:before{content:"\F5CF"}
.mdi-image:before{content:"\F2E9"}
.mdi-image-album:before{content:"\F2EA"}
.mdi-image-area:before{content:"\F2EB"}
.mdi-image-area-close:before{content:"\F2EC"}
.mdi-image-broken:before{content:"\F2ED"}
.mdi-image-broken-variant:before{content:"\F2EE"}
.mdi-image-filter:before{content:"\F2EF"}
.mdi-image-filter-black-white:before{content:"\F2F0"}
.mdi-image-filter-center-focus:before{content:"\F2F1"}
.mdi-image-filter-center-focus-weak:before{content:"\F2F2"}
.mdi-image-filter-drama:before{content:"\F2F3"}
.mdi-image-filter-frames:before{content:"\F2F4"}
.mdi-image-filter-hdr:before{content:"\F2F5"}
.mdi-image-filter-none:before{content:"\F2F6"}
.mdi-image-filter-tilt-shift:before{content:"\F2F7"}
.mdi-image-filter-vintage:before{content:"\F2F8"}
.mdi-image-multiple:before{content:"\F2F9"}
.mdi-import:before{content:"\F2FA"}
.mdi-inbox:before{content:"\F686"}
.mdi-inbox-arrow-down:before{content:"\F2FB"}
.mdi-inbox-arrow-up:before{content:"\F3D1"}
.mdi-incognito:before{content:"\F5F9"}
.mdi-infinity:before{content:"\F6E3"}
.mdi-information:before{content:"\F2FC"}
.mdi-information-outline:before{content:"\F2FD"}
.mdi-information-variant:before{content:"\F64E"}
.mdi-instagram:before{content:"\F2FE"}
.mdi-instapaper:before{content:"\F2FF"}
.mdi-internet-explorer:before{content:"\F300"}
.mdi-invert-colors:before{content:"\F301"}
.mdi-itunes:before{content:"\F676"}
.mdi-jeepney:before{content:"\F302"}
.mdi-jira:before{content:"\F303"}
.mdi-jsfiddle:before{content:"\F304"}
.mdi-json:before{content:"\F626"}
.mdi-keg:before{content:"\F305"}
.mdi-kettle:before{content:"\F5FA"}
.mdi-key:before{content:"\F306"}
.mdi-key-change:before{content:"\F307"}
.mdi-key-minus:before{content:"\F308"}
.mdi-key-plus:before{content:"\F309"}
.mdi-key-remove:before{content:"\F30A"}
.mdi-key-variant:before{content:"\F30B"}
.mdi-keyboard:before{content:"\F30C"}
.mdi-keyboard-backspace:before{content:"\F30D"}
.mdi-keyboard-caps:before{content:"\F30E"}
.mdi-keyboard-close:before{content:"\F30F"}
.mdi-keyboard-off:before{content:"\F310"}
.mdi-keyboard-return:before{content:"\F311"}
.mdi-keyboard-tab:before{content:"\F312"}
.mdi-keyboard-variant:before{content:"\F313"}
.mdi-kodi:before{content:"\F314"}
.mdi-label:before{content:"\F315"}
.mdi-label-outline:before{content:"\F316"}
.mdi-lambda:before{content:"\F627"}
.mdi-lamp:before{content:"\F6B4"}
.mdi-lan:before{content:"\F317"}
.mdi-lan-connect:before{content:"\F318"}
.mdi-lan-disconnect:before{content:"\F319"}
.mdi-lan-pending:before{content:"\F31A"}
.mdi-language-c:before{content:"\F671"}
.mdi-language-cpp:before{content:"\F672"}
.mdi-language-csharp:before{content:"\F31B"}
.mdi-language-css3:before{content:"\F31C"}
.mdi-language-html5:before{content:"\F31D"}
.mdi-language-javascript:before{content:"\F31E"}
.mdi-language-php:before{content:"\F31F"}
.mdi-language-python:before{content:"\F320"}
.mdi-language-python-text:before{content:"\F321"}
.mdi-language-swift:before{content:"\F6E4"}
.mdi-language-typescript:before{content:"\F6E5"}
.mdi-laptop:before{content:"\F322"}
.mdi-laptop-chromebook:before{content:"\F323"}
.mdi-laptop-mac:before{content:"\F324"}
.mdi-laptop-off:before{content:"\F6E6"}
.mdi-laptop-windows:before{content:"\F325"}
.mdi-lastfm:before{content:"\F326"}
.mdi-launch:before{content:"\F327"}
.mdi-layers:before{content:"\F328"}
.mdi-layers-off:before{content:"\F329"}
.mdi-lead-pencil:before{content:"\F64F"}
.mdi-leaf:before{content:"\F32A"}
.mdi-led-off:before{content:"\F32B"}
.mdi-led-on:before{content:"\F32C"}
.mdi-led-outline:before{content:"\F32D"}
.mdi-led-variant-off:before{content:"\F32E"}
.mdi-led-variant-on:before{content:"\F32F"}
.mdi-led-variant-outline:before{content:"\F330"}
.mdi-library:before{content:"\F331"}
.mdi-library-books:before{content:"\F332"}
.mdi-library-music:before{content:"\F333"}
.mdi-library-plus:before{content:"\F334"}
.mdi-lightbulb:before{content:"\F335"}
.mdi-lightbulb-on:before{content:"\F6E7"}
.mdi-lightbulb-on-outline:before{content:"\F6E8"}
.mdi-lightbulb-outline:before{content:"\F336"}
.mdi-link:before{content:"\F337"}
.mdi-link-off:before{content:"\F338"}
.mdi-link-variant:before{content:"\F339"}
.mdi-link-variant-off:before{content:"\F33A"}
.mdi-linkedin:before{content:"\F33B"}
.mdi-linkedin-box:before{content:"\F33C"}
.mdi-linux:before{content:"\F33D"}
.mdi-lock:before{content:"\F33E"}
.mdi-lock-open:before{content:"\F33F"}
.mdi-lock-open-outline:before{content:"\F340"}
.mdi-lock-outline:before{content:"\F341"}
.mdi-lock-pattern:before{content:"\F6E9"}
.mdi-lock-plus:before{content:"\F5FB"}
.mdi-login:before{content:"\F342"}
.mdi-login-variant:before{content:"\F5FC"}
.mdi-logout:before{content:"\F343"}
.mdi-logout-variant:before{content:"\F5FD"}
.mdi-looks:before{content:"\F344"}
.mdi-loop:before{content:"\F6EA"}
.mdi-loupe:before{content:"\F345"}
.mdi-lumx:before{content:"\F346"}
.mdi-magnet:before{content:"\F347"}
.mdi-magnet-on:before{content:"\F348"}
.mdi-magnify:before{content:"\F349"}
.mdi-magnify-minus:before{content:"\F34A"}
.mdi-magnify-minus-outline:before{content:"\F6EB"}
.mdi-magnify-plus:before{content:"\F34B"}
.mdi-magnify-plus-outline:before{content:"\F6EC"}
.mdi-mail-ru:before{content:"\F34C"}
.mdi-mailbox:before{content:"\F6ED"}
.mdi-map:before{content:"\F34D"}
.mdi-map-marker:before{content:"\F34E"}
.mdi-map-marker-circle:before{content:"\F34F"}
.mdi-map-marker-minus:before{content:"\F650"}
.mdi-map-marker-multiple:before{content:"\F350"}
.mdi-map-marker-off:before{content:"\F351"}
.mdi-map-marker-plus:before{content:"\F651"}
.mdi-map-marker-radius:before{content:"\F352"}
.mdi-margin:before{content:"\F353"}
.mdi-markdown:before{content:"\F354"}
.mdi-marker:before{content:"\F652"}
.mdi-marker-check:before{content:"\F355"}
.mdi-martini:before{content:"\F356"}
.mdi-material-ui:before{content:"\F357"}
.mdi-math-compass:before{content:"\F358"}
.mdi-matrix:before{content:"\F628"}
.mdi-maxcdn:before{content:"\F359"}
.mdi-medical-bag:before{content:"\F6EE"}
.mdi-medium:before{content:"\F35A"}
.mdi-memory:before{content:"\F35B"}
.mdi-menu:before{content:"\F35C"}
.mdi-menu-down:before{content:"\F35D"}
.mdi-menu-down-outline:before{content:"\F6B5"}
.mdi-menu-left:before{content:"\F35E"}
.mdi-menu-right:before{content:"\F35F"}
.mdi-menu-up:before{content:"\F360"}
.mdi-menu-up-outline:before{content:"\F6B6"}
.mdi-message:before{content:"\F361"}
.mdi-message-alert:before{content:"\F362"}
.mdi-message-bulleted:before{content:"\F6A1"}
.mdi-message-bulleted-off:before{content:"\F6A2"}
.mdi-message-draw:before{content:"\F363"}
.mdi-message-image:before{content:"\F364"}
.mdi-message-outline:before{content:"\F365"}
.mdi-message-plus:before{content:"\F653"}
.mdi-message-processing:before{content:"\F366"}
.mdi-message-reply:before{content:"\F367"}
.mdi-message-reply-text:before{content:"\F368"}
.mdi-message-settings:before{content:"\F6EF"}
.mdi-message-settings-variant:before{content:"\F6F0"}
.mdi-message-text:before{content:"\F369"}
.mdi-message-text-outline:before{content:"\F36A"}
.mdi-message-video:before{content:"\F36B"}
.mdi-meteor:before{content:"\F629"}
.mdi-microphone:before{content:"\F36C"}
.mdi-microphone-off:before{content:"\F36D"}
.mdi-microphone-outline:before{content:"\F36E"}
.mdi-microphone-settings:before{content:"\F36F"}
.mdi-microphone-variant:before{content:"\F370"}
.mdi-microphone-variant-off:before{content:"\F371"}
.mdi-microscope:before{content:"\F654"}
.mdi-microsoft:before{content:"\F372"}
.mdi-minecraft:before{content:"\F373"}
.mdi-minus:before{content:"\F374"}
.mdi-minus-box:before{content:"\F375"}
.mdi-minus-box-outline:before{content:"\F6F1"}
.mdi-minus-circle:before{content:"\F376"}
.mdi-minus-circle-outline:before{content:"\F377"}
.mdi-minus-network:before{content:"\F378"}
.mdi-mixcloud:before{content:"\F62A"}
.mdi-monitor:before{content:"\F379"}
.mdi-monitor-multiple:before{content:"\F37A"}
.mdi-more:before{content:"\F37B"}
.mdi-motorbike:before{content:"\F37C"}
.mdi-mouse:before{content:"\F37D"}
.mdi-mouse-off:before{content:"\F37E"}
.mdi-mouse-variant:before{content:"\F37F"}
.mdi-mouse-variant-off:before{content:"\F380"}
.mdi-move-resize:before{content:"\F655"}
.mdi-move-resize-variant:before{content:"\F656"}
.mdi-movie:before{content:"\F381"}
.mdi-multiplication:before{content:"\F382"}
.mdi-multiplication-box:before{content:"\F383"}
.mdi-music-box:before{content:"\F384"}
.mdi-music-box-outline:before{content:"\F385"}
.mdi-music-circle:before{content:"\F386"}
.mdi-music-note:before{content:"\F387"}
.mdi-music-note-bluetooth:before{content:"\F5FE"}
.mdi-music-note-bluetooth-off:before{content:"\F5FF"}
.mdi-music-note-eighth:before{content:"\F388"}
.mdi-music-note-half:before{content:"\F389"}
.mdi-music-note-off:before{content:"\F38A"}
.mdi-music-note-quarter:before{content:"\F38B"}
.mdi-music-note-sixteenth:before{content:"\F38C"}
.mdi-music-note-whole:before{content:"\F38D"}
.mdi-nature:before{content:"\F38E"}
.mdi-nature-people:before{content:"\F38F"}
.mdi-navigation:before{content:"\F390"}
.mdi-near-me:before{content:"\F5CD"}
.mdi-needle:before{content:"\F391"}
.mdi-nest-protect:before{content:"\F392"}
.mdi-nest-thermostat:before{content:"\F393"}
.mdi-network:before{content:"\F6F2"}
.mdi-network-download:before{content:"\F6F3"}
.mdi-network-question:before{content:"\F6F4"}
.mdi-network-upload:before{content:"\F6F5"}
.mdi-new-box:before{content:"\F394"}
.mdi-newspaper:before{content:"\F395"}
.mdi-nfc:before{content:"\F396"}
.mdi-nfc-tap:before{content:"\F397"}
.mdi-nfc-variant:before{content:"\F398"}
.mdi-nodejs:before{content:"\F399"}
.mdi-note:before{content:"\F39A"}
.mdi-note-multiple:before{content:"\F6B7"}
.mdi-note-multiple-outline:before{content:"\F6B8"}
.mdi-note-outline:before{content:"\F39B"}
.mdi-note-plus:before{content:"\F39C"}
.mdi-note-plus-outline:before{content:"\F39D"}
.mdi-note-text:before{content:"\F39E"}
.mdi-notification-clear-all:before{content:"\F39F"}
.mdi-npm:before{content:"\F6F6"}
.mdi-nuke:before{content:"\F6A3"}
.mdi-numeric:before{content:"\F3A0"}
.mdi-numeric-0-box:before{content:"\F3A1"}
.mdi-numeric-0-box-multiple-outline:before{content:"\F3A2"}
.mdi-numeric-0-box-outline:before{content:"\F3A3"}
.mdi-numeric-1-box:before{content:"\F3A4"}
.mdi-numeric-1-box-multiple-outline:before{content:"\F3A5"}
.mdi-numeric-1-box-outline:before{content:"\F3A6"}
.mdi-numeric-2-box:before{content:"\F3A7"}
.mdi-numeric-2-box-multiple-outline:before{content:"\F3A8"}
.mdi-numeric-2-box-outline:before{content:"\F3A9"}
.mdi-numeric-3-box:before{content:"\F3AA"}
.mdi-numeric-3-box-multiple-outline:before{content:"\F3AB"}
.mdi-numeric-3-box-outline:before{content:"\F3AC"}
.mdi-numeric-4-box:before{content:"\F3AD"}
.mdi-numeric-4-box-multiple-outline:before{content:"\F3AE"}
.mdi-numeric-4-box-outline:before{content:"\F3AF"}
.mdi-numeric-5-box:before{content:"\F3B0"}
.mdi-numeric-5-box-multiple-outline:before{content:"\F3B1"}
.mdi-numeric-5-box-outline:before{content:"\F3B2"}
.mdi-numeric-6-box:before{content:"\F3B3"}
.mdi-numeric-6-box-multiple-outline:before{content:"\F3B4"}
.mdi-numeric-6-box-outline:before{content:"\F3B5"}
.mdi-numeric-7-box:before{content:"\F3B6"}
.mdi-numeric-7-box-multiple-outline:before{content:"\F3B7"}
.mdi-numeric-7-box-outline:before{content:"\F3B8"}
.mdi-numeric-8-box:before{content:"\F3B9"}
.mdi-numeric-8-box-multiple-outline:before{content:"\F3BA"}
.mdi-numeric-8-box-outline:before{content:"\F3BB"}
.mdi-numeric-9-box:before{content:"\F3BC"}
.mdi-numeric-9-box-multiple-outline:before{content:"\F3BD"}
.mdi-numeric-9-box-outline:before{content:"\F3BE"}
.mdi-numeric-9-plus-box:before{content:"\F3BF"}
.mdi-numeric-9-plus-box-multiple-outline:before{content:"\F3C0"}
.mdi-numeric-9-plus-box-outline:before{content:"\F3C1"}
.mdi-nut:before{content:"\F6F7"}
.mdi-nutrition:before{content:"\F3C2"}
.mdi-oar:before{content:"\F67B"}
.mdi-octagon:before{content:"\F3C3"}
.mdi-octagon-outline:before{content:"\F3C4"}
.mdi-octagram:before{content:"\F6F8"}
.mdi-odnoklassniki:before{content:"\F3C5"}
.mdi-office:before{content:"\F3C6"}
.mdi-oil:before{content:"\F3C7"}
.mdi-oil-temperature:before{content:"\F3C8"}
.mdi-omega:before{content:"\F3C9"}
.mdi-onedrive:before{content:"\F3CA"}
.mdi-opacity:before{content:"\F5CC"}
.mdi-open-in-app:before{content:"\F3CB"}
.mdi-open-in-new:before{content:"\F3CC"}
.mdi-openid:before{content:"\F3CD"}
.mdi-opera:before{content:"\F3CE"}
.mdi-ornament:before{content:"\F3CF"}
.mdi-ornament-variant:before{content:"\F3D0"}
.mdi-owl:before{content:"\F3D2"}
.mdi-package:before{content:"\F3D3"}
.mdi-package-down:before{content:"\F3D4"}
.mdi-package-up:before{content:"\F3D5"}
.mdi-package-variant:before{content:"\F3D6"}
.mdi-package-variant-closed:before{content:"\F3D7"}
.mdi-page-first:before{content:"\F600"}
.mdi-page-last:before{content:"\F601"}
.mdi-page-layout-body:before{content:"\F6F9"}
.mdi-page-layout-footer:before{content:"\F6FA"}
.mdi-page-layout-header:before{content:"\F6FB"}
.mdi-page-layout-sidebar-left:before{content:"\F6FC"}
.mdi-page-layout-sidebar-right:before{content:"\F6FD"}
.mdi-palette:before{content:"\F3D8"}
.mdi-palette-advanced:before{content:"\F3D9"}
.mdi-panda:before{content:"\F3DA"}
.mdi-pandora:before{content:"\F3DB"}
.mdi-panorama:before{content:"\F3DC"}
.mdi-panorama-fisheye:before{content:"\F3DD"}
.mdi-panorama-horizontal:before{content:"\F3DE"}
.mdi-panorama-vertical:before{content:"\F3DF"}
.mdi-panorama-wide-angle:before{content:"\F3E0"}
.mdi-paper-cut-vertical:before{content:"\F3E1"}
.mdi-paperclip:before{content:"\F3E2"}
.mdi-parking:before{content:"\F3E3"}
.mdi-pause:before{content:"\F3E4"}
.mdi-pause-circle:before{content:"\F3E5"}
.mdi-pause-circle-outline:before{content:"\F3E6"}
.mdi-pause-octagon:before{content:"\F3E7"}
.mdi-pause-octagon-outline:before{content:"\F3E8"}
.mdi-paw:before{content:"\F3E9"}
.mdi-paw-off:before{content:"\F657"}
.mdi-pen:before{content:"\F3EA"}
.mdi-pencil:before{content:"\F3EB"}
.mdi-pencil-box:before{content:"\F3EC"}
.mdi-pencil-box-outline:before{content:"\F3ED"}
.mdi-pencil-circle:before{content:"\F6FE"}
.mdi-pencil-lock:before{content:"\F3EE"}
.mdi-pencil-off:before{content:"\F3EF"}
.mdi-pentagon:before{content:"\F6FF"}
.mdi-pentagon-outline:before{content:"\F700"}
.mdi-percent:before{content:"\F3F0"}
.mdi-pharmacy:before{content:"\F3F1"}
.mdi-phone:before{content:"\F3F2"}
.mdi-phone-bluetooth:before{content:"\F3F3"}
.mdi-phone-classic:before{content:"\F602"}
.mdi-phone-forward:before{content:"\F3F4"}
.mdi-phone-hangup:before{content:"\F3F5"}
.mdi-phone-in-talk:before{content:"\F3F6"}
.mdi-phone-incoming:before{content:"\F3F7"}
.mdi-phone-locked:before{content:"\F3F8"}
.mdi-phone-log:before{content:"\F3F9"}
.mdi-phone-minus:before{content:"\F658"}
.mdi-phone-missed:before{content:"\F3FA"}
.mdi-phone-outgoing:before{content:"\F3FB"}
.mdi-phone-paused:before{content:"\F3FC"}
.mdi-phone-plus:before{content:"\F659"}
.mdi-phone-settings:before{content:"\F3FD"}
.mdi-phone-voip:before{content:"\F3FE"}
.mdi-pi:before{content:"\F3FF"}
.mdi-pi-box:before{content:"\F400"}
.mdi-piano:before{content:"\F67C"}
.mdi-pig:before{content:"\F401"}
.mdi-pill:before{content:"\F402"}
.mdi-pillar:before{content:"\F701"}
.mdi-pin:before{content:"\F403"}
.mdi-pin-off:before{content:"\F404"}
.mdi-pine-tree:before{content:"\F405"}
.mdi-pine-tree-box:before{content:"\F406"}
.mdi-pinterest:before{content:"\F407"}
.mdi-pinterest-box:before{content:"\F408"}
.mdi-pistol:before{content:"\F702"}
.mdi-pizza:before{content:"\F409"}
.mdi-plane-shield:before{content:"\F6BA"}
.mdi-play:before{content:"\F40A"}
.mdi-play-box-outline:before{content:"\F40B"}
.mdi-play-circle:before{content:"\F40C"}
.mdi-play-circle-outline:before{content:"\F40D"}
.mdi-play-pause:before{content:"\F40E"}
.mdi-play-protected-content:before{content:"\F40F"}
.mdi-playlist-check:before{content:"\F5C7"}
.mdi-playlist-minus:before{content:"\F410"}
.mdi-playlist-play:before{content:"\F411"}
.mdi-playlist-plus:before{content:"\F412"}
.mdi-playlist-remove:before{content:"\F413"}
.mdi-playstation:before{content:"\F414"}
.mdi-plex:before{content:"\F6B9"}
.mdi-plus:before{content:"\F415"}
.mdi-plus-box:before{content:"\F416"}
.mdi-plus-box-outline:before{content:"\F703"}
.mdi-plus-circle:before{content:"\F417"}
.mdi-plus-circle-multiple-outline:before{content:"\F418"}
.mdi-plus-circle-outline:before{content:"\F419"}
.mdi-plus-network:before{content:"\F41A"}
.mdi-plus-one:before{content:"\F41B"}
.mdi-plus-outline:before{content:"\F704"}
.mdi-pocket:before{content:"\F41C"}
.mdi-pokeball:before{content:"\F41D"}
.mdi-polaroid:before{content:"\F41E"}
.mdi-poll:before{content:"\F41F"}
.mdi-poll-box:before{content:"\F420"}
.mdi-polymer:before{content:"\F421"}
.mdi-pool:before{content:"\F606"}
.mdi-popcorn:before{content:"\F422"}
.mdi-pot:before{content:"\F65A"}
.mdi-pot-mix:before{content:"\F65B"}
.mdi-pound:before{content:"\F423"}
.mdi-pound-box:before{content:"\F424"}
.mdi-power:before{content:"\F425"}
.mdi-power-plug:before{content:"\F6A4"}
.mdi-power-plug-off:before{content:"\F6A5"}
.mdi-power-settings:before{content:"\F426"}
.mdi-power-socket:before{content:"\F427"}
.mdi-prescription:before{content:"\F705"}
.mdi-presentation:before{content:"\F428"}
.mdi-presentation-play:before{content:"\F429"}
.mdi-printer:before{content:"\F42A"}
.mdi-printer-3d:before{content:"\F42B"}
.mdi-printer-alert:before{content:"\F42C"}
.mdi-printer-settings:before{content:"\F706"}
.mdi-priority-high:before{content:"\F603"}
.mdi-priority-low:before{content:"\F604"}
.mdi-professional-hexagon:before{content:"\F42D"}
.mdi-projector:before{content:"\F42E"}
.mdi-projector-screen:before{content:"\F42F"}
.mdi-publish:before{content:"\F6A6"}
.mdi-pulse:before{content:"\F430"}
.mdi-puzzle:before{content:"\F431"}
.mdi-qqchat:before{content:"\F605"}
.mdi-qrcode:before{content:"\F432"}
.mdi-qrcode-scan:before{content:"\F433"}
.mdi-quadcopter:before{content:"\F434"}
.mdi-quality-high:before{content:"\F435"}
.mdi-quicktime:before{content:"\F436"}
.mdi-radar:before{content:"\F437"}
.mdi-radiator:before{content:"\F438"}
.mdi-radio:before{content:"\F439"}
.mdi-radio-handheld:before{content:"\F43A"}
.mdi-radio-tower:before{content:"\F43B"}
.mdi-radioactive:before{content:"\F43C"}
.mdi-radiobox-blank:before{content:"\F43D"}
.mdi-radiobox-marked:before{content:"\F43E"}
.mdi-raspberrypi:before{content:"\F43F"}
.mdi-ray-end:before{content:"\F440"}
.mdi-ray-end-arrow:before{content:"\F441"}
.mdi-ray-start:before{content:"\F442"}
.mdi-ray-start-arrow:before{content:"\F443"}
.mdi-ray-start-end:before{content:"\F444"}
.mdi-ray-vertex:before{content:"\F445"}
.mdi-rdio:before{content:"\F446"}
.mdi-react:before{content:"\F707"}
.mdi-read:before{content:"\F447"}
.mdi-readability:before{content:"\F448"}
.mdi-receipt:before{content:"\F449"}
.mdi-record:before{content:"\F44A"}
.mdi-record-rec:before{content:"\F44B"}
.mdi-recycle:before{content:"\F44C"}
.mdi-reddit:before{content:"\F44D"}
.mdi-redo:before{content:"\F44E"}
.mdi-redo-variant:before{content:"\F44F"}
.mdi-refresh:before{content:"\F450"}
.mdi-regex:before{content:"\F451"}
.mdi-relative-scale:before{content:"\F452"}
.mdi-reload:before{content:"\F453"}
.mdi-remote:before{content:"\F454"}
.mdi-rename-box:before{content:"\F455"}
.mdi-reorder-horizontal:before{content:"\F687"}
.mdi-reorder-vertical:before{content:"\F688"}
.mdi-repeat:before{content:"\F456"}
.mdi-repeat-off:before{content:"\F457"}
.mdi-repeat-once:before{content:"\F458"}
.mdi-replay:before{content:"\F459"}
.mdi-reply:before{content:"\F45A"}
.mdi-reply-all:before{content:"\F45B"}
.mdi-reproduction:before{content:"\F45C"}
.mdi-resize-bottom-right:before{content:"\F45D"}
.mdi-responsive:before{content:"\F45E"}
.mdi-restart:before{content:"\F708"}
.mdi-restore:before{content:"\F6A7"}
.mdi-rewind:before{content:"\F45F"}
.mdi-rewind-outline:before{content:"\F709"}
.mdi-rhombus:before{content:"\F70A"}
.mdi-rhombus-outline:before{content:"\F70B"}
.mdi-ribbon:before{content:"\F460"}
.mdi-road:before{content:"\F461"}
.mdi-road-variant:before{content:"\F462"}
.mdi-robot:before{content:"\F6A8"}
.mdi-rocket:before{content:"\F463"}
.mdi-roomba:before{content:"\F70C"}
.mdi-rotate-3d:before{content:"\F464"}
.mdi-rotate-left:before{content:"\F465"}
.mdi-rotate-left-variant:before{content:"\F466"}
.mdi-rotate-right:before{content:"\F467"}
.mdi-rotate-right-variant:before{content:"\F468"}
.mdi-rounded-corner:before{content:"\F607"}
.mdi-router-wireless:before{content:"\F469"}
.mdi-routes:before{content:"\F46A"}
.mdi-rowing:before{content:"\F608"}
.mdi-rss:before{content:"\F46B"}
.mdi-rss-box:before{content:"\F46C"}
.mdi-ruler:before{content:"\F46D"}
.mdi-run:before{content:"\F70D"}
.mdi-run-fast:before{content:"\F46E"}
.mdi-sale:before{content:"\F46F"}
.mdi-satellite:before{content:"\F470"}
.mdi-satellite-variant:before{content:"\F471"}
.mdi-saxophone:before{content:"\F609"}
.mdi-scale:before{content:"\F472"}
.mdi-scale-balance:before{content:"\F5D1"}
.mdi-scale-bathroom:before{content:"\F473"}
.mdi-scanner:before{content:"\F6AA"}
.mdi-school:before{content:"\F474"}
.mdi-screen-rotation:before{content:"\F475"}
.mdi-screen-rotation-lock:before{content:"\F476"}
.mdi-screwdriver:before{content:"\F477"}
.mdi-script:before{content:"\F478"}
.mdi-sd:before{content:"\F479"}
.mdi-seal:before{content:"\F47A"}
.mdi-search-web:before{content:"\F70E"}
.mdi-seat-flat:before{content:"\F47B"}
.mdi-seat-flat-angled:before{content:"\F47C"}
.mdi-seat-individual-suite:before{content:"\F47D"}
.mdi-seat-legroom-extra:before{content:"\F47E"}
.mdi-seat-legroom-normal:before{content:"\F47F"}
.mdi-seat-legroom-reduced:before{content:"\F480"}
.mdi-seat-recline-extra:before{content:"\F481"}
.mdi-seat-recline-normal:before{content:"\F482"}
.mdi-security:before{content:"\F483"}
.mdi-security-home:before{content:"\F689"}
.mdi-security-network:before{content:"\F484"}
.mdi-select:before{content:"\F485"}
.mdi-select-all:before{content:"\F486"}
.mdi-select-inverse:before{content:"\F487"}
.mdi-select-off:before{content:"\F488"}
.mdi-selection:before{content:"\F489"}
.mdi-send:before{content:"\F48A"}
.mdi-serial-port:before{content:"\F65C"}
.mdi-server:before{content:"\F48B"}
.mdi-server-minus:before{content:"\F48C"}
.mdi-server-network:before{content:"\F48D"}
.mdi-server-network-off:before{content:"\F48E"}
.mdi-server-off:before{content:"\F48F"}
.mdi-server-plus:before{content:"\F490"}
.mdi-server-remove:before{content:"\F491"}
.mdi-server-security:before{content:"\F492"}
.mdi-settings:before{content:"\F493"}
.mdi-settings-box:before{content:"\F494"}
.mdi-shape-circle-plus:before{content:"\F65D"}
.mdi-shape-plus:before{content:"\F495"}
.mdi-shape-polygon-plus:before{content:"\F65E"}
.mdi-shape-rectangle-plus:before{content:"\F65F"}
.mdi-shape-square-plus:before{content:"\F660"}
.mdi-share:before{content:"\F496"}
.mdi-share-variant:before{content:"\F497"}
.mdi-shield:before{content:"\F498"}
.mdi-shield-outline:before{content:"\F499"}
.mdi-shopping:before{content:"\F49A"}
.mdi-shopping-music:before{content:"\F49B"}
.mdi-shovel:before{content:"\F70F"}
.mdi-shovel-off:before{content:"\F710"}
.mdi-shredder:before{content:"\F49C"}
.mdi-shuffle:before{content:"\F49D"}
.mdi-shuffle-disabled:before{content:"\F49E"}
.mdi-shuffle-variant:before{content:"\F49F"}
.mdi-sigma:before{content:"\F4A0"}
.mdi-sigma-lower:before{content:"\F62B"}
.mdi-sign-caution:before{content:"\F4A1"}
.mdi-signal:before{content:"\F4A2"}
.mdi-signal-2g:before{content:"\F711"}
.mdi-signal-3g:before{content:"\F712"}
.mdi-signal-4g:before{content:"\F713"}
.mdi-signal-hspa:before{content:"\F714"}
.mdi-signal-hspa-plus:before{content:"\F715"}
.mdi-signal-variant:before{content:"\F60A"}
.mdi-silverware:before{content:"\F4A3"}
.mdi-silverware-fork:before{content:"\F4A4"}
.mdi-silverware-spoon:before{content:"\F4A5"}
.mdi-silverware-variant:before{content:"\F4A6"}
.mdi-sim:before{content:"\F4A7"}
.mdi-sim-alert:before{content:"\F4A8"}
.mdi-sim-off:before{content:"\F4A9"}
.mdi-sitemap:before{content:"\F4AA"}
.mdi-skip-backward:before{content:"\F4AB"}
.mdi-skip-forward:before{content:"\F4AC"}
.mdi-skip-next:before{content:"\F4AD"}
.mdi-skip-next-circle:before{content:"\F661"}
.mdi-skip-next-circle-outline:before{content:"\F662"}
.mdi-skip-previous:before{content:"\F4AE"}
.mdi-skip-previous-circle:before{content:"\F663"}
.mdi-skip-previous-circle-outline:before{content:"\F664"}
.mdi-skull:before{content:"\F68B"}
.mdi-skype:before{content:"\F4AF"}
.mdi-skype-business:before{content:"\F4B0"}
.mdi-slack:before{content:"\F4B1"}
.mdi-sleep:before{content:"\F4B2"}
.mdi-sleep-off:before{content:"\F4B3"}
.mdi-smoking:before{content:"\F4B4"}
.mdi-smoking-off:before{content:"\F4B5"}
.mdi-snapchat:before{content:"\F4B6"}
.mdi-snowflake:before{content:"\F716"}
.mdi-snowman:before{content:"\F4B7"}
.mdi-soccer:before{content:"\F4B8"}
.mdi-sofa:before{content:"\F4B9"}
.mdi-solid:before{content:"\F68C"}
.mdi-sort:before{content:"\F4BA"}
.mdi-sort-alphabetical:before{content:"\F4BB"}
.mdi-sort-ascending:before{content:"\F4BC"}
.mdi-sort-descending:before{content:"\F4BD"}
.mdi-sort-numeric:before{content:"\F4BE"}
.mdi-sort-variant:before{content:"\F4BF"}
.mdi-soundcloud:before{content:"\F4C0"}
.mdi-source-branch:before{content:"\F62C"}
.mdi-source-commit:before{content:"\F717"}
.mdi-source-commit-end:before{content:"\F718"}
.mdi-source-commit-end-local:before{content:"\F719"}
.mdi-source-commit-local:before{content:"\F71A"}
.mdi-source-commit-next-local:before{content:"\F71B"}
.mdi-source-commit-start:before{content:"\F71C"}
.mdi-source-commit-start-next-local:before{content:"\F71D"}
.mdi-source-fork:before{content:"\F4C1"}
.mdi-source-merge:before{content:"\F62D"}
.mdi-source-pull:before{content:"\F4C2"}
.mdi-speaker:before{content:"\F4C3"}
.mdi-speaker-off:before{content:"\F4C4"}
.mdi-speaker-wireless:before{content:"\F71E"}
.mdi-speedometer:before{content:"\F4C5"}
.mdi-spellcheck:before{content:"\F4C6"}
.mdi-spotify:before{content:"\F4C7"}
.mdi-spotlight:before{content:"\F4C8"}
.mdi-spotlight-beam:before{content:"\F4C9"}
.mdi-spray:before{content:"\F665"}
.mdi-square-inc:before{content:"\F4CA"}
.mdi-square-inc-cash:before{content:"\F4CB"}
.mdi-stackexchange:before{content:"\F60B"}
.mdi-stackoverflow:before{content:"\F4CC"}
.mdi-stadium:before{content:"\F71F"}
.mdi-stairs:before{content:"\F4CD"}
.mdi-star:before{content:"\F4CE"}
.mdi-star-circle:before{content:"\F4CF"}
.mdi-star-half:before{content:"\F4D0"}
.mdi-star-off:before{content:"\F4D1"}
.mdi-star-outline:before{content:"\F4D2"}
.mdi-steam:before{content:"\F4D3"}
.mdi-steering:before{content:"\F4D4"}
.mdi-step-backward:before{content:"\F4D5"}
.mdi-step-backward-2:before{content:"\F4D6"}
.mdi-step-forward:before{content:"\F4D7"}
.mdi-step-forward-2:before{content:"\F4D8"}
.mdi-stethoscope:before{content:"\F4D9"}
.mdi-sticker:before{content:"\F5D0"}
.mdi-stocking:before{content:"\F4DA"}
.mdi-stop:before{content:"\F4DB"}
.mdi-stop-circle:before{content:"\F666"}
.mdi-stop-circle-outline:before{content:"\F667"}
.mdi-store:before{content:"\F4DC"}
.mdi-store-24-hour:before{content:"\F4DD"}
.mdi-stove:before{content:"\F4DE"}
.mdi-subdirectory-arrow-left:before{content:"\F60C"}
.mdi-subdirectory-arrow-right:before{content:"\F60D"}
.mdi-subway:before{content:"\F6AB"}
.mdi-subway-variant:before{content:"\F4DF"}
.mdi-sunglasses:before{content:"\F4E0"}
.mdi-surround-sound:before{content:"\F5C5"}
.mdi-svg:before{content:"\F720"}
.mdi-swap-horizontal:before{content:"\F4E1"}
.mdi-swap-vertical:before{content:"\F4E2"}
.mdi-swim:before{content:"\F4E3"}
.mdi-switch:before{content:"\F4E4"}
.mdi-sword:before{content:"\F4E5"}
.mdi-sync:before{content:"\F4E6"}
.mdi-sync-alert:before{content:"\F4E7"}
.mdi-sync-off:before{content:"\F4E8"}
.mdi-tab:before{content:"\F4E9"}
.mdi-tab-unselected:before{content:"\F4EA"}
.mdi-table:before{content:"\F4EB"}
.mdi-table-column-plus-after:before{content:"\F4EC"}
.mdi-table-column-plus-before:before{content:"\F4ED"}
.mdi-table-column-remove:before{content:"\F4EE"}
.mdi-table-column-width:before{content:"\F4EF"}
.mdi-table-edit:before{content:"\F4F0"}
.mdi-table-large:before{content:"\F4F1"}
.mdi-table-row-height:before{content:"\F4F2"}
.mdi-table-row-plus-after:before{content:"\F4F3"}
.mdi-table-row-plus-before:before{content:"\F4F4"}
.mdi-table-row-remove:before{content:"\F4F5"}
.mdi-tablet:before{content:"\F4F6"}
.mdi-tablet-android:before{content:"\F4F7"}
.mdi-tablet-ipad:before{content:"\F4F8"}
.mdi-tag:before{content:"\F4F9"}
.mdi-tag-faces:before{content:"\F4FA"}
.mdi-tag-heart:before{content:"\F68A"}
.mdi-tag-multiple:before{content:"\F4FB"}
.mdi-tag-outline:before{content:"\F4FC"}
.mdi-tag-plus:before{content:"\F721"}
.mdi-tag-remove:before{content:"\F722"}
.mdi-tag-text-outline:before{content:"\F4FD"}
.mdi-target:before{content:"\F4FE"}
.mdi-taxi:before{content:"\F4FF"}
.mdi-teamviewer:before{content:"\F500"}
.mdi-telegram:before{content:"\F501"}
.mdi-television:before{content:"\F502"}
.mdi-television-guide:before{content:"\F503"}
.mdi-temperature-celsius:before{content:"\F504"}
.mdi-temperature-fahrenheit:before{content:"\F505"}
.mdi-temperature-kelvin:before{content:"\F506"}
.mdi-tennis:before{content:"\F507"}
.mdi-tent:before{content:"\F508"}
.mdi-terrain:before{content:"\F509"}
.mdi-test-tube:before{content:"\F668"}
.mdi-text-shadow:before{content:"\F669"}
.mdi-text-to-speech:before{content:"\F50A"}
.mdi-text-to-speech-off:before{content:"\F50B"}
.mdi-textbox:before{content:"\F60E"}
.mdi-texture:before{content:"\F50C"}
.mdi-theater:before{content:"\F50D"}
.mdi-theme-light-dark:before{content:"\F50E"}
.mdi-thermometer:before{content:"\F50F"}
.mdi-thermometer-lines:before{content:"\F510"}
.mdi-thumb-down:before{content:"\F511"}
.mdi-thumb-down-outline:before{content:"\F512"}
.mdi-thumb-up:before{content:"\F513"}
.mdi-thumb-up-outline:before{content:"\F514"}
.mdi-thumbs-up-down:before{content:"\F515"}
.mdi-ticket:before{content:"\F516"}
.mdi-ticket-account:before{content:"\F517"}
.mdi-ticket-confirmation:before{content:"\F518"}
.mdi-ticket-percent:before{content:"\F723"}
.mdi-tie:before{content:"\F519"}
.mdi-tilde:before{content:"\F724"}
.mdi-timelapse:before{content:"\F51A"}
.mdi-timer:before{content:"\F51B"}
.mdi-timer-10:before{content:"\F51C"}
.mdi-timer-3:before{content:"\F51D"}
.mdi-timer-off:before{content:"\F51E"}
.mdi-timer-sand:before{content:"\F51F"}
.mdi-timer-sand-empty:before{content:"\F6AC"}
.mdi-timetable:before{content:"\F520"}
.mdi-toggle-switch:before{content:"\F521"}
.mdi-toggle-switch-off:before{content:"\F522"}
.mdi-tooltip:before{content:"\F523"}
.mdi-tooltip-edit:before{content:"\F524"}
.mdi-tooltip-image:before{content:"\F525"}
.mdi-tooltip-outline:before{content:"\F526"}
.mdi-tooltip-outline-plus:before{content:"\F527"}
.mdi-tooltip-text:before{content:"\F528"}
.mdi-tooth:before{content:"\F529"}
.mdi-tor:before{content:"\F52A"}
.mdi-tower-beach:before{content:"\F680"}
.mdi-tower-fire:before{content:"\F681"}
.mdi-traffic-light:before{content:"\F52B"}
.mdi-train:before{content:"\F52C"}
.mdi-tram:before{content:"\F52D"}
.mdi-transcribe:before{content:"\F52E"}
.mdi-transcribe-close:before{content:"\F52F"}
.mdi-transfer:before{content:"\F530"}
.mdi-transit-transfer:before{content:"\F6AD"}
.mdi-translate:before{content:"\F5CA"}
.mdi-treasure-chest:before{content:"\F725"}
.mdi-tree:before{content:"\F531"}
.mdi-trello:before{content:"\F532"}
.mdi-trending-down:before{content:"\F533"}
.mdi-trending-neutral:before{content:"\F534"}
.mdi-trending-up:before{content:"\F535"}
.mdi-triangle:before{content:"\F536"}
.mdi-triangle-outline:before{content:"\F537"}
.mdi-trophy:before{content:"\F538"}
.mdi-trophy-award:before{content:"\F539"}
.mdi-trophy-outline:before{content:"\F53A"}
.mdi-trophy-variant:before{content:"\F53B"}
.mdi-trophy-variant-outline:before{content:"\F53C"}
.mdi-truck:before{content:"\F53D"}
.mdi-truck-delivery:before{content:"\F53E"}
.mdi-truck-trailer:before{content:"\F726"}
.mdi-tshirt-crew:before{content:"\F53F"}
.mdi-tshirt-v:before{content:"\F540"}
.mdi-tumblr:before{content:"\F541"}
.mdi-tumblr-reblog:before{content:"\F542"}
.mdi-tune:before{content:"\F62E"}
.mdi-tune-vertical:before{content:"\F66A"}
.mdi-twitch:before{content:"\F543"}
.mdi-twitter:before{content:"\F544"}
.mdi-twitter-box:before{content:"\F545"}
.mdi-twitter-circle:before{content:"\F546"}
.mdi-twitter-retweet:before{content:"\F547"}
.mdi-ubuntu:before{content:"\F548"}
.mdi-umbraco:before{content:"\F549"}
.mdi-umbrella:before{content:"\F54A"}
.mdi-umbrella-outline:before{content:"\F54B"}
.mdi-undo:before{content:"\F54C"}
.mdi-undo-variant:before{content:"\F54D"}
.mdi-unfold-less:before{content:"\F54E"}
.mdi-unfold-more:before{content:"\F54F"}
.mdi-ungroup:before{content:"\F550"}
.mdi-unity:before{content:"\F6AE"}
.mdi-untappd:before{content:"\F551"}
.mdi-update:before{content:"\F6AF"}
.mdi-upload:before{content:"\F552"}
.mdi-usb:before{content:"\F553"}
.mdi-vector-arrange-above:before{content:"\F554"}
.mdi-vector-arrange-below:before{content:"\F555"}
.mdi-vector-circle:before{content:"\F556"}
.mdi-vector-circle-variant:before{content:"\F557"}
.mdi-vector-combine:before{content:"\F558"}
.mdi-vector-curve:before{content:"\F559"}
.mdi-vector-difference:before{content:"\F55A"}
.mdi-vector-difference-ab:before{content:"\F55B"}
.mdi-vector-difference-ba:before{content:"\F55C"}
.mdi-vector-intersection:before{content:"\F55D"}
.mdi-vector-line:before{content:"\F55E"}
.mdi-vector-point:before{content:"\F55F"}
.mdi-vector-polygon:before{content:"\F560"}
.mdi-vector-polyline:before{content:"\F561"}
.mdi-vector-rectangle:before{content:"\F5C6"}
.mdi-vector-selection:before{content:"\F562"}
.mdi-vector-square:before{content:"\F001"}
.mdi-vector-triangle:before{content:"\F563"}
.mdi-vector-union:before{content:"\F564"}
.mdi-verified:before{content:"\F565"}
.mdi-vibrate:before{content:"\F566"}
.mdi-video:before{content:"\F567"}
.mdi-video-off:before{content:"\F568"}
.mdi-video-switch:before{content:"\F569"}
.mdi-view-agenda:before{content:"\F56A"}
.mdi-view-array:before{content:"\F56B"}
.mdi-view-carousel:before{content:"\F56C"}
.mdi-view-column:before{content:"\F56D"}
.mdi-view-dashboard:before{content:"\F56E"}
.mdi-view-day:before{content:"\F56F"}
.mdi-view-grid:before{content:"\F570"}
.mdi-view-headline:before{content:"\F571"}
.mdi-view-list:before{content:"\F572"}
.mdi-view-module:before{content:"\F573"}
.mdi-view-parallel:before{content:"\F727"}
.mdi-view-quilt:before{content:"\F574"}
.mdi-view-sequential:before{content:"\F728"}
.mdi-view-stream:before{content:"\F575"}
.mdi-view-week:before{content:"\F576"}
.mdi-vimeo:before{content:"\F577"}
.mdi-vine:before{content:"\F578"}
.mdi-violin:before{content:"\F60F"}
.mdi-visualstudio:before{content:"\F610"}
.mdi-vk:before{content:"\F579"}
.mdi-vk-box:before{content:"\F57A"}
.mdi-vk-circle:before{content:"\F57B"}
.mdi-vlc:before{content:"\F57C"}
.mdi-voice:before{content:"\F5CB"}
.mdi-voicemail:before{content:"\F57D"}
.mdi-volume-high:before{content:"\F57E"}
.mdi-volume-low:before{content:"\F57F"}
.mdi-volume-medium:before{content:"\F580"}
.mdi-volume-off:before{content:"\F581"}
.mdi-vpn:before{content:"\F582"}
.mdi-walk:before{content:"\F583"}
.mdi-wallet:before{content:"\F584"}
.mdi-wallet-giftcard:before{content:"\F585"}
.mdi-wallet-membership:before{content:"\F586"}
.mdi-wallet-travel:before{content:"\F587"}
.mdi-wan:before{content:"\F588"}
.mdi-washing-machine:before{content:"\F729"}
.mdi-watch:before{content:"\F589"}
.mdi-watch-export:before{content:"\F58A"}
.mdi-watch-import:before{content:"\F58B"}
.mdi-watch-vibrate:before{content:"\F6B0"}
.mdi-water:before{content:"\F58C"}
.mdi-water-off:before{content:"\F58D"}
.mdi-water-percent:before{content:"\F58E"}
.mdi-water-pump:before{content:"\F58F"}
.mdi-watermark:before{content:"\F612"}
.mdi-weather-cloudy:before{content:"\F590"}
.mdi-weather-fog:before{content:"\F591"}
.mdi-weather-hail:before{content:"\F592"}
.mdi-weather-lightning:before{content:"\F593"}
.mdi-weather-lightning-rainy:before{content:"\F67D"}
.mdi-weather-night:before{content:"\F594"}
.mdi-weather-partlycloudy:before{content:"\F595"}
.mdi-weather-pouring:before{content:"\F596"}
.mdi-weather-rainy:before{content:"\F597"}
.mdi-weather-snowy:before{content:"\F598"}
.mdi-weather-snowy-rainy:before{content:"\F67E"}
.mdi-weather-sunny:before{content:"\F599"}
.mdi-weather-sunset:before{content:"\F59A"}
.mdi-weather-sunset-down:before{content:"\F59B"}
.mdi-weather-sunset-up:before{content:"\F59C"}
.mdi-weather-windy:before{content:"\F59D"}
.mdi-weather-windy-variant:before{content:"\F59E"}
.mdi-web:before{content:"\F59F"}
.mdi-webcam:before{content:"\F5A0"}
.mdi-webhook:before{content:"\F62F"}
.mdi-webpack:before{content:"\F72A"}
.mdi-wechat:before{content:"\F611"}
.mdi-weight:before{content:"\F5A1"}
.mdi-weight-kilogram:before{content:"\F5A2"}
.mdi-whatsapp:before{content:"\F5A3"}
.mdi-wheelchair-accessibility:before{content:"\F5A4"}
.mdi-white-balance-auto:before{content:"\F5A5"}
.mdi-white-balance-incandescent:before{content:"\F5A6"}
.mdi-white-balance-iridescent:before{content:"\F5A7"}
.mdi-white-balance-sunny:before{content:"\F5A8"}
.mdi-widgets:before{content:"\F72B"}
.mdi-wifi:before{content:"\F5A9"}
.mdi-wifi-off:before{content:"\F5AA"}
.mdi-wii:before{content:"\F5AB"}
.mdi-wiiu:before{content:"\F72C"}
.mdi-wikipedia:before{content:"\F5AC"}
.mdi-window-close:before{content:"\F5AD"}
.mdi-window-closed:before{content:"\F5AE"}
.mdi-window-maximize:before{content:"\F5AF"}
.mdi-window-minimize:before{content:"\F5B0"}
.mdi-window-open:before{content:"\F5B1"}
.mdi-window-restore:before{content:"\F5B2"}
.mdi-windows:before{content:"\F5B3"}
.mdi-wordpress:before{content:"\F5B4"}
.mdi-worker:before{content:"\F5B5"}
.mdi-wrap:before{content:"\F5B6"}
.mdi-wrench:before{content:"\F5B7"}
.mdi-wunderlist:before{content:"\F5B8"}
.mdi-xaml:before{content:"\F673"}
.mdi-xbox:before{content:"\F5B9"}
.mdi-xbox-controller:before{content:"\F5BA"}
.mdi-xbox-controller-off:before{content:"\F5BB"}
.mdi-xda:before{content:"\F5BC"}
.mdi-xing:before{content:"\F5BD"}
.mdi-xing-box:before{content:"\F5BE"}
.mdi-xing-circle:before{content:"\F5BF"}
.mdi-xml:before{content:"\F5C0"}
.mdi-yeast:before{content:"\F5C1"}
.mdi-yelp:before{content:"\F5C2"}
.mdi-yin-yang:before{content:"\F67F"}
.mdi-youtube-play:before{content:"\F5C3"}
.mdi-zip-box:before{content:"\F5C4"}
.mdi-18px.mdi-set,.mdi-18px.mdi:before{font-size:18px}
.mdi-24px.mdi-set,.mdi-24px.mdi:before{font-size:24px}
.mdi-36px.mdi-set,.mdi-36px.mdi:before{font-size:36px}
.mdi-48px.mdi-set,.mdi-48px.mdi:before{font-size:48px}
.mdi-dark{color:rgba(0,0,0,0.54)}
.mdi-dark.mdi-inactive{color:rgba(0,0,0,0.26)}
.mdi-light{color:#fff}
.mdi-light.mdi-inactive{color:rgba(255,255,255,0.3)}
.mdi-rotate-45{transform:rotate(45deg)}
.mdi-rotate-90{transform:rotate(90deg)}
.mdi-rotate-135{transform:rotate(135deg)}
.mdi-rotate-180{transform:rotate(180deg)}
.mdi-rotate-225{transform:rotate(225deg)}
.mdi-rotate-270{transform:rotate(270deg)}
.mdi-rotate-315{transform:rotate(315deg)}
.mdi-flip-horizontal{transform:scaleX(-1);filter:FlipH;-ms-filter:"FlipH"}
.mdi-flip-vertical{transform:scaleY(-1);filter:FlipV;-ms-filter:"FlipV"}
@media screen {
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*Theme Colors*/
  /*bootstrap Color*/
  /*Light colors*/
  /*Normal Color*/
  /*Extra Variable*/
  /*Preloader*/
  .preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff; }
    .preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .dark_preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #232a37; }
    .dark_preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  /*!
 * Bootstrap v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
  :root {
    --blue: #02bec9;
    --indigo: #6610f2;
    --purple: #7460ee;
    --pink: #e83e8c;
    --red: #fb3a3a;
    --orange: #fd7e14;
    --yellow: #a0aec4;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #5c4ac7;
    --secondary: #6c757d;
    --success: #26dad2;
    --info: #1976d2;
    --warning: #ffb22b;
    --danger: #ef5350;
    --light: #f2f4f8;
    --dark: #263238;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
  *,
  *::before,
  *::after {
    box-sizing: border-box; }
  html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  @-ms-viewport {
    width: device-width; }
  article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block; }
  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #ffffff; }
  [tabindex="-1"]:focus {
    outline: 0 !important; }
  hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible; }
  h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem; }
  p {
    margin-top: 0;
    margin-bottom: 1rem; }
  abbr[title],
  abbr[data-original-title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
            text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0; }
  address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit; }
  ol,
  ul,
  dl {
    margin-top: 0;
    margin-bottom: 1rem; }
  ol ol,
  ul ul,
  ol ul,
  ul ol {
    margin-bottom: 0; }
  dt {
    font-weight: 700; }
  dd {
    margin-bottom: .5rem;
    margin-left: 0; }
  blockquote {
    margin: 0 0 1rem; }
  dfn {
    font-style: italic; }
  b,
  strong {
    font-weight: bolder; }
  small {
    font-size: 80%; }
  sub,
  sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline; }
  sub {
    bottom: -.25em; }
  sup {
    top: -.5em; }
  a {
    color: #5c4ac7;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects; }
    a:hover {
      color: #3d2e96;
      text-decoration: underline; }
  a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none; }
    a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
      color: inherit;
      text-decoration: none; }
    a:not([href]):not([tabindex]):focus {
      outline: 0; }
  pre,
  code,
  kbd,
  samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em; }
  pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar; }
  figure {
    margin: 0 0 1rem; }
  img {
    vertical-align: middle;
    border-style: none; }
  svg {
    overflow: hidden;
    vertical-align: middle; }
  table {
    border-collapse: collapse; }
  caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom; }
  th {
    text-align: inherit; }
  label {
    display: inline-block;
    margin-bottom: 0.5rem; }
  button {
    border-radius: 0; }
  button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color; }
  input,
  button,
  select,
  optgroup,
  textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit; }
  button,
  input {
    overflow: visible; }
  button,
  select {
    text-transform: none; }
  button,
  html [type="button"],
  [type="reset"],
  [type="submit"] {
    -webkit-appearance: button; }
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none; }
  input[type="radio"],
  input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0; }
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    -webkit-appearance: listbox; }
  textarea {
    overflow: auto;
    resize: vertical; }
  fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0; }
  legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal; }
  progress {
    vertical-align: baseline; }
  [type="number"]::-webkit-inner-spin-button,
  [type="number"]::-webkit-outer-spin-button {
    height: auto; }
  [type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none; }
  [type="search"]::-webkit-search-cancel-button,
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }
  ::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button; }
  output {
    display: inline-block; }
  summary {
    display: list-item;
    cursor: pointer; }
  template {
    display: none; }
  [hidden] {
    display: none !important; }
  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 \00A0"; }
  .img-fluid {
    max-width: 100%;
    height: auto; }
  .img-thumbnail {
    padding: 0.25rem;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto; }
  .figure {
    display: inline-block; }
  .figure-img {
    margin-bottom: 0.5rem;
    line-height: 1; }
  .figure-caption {
    font-size: 90%;
    color: #6c757d; }
  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: #ffffff;
    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 screen and (min-width: 576px) {
    .container {
      max-width: 540px; } }
@media screen and (min-width: 768px) {
    .container {
      max-width: 720px; } }
@media screen and (min-width: 992px) {
    .container {
      max-width: 960px; } }
@media screen and (min-width: 1200px) {
    .container {
      max-width: 1140px; } }
@media screen {
  .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.33333333%;
    max-width: 8.33333333%; }
  .col-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%; }
  .col-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%; }
  .col-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%; }
  .col-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%; }
  .col-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%; }
  .col-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%; }
  .col-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%; }
  .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.33333333%; }
  .offset-2 {
    margin-left: 16.66666667%; }
  .offset-3 {
    margin-left: 25%; }
  .offset-4 {
    margin-left: 33.33333333%; }
  .offset-5 {
    margin-left: 41.66666667%; }
  .offset-6 {
    margin-left: 50%; }
  .offset-7 {
    margin-left: 58.33333333%; }
  .offset-8 {
    margin-left: 66.66666667%; }
  .offset-9 {
    margin-left: 75%; }
  .offset-10 {
    margin-left: 83.33333333%; }
  .offset-11 {
    margin-left: 91.66666667%; } }
@media screen and (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.33333333%;
    max-width: 8.33333333%; }
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%; }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%; }
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%; }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%; }
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%; }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%; }
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%; }
  .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.33333333%; }
  .offset-sm-2 {
    margin-left: 16.66666667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333333%; }
  .offset-sm-5 {
    margin-left: 41.66666667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333333%; }
  .offset-sm-8 {
    margin-left: 66.66666667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333333%; }
  .offset-sm-11 {
    margin-left: 91.66666667%; } }
@media screen and (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.33333333%;
    max-width: 8.33333333%; }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%; }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%; }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%; }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%; }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%; }
  .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.33333333%; }
  .offset-md-2 {
    margin-left: 16.66666667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333333%; }
  .offset-md-5 {
    margin-left: 41.66666667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333333%; }
  .offset-md-8 {
    margin-left: 66.66666667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333333%; }
  .offset-md-11 {
    margin-left: 91.66666667%; } }
@media screen and (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.33333333%;
    max-width: 8.33333333%; }
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%; }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%; }
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%; }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%; }
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%; }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%; }
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%; }
  .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.33333333%; }
  .offset-lg-2 {
    margin-left: 16.66666667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333333%; }
  .offset-lg-5 {
    margin-left: 41.66666667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333333%; }
  .offset-lg-8 {
    margin-left: 66.66666667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333333%; }
  .offset-lg-11 {
    margin-left: 91.66666667%; } }
@media screen and (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.33333333%;
    max-width: 8.33333333%; }
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%; }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%; }
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%; }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%; }
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%; }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%; }
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%; }
  .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.33333333%; }
  .offset-xl-2 {
    margin-left: 16.66666667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333333%; }
  .offset-xl-5 {
    margin-left: 41.66666667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333333%; }
  .offset-xl-8 {
    margin-left: 66.66666667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333333%; }
  .offset-xl-11 {
    margin-left: 91.66666667%; } }
@media screen {
  .table {
    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: #ffffff; }
  .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: #d1ccef; }
  .table-hover .table-primary:hover {
    background-color: #bfb9e9; }
    .table-hover .table-primary:hover > td,
    .table-hover .table-primary:hover > th {
      background-color: #bfb9e9; }
  .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: #c2f5f2; }
  .table-hover .table-success:hover {
    background-color: #acf1ed; }
    .table-hover .table-success:hover > td,
    .table-hover .table-success:hover > th {
      background-color: #acf1ed; }
  .table-info,
  .table-info > th,
  .table-info > td {
    background-color: #bfd9f2; }
  .table-hover .table-info:hover {
    background-color: #aaccee; }
    .table-hover .table-info:hover > td,
    .table-hover .table-info:hover > th {
      background-color: #aaccee; }
  .table-warning,
  .table-warning > th,
  .table-warning > td {
    background-color: #ffe9c4; }
  .table-hover .table-warning:hover {
    background-color: #ffdfab; }
    .table-hover .table-warning:hover > td,
    .table-hover .table-warning:hover > th {
      background-color: #ffdfab; }
  .table-danger,
  .table-danger > th,
  .table-danger > td {
    background-color: #fbcfce; }
  .table-hover .table-danger:hover {
    background-color: #f9b8b6; }
    .table-hover .table-danger:hover > td,
    .table-hover .table-danger:hover > th {
      background-color: #f9b8b6; }
  .table-light,
  .table-light > th,
  .table-light > td {
    background-color: #fbfcfd; }
  .table-hover .table-light:hover {
    background-color: #eaeff5; }
    .table-hover .table-light:hover > td,
    .table-hover .table-light:hover > th {
      background-color: #eaeff5; }
  .table-dark,
  .table-dark > th,
  .table-dark > td {
    background-color: #c2c6c7; }
  .table-hover .table-dark:hover {
    background-color: #b5babb; }
    .table-hover .table-dark:hover > td,
    .table-hover .table-dark:hover > th {
      background-color: #b5babb; }
  .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: #ffffff;
    background-color: #212529;
    border-color: #32383e; }
  .table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6; }
  .table-dark {
    color: #ffffff;
    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 screen and (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 screen and (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 screen and (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 screen and (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; } }
@media screen {
  .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%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #ffffff;
    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; } }
@media screen {
    .form-control::-ms-expand {
      background-color: transparent;
      border: 0; }
    .form-control:focus {
      color: #495057;
      background-color: #ffffff;
      border-color: #b4abe5;
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(92, 74, 199, 0.25); }
    .form-control::-moz-placeholder {
      color: #6c757d;
      opacity: 1; }
    .form-control::-ms-input-placeholder {
      color: #6c757d;
      opacity: 1; }
    .form-control::placeholder {
      color: #6c757d;
      opacity: 1; }
    .form-control:disabled, .form-control[readonly] {
      background-color: #e9ecef;
      opacity: 1; }
  select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #ffffff; }
  .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, .form-control-plaintext.form-control-lg {
      padding-right: 0;
      padding-left: 0; }
  .form-control-sm {
    height: calc(1.8125rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem; }
  .form-control-lg {
    height: calc(2.875rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem; }
  select.form-control[size], select.form-control[multiple] {
    height: auto; }
  textarea.form-control {
    height: auto; }
  .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: #26dad2; }
  .valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: .1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #212529;
    background-color: rgba(38, 218, 210, 0.9);
    border-radius: 0.25rem; }
  .was-validated .form-control:valid, .form-control.is-valid, .was-validated
  .custom-select:valid,
  .custom-select.is-valid {
    border-color: #26dad2; }
    .was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated
    .custom-select:valid:focus,
    .custom-select.is-valid:focus {
      border-color: #26dad2;
      box-shadow: 0 0 0 0.2rem rgba(38, 218, 210, 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: #26dad2; }
  .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: #26dad2; }
    .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
      background-color: #93ede9; }
  .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: #52e1db; }
  .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 #ffffff, 0 0 0 0.2rem rgba(38, 218, 210, 0.25); }
  .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
    border-color: #26dad2; }
    .was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after {
      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(38, 218, 210, 0.25); }
  .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #ef5350; }
  .invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: .1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #ffffff;
    background-color: rgba(239, 83, 80, 0.9);
    border-radius: 0.25rem; }
  .was-validated .form-control:invalid, .form-control.is-invalid, .was-validated
  .custom-select:invalid,
  .custom-select.is-invalid {
    border-color: #ef5350; }
    .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated
    .custom-select:invalid:focus,
    .custom-select.is-invalid:focus {
      border-color: #ef5350;
      box-shadow: 0 0 0 0.2rem rgba(239, 83, 80, 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: #ef5350; }
  .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: #ef5350; }
    .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
      background-color: #fac6c5; }
  .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: #f3817f; }
  .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 #ffffff, 0 0 0 0.2rem rgba(239, 83, 80, 0.25); }
  .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
    border-color: #ef5350; }
    .was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after {
      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(239, 83, 80, 0.25); }
  .form-inline {
    display: flex;
    flex-flow: row wrap;
    align-items: center; }
    .form-inline .form-check {
      width: 100%; } }
@media screen and (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; } }
@media screen {
  .btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            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; } }
@media screen {
    .btn:hover, .btn:focus {
      text-decoration: none; }
    .btn:focus, .btn.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(92, 74, 199, 0.25); }
    .btn.disabled, .btn:disabled {
      opacity: 0.65; }
    .btn:not(:disabled):not(.disabled) {
      cursor: pointer; }
  a.btn.disabled,
  fieldset:disabled a.btn {
    pointer-events: none; }
  .btn-primary {
    color: #ffffff;
    background-color: #5c4ac7;
    border-color: #5c4ac7; }
    .btn-primary:hover {
      color: #ffffff;
      background-color: #4937b3;
      border-color: #4534aa; }
    .btn-primary:focus, .btn-primary.focus {
      box-shadow: 0 0 0 0.2rem rgba(92, 74, 199, 0.5); }
    .btn-primary.disabled, .btn-primary:disabled {
      color: #ffffff;
      background-color: #5c4ac7;
      border-color: #5c4ac7; }
    .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
    .show > .btn-primary.dropdown-toggle {
      color: #ffffff;
      background-color: #4534aa;
      border-color: #4131a0; }
      .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(92, 74, 199, 0.5); }
  .btn-secondary {
    color: #ffffff;
    background-color: #6c757d;
    border-color: #6c757d; }
    .btn-secondary:hover {
      color: #ffffff;
      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: #ffffff;
      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: #ffffff;
      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: #212529;
    background-color: #26dad2;
    border-color: #26dad2; }
    .btn-success:hover {
      color: #ffffff;
      background-color: #20bab3;
      border-color: #1eafa9; }
    .btn-success:focus, .btn-success.focus {
      box-shadow: 0 0 0 0.2rem rgba(38, 218, 210, 0.5); }
    .btn-success.disabled, .btn-success:disabled {
      color: #212529;
      background-color: #26dad2;
      border-color: #26dad2; }
    .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
    .show > .btn-success.dropdown-toggle {
      color: #ffffff;
      background-color: #1eafa9;
      border-color: #1ca49e; }
      .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(38, 218, 210, 0.5); }
  .btn-info {
    color: #ffffff;
    background-color: #1976d2;
    border-color: #1976d2; }
    .btn-info:hover {
      color: #ffffff;
      background-color: #1563b0;
      border-color: #145ca4; }
    .btn-info:focus, .btn-info.focus {
      box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.5); }
    .btn-info.disabled, .btn-info:disabled {
      color: #ffffff;
      background-color: #1976d2;
      border-color: #1976d2; }
    .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
    .show > .btn-info.dropdown-toggle {
      color: #ffffff;
      background-color: #145ca4;
      border-color: #125699; }
      .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(25, 118, 210, 0.5); }
  .btn-warning {
    color: #212529;
    background-color: #ffb22b;
    border-color: #ffb22b; }
    .btn-warning:hover {
      color: #212529;
      background-color: #ffa405;
      border-color: #f79d00; }
    .btn-warning:focus, .btn-warning.focus {
      box-shadow: 0 0 0 0.2rem rgba(255, 178, 43, 0.5); }
    .btn-warning.disabled, .btn-warning:disabled {
      color: #212529;
      background-color: #ffb22b;
      border-color: #ffb22b; }
    .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
    .show > .btn-warning.dropdown-toggle {
      color: #212529;
      background-color: #f79d00;
      border-color: #ea9500; }
      .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, 178, 43, 0.5); }
  .btn-danger {
    color: #ffffff;
    background-color: #ef5350;
    border-color: #ef5350; }
    .btn-danger:hover {
      color: #ffffff;
      background-color: #ec312d;
      border-color: #eb2521; }
    .btn-danger:focus, .btn-danger.focus {
      box-shadow: 0 0 0 0.2rem rgba(239, 83, 80, 0.5); }
    .btn-danger.disabled, .btn-danger:disabled {
      color: #ffffff;
      background-color: #ef5350;
      border-color: #ef5350; }
    .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
    .show > .btn-danger.dropdown-toggle {
      color: #ffffff;
      background-color: #eb2521;
      border-color: #ea1a16; }
      .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(239, 83, 80, 0.5); }
  .btn-light {
    color: #212529;
    background-color: #f2f4f8;
    border-color: #f2f4f8; }
    .btn-light:hover {
      color: #212529;
      background-color: #d9dfeb;
      border-color: #d1d8e6; }
    .btn-light:focus, .btn-light.focus {
      box-shadow: 0 0 0 0.2rem rgba(242, 244, 248, 0.5); }
    .btn-light.disabled, .btn-light:disabled {
      color: #212529;
      background-color: #f2f4f8;
      border-color: #f2f4f8; }
    .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
    .show > .btn-light.dropdown-toggle {
      color: #212529;
      background-color: #d1d8e6;
      border-color: #c9d1e2; }
      .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(242, 244, 248, 0.5); }
  .btn-dark {
    color: #ffffff;
    background-color: #263238;
    border-color: #263238; }
    .btn-dark:hover {
      color: #ffffff;
      background-color: #171e21;
      border-color: #11171a; }
    .btn-dark:focus, .btn-dark.focus {
      box-shadow: 0 0 0 0.2rem rgba(38, 50, 56, 0.5); }
    .btn-dark.disabled, .btn-dark:disabled {
      color: #ffffff;
      background-color: #263238;
      border-color: #263238; }
    .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
    .show > .btn-dark.dropdown-toggle {
      color: #ffffff;
      background-color: #11171a;
      border-color: #0c1012; }
      .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(38, 50, 56, 0.5); }
  .btn-outline-primary {
    color: #5c4ac7;
    background-color: transparent;
    background-image: none;
    border-color: #5c4ac7; }
    .btn-outline-primary:hover {
      color: #ffffff;
      background-color: #5c4ac7;
      border-color: #5c4ac7; }
    .btn-outline-primary:focus, .btn-outline-primary.focus {
      box-shadow: 0 0 0 0.2rem rgba(92, 74, 199, 0.5); }
    .btn-outline-primary.disabled, .btn-outline-primary:disabled {
      color: #5c4ac7;
      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: #ffffff;
      background-color: #5c4ac7;
      border-color: #5c4ac7; }
      .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(92, 74, 199, 0.5); }
  .btn-outline-secondary {
    color: #6c757d;
    background-color: transparent;
    background-image: none;
    border-color: #6c757d; }
    .btn-outline-secondary:hover {
      color: #ffffff;
      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: #ffffff;
      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: #26dad2;
    background-color: transparent;
    background-image: none;
    border-color: #26dad2; }
    .btn-outline-success:hover {
      color: #212529;
      background-color: #26dad2;
      border-color: #26dad2; }
    .btn-outline-success:focus, .btn-outline-success.focus {
      box-shadow: 0 0 0 0.2rem rgba(38, 218, 210, 0.5); }
    .btn-outline-success.disabled, .btn-outline-success:disabled {
      color: #26dad2;
      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: #212529;
      background-color: #26dad2;
      border-color: #26dad2; }
      .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(38, 218, 210, 0.5); }
  .btn-outline-info {
    color: #1976d2;
    background-color: transparent;
    background-image: none;
    border-color: #1976d2; }
    .btn-outline-info:hover {
      color: #ffffff;
      background-color: #1976d2;
      border-color: #1976d2; }
    .btn-outline-info:focus, .btn-outline-info.focus {
      box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.5); }
    .btn-outline-info.disabled, .btn-outline-info:disabled {
      color: #1976d2;
      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: #ffffff;
      background-color: #1976d2;
      border-color: #1976d2; }
      .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(25, 118, 210, 0.5); }
  .btn-outline-warning {
    color: #ffb22b;
    background-color: transparent;
    background-image: none;
    border-color: #ffb22b; }
    .btn-outline-warning:hover {
      color: #212529;
      background-color: #ffb22b;
      border-color: #ffb22b; }
    .btn-outline-warning:focus, .btn-outline-warning.focus {
      box-shadow: 0 0 0 0.2rem rgba(255, 178, 43, 0.5); }
    .btn-outline-warning.disabled, .btn-outline-warning:disabled {
      color: #ffb22b;
      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: #ffb22b;
      border-color: #ffb22b; }
      .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, 178, 43, 0.5); }
  .btn-outline-danger {
    color: #ef5350;
    background-color: transparent;
    background-image: none;
    border-color: #ef5350; }
    .btn-outline-danger:hover {
      color: #ffffff;
      background-color: #ef5350;
      border-color: #ef5350; }
    .btn-outline-danger:focus, .btn-outline-danger.focus {
      box-shadow: 0 0 0 0.2rem rgba(239, 83, 80, 0.5); }
    .btn-outline-danger.disabled, .btn-outline-danger:disabled {
      color: #ef5350;
      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: #ffffff;
      background-color: #ef5350;
      border-color: #ef5350; }
      .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(239, 83, 80, 0.5); }
  .btn-outline-light {
    color: #f2f4f8;
    background-color: transparent;
    background-image: none;
    border-color: #f2f4f8; }
    .btn-outline-light:hover {
      color: #212529;
      background-color: #f2f4f8;
      border-color: #f2f4f8; }
    .btn-outline-light:focus, .btn-outline-light.focus {
      box-shadow: 0 0 0 0.2rem rgba(242, 244, 248, 0.5); }
    .btn-outline-light.disabled, .btn-outline-light:disabled {
      color: #f2f4f8;
      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: #f2f4f8;
      border-color: #f2f4f8; }
      .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(242, 244, 248, 0.5); }
  .btn-outline-dark {
    color: #263238;
    background-color: transparent;
    background-image: none;
    border-color: #263238; }
    .btn-outline-dark:hover {
      color: #ffffff;
      background-color: #263238;
      border-color: #263238; }
    .btn-outline-dark:focus, .btn-outline-dark.focus {
      box-shadow: 0 0 0 0.2rem rgba(38, 50, 56, 0.5); }
    .btn-outline-dark.disabled, .btn-outline-dark:disabled {
      color: #263238;
      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: #ffffff;
      background-color: #263238;
      border-color: #263238; }
      .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(38, 50, 56, 0.5); }
  .btn-link {
    font-weight: 400;
    color: #5c4ac7;
    background-color: transparent; }
    .btn-link:hover {
      color: #3d2e96;
      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%; }
  .fade {
    transition: opacity 0.15s linear; } }
@media screen and (prefers-reduced-motion: reduce) {
    .fade {
      transition: none; } }
@media screen {
    .fade:not(.show) {
      opacity: 0; }
  .collapse:not(.show) {
    display: none; }
  .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease; } }
@media screen and (prefers-reduced-motion: reduce) {
    .collapsing {
      transition: none; } }
@media screen {
  .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: #ffffff;
    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: #ffffff;
      text-decoration: none;
      background-color: #5c4ac7; }
    .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 > .custom-file .custom-file-input:focus {
      z-index: 4; }
    .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-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 {
    height: calc(2.875rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem; }
  .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 {
    height: calc(1.8125rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem; }
  .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; }
  .custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem; }
  .custom-control-inline {
    display: inline-flex;
    margin-right: 1rem; }
  .custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0; }
    .custom-control-input:checked ~ .custom-control-label::before {
      color: #ffffff;
      background-color: #5c4ac7; }
    .custom-control-input:focus ~ .custom-control-label::before {
      box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(92, 74, 199, 0.25); }
    .custom-control-input:active ~ .custom-control-label::before {
      color: #ffffff;
      background-color: #d7d2f1; }
    .custom-control-input:disabled ~ .custom-control-label {
      color: #6c757d; }
      .custom-control-input:disabled ~ .custom-control-label::before {
        background-color: #e9ecef; }
  .custom-control-label {
    position: relative;
    margin-bottom: 0; }
    .custom-control-label::before {
      position: absolute;
      top: 0.25rem;
      left: -1.5rem;
      display: block;
      width: 1rem;
      height: 1rem;
      pointer-events: none;
      content: "";
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      background-color: #dee2e6; }
    .custom-control-label::after {
      position: absolute;
      top: 0.25rem;
      left: -1.5rem;
      display: block;
      width: 1rem;
      height: 1rem;
      content: "";
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 50% 50%; }
  .custom-checkbox .custom-control-label::before {
    border-radius: 0.25rem; }
  .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #5c4ac7; }
  .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); }
  .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    background-color: #5c4ac7; }
  .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23ffffff' d='M0 2h4'/%3E%3C/svg%3E"); }
  .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(92, 74, 199, 0.5); }
  .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: rgba(92, 74, 199, 0.5); }
  .custom-radio .custom-control-label::before {
    border-radius: 50%; }
  .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #5c4ac7; }
  .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23ffffff'/%3E%3C/svg%3E"); }
  .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(92, 74, 199, 0.5); }
  .custom-select {
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #ffffff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-size: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; }
    .custom-select:focus {
      border-color: #b4abe5;
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(180, 171, 229, 0.5); }
      .custom-select:focus::-ms-value {
        color: #495057;
        background-color: #ffffff; }
    .custom-select[multiple], .custom-select[size]:not([size="1"]) {
      height: auto;
      padding-right: 0.75rem;
      background-image: none; }
    .custom-select:disabled {
      color: #6c757d;
      background-color: #e9ecef; }
    .custom-select::-ms-expand {
      opacity: 0; }
  .custom-select-sm {
    height: calc(1.8125rem + 2px);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 75%; }
  .custom-select-lg {
    height: calc(2.875rem + 2px);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 125%; }
  .custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin-bottom: 0; }
  .custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin: 0;
    opacity: 0; }
    .custom-file-input:focus ~ .custom-file-label {
      border-color: #b4abe5;
      box-shadow: 0 0 0 0.2rem rgba(92, 74, 199, 0.25); }
      .custom-file-input:focus ~ .custom-file-label::after {
        border-color: #b4abe5; }
    .custom-file-input:disabled ~ .custom-file-label {
      background-color: #e9ecef; }
    .custom-file-input:lang(en) ~ .custom-file-label::after {
      content: "Browse"; }
  .custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem; }
    .custom-file-label::after {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 3;
      display: block;
      height: 2.25rem;
      padding: 0.375rem 0.75rem;
      line-height: 1.5;
      color: #495057;
      content: "Browse";
      background-color: #e9ecef;
      border-left: 1px solid #ced4da;
      border-radius: 0 0.25rem 0.25rem 0; }
  .custom-range {
    width: 100%;
    padding-left: 0;
    background-color: transparent;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; }
    .custom-range:focus {
      outline: none; }
      .custom-range:focus::-webkit-slider-thumb {
        box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(92, 74, 199, 0.25); }
      .custom-range:focus::-moz-range-thumb {
        box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(92, 74, 199, 0.25); }
      .custom-range:focus::-ms-thumb {
        box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(92, 74, 199, 0.25); }
    .custom-range::-moz-focus-outer {
      border: 0; }
    .custom-range::-webkit-slider-thumb {
      width: 1rem;
      height: 1rem;
      margin-top: -0.25rem;
      background-color: #5c4ac7;
      border: 0;
      border-radius: 1rem;
      transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
      -webkit-appearance: none;
              appearance: none; } }
@media screen and (prefers-reduced-motion: reduce) {
      .custom-range::-webkit-slider-thumb {
        transition: none; } }
@media screen {
      .custom-range::-webkit-slider-thumb:active {
        background-color: #d7d2f1; }
    .custom-range::-webkit-slider-runnable-track {
      width: 100%;
      height: 0.5rem;
      color: transparent;
      cursor: pointer;
      background-color: #dee2e6;
      border-color: transparent;
      border-radius: 1rem; }
    .custom-range::-moz-range-thumb {
      width: 1rem;
      height: 1rem;
      background-color: #5c4ac7;
      border: 0;
      border-radius: 1rem;
      transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
      -moz-appearance: none;
           appearance: none; } }
@media screen and (prefers-reduced-motion: reduce) {
      .custom-range::-moz-range-thumb {
        transition: none; } }
@media screen {
      .custom-range::-moz-range-thumb:active {
        background-color: #d7d2f1; }
    .custom-range::-moz-range-track {
      width: 100%;
      height: 0.5rem;
      color: transparent;
      cursor: pointer;
      background-color: #dee2e6;
      border-color: transparent;
      border-radius: 1rem; }
    .custom-range::-ms-thumb {
      width: 1rem;
      height: 1rem;
      margin-top: 0;
      margin-right: 0.2rem;
      margin-left: 0.2rem;
      background-color: #5c4ac7;
      border: 0;
      border-radius: 1rem;
      transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
      appearance: none; } }
@media screen and (prefers-reduced-motion: reduce) {
      .custom-range::-ms-thumb {
        transition: none; } }
@media screen {
      .custom-range::-ms-thumb:active {
        background-color: #d7d2f1; }
    .custom-range::-ms-track {
      width: 100%;
      height: 0.5rem;
      color: transparent;
      cursor: pointer;
      background-color: transparent;
      border-color: transparent;
      border-width: 0.5rem; }
    .custom-range::-ms-fill-lower {
      background-color: #dee2e6;
      border-radius: 1rem; }
    .custom-range::-ms-fill-upper {
      margin-right: 15px;
      background-color: #dee2e6;
      border-radius: 1rem; }
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: 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) {
    .custom-control-label::before,
    .custom-file-label,
    .custom-select {
      transition: none; } }
@media screen {
  .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: #ffffff;
      border-color: #dee2e6 #dee2e6 #ffffff; }
    .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: #ffffff;
    background-color: #5c4ac7; }
  .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; }
  .navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem; }
    .navbar > .container,
    .navbar > .container-fluid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between; }
  .navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap; }
    .navbar-brand:hover, .navbar-brand:focus {
      text-decoration: none; }
  .navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
    .navbar-nav .nav-link {
      padding-right: 0;
      padding-left: 0; }
    .navbar-nav .dropdown-menu {
      position: static;
      float: none; }
  .navbar-text {
    display: inline-block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem; }
  .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center; }
  .navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem; }
    .navbar-toggler:hover, .navbar-toggler:focus {
      text-decoration: none; }
    .navbar-toggler:not(:disabled):not(.disabled) {
      cursor: pointer; }
  .navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%; } }
@media screen and (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }
@media screen and (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-sm .navbar-nav {
      flex-direction: row; }
      .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid {
      flex-wrap: nowrap; }
    .navbar-expand-sm .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-sm .navbar-toggler {
      display: none; } }
@media screen and (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }
@media screen and (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-md .navbar-nav {
      flex-direction: row; }
      .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid {
      flex-wrap: nowrap; }
    .navbar-expand-md .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-md .navbar-toggler {
      display: none; } }
@media screen and (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }
@media screen and (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-lg .navbar-nav {
      flex-direction: row; }
      .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
      flex-wrap: nowrap; }
    .navbar-expand-lg .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-lg .navbar-toggler {
      display: none; } }
@media screen and (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }
@media screen and (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-xl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid {
      flex-wrap: nowrap; }
    .navbar-expand-xl .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-xl .navbar-toggler {
      display: none; } }
@media screen {
  .navbar-expand {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand > .container,
    .navbar-expand > .container-fluid {
      padding-right: 0;
      padding-left: 0; }
    .navbar-expand .navbar-nav {
      flex-direction: row; }
      .navbar-expand .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand > .container,
    .navbar-expand > .container-fluid {
      flex-wrap: nowrap; }
    .navbar-expand .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand .navbar-toggler {
      display: none; }
  .navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9); }
    .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
      color: rgba(0, 0, 0, 0.9); }
  .navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5); }
    .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
      color: rgba(0, 0, 0, 0.7); }
    .navbar-light .navbar-nav .nav-link.disabled {
      color: rgba(0, 0, 0, 0.3); }
  .navbar-light .navbar-nav .show > .nav-link,
  .navbar-light .navbar-nav .active > .nav-link,
  .navbar-light .navbar-nav .nav-link.show,
  .navbar-light .navbar-nav .nav-link.active {
    color: rgba(0, 0, 0, 0.9); }
  .navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1); }
  .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }
  .navbar-light .navbar-text {
    color: rgba(0, 0, 0, 0.5); }
    .navbar-light .navbar-text a {
      color: rgba(0, 0, 0, 0.9); }
      .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
        color: rgba(0, 0, 0, 0.9); }
  .navbar-dark .navbar-brand {
    color: #ffffff; }
    .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
      color: #ffffff; }
  .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5); }
    .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
      color: rgba(255, 255, 255, 0.75); }
    .navbar-dark .navbar-nav .nav-link.disabled {
      color: rgba(255, 255, 255, 0.25); }
  .navbar-dark .navbar-nav .show > .nav-link,
  .navbar-dark .navbar-nav .active > .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff; }
  .navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1); }
  .navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }
  .navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.5); }
    .navbar-dark .navbar-text a {
      color: #ffffff; }
      .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
        color: #ffffff; }
  .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #ffffff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem; }
    .card > hr {
      margin-right: 0;
      margin-left: 0; }
    .card > .list-group:first-child .list-group-item:first-child {
      border-top-left-radius: 0.25rem;
      border-top-right-radius: 0.25rem; }
    .card > .list-group:last-child .list-group-item:last-child {
      border-bottom-right-radius: 0.25rem;
      border-bottom-left-radius: 0.25rem; }
  .card-body {
    flex: 1 1 auto;
    padding: 1.25rem; }
  .card-title {
    margin-bottom: 0.75rem; }
  .card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0; }
  .card-text:last-child {
    margin-bottom: 0; }
  .card-link:hover {
    text-decoration: none; }
  .card-link + .card-link {
    margin-left: 1.25rem; }
  .card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
    .card-header:first-child {
      border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; }
    .card-header + .list-group .list-group-item:first-child {
      border-top: 0; }
  .card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125); }
    .card-footer:last-child {
      border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); }
  .card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0; }
  .card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem; }
  .card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem; }
  .card-img {
    width: 100%;
    border-radius: calc(0.25rem - 1px); }
  .card-img-top {
    width: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px); }
  .card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px); }
  .card-deck {
    display: flex;
    flex-direction: column; }
    .card-deck .card {
      margin-bottom: 15px; } }
@media screen and (min-width: 576px) {
    .card-deck {
      flex-flow: row wrap;
      margin-right: -15px;
      margin-left: -15px; }
      .card-deck .card {
        display: flex;
        flex: 1 0 0%;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px; } }
@media screen {
  .card-group {
    display: flex;
    flex-direction: column; }
    .card-group > .card {
      margin-bottom: 15px; } }
@media screen and (min-width: 576px) {
    .card-group {
      flex-flow: row wrap; }
      .card-group > .card {
        flex: 1 0 0%;
        margin-bottom: 0; }
        .card-group > .card + .card {
          margin-left: 0;
          border-left: 0; }
        .card-group > .card:first-child {
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
          .card-group > .card:first-child .card-img-top,
          .card-group > .card:first-child .card-header {
            border-top-right-radius: 0; }
          .card-group > .card:first-child .card-img-bottom,
          .card-group > .card:first-child .card-footer {
            border-bottom-right-radius: 0; }
        .card-group > .card:last-child {
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
          .card-group > .card:last-child .card-img-top,
          .card-group > .card:last-child .card-header {
            border-top-left-radius: 0; }
          .card-group > .card:last-child .card-img-bottom,
          .card-group > .card:last-child .card-footer {
            border-bottom-left-radius: 0; }
        .card-group > .card:only-child {
          border-radius: 0.25rem; }
          .card-group > .card:only-child .card-img-top,
          .card-group > .card:only-child .card-header {
            border-top-left-radius: 0.25rem;
            border-top-right-radius: 0.25rem; }
          .card-group > .card:only-child .card-img-bottom,
          .card-group > .card:only-child .card-footer {
            border-bottom-right-radius: 0.25rem;
            border-bottom-left-radius: 0.25rem; }
        .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
          border-radius: 0; }
          .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
          .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
          .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
          .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
            border-radius: 0; } }
@media screen {
  .card-columns .card {
    margin-bottom: 0.75rem; } }
@media screen and (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1; }
    .card-columns .card {
      display: inline-block;
      width: 100%; } }
@media screen {
  .accordion .card:not(:first-of-type):not(:last-of-type) {
    border-bottom: 0;
    border-radius: 0; }
  .accordion .card:not(:first-of-type) .card-header:first-child {
    border-radius: 0; }
  .accordion .card:first-of-type {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .accordion .card:last-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  .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: #5c4ac7;
    background-color: #ffffff;
    border: 1px solid #dee2e6; }
    .page-link:hover {
      z-index: 2;
      color: #3d2e96;
      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(92, 74, 199, 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: #ffffff;
    background-color: #5c4ac7;
    border-color: #5c4ac7; }
  .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #ffffff;
    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: #ffffff;
    background-color: #5c4ac7; }
    .badge-primary[href]:hover, .badge-primary[href]:focus {
      color: #ffffff;
      text-decoration: none;
      background-color: #4534aa; }
  .badge-secondary {
    color: #ffffff;
    background-color: #6c757d; }
    .badge-secondary[href]:hover, .badge-secondary[href]:focus {
      color: #ffffff;
      text-decoration: none;
      background-color: #545b62; }
  .badge-success {
    color: #212529;
    background-color: #26dad2; }
    .badge-success[href]:hover, .badge-success[href]:focus {
      color: #212529;
      text-decoration: none;
      background-color: #1eafa9; }
  .badge-info {
    color: #ffffff;
    background-color: #1976d2; }
    .badge-info[href]:hover, .badge-info[href]:focus {
      color: #ffffff;
      text-decoration: none;
      background-color: #145ca4; }
  .badge-warning {
    color: #212529;
    background-color: #ffb22b; }
    .badge-warning[href]:hover, .badge-warning[href]:focus {
      color: #212529;
      text-decoration: none;
      background-color: #f79d00; }
  .badge-danger {
    color: #ffffff;
    background-color: #ef5350; }
    .badge-danger[href]:hover, .badge-danger[href]:focus {
      color: #ffffff;
      text-decoration: none;
      background-color: #eb2521; }
  .badge-light {
    color: #212529;
    background-color: #f2f4f8; }
    .badge-light[href]:hover, .badge-light[href]:focus {
      color: #212529;
      text-decoration: none;
      background-color: #d1d8e6; }
  .badge-dark {
    color: #ffffff;
    background-color: #263238; }
    .badge-dark[href]:hover, .badge-dark[href]:focus {
      color: #ffffff;
      text-decoration: none;
      background-color: #11171a; }
  .jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: 0.3rem; } }
@media screen and (min-width: 576px) {
    .jumbotron {
      padding: 4rem 2rem; } }
@media screen {
  .jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0; }
  .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: #302667;
    background-color: #dedbf4;
    border-color: #d1ccef; }
    .alert-primary hr {
      border-top-color: #bfb9e9; }
    .alert-primary .alert-link {
      color: #1f1842; }
  .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: #14716d;
    background-color: #d4f8f6;
    border-color: #c2f5f2; }
    .alert-success hr {
      border-top-color: #acf1ed; }
    .alert-success .alert-link {
      color: #0c4643; }
  .alert-info {
    color: #0d3d6d;
    background-color: #d1e4f6;
    border-color: #bfd9f2; }
    .alert-info hr {
      border-top-color: #aaccee; }
    .alert-info .alert-link {
      color: #08243f; }
  .alert-warning {
    color: #855d16;
    background-color: #fff0d5;
    border-color: #ffe9c4; }
    .alert-warning hr {
      border-top-color: #ffdfab; }
    .alert-warning .alert-link {
      color: #593e0f; }
  .alert-danger {
    color: #7c2b2a;
    background-color: #fcdddc;
    border-color: #fbcfce; }
    .alert-danger hr {
      border-top-color: #f9b8b6; }
    .alert-danger .alert-link {
      color: #561e1d; }
  .alert-light {
    color: #7e7f81;
    background-color: #fcfdfe;
    border-color: #fbfcfd; }
    .alert-light hr {
      border-top-color: #eaeff5; }
    .alert-light .alert-link {
      color: #656667; }
  .alert-dark {
    color: #141a1d;
    background-color: #d4d6d7;
    border-color: #c2c6c7; }
    .alert-dark hr {
      border-top-color: #b5babb; }
    .alert-dark .alert-link {
      color: black; }
  @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: #ffffff;
    text-align: center;
    white-space: nowrap;
    background-color: #5c4ac7;
    transition: width 0.6s ease; } }
@media screen and (prefers-reduced-motion: reduce) {
    .progress-bar {
      transition: none; } }
@media screen {
  .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: #ffffff;
    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: #ffffff; }
    .list-group-item.active {
      z-index: 2;
      color: #ffffff;
      background-color: #5c4ac7;
      border-color: #5c4ac7; }
  .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: #302667;
    background-color: #d1ccef; }
    .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
      color: #302667;
      background-color: #bfb9e9; }
    .list-group-item-primary.list-group-item-action.active {
      color: #ffffff;
      background-color: #302667;
      border-color: #302667; }
  .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: #ffffff;
      background-color: #383d41;
      border-color: #383d41; }
  .list-group-item-success {
    color: #14716d;
    background-color: #c2f5f2; }
    .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
      color: #14716d;
      background-color: #acf1ed; }
    .list-group-item-success.list-group-item-action.active {
      color: #ffffff;
      background-color: #14716d;
      border-color: #14716d; }
  .list-group-item-info {
    color: #0d3d6d;
    background-color: #bfd9f2; }
    .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
      color: #0d3d6d;
      background-color: #aaccee; }
    .list-group-item-info.list-group-item-action.active {
      color: #ffffff;
      background-color: #0d3d6d;
      border-color: #0d3d6d; }
  .list-group-item-warning {
    color: #855d16;
    background-color: #ffe9c4; }
    .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
      color: #855d16;
      background-color: #ffdfab; }
    .list-group-item-warning.list-group-item-action.active {
      color: #ffffff;
      background-color: #855d16;
      border-color: #855d16; }
  .list-group-item-danger {
    color: #7c2b2a;
    background-color: #fbcfce; }
    .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
      color: #7c2b2a;
      background-color: #f9b8b6; }
    .list-group-item-danger.list-group-item-action.active {
      color: #ffffff;
      background-color: #7c2b2a;
      border-color: #7c2b2a; }
  .list-group-item-light {
    color: #7e7f81;
    background-color: #fbfcfd; }
    .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
      color: #7e7f81;
      background-color: #eaeff5; }
    .list-group-item-light.list-group-item-action.active {
      color: #ffffff;
      background-color: #7e7f81;
      border-color: #7e7f81; }
  .list-group-item-dark {
    color: #141a1d;
    background-color: #c2c6c7; }
    .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
      color: #141a1d;
      background-color: #b5babb; }
    .list-group-item-dark.list-group-item-action.active {
      color: #ffffff;
      background-color: #141a1d;
      border-color: #141a1d; }
  .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #ffffff;
    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; }
  .modal-open {
    overflow: hidden; }
    .modal-open .modal {
      overflow-x: hidden;
      overflow-y: auto; }
  .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0; }
  .modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none; }
    .modal.fade .modal-dialog {
      transition: transform 0.3s ease-out;
      transform: translate(0, -25%); } }
@media screen and (prefers-reduced-motion: reduce) {
      .modal.fade .modal-dialog {
        transition: none; } }
@media screen {
    .modal.show .modal-dialog {
      transform: translate(0, 0); }
  .modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2)); }
    .modal-dialog-centered::before {
      display: block;
      height: calc(100vh - (0.5rem * 2));
      content: ""; }
  .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0; }
  .modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000; }
    .modal-backdrop.fade {
      opacity: 0; }
    .modal-backdrop.show {
      opacity: 0.5; }
  .modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem; }
    .modal-header .close {
      padding: 1rem;
      margin: -1rem -1rem -1rem auto; }
  .modal-title {
    margin-bottom: 0;
    line-height: 1.5; }
  .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem; }
  .modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef; }
    .modal-footer > :not(:first-child) {
      margin-left: .25rem; }
    .modal-footer > :not(:last-child) {
      margin-right: .25rem; }
  .modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll; } }
@media screen and (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto; }
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2)); }
    .modal-dialog-centered::before {
      height: calc(100vh - (1.75rem * 2)); }
  .modal-sm {
    max-width: 300px; } }
@media screen and (min-width: 992px) {
  .modal-lg {
    max-width: 800px; } }
@media screen {
  .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", "Noto Color Emoji";
    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: #ffffff;
    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", "Noto Color Emoji";
    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: #ffffff;
    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: #ffffff; }
  .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: #ffffff; }
  .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: #ffffff; }
    .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: #ffffff; }
  .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%;
    -webkit-backface-visibility: hidden;
            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; } }
@media screen {
  .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: #ffffff;
    text-align: center;
    opacity: 0.5; }
    .carousel-control-prev:hover, .carousel-control-prev:focus,
    .carousel-control-next:hover,
    .carousel-control-next:focus {
      color: #ffffff;
      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='%23ffffff' 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='%23ffffff' 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: #ffffff; }
  .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #ffffff;
    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: #5c4ac7 !important; }
  a.bg-primary:hover, a.bg-primary:focus,
  button.bg-primary:hover,
  button.bg-primary:focus {
    background-color: #4534aa !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: #26dad2 !important; }
  a.bg-success:hover, a.bg-success:focus,
  button.bg-success:hover,
  button.bg-success:focus {
    background-color: #1eafa9 !important; }
  .bg-info {
    background-color: #1976d2 !important; }
  a.bg-info:hover, a.bg-info:focus,
  button.bg-info:hover,
  button.bg-info:focus {
    background-color: #145ca4 !important; }
  .bg-warning {
    background-color: #ffb22b !important; }
  a.bg-warning:hover, a.bg-warning:focus,
  button.bg-warning:hover,
  button.bg-warning:focus {
    background-color: #f79d00 !important; }
  .bg-danger {
    background-color: #ef5350 !important; }
  a.bg-danger:hover, a.bg-danger:focus,
  button.bg-danger:hover,
  button.bg-danger:focus {
    background-color: #eb2521 !important; }
  .bg-light {
    background-color: #f2f4f8 !important; }
  a.bg-light:hover, a.bg-light:focus,
  button.bg-light:hover,
  button.bg-light:focus {
    background-color: #d1d8e6 !important; }
  .bg-dark {
    background-color: #263238 !important; }
  a.bg-dark:hover, a.bg-dark:focus,
  button.bg-dark:hover,
  button.bg-dark:focus {
    background-color: #11171a !important; }
  .bg-white {
    background-color: #ffffff !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: #5c4ac7 !important; }
  .border-secondary {
    border-color: #6c757d !important; }
  .border-success {
    border-color: #26dad2 !important; }
  .border-info {
    border-color: #1976d2 !important; }
  .border-warning {
    border-color: #ffb22b !important; }
  .border-danger {
    border-color: #ef5350 !important; }
  .border-light {
    border-color: #f2f4f8 !important; }
  .border-dark {
    border-color: #263238 !important; }
  .border-white {
    border-color: #ffffff !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 screen and (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 screen and (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 screen and (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 screen and (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 screen {
  .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.85714286%; }
  .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 screen and (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 screen and (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 screen and (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 screen and (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; } }
@media screen {
  .float-left {
    float: left !important; }
  .float-right {
    float: right !important; }
  .float-none {
    float: none !important; } }
@media screen and (min-width: 576px) {
  .float-sm-left {
    float: left !important; }
  .float-sm-right {
    float: right !important; }
  .float-sm-none {
    float: none !important; } }
@media screen and (min-width: 768px) {
  .float-md-left {
    float: left !important; }
  .float-md-right {
    float: right !important; }
  .float-md-none {
    float: none !important; } }
@media screen and (min-width: 992px) {
  .float-lg-left {
    float: left !important; }
  .float-lg-right {
    float: right !important; }
  .float-lg-none {
    float: none !important; } }
@media screen and (min-width: 1200px) {
  .float-xl-left {
    float: left !important; }
  .float-xl-right {
    float: right !important; }
  .float-xl-none {
    float: none !important; } }
@media screen {
  .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 screen and (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 screen and (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 screen and (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 screen and (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; } }
@media screen {
  .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 screen and (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 screen and (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 screen and (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 screen and (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important; }
  .text-xl-right {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }
@media screen {
  .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: #ffffff !important; }
  .text-primary {
    color: #5c4ac7 !important; }
  a.text-primary:hover, a.text-primary:focus {
    color: #4534aa !important; }
  .text-secondary {
    color: #6c757d !important; }
  a.text-secondary:hover, a.text-secondary:focus {
    color: #545b62 !important; }
  .text-success {
    color: #26dad2 !important; }
  a.text-success:hover, a.text-success:focus {
    color: #1eafa9 !important; }
  .text-info {
    color: #1976d2 !important; }
  a.text-info:hover, a.text-info:focus {
    color: #145ca4 !important; }
  .text-warning {
    color: #ffb22b !important; }
  a.text-warning:hover, a.text-warning:focus {
    color: #f79d00 !important; }
  .text-danger {
    color: #ef5350 !important; }
  a.text-danger:hover, a.text-danger:focus {
    color: #eb2521 !important; }
  .text-light {
    color: #f2f4f8 !important; }
  a.text-light:hover, a.text-light:focus {
    color: #d1d8e6 !important; }
  .text-dark {
    color: #263238 !important; }
  a.text-dark:hover, a.text-dark:focus {
    color: #11171a !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; }
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /**
 * Table Of Content
 *
 *  1. Globals
 *  2. Headers
 *  3. Navigations
 *  4. Banners
 *  5. Footers
 *  6. Posts
 *  7. Widgets
 *  8. Custom Templates
 */
  /******************* 
Global Styles 
*******************/
  * {
    outline: none; }
  body {
    background: #fff;
    font-family: "Poppins", sans-serif;
    margin: 0;
    overflow-x: hidden;
    color: #7d8b92;
    font-weight: 300; }
  html {
    position: relative;
    min-height: 100%;
    background: #ffffff; }
  a:hover,
  a:focus {
    text-decoration: none; }
  a.link {
    color: #455a64; }
    a.link:hover, a.link:focus {
      color: #1976d2; }
  .img-responsive {
    width: 100%;
    height: auto;
    display: inline-block; }
  .img-rounded {
    border-radius: 4px; }
  html body .mdi:before,
  html body .mdi-set {
    line-height: initial; }
  /*******************
Headings
*******************/
  h1, h2, h3, h4, h5, h6 {
    color: #455a64;
    font-family: "Poppins", sans-serif;
    font-weight: 400; }
  h1 {
    line-height: 40px;
    font-size: 36px; }
  h2 {
    line-height: 36px;
    font-size: 24px; }
  h3 {
    line-height: 30px;
    font-size: 21px; }
  h4 {
    line-height: 22px;
    font-size: 18px; }
  h5 {
    line-height: 18px;
    font-size: 16px;
    font-weight: 400; }
  h6 {
    line-height: 16px;
    font-size: 14px;
    font-weight: 400; }
  .display-5 {
    font-size: 3rem; }
  .display-6 {
    font-size: 36px; }
  .box {
    border-radius: 4px;
    padding: 10px; }
  html body .dl {
    display: inline-block; }
  html body .db {
    display: block; }
  .no-wrap td,
  .no-wrap th {
    white-space: nowrap; }
  /*******************
Blockquote
*******************/
  html body blockquote {
    border-left: 5px solid #1976d2;
    border: 1px solid rgba(120, 130, 140, 0.13);
    padding: 15px; }
  .clear {
    clear: both; }
  ol li {
    margin: 5px 0; }
  /*******************
Paddings
*******************/
  html body .p-0 {
    padding: 0px; }
  html body .p-10 {
    padding: 10px; }
  html body .p-20 {
    padding: 20px; }
  html body .p-30 {
    padding: 30px; }
  html body .p-l-0 {
    padding-left: 0px; }
  html body .p-l-10 {
    padding-left: 10px; }
  html body .p-l-20 {
    padding-left: 20px; }
  html body .p-r-0 {
    padding-right: 0px; }
  html body .p-r-10 {
    padding-right: 10px; }
  html body .p-r-20 {
    padding-right: 20px; }
  html body .p-r-30 {
    padding-right: 30px; }
  html body .p-r-40 {
    padding-right: 40px; }
  html body .p-t-0 {
    padding-top: 0px; }
  html body .p-t-10 {
    padding-top: 10px; }
  html body .p-t-20 {
    padding-top: 20px; }
  html body .p-t-30 {
    padding-top: 30px; }
  html body .p-b-0 {
    padding-bottom: 0px; }
  html body .p-b-5 {
    padding-bottom: 5px; }
  html body .p-b-10 {
    padding-bottom: 10px; }
  html body .p-b-20 {
    padding-bottom: 20px; }
  html body .p-b-30 {
    padding-bottom: 30px; }
  html body .p-b-40 {
    padding-bottom: 40px; }
  /*******************
Margin
*******************/
  html body .m-0 {
    margin: 0px; }
  html body .m-l-5 {
    margin-left: 5px; }
  html body .m-l-10 {
    margin-left: 10px; }
  html body .m-l-15 {
    margin-left: 15px; }
  html body .m-l-20 {
    margin-left: 20px; }
  html body .m-l-30 {
    margin-left: 30px; }
  html body .m-l-40 {
    margin-left: 40px; }
  html body .m-r-5 {
    margin-right: 5px; }
  html body .m-r-10 {
    margin-right: 10px; }
  html body .m-r-15 {
    margin-right: 15px; }
  html body .m-r-20 {
    margin-right: 20px; }
  html body .m-r-30 {
    margin-right: 30px; }
  html body .m-r-40 {
    margin-right: 40px; }
  html body .m-t-0 {
    margin-top: 0px; }
  html body .m-t-5 {
    margin-top: 5px; }
  html body .m-t-10 {
    margin-top: 10px; }
  html body .m-t-15 {
    margin-top: 15px; }
  html body .m-t-20 {
    margin-top: 20px; }
  html body .m-t-30 {
    margin-top: 30px; }
  html body .m-t-40 {
    margin-top: 40px; }
  html body .m-b-0 {
    margin-bottom: 0px; }
  html body .m-b-5 {
    margin-bottom: 5px; }
  html body .m-b-10 {
    margin-bottom: 10px; }
  html body .m-b-15 {
    margin-bottom: 15px; }
  html body .m-b-20 {
    margin-bottom: 20px; }
  html body .m-b-30 {
    margin-bottom: 30px; }
  html body .m-b-40 {
    margin-bottom: 40px; }
  /*******************
vertical alignment
*******************/
  html body .vt {
    vertical-align: top; }
  html body .vm {
    vertical-align: middle; }
  html body .vb {
    vertical-align: bottom; }
  /*******************
Opacity
*******************/
  .op-5 {
    opacity: 0.5; }
  /*******************
font weight
*******************/
  html body .font-bold {
    font-weight: 700; }
  html body .font-normal {
    font-weight: normal; }
  html body .font-light {
    font-weight: 300; }
  html body .font-medium {
    font-weight: 500; }
  html body .font-16 {
    font-size: 16px; }
  html body .font-14 {
    font-size: 14px; }
  html body .font-10 {
    font-size: 10px; }
  html body .font-18 {
    font-size: 18px; }
  html body .font-20 {
    font-size: 20px; }
  /*******************
Border
*******************/
  html body .b-0 {
    border: none; }
  html body .b-r {
    border-right: 1px solid rgba(120, 130, 140, 0.13); }
  html body .b-l {
    border-left: 1px solid rgba(120, 130, 140, 0.13); }
  html body .b-b {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13); }
  html body .b-t {
    border-top: 1px solid rgba(120, 130, 140, 0.13); }
  html body .b-all {
    border: 1px solid rgba(120, 130, 140, 0.13) !important; }
  /*******************
Thumb size
*******************/
  .thumb-sm {
    height: 32px;
    width: 32px; }
  .thumb-md {
    height: 48px;
    width: 48px; }
  .thumb-lg {
    height: 88px;
    width: 88px; }
  .hide {
    display: none; }
  .img-circle {
    border-radius: 100%; }
  .radius {
    border-radius: 4px; }
  /*******************
Text Colors
*******************/
  .text-white {
    color: #ffffff !important; }
  .text-danger {
    color: #ef5350 !important; }
  .text-muted {
    color: #99abb4 !important; }
  .text-warning {
    color: #ffb22b !important; }
  .text-success {
    color: #26dad2 !important; }
  .text-info {
    color: #1976d2 !important; }
  .text-inverse {
    color: #2f3d4a !important; }
  html body .text-blue {
    color: #02bec9; }
  html body .text-purple {
    color: #7460ee; }
  html body .text-primary {
    color: #5c4ac7; }
  html body .text-megna {
    color: #00897b; }
  html body .text-dark {
    color: #7d8b92; }
  html body .text-themecolor {
    color: #1976d2; }
  /*******************
Background Colors
*******************/
  .bg-primary {
    background-color: #5c4ac7 !important; }
  .bg-success {
    background-color: #26dad2 !important; }
  .bg-info {
    background-color: #1976d2 !important; }
  .bg-warning {
    background-color: #ffb22b !important; }
  .bg-danger {
    background-color: #ef5350 !important; }
  html body .bg-megna {
    background-color: #00897b; }
  html body .bg-theme {
    background-color: #1976d2; }
  html body .bg-inverse {
    background-color: #2f3d4a; }
  html body .bg-purple {
    background-color: #7460ee; }
  html body .bg-light-part {
    background-color: rgba(0, 0, 0, 0.02); }
  html body .bg-light-primary {
    background-color: #f1effd; }
  html body .bg-light-success {
    background-color: #e8fdeb; }
  html body .bg-light-info {
    background-color: #cfecfe; }
  html body .bg-light-extra {
    background-color: #ebf3f5; }
  html body .bg-light-warning {
    background-color: #fff8ec; }
  html body .bg-light-danger {
    background-color: #f9e7eb; }
  html body .bg-light-inverse {
    background-color: #f6f6f6; }
  html body .bg-light {
    background-color: #f2f4f8; }
  html body .bg-white {
    background-color: #ffffff; }
  /*******************
Rounds
*******************/
  .round {
    line-height: 48px;
    color: #ffffff;
    width: 50px;
    height: 50px;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    border-radius: 100%;
    background: #1976d2; }
    .round img {
      border-radius: 100%; }
  .round-lg {
    line-height: 65px;
    width: 60px;
    height: 60px;
    font-size: 30px; }
  .round.round-info {
    background: #1976d2; }
  .round.round-warning {
    background: #ffb22b; }
  .round.round-danger {
    background: #ef5350; }
  .round.round-success {
    background: #26dad2; }
  .round.round-primary {
    background: #5c4ac7; }
  /*******************
Labels
*******************/
  .label {
    padding: 3px 10px;
    line-height: 13px;
    color: #ffffff;
    font-weight: 400;
    border-radius: 4px;
    font-size: 75%; }
  .label-rounded {
    border-radius: 60px; }
  .label-custom {
    background-color: #00897b; }
  .label-success {
    background-color: #26dad2; }
  .label-info {
    background-color: #1976d2; }
  .label-warning {
    background-color: #ffb22b; }
  .label-danger {
    background-color: #ef5350; }
  .label-megna {
    background-color: #00897b; }
  .label-primary {
    background-color: #5c4ac7; }
  .label-purple {
    background-color: #7460ee; }
  .label-red {
    background-color: #fb3a3a; }
  .label-inverse {
    background-color: #2f3d4a; }
  .label-default {
    background-color: #f2f4f8; }
  .label-white {
    background-color: #ffffff; }
  .label-light-success {
    background-color: #e8fdeb;
    color: #26dad2; }
  .label-light-info {
    background-color: #cfecfe;
    color: #1976d2; }
  .label-light-warning {
    background-color: #fff8ec;
    color: #ffb22b; }
  .label-light-danger {
    background-color: #f9e7eb;
    color: #ef5350; }
  .label-light-megna {
    background-color: #e0f2f4;
    color: #00897b; }
  .label-light-primary {
    background-color: #f1effd;
    color: #5c4ac7; }
  .label-light-inverse {
    background-color: #f6f6f6;
    color: #2f3d4a; }
  /*******************
Pagination
*******************/
  .pagination > li:first-child > a,
  .pagination > li:first-child > span {
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px; }
  .pagination > li:last-child > a,
  .pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px; }
  .pagination > li > a,
  .pagination > li > span {
    color: #263238; }
  .pagination > li > a:hover,
  .pagination > li > span:hover,
  .pagination > li > a:focus,
  .pagination > li > span:focus {
    background-color: #f2f4f8; }
  .pagination-split li {
    margin-left: 5px;
    display: inline-block;
    float: left; }
  .pagination-split li:first-child {
    margin-left: 0; }
  .pagination-split li a {
    border-radius: 4px; }
  .pagination > .active > a,
  .pagination > .active > span,
  .pagination > .active > a:hover,
  .pagination > .active > span:hover,
  .pagination > .active > a:focus,
  .pagination > .active > span:focus {
    background-color: #1976d2;
    border-color: #1976d2; }
  .pager li > a,
  .pager li > span {
    border-radius: 4px;
    color: #263238; }
  /*******************
Table Cell
*******************/
  .table-box {
    display: table;
    width: 100%; }
  .table.no-border tbody td {
    border: 0px; }
  .cell {
    display: table-cell;
    vertical-align: middle; }
  .table td,
  .table th {
    border-color: #f3f1f1; }
  .table thead th,
  .table th {
    font-weight: 500; }
  .table-hover tbody tr:hover {
    background: #f2f4f8; }
  .nowrap {
    white-space: nowrap; }
  .lite-padding td {
    padding: 5px; }
  .v-middle td,
  .v-middle th {
    vertical-align: middle; }
  .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar; }
  /*******************
Wave Effects
*******************/
  .waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    vertical-align: middle;
    z-index: 1;
    will-change: opacity, transform;
    transition: all 0.1s ease-out; }
    .waves-effect .waves-ripple {
      position: absolute;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      margin-top: -10px;
      margin-left: -10px;
      opacity: 0;
      background: rgba(0, 0, 0, 0.2);
      transition: all 0.7s ease-out;
      transition-property: transform, opacity;
      transform: scale(0);
      pointer-events: none; }
  .waves-effect.waves-light .waves-ripple {
    background-color: rgba(255, 255, 255, 0.45); }
  .waves-effect.waves-red .waves-ripple {
    background-color: rgba(244, 67, 54, 0.7); }
  .waves-effect.waves-yellow .waves-ripple {
    background-color: rgba(255, 235, 59, 0.7); }
  .waves-effect.waves-orange .waves-ripple {
    background-color: rgba(255, 152, 0, 0.7); }
  .waves-effect.waves-purple .waves-ripple {
    background-color: rgba(156, 39, 176, 0.7); }
  .waves-effect.waves-green .waves-ripple {
    background-color: rgba(76, 175, 80, 0.7); }
  .waves-effect.waves-teal .waves-ripple {
    background-color: rgba(0, 150, 136, 0.7); }
  html body .waves-notransition {
    transition: none; }
  .waves-circle {
    transform: translateZ(0);
    text-align: center;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%;
    -webkit-mask-image: none; }
  .waves-input-wrapper {
    border-radius: 0.2em;
    vertical-align: bottom; }
    .waves-input-wrapper .waves-button-input {
      position: relative;
      top: 0;
      left: 0;
      z-index: 1; }
  .waves-block {
    display: block; }
  /*Badge*/
  .badge {
    font-weight: 400; }
  .badge-xs {
    font-size: 9px; }
  .badge-xs,
  .badge-sm {
    transform: translate(0, -2px); }
  .badge-success {
    background-color: #26dad2; }
  .badge-info {
    background-color: #1976d2; }
  .badge-primary {
    background-color: #5c4ac7; }
  .badge-warning {
    background-color: #ffb22b; }
  .badge-danger {
    background-color: #ef5350; }
  .badge-purple {
    background-color: #7460ee; }
  .badge-red {
    background-color: #fb3a3a; }
  .badge-inverse {
    background-color: #2f3d4a; }
  /*******************
Buttons
******************/
  .btn {
    padding: 7px 12px;
    cursor: pointer; }
  .btn-group label {
    color: #ffffff !important;
    margin-bottom: 0px; }
    .btn-group label.btn-secondary {
      color: #7d8b92 !important; }
  .btn-lg, .btn-group-lg > .btn {
    padding: .75rem 1.5rem;
    font-size: 1.25rem; }
  .btn-md {
    padding: 12px 55px;
    font-size: 16px; }
  .btn-circle {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    padding: 10px; }
  .btn-circle.btn-sm, .btn-group-sm > .btn-circle.btn {
    width: 35px;
    height: 35px;
    padding: 8px 10px;
    font-size: 14px; }
  .btn-circle.btn-lg, .btn-group-lg > .btn-circle.btn {
    width: 50px;
    height: 50px;
    padding: 14px 15px;
    font-size: 18px;
    line-height: 22px; }
  .btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 14px 15px;
    font-size: 24px; }
  .btn-sm, .btn-group-sm > .btn {
    padding: .25rem .5rem;
    font-size: 12px; }
  .btn-xs {
    padding: .25rem .5rem;
    font-size: 10px; }
  .button-list button,
  .button-list a {
    margin: 5px 12px 5px 0; }
  .btn-outline {
    color: inherit;
    background-color: transparent;
    transition: all .5s; }
  .btn-rounded {
    border-radius: 60px;
    padding: 7px 18px; }
    .btn-rounded.btn-lg, .btn-group-lg > .btn-rounded.btn {
      padding: .75rem 1.5rem; }
    .btn-rounded.btn-sm, .btn-group-sm > .btn-rounded.btn {
      padding: .25rem .5rem;
      font-size: 12px; }
    .btn-rounded.btn-xs {
      padding: .25rem .5rem;
      font-size: 10px; }
    .btn-rounded.btn-md {
      padding: 12px 35px;
      font-size: 16px; }
  .btn-secondary,
  .btn-secondary.disabled {
    box-shadow: 0 2px 2px 0 rgba(169, 169, 169, 0.14), 0 3px 1px -2px rgba(169, 169, 169, 0.2), 0 1px 5px 0 rgba(169, 169, 169, 0.12);
    transition: 0.2s ease-in;
    background-color: #ffffff;
    color: #7d8b92;
    border-color: #b1b8bb; }
    .btn-secondary:hover,
    .btn-secondary.disabled:hover {
      box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2); }
    .btn-secondary.active, .btn-secondary:active, .btn-secondary:focus,
    .btn-secondary.disabled.active,
    .btn-secondary.disabled:active,
    .btn-secondary.disabled:focus {
      box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2); }
  .btn-primary,
  .btn-primary.disabled {
    background: #5c4ac7;
    border: 1px solid #5c4ac7;
    box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
    transition: 0.2s ease-in; }
    .btn-primary:hover,
    .btn-primary.disabled:hover {
      background: #5c4ac7;
      box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
      border: 1px solid #5c4ac7; }
    .btn-primary.active, .btn-primary:active, .btn-primary:focus,
    .btn-primary.disabled.active,
    .btn-primary.disabled:active,
    .btn-primary.disabled:focus {
      background: #6352ce;
      box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2); }
  .btn-themecolor,
  .btn-themecolor.disabled {
    background: #1976d2;
    color: #ffffff;
    border: 1px solid #1976d2; }
    .btn-themecolor:hover,
    .btn-themecolor.disabled:hover {
      background: #1976d2;
      opacity: 0.7;
      border: 1px solid #1976d2; }
    .btn-themecolor.active, .btn-themecolor:active, .btn-themecolor:focus,
    .btn-themecolor.disabled.active,
    .btn-themecolor.disabled:active,
    .btn-themecolor.disabled:focus {
      background: #028ee1; }
  .btn-success,
  .btn-success.disabled {
    background: #26dad2;
    border: 1px solid #26dad2;
    box-shadow: 0 2px 2px 0 rgba(40, 190, 189, 0.14), 0 3px 1px -2px rgba(40, 190, 189, 0.2), 0 1px 5px 0 rgba(40, 190, 189, 0.12);
    transition: 0.2s ease-in; }
    .btn-success:hover,
    .btn-success.disabled:hover {
      background: #26dad2;
      box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
      border: 1px solid #26dad2; }
    .btn-success.active, .btn-success:active, .btn-success:focus,
    .btn-success.disabled.active,
    .btn-success.disabled:active,
    .btn-success.disabled:focus {
      background: #1eacbe;
      box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2); }
  .btn-info,
  .btn-info.disabled {
    background: #1976d2;
    border: 1px solid #1976d2;
    box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
    transition: 0.2s ease-in; }
    .btn-info:hover,
    .btn-info.disabled:hover {
      background: #1976d2;
      border: 1px solid #1976d2;
      box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2); }
    .btn-info.active, .btn-info:active, .btn-info:focus,
    .btn-info.disabled.active,
    .btn-info.disabled:active,
    .btn-info.disabled:focus {
      background: #028ee1;
      box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2); }
  .btn-warning,
  .btn-warning.disabled {
    background: #ffb22b;
    color: #ffffff;
    box-shadow: 0 2px 2px 0 rgba(248, 194, 0, 0.14), 0 3px 1px -2px rgba(248, 194, 0, 0.2), 0 1px 5px 0 rgba(248, 194, 0, 0.12);
    border: 1px solid #ffb22b;
    transition: 0.2s ease-in;
    color: #ffffff; }
    .btn-warning:hover,
    .btn-warning.disabled:hover {
      background: #ffb22b;
      color: #ffffff;
      box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
      border: 1px solid #ffb22b; }
    .btn-warning.active, .btn-warning:active, .btn-warning:focus,
    .btn-warning.disabled.active,
    .btn-warning.disabled:active,
    .btn-warning.disabled:focus {
      background: #e9ab2e;
      color: #ffffff;
      box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2); }
  .btn-danger,
  .btn-danger.disabled {
    background: #ef5350;
    border: 1px solid #ef5350;
    box-shadow: 0 2px 2px 0 rgba(239, 83, 80, 0.14), 0 3px 1px -2px rgba(239, 83, 80, 0.2), 0 1px 5px 0 rgba(239, 83, 80, 0.12);
    transition: 0.2s ease-in; }
    .btn-danger:hover,
    .btn-danger.disabled:hover {
      background: #ef5350;
      box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
      border: 1px solid #ef5350; }
    .btn-danger.active, .btn-danger:active, .btn-danger:focus,
    .btn-danger.disabled.active,
    .btn-danger.disabled:active,
    .btn-danger.disabled:focus {
      background: #e6294b;
      box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2); }
  .btn-inverse,
  .btn-inverse.disabled {
    background: #2f3d4a;
    border: 1px solid #2f3d4a;
    color: #ffffff; }
    .btn-inverse:hover,
    .btn-inverse.disabled:hover {
      background: #2f3d4a;
      opacity: 0.7;
      color: #ffffff;
      border: 1px solid #2f3d4a; }
    .btn-inverse.active, .btn-inverse:active, .btn-inverse:focus,
    .btn-inverse.disabled.active,
    .btn-inverse.disabled:active,
    .btn-inverse.disabled:focus {
      background: #232a37;
      color: #ffffff; }
  .btn-red,
  .btn-red.disabled {
    background: #fb3a3a;
    border: 1px solid #fb3a3a;
    color: #ffffff; }
    .btn-red:hover,
    .btn-red.disabled:hover {
      opacity: 0.7;
      border: 1px solid #fb3a3a;
      background: #fb3a3a; }
    .btn-red.active, .btn-red:active, .btn-red:focus,
    .btn-red.disabled.active,
    .btn-red.disabled:active,
    .btn-red.disabled:focus {
      background: #e6294b; }
  .btn-outline-secondary {
    background-color: #ffffff;
    box-shadow: 0 2px 2px 0 rgba(169, 169, 169, 0.14), 0 3px 1px -2px rgba(169, 169, 169, 0.2), 0 1px 5px 0 rgba(169, 169, 169, 0.12);
    transition: 0.2s ease-in; }
    .btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary.focus {
      box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2); }
    .btn-outline-secondary.active, .btn-outline-secondary:active, .btn-outline-secondary:focus {
      box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2); }
  .btn-outline-primary {
    color: #5c4ac7;
    background-color: #ffffff;
    border-color: #5c4ac7;
    box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
    transition: 0.2s ease-in; }
    .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary.focus {
      background: #5c4ac7;
      box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
      color: #ffffff;
      border-color: #5c4ac7; }
    .btn-outline-primary.active, .btn-outline-primary:active, .btn-outline-primary:focus {
      box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
      background: #6352ce; }
  .btn-outline-success {
    color: #26dad2;
    background-color: transparent;
    border-color: #26dad2;
    box-shadow: 0 2px 2px 0 rgba(40, 190, 189, 0.14), 0 3px 1px -2px rgba(40, 190, 189, 0.2), 0 1px 5px 0 rgba(40, 190, 189, 0.12);
    transition: 0.2s ease-in; }
    .btn-outline-success:hover, .btn-outline-success:focus, .btn-outline-success.focus {
      background: #26dad2;
      border-color: #26dad2;
      color: #ffffff;
      box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2); }
    .btn-outline-success.active, .btn-outline-success:active, .btn-outline-success:focus {
      box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
      background: #1eacbe; }
  .btn-outline-info {
    color: #1976d2;
    background-color: transparent;
    border-color: #1976d2;
    box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
    transition: 0.2s ease-in; }
    .btn-outline-info:hover, .btn-outline-info:focus, .btn-outline-info.focus {
      background: #1976d2;
      border-color: #1976d2;
      color: #ffffff;
      box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2); }
    .btn-outline-info.active, .btn-outline-info:active, .btn-outline-info:focus {
      box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
      background: #028ee1; }
  .btn-outline-warning {
    color: #ffb22b;
    background-color: transparent;
    border-color: #ffb22b;
    box-shadow: 0 2px 2px 0 rgba(248, 194, 0, 0.14), 0 3px 1px -2px rgba(248, 194, 0, 0.2), 0 1px 5px 0 rgba(248, 194, 0, 0.12);
    transition: 0.2s ease-in; }
    .btn-outline-warning:hover, .btn-outline-warning:focus, .btn-outline-warning.focus {
      background: #ffb22b;
      border-color: #ffb22b;
      color: #ffffff;
      box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2); }
    .btn-outline-warning.active, .btn-outline-warning:active, .btn-outline-warning:focus {
      box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
      background: #e9ab2e; }
  .btn-outline-danger {
    color: #ef5350;
    background-color: transparent;
    border-color: #ef5350;
    box-shadow: 0 2px 2px 0 rgba(239, 83, 80, 0.14), 0 3px 1px -2px rgba(239, 83, 80, 0.2), 0 1px 5px 0 rgba(239, 83, 80, 0.12);
    transition: 0.2s ease-in; }
    .btn-outline-danger:hover, .btn-outline-danger:focus, .btn-outline-danger.focus {
      background: #ef5350;
      border-color: #ef5350;
      color: #ffffff;
      box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2); }
    .btn-outline-danger.active, .btn-outline-danger:active, .btn-outline-danger:focus {
      box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
      background: #e6294b; }
  .btn-outline-red {
    color: #fb3a3a;
    background-color: transparent;
    border-color: #fb3a3a; }
    .btn-outline-red:hover, .btn-outline-red:focus, .btn-outline-red.focus {
      background: #fb3a3a;
      border-color: #fb3a3a;
      color: #ffffff;
      box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2); }
    .btn-outline-red.active, .btn-outline-red:active, .btn-outline-red:focus {
      box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
      background: #e6294b; }
  .btn-outline-inverse {
    color: #2f3d4a;
    background-color: transparent;
    border-color: #2f3d4a; }
    .btn-outline-inverse:hover, .btn-outline-inverse:focus, .btn-outline-inverse.focus {
      background: #2f3d4a;
      border-color: #2f3d4a;
      color: #ffffff; }
  .btn-primary.active.focus,
  .btn-primary.active:focus,
  .btn-primary.active:hover,
  .btn-primary.focus:active,
  .btn-primary:active:focus,
  .btn-primary:active:hover,
  .open > .dropdown-toggle.btn-primary.focus,
  .open > .dropdown-toggle.btn-primary:focus,
  .open > .dropdown-toggle.btn-primary:hover,
  .btn-primary.focus,
  .btn-primary:focus {
    background-color: #6352ce;
    border: 1px solid #6352ce; }
  .btn-success.active.focus,
  .btn-success.active:focus,
  .btn-success.active:hover,
  .btn-success.focus:active,
  .btn-success:active:focus,
  .btn-success:active:hover,
  .open > .dropdown-toggle.btn-success.focus,
  .open > .dropdown-toggle.btn-success:focus,
  .open > .dropdown-toggle.btn-success:hover,
  .btn-success.focus,
  .btn-success:focus {
    background-color: #1eacbe;
    border: 1px solid #1eacbe; }
  .btn-info.active.focus,
  .btn-info.active:focus,
  .btn-info.active:hover,
  .btn-info.focus:active,
  .btn-info:active:focus,
  .btn-info:active:hover,
  .open > .dropdown-toggle.btn-info.focus,
  .open > .dropdown-toggle.btn-info:focus,
  .open > .dropdown-toggle.btn-info:hover,
  .btn-info.focus,
  .btn-info:focus {
    background-color: #028ee1;
    border: 1px solid #028ee1; }
  .btn-warning.active.focus,
  .btn-warning.active:focus,
  .btn-warning.active:hover,
  .btn-warning.focus:active,
  .btn-warning:active:focus,
  .btn-warning:active:hover,
  .open > .dropdown-toggle.btn-warning.focus,
  .open > .dropdown-toggle.btn-warning:focus,
  .open > .dropdown-toggle.btn-warning:hover,
  .btn-warning.focus,
  .btn-warning:focus {
    background-color: #e9ab2e;
    border: 1px solid #e9ab2e; }
  .btn-danger.active.focus,
  .btn-danger.active:focus,
  .btn-danger.active:hover,
  .btn-danger.focus:active,
  .btn-danger:active:focus,
  .btn-danger:active:hover,
  .open > .dropdown-toggle.btn-danger.focus,
  .open > .dropdown-toggle.btn-danger:focus,
  .open > .dropdown-toggle.btn-danger:hover,
  .btn-danger.focus,
  .btn-danger:focus {
    background-color: #e6294b;
    border: 1px solid #e6294b; }
  .btn-inverse:hover,
  .btn-inverse:focus,
  .btn-inverse:active,
  .btn-inverse.active,
  .btn-inverse.focus,
  .btn-inverse:active,
  .btn-inverse:focus,
  .btn-inverse:hover,
  .open > .dropdown-toggle.btn-inverse {
    background-color: #232a37;
    border: 1px solid #232a37; }
  .btn-red:hover,
  .btn-red:focus,
  .btn-red:active,
  .btn-red.active,
  .btn-red.focus,
  .btn-red:active,
  .btn-red:focus,
  .btn-red:hover,
  .open > .dropdown-toggle.btn-red {
    background-color: #d61f1f;
    border: 1px solid #d61f1f;
    color: #ffffff; }
  .button-box .btn {
    margin: 0 8px 8px 0px; }
  .btn-label {
    background: rgba(0, 0, 0, 0.05);
    display: inline-block;
    margin: -6px 12px -6px -14px;
    padding: 7px 15px; }
  .btn-facebook {
    color: #ffffff;
    background-color: #3b5998; }
  .btn-twitter {
    color: #ffffff;
    background-color: #55acee; }
  .btn-linkedin {
    color: #ffffff;
    background-color: #007bb6; }
  .btn-dribbble {
    color: #ffffff;
    background-color: #ea4c89; }
  .btn-googleplus {
    color: #ffffff;
    background-color: #dd4b39; }
  .btn-instagram {
    color: #ffffff;
    background-color: #3f729b; }
  .btn-pinterest {
    color: #ffffff;
    background-color: #cb2027; }
  .btn-dropbox {
    color: #ffffff;
    background-color: #007ee5; }
  .btn-flickr {
    color: #ffffff;
    background-color: #ff0084; }
  .btn-tumblr {
    color: #ffffff;
    background-color: #32506d; }
  .btn-skype {
    color: #ffffff;
    background-color: #00aff0; }
  .btn-youtube {
    color: #ffffff;
    background-color: #bb0000; }
  .btn-github {
    color: #ffffff;
    background-color: #171515; }
  /*******************
Notify
*******************/
  .notify {
    position: relative;
    top: -22px;
    right: -9px; }
    .notify .heartbit {
      position: absolute;
      top: -20px;
      right: -4px;
      height: 25px;
      width: 25px;
      z-index: 10;
      border: 5px solid #ef5350;
      border-radius: 70px;
      -moz-animation: heartbit 1s ease-out;
      -moz-animation-iteration-count: infinite;
      -o-animation: heartbit 1s ease-out;
      -o-animation-iteration-count: infinite;
      -webkit-animation: heartbit 1s ease-out;
      animation-iteration-count: infinite; }
    .notify .point {
      width: 6px;
      height: 6px;
      border-radius: 30px;
      background-color: #ef5350;
      position: absolute;
      right: 6px;
      top: -10px; }
  /*******************
File Upload 
******************/
  .fileupload {
    overflow: hidden;
    position: relative; }
    .fileupload input.upload {
      cursor: pointer;
      filter: alpha(opacity=0);
      font-size: 20px;
      margin: 0;
      opacity: 0;
      padding: 0;
      position: absolute;
      right: 0;
      top: 0; }
  /*******************
Megamenu
******************/
  .mega-dropdown {
    position: static !important;
    width: 100%; }
    .mega-dropdown .dropdown-menu {
      width: 100%;
      padding: 30px;
      margin-top: 0px;
      left: 0px !important; }
    .mega-dropdown ul {
      padding: 0px; }
      .mega-dropdown ul li {
        list-style: none; }
    .mega-dropdown .carousel-item .container {
      padding: 0px; }
    .mega-dropdown .nav-accordion .card {
      margin-bottom: 1px; }
    .mega-dropdown .nav-accordion .card-header {
      background: #ffffff; }
      .mega-dropdown .nav-accordion .card-header h5 {
        margin: 0px; }
        .mega-dropdown .nav-accordion .card-header h5 a {
          text-decoration: none;
          color: #7d8b92; }
  /*******************
List-style-none
******************/
  ul.list-style-none {
    margin: 0px;
    padding: 0px; }
    ul.list-style-none li {
      list-style: none; }
      ul.list-style-none li a {
        color: #7d8b92;
        padding: 8px 0px;
        display: block;
        text-decoration: none; }
        ul.list-style-none li a:hover {
          color: #1976d2; }
  /*******************
dropdown-item
******************/
  .dropdown-item {
    padding: 8px 1rem;
    color: #7d8b92; }
  /*******************
Custom-select
******************/
  .custom-select {
    background: url('custom-select.png') right 0.75rem center no-repeat; }
  /*******************
textarea
******************/
  textarea {
    resize: none; }
  /*******************
Form-control
******************/
  .form-control {
    color: #7d8b92;
    min-height: 38px;
    display: initial; }
  .form-control-sm {
    min-height: 20px; }
  .form-control:disabled, .form-control[readonly] {
    opacity: 0.7; }
  .custom-control-input:focus ~ .custom-control-indicator {
    box-shadow: none; }
  .custom-control-input:checked ~ .custom-control-indicator {
    background-color: #26dad2; }
  form label {
    font-weight: 400; }
  .form-group {
    margin-bottom: 25px; }
  .form-horizontal label {
    margin-bottom: 0px; }
  .form-control-static {
    padding-top: 0px; }
  .form-bordered .form-group {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13);
    padding-bottom: 20px; }
  /*******************
Layouts
*****************/
  /*Card-noborders*/
  .card-no-border .card {
    border: 0px;
    border-radius: 4px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05); }
  .card-no-border .shadow-none {
    box-shadow: none; }
  .card-outline-danger,
  .card-outline-info,
  .card-outline-warning,
  .card-outline-success,
  .card-outline-primary {
    background: #ffffff; }
  .card-fullscreen {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: auto; }
  /*******************/
  /*widgets -app*/
  /*******************/
  .css-bar:after {
    z-index: 1; }
  .css-bar > i {
    z-index: 10; }
  /*******************/
  /*single column*/
  /*******************/
  .single-column .left-sidebar {
    display: none; }
  .single-column .page-wrapper {
    margin-left: 0px; }
  .fix-width {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto; }
  /*******************/
  /*card-default*/
  /*******************/
  .card-default .card-header {
    background: #ffffff;
    border-bottom: 0px; }
  /*******************/
  /*pace-js*/
  /*******************/
  .pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
        user-select: none; }
  .pace-inactive {
    display: none; }
  .pace .pace-progress {
    background: #ef5350;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 2px; }
  .progress {
    height: auto;
    min-height: 6px; }
  .no-control-indicator .carousel-indicators,
  .no-control-indicator .carousel-control-prev,
  .no-control-indicator .carousel-control-next {
    display: none; }
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*Theme Colors*/
  /*bootstrap Color*/
  /*Light colors*/
  /*Normal Color*/
  /*Extra Variable*/
  /*Preloader*/
  .preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff; }
    .preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .dark_preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #232a37; }
    .dark_preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  /*============================================================== 
 For all pages 
 ============================================================== */
  #main-wrapper {
    width: 100%; }
  .boxed #main-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.1); }
    .boxed #main-wrapper .sidebar-footer {
      position: absolute; }
    .boxed #main-wrapper .footer {
      display: none; }
  .page-wrapper {
    background: #eef5f9;
    padding-bottom: 60px;
    height: calc(100vh - 64px);
    position: relative;
    overflow: auto; }
  .container-fluid {
    padding: 0 30px 25px 30px; }
  /*******************
 Topbar
*******************/
  .topbar {
    position: relative;
    z-index: 50; }
    .topbar .top-navbar {
      min-height: 50px;
      padding: 0px 15px 0 0; }
      .topbar .top-navbar .dropdown-toggle::after {
        display: none; }
      .topbar .top-navbar .navbar-header {
        line-height: 45px;
        text-align: center; }
        .topbar .top-navbar .navbar-header .navbar-brand {
          margin-right: 0px;
          padding-bottom: 0px;
          padding-top: 0px; }
          .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
            display: none; }
          .topbar .top-navbar .navbar-header .navbar-brand b {
            line-height: 60px;
            display: inline-block; }
      .topbar .top-navbar .navbar-nav > .nav-item > .nav-link {
        padding-left: .75rem;
        padding-right: .75rem;
        font-size: 15px;
        line-height: 40px; }
      .topbar .top-navbar .navbar-nav > .nav-item.show {
        background: rgba(0, 0, 0, 0.05); }
    .topbar .profile-pic {
      width: 30px;
      height: 30px;
      border-radius: 100%; }
    .topbar .dropdown-menu {
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
      -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
      -moz-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
      border-color: rgba(120, 130, 140, 0.13); }
      .topbar .dropdown-menu .dropdown-item {
        padding: 7px 1.5rem; }
    .topbar ul.dropdown-user {
      padding: 0px;
      min-width: 270px; }
      .topbar ul.dropdown-user li {
        list-style: none;
        padding: 0px;
        margin: 0px; }
        .topbar ul.dropdown-user li.divider {
          height: 1px;
          margin: 9px 0;
          overflow: hidden;
          background-color: rgba(120, 130, 140, 0.13); }
        .topbar ul.dropdown-user li .dw-user-box {
          padding: 10px 15px; }
          .topbar ul.dropdown-user li .dw-user-box .u-img {
            width: 70px;
            display: inline-block;
            vertical-align: top; }
            .topbar ul.dropdown-user li .dw-user-box .u-img img {
              width: 100%;
              border-radius: 5px; }
          .topbar ul.dropdown-user li .dw-user-box .u-text {
            display: inline-block;
            padding-left: 10px; }
            .topbar ul.dropdown-user li .dw-user-box .u-text h4 {
              margin: 0px;
              font-size: 15px; }
            .topbar ul.dropdown-user li .dw-user-box .u-text p {
              margin-bottom: 2px;
              font-size: 12px; }
            .topbar ul.dropdown-user li .dw-user-box .u-text .btn {
              color: #ffffff;
              padding: 5px 10px;
              display: inline-block; }
              .topbar ul.dropdown-user li .dw-user-box .u-text .btn:hover {
                background: #e6294b; }
        .topbar ul.dropdown-user li a {
          padding: 9px 15px;
          display: block;
          color: #7d8b92; }
          .topbar ul.dropdown-user li a:hover {
            background: #f2f4f8;
            color: #1976d2;
            text-decoration: none; }
  .search-box .app-search {
    position: absolute;
    margin: 0px;
    display: block;
    z-index: 110;
    width: 100%;
    top: -1px;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0px; }
    .search-box .app-search input {
      width: 100.5%;
      padding: 20px 40px 20px 20px;
      border-radius: 0px;
      font-size: 17px;
      transition: 0.5s ease-in; }
      .search-box .app-search input:focus {
        border-color: #ffffff; }
    .search-box .app-search .srh-btn {
      position: absolute;
      top: 23px;
      cursor: pointer;
      background: #ffffff;
      width: 15px;
      height: 15px;
      right: 20px;
      font-size: 14px; }
  /*******************
 Breadcrumb and page title
*******************/
  .page-titles {
    background: #ffffff;
    margin: 0 0px 30px;
    padding: 15px 10px;
    position: relative;
    z-index: 10;
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1); }
    .page-titles h3 {
      margin-bottom: 0px;
      margin-top: 0px; }
    .page-titles .breadcrumb {
      padding: 0px;
      background: transparent;
      font-size: 14px; }
      .page-titles .breadcrumb li {
        margin-top: 0px;
        margin-bottom: 0px; }
      .page-titles .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        content: "\e649";
        font-family: themify;
        color: #a6b7bf;
        font-size: 11px; }
      .page-titles .breadcrumb .breadcrumb-item.active {
        color: #99abb4; }
  /*******************
 Right side toggle
*******************/
  .right-side-toggle {
    position: relative; }
  .btn-circle.right-side-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 25px;
    z-index: 10; }
  .right-side-toggle i {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
    transition-property: transform;
    transition-duration: 1s;
    position: absolute;
    top: 16px;
    left: 16px; }
  .right-sidebar {
    position: fixed;
    right: -240px;
    width: 240px;
    display: none;
    z-index: 1100;
    background: #ffffff;
    top: 0px;
    padding-bottom: 20px;
    height: 100%;
    box-shadow: 5px 1px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease; }
    .right-sidebar .rpanel-title {
      display: block;
      padding: 19px 20px;
      color: #ffffff;
      text-transform: uppercase;
      font-size: 15px;
      background: #1976d2; }
      .right-sidebar .rpanel-title span {
        float: right;
        cursor: pointer;
        font-size: 11px; }
        .right-sidebar .rpanel-title span:hover {
          color: #ffffff; }
    .right-sidebar .r-panel-body {
      height: 100%;
      position: absolute;
      width: 100%;
      padding-bottom: 40px; }
      .right-sidebar .r-panel-body ul {
        margin: 0px;
        padding: 0px 20px; }
        .right-sidebar .r-panel-body ul li {
          list-style: none;
          padding: 5px 0; }
  .shw-rside {
    right: 0px;
    width: 240px;
    display: block; }
  /*******************
 page title
*******************/
  .page-titles {
    padding-bottom: 20px; }
  /*******************
 Footer
*******************/
  .footer {
    bottom: 0;
    color: #7d8b92;
    left: 0px;
    padding: 17px 15px;
    position: absolute;
    right: 0;
    border-top: 1px solid rgba(120, 130, 140, 0.13);
    background: #ffffff; }
  /*******************
 Card title
*******************/
  .card {
    margin-bottom: 30px; }
    .card .card-subtitle {
      font-weight: 300;
      margin-bottom: 15px;
      color: #99abb4; }
  .card-inverse .card-bodyquote .blockquote-footer,
  .card-inverse .card-link,
  .card-inverse .card-subtitle,
  .card-inverse .card-text {
    color: rgba(255, 255, 255, 0.65); }
  html body .card.card-success {
    background: #26dad2;
    border-color: #26dad2; }
  html body .card.card-danger {
    background: #ef5350;
    border-color: #ef5350; }
  html body .card.card-warning {
    background: #ffb22b;
    border-color: #ffb22b; }
  html body .card.card-info {
    background: #1976d2;
    border-color: #1976d2; }
  html body .card.card-primary {
    background: #5c4ac7;
    border-color: #5c4ac7; }
  html body .card.card-dark {
    background: #2f3d4a;
    border-color: #2f3d4a; }
  html body .card.card-megna {
    background: #00897b;
    border-color: #00897b; }
  /*============================================================== 
 Cards page
 ============================================================== */
  .card-actions {
    float: right; }
    .card-actions a {
      cursor: pointer;
      color: #7d8b92;
      opacity: 0.7;
      padding-left: 7px;
      font-size: 13px; }
      .card-actions a:hover {
        opacity: 1; }
  .card-columns .card {
    margin-bottom: 20px; }
  .collapsing {
    transition: height .08s ease; }
  .card-info {
    background: #1976d2;
    border-color: #1976d2; }
  .card-primary {
    background: #5c4ac7;
    border-color: #5c4ac7; }
  .card-outline-info {
    border-color: #1976d2; }
    .card-outline-info .card-header {
      background: #1976d2;
      border-color: #1976d2; }
  .card-outline-inverse {
    border-color: #2f3d4a; }
    .card-outline-inverse .card-header {
      background: #2f3d4a;
      border-color: #2f3d4a; }
  .card-outline-warning {
    border-color: #ffb22b; }
    .card-outline-warning .card-header {
      background: #ffb22b;
      border-color: #ffb22b; }
  .card-outline-success {
    border-color: #26dad2; }
    .card-outline-success .card-header {
      background: #26dad2;
      border-color: #26dad2; }
  .card-outline-danger {
    border-color: #ef5350; }
    .card-outline-danger .card-header {
      background: #ef5350;
      border-color: #ef5350; }
  .card-outline-primary {
    border-color: #5c4ac7; }
    .card-outline-primary .card-header {
      background: #5c4ac7;
      border-color: #5c4ac7; }
  /*============================================================== 
 Buttons page
 ============================================================== */
  .button-group .btn {
    margin-bottom: 5px;
    margin-right: 5px; }
  .no-button-group .btn {
    margin-bottom: 5px;
    margin-right: 0px; }
  .btn .text-active {
    display: none; }
  .btn.active .text-active {
    display: inline-block; }
  .btn.active .text {
    display: none; }
  /*============================================================== 
Breadcrumb
 ============================================================== */
  .bc-colored .breadcrumb-item,
  .bc-colored .breadcrumb-item a {
    color: #ffffff; }
    .bc-colored .breadcrumb-item.active,
    .bc-colored .breadcrumb-item a.active {
      opacity: 0.7; }
  .bc-colored .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4); }
  .breadcrumb {
    margin-bottom: 0px; }
  /*============================================================== 
 Ui-bootstrap
 ============================================================== */
  ul.list-icons {
    margin: 0px;
    padding: 0px; }
    ul.list-icons li {
      list-style: none;
      line-height: 30px;
      margin: 5px 0;
      transition: 0.2s ease-in; }
      ul.list-icons li a {
        color: #7d8b92; }
        ul.list-icons li a:hover {
          color: #1976d2; }
      ul.list-icons li i {
        font-size: 13px;
        padding-right: 8px; }
  ul.list-inline li {
    display: inline-block;
    padding: 0 8px; }
  ul.two-part {
    margin: 0px; }
    ul.two-part li {
      width: 48.8%; }
  /*Accordion*/
  html body .accordion .card {
    margin-bottom: 0px; }
  /*============================================================== 
 sparkline chart
 ============================================================== */
  html body .jqstooltip,
  html body .flotTip {
    width: auto !important;
    height: auto !important;
    background: #263238;
    color: #ffffff;
    padding: 5px 10px; }
  body .jqstooltip {
    border-color: transparent;
    border-radius: 60px; }
  /*============================================================== 
Dashboard1 chart
 ============================================================== */
  /*******************
Pagination
******************/
  .pagination-circle li.active a {
    background: #26dad2; }
  .pagination-circle li a {
    width: 40px;
    height: 40px;
    background: #f2f4f8;
    border: 0px;
    text-align: center;
    border-radius: 100%; }
    .pagination-circle li a:first-child, .pagination-circle li a:last-child {
      border-radius: 100%; }
    .pagination-circle li a:hover {
      background: #26dad2;
      color: #ffffff; }
  .pagination-circle li.disabled a {
    background: #f2f4f8;
    color: rgba(120, 130, 140, 0.13); }
  /*******************
Table-Layout
******************/
  .table thead th,
  .table th {
    border: 0px; }
  .color-table.primary-table thead th {
    background-color: #5c4ac7;
    color: #ffffff; }
  .table-striped tbody tr:nth-of-type(odd) {
    background: #f2f4f8; }
  .color-table.success-table thead th {
    background-color: #26dad2;
    color: #ffffff; }
  .color-table.info-table thead th {
    background-color: #1976d2;
    color: #ffffff; }
  .color-table.warning-table thead th {
    background-color: #ffb22b;
    color: #ffffff; }
  .color-table.danger-table thead th {
    background-color: #ef5350;
    color: #ffffff; }
  .color-table.inverse-table thead th {
    background-color: #2f3d4a;
    color: #ffffff; }
  .color-table.dark-table thead th {
    background-color: #263238;
    color: #ffffff; }
  .color-table.red-table thead th {
    background-color: #fb3a3a;
    color: #ffffff; }
  .color-table.purple-table thead th {
    background-color: #7460ee;
    color: #ffffff; }
  .color-table.muted-table thead th {
    background-color: #99abb4;
    color: #ffffff; }
  .color-bordered-table.primary-bordered-table {
    border: 2px solid #5c4ac7; }
    .color-bordered-table.primary-bordered-table thead th {
      background-color: #5c4ac7;
      color: #ffffff; }
  .color-bordered-table.success-bordered-table {
    border: 2px solid #26dad2; }
    .color-bordered-table.success-bordered-table thead th {
      background-color: #26dad2;
      color: #ffffff; }
  .color-bordered-table.info-bordered-table {
    border: 2px solid #1976d2; }
    .color-bordered-table.info-bordered-table thead th {
      background-color: #1976d2;
      color: #ffffff; }
  .color-bordered-table.warning-bordered-table {
    border: 2px solid #ffb22b; }
    .color-bordered-table.warning-bordered-table thead th {
      background-color: #ffb22b;
      color: #ffffff; }
  .color-bordered-table.danger-bordered-table {
    border: 2px solid #ef5350; }
    .color-bordered-table.danger-bordered-table thead th {
      background-color: #ef5350;
      color: #ffffff; }
  .color-bordered-table.inverse-bordered-table {
    border: 2px solid #2f3d4a; }
    .color-bordered-table.inverse-bordered-table thead th {
      background-color: #2f3d4a;
      color: #ffffff; }
  .color-bordered-table.dark-bordered-table {
    border: 2px solid #263238; }
    .color-bordered-table.dark-bordered-table thead th {
      background-color: #263238;
      color: #ffffff; }
  .color-bordered-table.red-bordered-table {
    border: 2px solid #fb3a3a; }
    .color-bordered-table.red-bordered-table thead th {
      background-color: #fb3a3a;
      color: #ffffff; }
  .color-bordered-table.purple-bordered-table {
    border: 2px solid #7460ee; }
    .color-bordered-table.purple-bordered-table thead th {
      background-color: #7460ee;
      color: #ffffff; }
  .color-bordered-table.muted-bordered-table {
    border: 2px solid #99abb4; }
    .color-bordered-table.muted-bordered-table thead th {
      background-color: #99abb4;
      color: #ffffff; }
  .full-color-table.full-primary-table {
    background-color: #f1effd; }
    .full-color-table.full-primary-table thead th {
      background-color: #5c4ac7;
      border: 0;
      color: #ffffff; }
    .full-color-table.full-primary-table tbody td {
      border: 0; }
    .full-color-table.full-primary-table tr:hover {
      background-color: #5c4ac7;
      color: #ffffff; }
  .full-color-table.full-success-table {
    background-color: #e8fdeb; }
    .full-color-table.full-success-table thead th {
      background-color: #26dad2;
      border: 0;
      color: #ffffff; }
    .full-color-table.full-success-table tbody td {
      border: 0; }
    .full-color-table.full-success-table tr:hover {
      background-color: #26dad2;
      color: #ffffff; }
  .full-color-table.full-info-table {
    background-color: #cfecfe; }
    .full-color-table.full-info-table thead th {
      background-color: #1976d2;
      border: 0;
      color: #ffffff; }
    .full-color-table.full-info-table tbody td {
      border: 0; }
    .full-color-table.full-info-table tr:hover {
      background-color: #1976d2;
      color: #ffffff; }
  .full-color-table.full-warning-table {
    background-color: #fff8ec; }
    .full-color-table.full-warning-table thead th {
      background-color: #ffb22b;
      border: 0;
      color: #ffffff; }
    .full-color-table.full-warning-table tbody td {
      border: 0; }
    .full-color-table.full-warning-table tr:hover {
      background-color: #ffb22b;
      color: #ffffff; }
  .full-color-table.full-danger-table {
    background-color: #f9e7eb; }
    .full-color-table.full-danger-table thead th {
      background-color: #ef5350;
      border: 0;
      color: #ffffff; }
    .full-color-table.full-danger-table tbody td {
      border: 0; }
    .full-color-table.full-danger-table tr:hover {
      background-color: #ef5350;
      color: #ffffff; }
  .full-color-table.full-inverse-table {
    background-color: #f6f6f6; }
    .full-color-table.full-inverse-table thead th {
      background-color: #2f3d4a;
      border: 0;
      color: #ffffff; }
    .full-color-table.full-inverse-table tbody td {
      border: 0; }
    .full-color-table.full-inverse-table tr:hover {
      background-color: #2f3d4a;
      color: #ffffff; }
  .full-color-table.full-dark-table {
    background-color: rgba(43, 43, 43, 0.8); }
    .full-color-table.full-dark-table thead th {
      background-color: #263238;
      border: 0;
      color: #ffffff; }
    .full-color-table.full-dark-table tbody td {
      border: 0;
      color: #ffffff; }
    .full-color-table.full-dark-table tr:hover {
      background-color: #263238;
      color: #ffffff; }
  .full-color-table.full-red-table {
    background-color: #f9e7eb; }
    .full-color-table.full-red-table thead th {
      background-color: #fb3a3a;
      border: 0;
      color: #ffffff; }
    .full-color-table.full-red-table tbody td {
      border: 0; }
    .full-color-table.full-red-table tr:hover {
      background-color: #fb3a3a;
      color: #ffffff; }
  .full-color-table.full-purple-table {
    background-color: #f1effd; }
    .full-color-table.full-purple-table thead th {
      background-color: #7460ee;
      border: 0;
      color: #ffffff; }
    .full-color-table.full-purple-table tbody td {
      border: 0; }
    .full-color-table.full-purple-table tr:hover {
      background-color: #7460ee;
      color: #ffffff; }
  .full-color-table.full-muted-table {
    background-color: rgba(152, 166, 173, 0.2); }
    .full-color-table.full-muted-table thead th {
      background-color: #99abb4;
      border: 0;
      color: #ffffff; }
    .full-color-table.full-muted-table tbody td {
      border: 0; }
    .full-color-table.full-muted-table tr:hover {
      background-color: #99abb4;
      color: #ffffff; }
  /*******************
Table- editable table
******************/
  .dt-bootstrap {
    display: block; }
  .paging_simple_numbers .pagination .paginate_button {
    padding: 0px;
    background: #ffffff; }
    .paging_simple_numbers .pagination .paginate_button:hover {
      background: #ffffff; }
    .paging_simple_numbers .pagination .paginate_button a {
      padding: 2px 10px;
      border: 0px; }
    .paging_simple_numbers .pagination .paginate_button.active a,
    .paging_simple_numbers .pagination .paginate_button:hover a {
      background: #1976d2;
      color: #ffffff; }
  /*******************
Icon list fontawesom
******************/
  .icon-list-demo div {
    cursor: pointer;
    line-height: 60px;
    white-space: nowrap;
    color: #7d8b92; }
    .icon-list-demo div:hover {
      color: #263238; }
    .icon-list-demo div p {
      margin: 10px 0;
      padding: 5px 0; }
  .icon-list-demo i {
    -webkit-transition: all 0.2s;
    -webkit-transition: font-size .2s;
    display: inline-block;
    font-size: 18px;
    margin: 0 15px 0 10px;
    text-align: left;
    transition: all 0.2s;
    transition: font-size .2s;
    vertical-align: middle;
    transition: all 0.3s ease 0s; }
  .icon-list-demo .col-md-4,
  .icon-list-demo .col-3 {
    border-radius: 4px; }
    .icon-list-demo .col-md-4:hover,
    .icon-list-demo .col-3:hover {
      background-color: #ebf3f5; }
  .icon-list-demo .div:hover i {
    font-size: 2em; }
  /*******************
Icon list material icon
******************/
  .material-icon-list-demo .mdi {
    font-size: 21px; }
  /*******************
list and media
******************/
  .list-group a.list-group-item:hover {
    background: #f2f4f8; }
  .list-group-item.active,
  .list-group .list-group-item.active:hover {
    color: white !important;
    background: #1976d2;
    border-color: #1976d2; }
  .list-group-item.disabled {
    color: #99abb4;
    background: #f2f4f8; }
  .media {
    border: 1px solid rgba(120, 130, 140, 0.13);
    margin-bottom: 10px;
    padding: 15px; }
  /*******************
Timeline page
******************/
  .timeline {
    position: relative;
    padding: 20px 0 20px;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto; }
  .timeline:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    margin-left: -1.5px;
    background-color: #f2f4f8; }
  .timeline > li {
    position: relative;
    margin-bottom: 20px; }
  .timeline > li:before,
  .timeline > li:after {
    content: " ";
    display: table; }
  .timeline > li:after {
    clear: both; }
  .timeline > li:before,
  .timeline > li:after {
    content: " ";
    display: table; }
  .timeline > li:after {
    clear: both; }
  .timeline > li > .timeline-panel {
    float: left;
    position: relative;
    width: 46%;
    padding: 20px;
    border: 1px solid rgba(120, 130, 140, 0.13);
    border-radius: 4px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05); }
  .timeline > li > .timeline-panel:before {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 26px;
    right: -8px;
    border-top: 8px solid transparent;
    border-right: 0 solid rgba(120, 130, 140, 0.13);
    border-bottom: 8px solid transparent;
    border-left: 8px solid rgba(120, 130, 140, 0.13); }
  .timeline > li > .timeline-panel:after {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 27px;
    right: -7px;
    border-top: 7px solid transparent;
    border-right: 0 solid #ffffff;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #ffffff; }
  .timeline > li > .timeline-badge {
    z-index: 10;
    position: absolute;
    top: 16px;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    border-radius: 50% 50% 50% 50%;
    text-align: center;
    font-size: 1.4em;
    line-height: 50px;
    color: #fff;
    overflow: hidden; }
  .timeline > li.timeline-inverted > .timeline-panel {
    float: right; }
  .timeline > li.timeline-inverted > .timeline-panel:before {
    right: auto;
    left: -8px;
    border-right-width: 8px;
    border-left-width: 0; }
  .timeline > li.timeline-inverted > .timeline-panel:after {
    right: auto;
    left: -7px;
    border-right-width: 7px;
    border-left-width: 0; }
  .timeline-badge.primary {
    background-color: #5c4ac7; }
  .timeline-badge.success {
    background-color: #26dad2; }
  .timeline-badge.warning {
    background-color: #ffb22b; }
  .timeline-badge.danger {
    background-color: #ef5350; }
  .timeline-badge.info {
    background-color: #1976d2; }
  .timeline-title {
    margin-top: 0;
    color: inherit;
    font-weight: 400; }
  .timeline-body > p,
  .timeline-body > ul {
    margin-bottom: 0; }
  .timeline-body > p + p {
    margin-top: 5px; }
  /*******************
Error Page
******************/
  .error-box {
    height: 100%;
    position: fixed;
    background: url('error-bg.jpg') no-repeat center center #fff;
    width: 100%; }
    .error-box .footer {
      width: 100%;
      left: 0px;
      right: 0px; }
  .error-body {
    padding-top: 5%; }
    .error-body h1 {
      font-size: 210px;
      font-weight: 900;
      line-height: 210px; }
  /*******************
Login register and recover password Page
******************/
  .login-register {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #d1d5d8;
    height: 100%;
    width: 100%;
    padding: 5% 0;
    position: fixed; }
  .login-box {
    width: 400px;
    margin: 0 auto; }
    .login-box .footer {
      width: 100%;
      left: 0px;
      right: 0px; }
    .login-box .social {
      display: block;
      margin-bottom: 30px; }
  #recoverform {
    display: none; }
  .login-sidebar {
    padding: 0px;
    margin-top: 0px; }
    .login-sidebar .login-box {
      right: 0px;
      position: absolute;
      height: 100%; }
  /*******************
Pricing Page
******************/
  .pricing-box {
    position: relative;
    text-align: center;
    margin-top: 30px; }
  .featured-plan {
    margin-top: 0px; }
    .featured-plan .pricing-body {
      padding: 60px 0;
      background: #ebf3f5;
      border: 1px solid #ddd; }
    .featured-plan .price-table-content .price-row {
      border-top: 1px solid rgba(120, 130, 140, 0.13); }
  .pricing-body {
    border-radius: 0px;
    border-top: 1px solid rgba(120, 130, 140, 0.13);
    border-bottom: 5px solid rgba(120, 130, 140, 0.13);
    vertical-align: middle;
    padding: 30px 0;
    position: relative; }
  .pricing-body h2 {
    position: relative;
    font-size: 56px;
    margin: 20px 0 10px;
    font-weight: 500; }
    .pricing-body h2 span {
      position: absolute;
      font-size: 15px;
      top: -10px;
      margin-left: -10px; }
  .price-table-content .price-row {
    padding: 20px 0;
    border-top: 1px solid rgba(120, 130, 140, 0.13); }
  .pricing-plan {
    padding: 0 15px; }
    .pricing-plan .no-padding {
      padding: 0px; }
  .price-lable {
    position: absolute;
    top: -10px;
    padding: 5px 10px;
    margin: 0 auto;
    display: inline-block;
    width: 100px;
    left: 0px;
    right: 0px; }
  /*Documentation page*/
  .plugin-details {
    display: none; }
  .plugin-details-active {
    display: block; }
  .earning-box h6 {
    font-weight: 500;
    margin-bottom: 0px;
    white-space: nowrap; }
  .earning-box td,
  .earning-box th {
    vertical-align: middle; }
  .btn-link {
    border: 0px; }
  /*******************
Smart table
******************/
  .smart-table tr td, .smart-table tr th {
    padding: 15px !important; }
  .ng2-smart-action-add-add {
    color: #ffffff !important;
    background: #1976d2;
    padding: 8px 15px;
    border-radius: 4px; }
  .ng2-smart-pagination-nav {
    margin-left: auto; }
  .ng2-smart-pagination-nav .pagination > li > a {
    line-height: 1rem; }
  /*******************
NGX Data table
******************/
  .ngx-datatable.material {
    box-shadow: none !important;
    border: 1px solid rgba(120, 130, 140, 0.13); }
  /*******************
Chartistt chart css
******************/
  .barchrt .ct-series-a .ct-bar {
    stroke: #26dad2; }
  .barchrt .ct-series-b .ct-bar {
    stroke: #1976d2; }
  .linearea {
    height: 280px; }
    .linearea .ct-series-a .ct-area {
      fill-opacity: 0.05;
      fill: #26dad2; }
    .linearea .ct-series-a .ct-line,
    .linearea .ct-series-a .ct-point {
      stroke: #26dad2;
      stroke-width: 2px; }
    .linearea .ct-series-b .ct-area {
      fill: #1976d2;
      fill-opacity: 0.1; }
    .linearea .ct-series-b .ct-line,
    .linearea .ct-series-b .ct-point {
      stroke: #1976d2;
      stroke-width: 2px; }
    .linearea .ct-series-c .ct-area {
      fill: #ef5350;
      fill-opacity: 0.1; }
    .linearea .ct-series-c .ct-line,
    .linearea .ct-series-c .ct-point {
      stroke: #ef5350;
      stroke-width: 2px; }
    .linearea .ct-series-a .ct-point,
    .linearea .ct-series-b .ct-point,
    .linearea .ct-series-c .ct-point {
      stroke-width: 6px; }
  .piechart .ct-series-a .ct-slice-donut {
    stroke: #1976d2; }
  .piechart .ct-series-b .ct-slice-donut {
    stroke: #26dad2; }
  .piechart .ct-series-c .ct-slice-donut {
    stroke: #2f3d4a; }
  .piechart .ct-series-d .ct-slice-donut {
    stroke: #ef5350; }
  .piechart .ct-series-e .ct-slice-donut {
    stroke: #ffb22b; }
  /*******************
Taskboard scss
******************/
  .taskboard {
    overflow-x: auto;
    overflow-y: auto;
    white-space: nowrap;
    padding: 8px; }
    .taskboard .taskboard-wrapper {
      width: 280px;
      padding-right: 8px;
      padding-left: 8px;
      box-sizing: border-box;
      display: inline-block;
      vertical-align: top;
      height: 100%; }
      .taskboard .taskboard-wrapper:first-child {
        padding-left: 0; }
      .taskboard .taskboard-wrapper:last-child {
        padding-right: 0; }
    .taskboard .taskboard-list {
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      max-height: 100%;
      white-space: normal;
      background-color: rgba(0, 0, 0, 0.05);
      border-radius: 0; }
    .taskboard .taskboard-header {
      position: relative;
      display: flex;
      flex-direction: row;
      align-items: center;
      text-transform: uppercase;
      letter-spacing: 0.02rem;
      padding: 8px 8px 0; }
    .taskboard .taskboard-task {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 8px;
      margin-bottom: 8px;
      background: #ffffff; }
      .taskboard .taskboard-task:last-child {
        margin-bottom: 0; }
      .taskboard .taskboard-task:hover {
        cursor: grab; }
    .taskboard .taskboard-task:after {
      content: "";
      position: absolute;
      border: 4px solid transparent;
      top: 0;
      border-top-width: 12px;
      border-bottom-color: transparent;
      right: 6px; }
    .taskboard .taskboard-task.task-status-success:after {
      border-top-color: #26dad2;
      border-right-color: #26dad2;
      border-left-color: #26dad2; }
    .taskboard .taskboard-task.task-status-info:after {
      border-top-color: #1976d2;
      border-right-color: #1976d2;
      border-left-color: #1976d2; }
    .taskboard .taskboard-task.task-status-warning:after {
      border-top-color: #ffb22b;
      border-right-color: #ffb22b;
      border-left-color: #ffb22b; }
    .taskboard .taskboard-task.task-status-danger:after {
      border-top-color: #ef5350;
      border-right-color: #ef5350;
      border-left-color: #ef5350; }
    .taskboard .taskboard-cards {
      padding: 8px;
      box-sizing: border-box;
      overflow-x: hidden;
      overflow-y: auto; }
    .taskboard .taskboard-task-title {
      margin-bottom: 8px; }
  /*
Template Name: Admin Pro Admin
Author: Wrappixel
Email: niravjoshi87@gmail.com
File: scss
*/
  /*******************
Main sidebar
******************/
  .left-sidebar {
    position: absolute;
    width: 240px;
    height: 100vh;
    top: 0px;
    z-index: 20;
    padding-top: 70px;
    background: #fff;
    box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08); }
  .fix-sidebar .left-sidebar {
    position: fixed; }
  /*******************
use profile section
******************/
  .user-profile {
    position: relative;
    background-size: cover; }
    .user-profile .setpos {
      top: -47px;
      right: -3px; }
    .user-profile .profile-img {
      width: 70px;
      margin: 0 auto;
      padding: 10px 0 5px 0;
      border-radius: 100%; }
      .user-profile .profile-img img {
        width: 100%;
        padding: 5px;
        border: 1px solid rgba(120, 130, 140, 0.13);
        border-radius: 100%; }
    .user-profile .profile-text {
      padding: 5px 0px;
      position: relative;
      text-align: center; }
      .user-profile .profile-text > a {
        color: #99abb4;
        padding: 0 5px; }
        .user-profile .profile-text > a:hover {
          color: #1976d2; }
        .user-profile .profile-text > a:after {
          display: none; }
    .user-profile .dropdown-menu {
      left: 0px !important;
      right: 0px;
      top: 62px !important;
      width: 180px;
      margin: 0 auto; }
  /*******************
sidebar navigation
******************/
  .scroll-sidebar {
    height: calc(100vh - 70px);
    position: relative; }
    .scroll-sidebar.ps .ps__rail-y {
      left: 2px;
      right: auto;
      background: none;
      width: 6px;
      /* If using `left`, there shouldn't be a `right`. */ }
  .collapse.in {
    display: block; }
  .nav-small-cap {
    font-size: 12px;
    margin-bottom: 0px;
    padding: 14px 14px 14px 20px;
    color: #263238;
    font-weight: 500; }
  .sidebar-nav {
    padding: 15px 0 0 0px; }
    .sidebar-nav ul {
      margin: 0px;
      padding: 0px; }
      .sidebar-nav ul li {
        list-style: none; }
        .sidebar-nav ul li a {
          color: #4b5052;
          padding: 8px 35px 8px 15px;
          display: block;
          font-size: 14px;
          font-weight: 400; }
          .sidebar-nav ul li a.active, .sidebar-nav ul li a:hover {
            color: #1976d2; }
            .sidebar-nav ul li a.active i, .sidebar-nav ul li a:hover i {
              color: #1976d2; }
          .sidebar-nav ul li a.active {
            font-weight: 500;
            color: #263238; }
        .sidebar-nav ul li ul {
          padding-left: 36px; }
          .sidebar-nav ul li ul ul {
            padding-left: 15px; }
        .sidebar-nav ul li.nav-devider {
          height: 1px;
          background: rgba(120, 130, 140, 0.13);
          display: block;
          margin: 15px 0; }
    .sidebar-nav > ul > li > a i {
      width: 31px;
      font-size: 24px;
      display: inline-block;
      vertical-align: middle;
      color: #4b5052; }
    .sidebar-nav > ul > li > a .label {
      float: right;
      margin-top: 6px; }
    .sidebar-nav > ul > li > a.active {
      font-weight: 400;
      background: #242933;
      color: #26c6da; }
    .sidebar-nav > ul > li {
      margin-bottom: 5px; }
      .sidebar-nav > ul > li.active > a {
        color: #1976d2;
        font-weight: 500; }
        .sidebar-nav > ul > li.active > a i {
          color: #1976d2; }
    .sidebar-nav .waves-effect {
      transition: none;
      -webkit-transition: none;
      -o-transition: none; }
  .sidebar-nav .has-arrow {
    position: relative; }
    .sidebar-nav .has-arrow::after {
      position: absolute;
      content: '';
      width: 7px;
      height: 7px;
      border-width: 1px 0 0 1px;
      border-style: solid;
      border-color: #4b5052;
      right: 1em;
      transform: rotate(135deg) translate(0, -50%);
      transform-origin: top;
      top: 23px;
      transition: all .3s ease-out; }
  .sidebar-nav .active > .has-arrow::after,
  .sidebar-nav li > .has-arrow.active::after,
  .sidebar-nav .has-arrow[aria-expanded="true"]::after {
    -webkit-transform: rotate(-135deg) translate(0, -50%);
    -ms-transform: rotate(-135deg) translate(0, -50%);
    -o-transform: rotate(-135deg) translate(0, -50%);
    top: 45%;
    width: 7px;
    transform: rotate(-135deg) translate(0, -50%); }
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*******************
/*User mail widgets*/
  /*******************/
  .topbar .top-navbar .mailbox {
    width: 300px; }
    .topbar .top-navbar .mailbox ul {
      padding: 0px; }
      .topbar .top-navbar .mailbox ul li {
        list-style: none; }
  .mailbox ul li .drop-title {
    font-weight: 500;
    padding: 11px 20px 15px;
    border-bottom: 1px solid rgba(120, 130, 140, 0.13); }
  .mailbox ul li .nav-link {
    border-top: 1px solid rgba(120, 130, 140, 0.13);
    padding-top: 15px; }
  .mailbox .message-center {
    height: 200px;
    overflow: auto;
    position: relative; }
    .mailbox .message-center a {
      border-bottom: 1px solid rgba(120, 130, 140, 0.13);
      display: block;
      text-decoration: none;
      padding: 9px 15px; }
      .mailbox .message-center a:hover {
        background: #f2f4f8; }
      .mailbox .message-center a div {
        white-space: normal; }
      .mailbox .message-center a .user-img {
        width: 40px;
        position: relative;
        display: inline-block;
        margin: 0 10px 15px 0; }
        .mailbox .message-center a .user-img img {
          width: 100%; }
        .mailbox .message-center a .user-img .profile-status {
          border: 2px solid #ffffff;
          border-radius: 50%;
          display: inline-block;
          height: 10px;
          left: 30px;
          position: absolute;
          top: 1px;
          width: 10px; }
        .mailbox .message-center a .user-img .online {
          background: #26dad2; }
        .mailbox .message-center a .user-img .busy {
          background: #ef5350; }
        .mailbox .message-center a .user-img .away {
          background: #ffb22b; }
        .mailbox .message-center a .user-img .offline {
          background: #ffb22b; }
      .mailbox .message-center a .mail-contnet {
        display: inline-block;
        width: 75%;
        vertical-align: middle; }
        .mailbox .message-center a .mail-contnet h5 {
          margin: 5px 0px 0; }
        .mailbox .message-center a .mail-contnet .mail-desc,
        .mailbox .message-center a .mail-contnet .time {
          font-size: 12px;
          display: block;
          margin: 1px 0;
          text-overflow: ellipsis;
          overflow: hidden;
          color: #7d8b92;
          white-space: nowrap; }
  /*******************
/*States row*/
  /*******************/
  .stats-row {
    margin-bottom: 20px; }
    .stats-row .stat-item {
      display: inline-block;
      padding-right: 15px; }
      .stats-row .stat-item + .stat-item {
        padding-left: 15px;
        border-left: 1px solid rgba(120, 130, 140, 0.13); }
  /*******************/
  /*Comment widgets*/
  /*******************/
  .comment-widgets {
    position: relative;
    margin-bottom: 10px; }
    .comment-widgets .comment-row {
      border-bottom: 1px solid rgba(120, 130, 140, 0.13);
      padding: 15px; }
      .comment-widgets .comment-row:last-child {
        border-bottom: 0px; }
      .comment-widgets .comment-row:hover, .comment-widgets .comment-row.active {
        background: rgba(0, 0, 0, 0.02); }
  .comment-text {
    padding: 15px 15px 15px 20px;
    width: 80%; }
    .comment-text:hover .comment-footer .action-icons,
    .comment-text.active .comment-footer .action-icons {
      visibility: visible; }
    .comment-text p {
      max-height: 50px;
      width: 100%;
      overflow: hidden; }
  .comment-footer .action-icons {
    visibility: hidden; }
    .comment-footer .action-icons a {
      padding-left: 7px;
      vertical-align: middle;
      color: #99abb4; }
      .comment-footer .action-icons a:hover, .comment-footer .action-icons a.active {
        color: #1976d2; }
  /*******************/
  /*To do widgets*/
  /*******************/
  .todo-list li {
    border: 0px;
    margin-bottom: 0px;
    padding: 20px 15px 15px 0px; }
    .todo-list li .checkbox {
      width: 100%; }
      .todo-list li .checkbox label {
        font-weight: 400;
        color: #455a64; }
    .todo-list li:last-child {
      border-bottom: 0px; }
    .todo-list li .assignedto {
      padding: 0px 0 0 27px;
      margin: 0px; }
      .todo-list li .assignedto li {
        list-style: none;
        padding: 0px;
        display: inline-block;
        border: 0px;
        margin-right: 2px; }
        .todo-list li .assignedto li img {
          width: 30px;
          border-radius: 100%; }
    .todo-list li .item-date {
      padding-left: 25px;
      font-size: 12px;
      display: inline-block; }
  .list-task .task-done span {
    text-decoration: line-through; }
  /*******************/
  /*Chat widget*/
  /*******************/
  .message-box ul li .drop-title {
    font-weight: 500;
    padding: 11px 20px 15px;
    border-bottom: 1px solid rgba(120, 130, 140, 0.13); }
  .message-box ul li .nav-link {
    border-top: 1px solid rgba(120, 130, 140, 0.13);
    padding-top: 15px; }
  .message-box .message-widget {
    position: relative; }
    .message-box .message-widget a {
      border-bottom: 1px solid rgba(120, 130, 140, 0.13);
      display: block;
      text-decoration: none;
      padding: 9px 15px; }
      .message-box .message-widget a:hover {
        background: #f2f4f8; }
      .message-box .message-widget a:last-child {
        border-bottom: 0px; }
      .message-box .message-widget a div {
        white-space: normal; }
      .message-box .message-widget a .user-img {
        width: 45px;
        position: relative;
        display: inline-block;
        margin: 0 10px 15px 0; }
        .message-box .message-widget a .user-img img {
          width: 100%; }
        .message-box .message-widget a .user-img .profile-status {
          border: 2px solid #ffffff;
          border-radius: 50%;
          display: inline-block;
          height: 10px;
          left: 33px;
          position: absolute;
          top: -1px;
          width: 10px; }
        .message-box .message-widget a .user-img .online {
          background: #26dad2; }
        .message-box .message-widget a .user-img .busy {
          background: #ef5350; }
        .message-box .message-widget a .user-img .away {
          background: #ffb22b; }
        .message-box .message-widget a .user-img .offline {
          background: #ffb22b; }
      .message-box .message-widget a .mail-contnet {
        display: inline-block;
        width: 73%;
        vertical-align: middle; }
        .message-box .message-widget a .mail-contnet h5 {
          margin: 5px 0px 0; }
        .message-box .message-widget a .mail-contnet .mail-desc,
        .message-box .message-widget a .mail-contnet .time {
          font-size: 12px;
          display: block;
          margin: 1px 0;
          text-overflow: ellipsis;
          overflow: hidden;
          color: #7d8b92;
          white-space: nowrap; }
  /*******************/
  /*Steam line widget*/
  /*******************/
  .steamline {
    position: relative;
    border-left: 1px solid rgba(120, 130, 140, 0.13);
    margin-left: 20px; }
    .steamline .sl-left {
      float: left;
      margin-left: -20px;
      z-index: 1;
      width: 40px;
      line-height: 40px;
      text-align: center;
      height: 40px;
      border-radius: 100%;
      color: #ffffff;
      background: #263238;
      margin-right: 15px; }
      .steamline .sl-left img {
        max-width: 40px; }
  .steamline .sl-right {
    padding-left: 50px; }
    .steamline .sl-right .desc,
    .steamline .sl-right .inline-photos {
      margin-bottom: 30px; }
  .steamline .sl-item {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13);
    margin: 20px 0; }
  .sl-date {
    font-size: 10px;
    color: #99abb4; }
  .time-item {
    border-color: rgba(120, 130, 140, 0.13);
    padding-bottom: 1px;
    position: relative; }
    .time-item:before {
      content: " ";
      display: table; }
    .time-item:after {
      background-color: #ffffff;
      border-color: rgba(120, 130, 140, 0.13);
      border-radius: 10px;
      border-style: solid;
      border-width: 2px;
      bottom: 0;
      content: '';
      height: 14px;
      left: 0;
      margin-left: -8px;
      position: absolute;
      top: 5px;
      width: 14px; }
  .time-item-item:after {
    content: " ";
    display: table; }
  .item-info {
    margin-bottom: 15px;
    margin-left: 15px; }
    .item-info p {
      margin-bottom: 10px !important; }
  /*******************/
  /*Feed widget*/
  /*******************/
  .feeds {
    margin: 0px;
    padding: 0px; }
    .feeds li {
      list-style: none;
      padding: 10px;
      display: block; }
      .feeds li:hover {
        background: #ebf3f5; }
      .feeds li > div {
        width: 40px;
        height: 40px;
        margin-right: 5px;
        display: inline-block;
        text-align: center;
        vertical-align: middle;
        border-radius: 100%; }
        .feeds li > div i {
          line-height: 40px; }
      .feeds li span {
        float: right;
        width: auto;
        font-size: 12px; }
  /*******************/
  /*Vertical carousel*/
  /*******************/
  .vert .carousel-item-next.carousel-item-left,
  .vert .carousel-item-prev.carousel-item-right {
    transform: translate3d(0, 0, 0); }
  .vert .carousel-item-next,
  .vert .active.carousel-item-right {
    transform: translate3d(0, 100% 0); }
  .vert .carousel-item-prev,
  .vert .active.carousel-item-left {
    transform: translate3d(0, -100%, 0); }
  /*******************/
  /*social-widgets*/
  /*******************/
  .social-widget .soc-header {
    padding: 15px;
    text-align: center;
    font-size: 36px;
    color: #fff; }
    .social-widget .soc-header.box-facebook {
      background: #3b5998; }
    .social-widget .soc-header.box-twitter {
      background: #00aced; }
    .social-widget .soc-header.box-google {
      background: #f86c6b; }
    .social-widget .soc-header.box-linkedin {
      background: #4875b4; }
  .social-widget .soc-content {
    display: flex;
    text-align: center; }
    .social-widget .soc-content div {
      padding: 10px; }
      .social-widget .soc-content div h3 {
        margin-bottom: 0px; }
  /*******************/
  /*social-profile-first*/
  /*******************/
  .social-profile-first {
    text-align: center;
    padding-top: 22%;
    margin-bottom: 96px; }
    .social-profile-first.bg-over {
      background: rgba(56, 83, 161, 0.7); }
    .social-profile-first .middle {
      vertical-align: middle; }
  /*******************/
  /*country-state*/
  /*******************/
  .country-state {
    list-style: none;
    margin: 0;
    padding: 0 0 0 10px; }
    .country-state li {
      margin-top: 30px;
      margin-bottom: 10px; }
    .country-state h2 {
      margin-bottom: 0px;
      font-weight: 400; }
  /*******************/
  /*profile timeline widget*/
  /*******************/
  .profiletimeline {
    position: relative;
    padding-left: 40px;
    margin-right: 10px;
    border-left: 1px solid rgba(120, 130, 140, 0.13);
    margin-left: 30px; }
    .profiletimeline .sl-left {
      float: left;
      margin-left: -60px;
      z-index: 1;
      margin-right: 15px; }
      .profiletimeline .sl-left img {
        max-width: 40px; }
  .profiletimeline .sl-item {
    margin-top: 8px;
    margin-bottom: 30px; }
  .profiletimeline .sl-date {
    font-size: 12px;
    color: #99abb4; }
  .profiletimeline .time-item {
    border-color: rgba(120, 130, 140, 0.13);
    padding-bottom: 1px;
    position: relative; }
    .profiletimeline .time-item:before {
      content: " ";
      display: table; }
    .profiletimeline .time-item:after {
      background-color: #ffffff;
      border-color: rgba(120, 130, 140, 0.13);
      border-radius: 10px;
      border-style: solid;
      border-width: 2px;
      bottom: 0;
      content: '';
      height: 14px;
      left: 0;
      margin-left: -8px;
      position: absolute;
      top: 5px;
      width: 14px; }
  .profiletimeline .time-item-item:after {
    content: " ";
    display: table; }
  .profiletimeline .item-info {
    margin-bottom: 15px;
    margin-left: 15px; }
    .profiletimeline .item-info p {
      margin-bottom: 10px !important; }
  /*Blog widgets*/
  .blog-widget {
    margin-top: 30px; }
    .blog-widget .blog-image img {
      border-radius: 4px;
      margin-top: -45px;
      margin-bottom: 20px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); }
  /*little-profile*/
  .little-profile .pro-img {
    margin-top: -80px;
    margin-bottom: 20px; }
    .little-profile .pro-img img {
      width: 128px;
      height: 128px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
      border-radius: 100%; }
  .contact-box {
    position: relative; }
    .contact-box .add-ct-btn {
      position: absolute;
      right: 4px;
      top: -46px; }
    .contact-box .contact-widget > a {
      padding: 15px 10px; }
      .contact-box .contact-widget > a .user-img {
        margin-bottom: 0px !important; }
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/ }
@media screen and (min-width: 1600px) {
  .col-xlg-1,
  .col-xlg-10,
  .col-xlg-11,
  .col-xlg-12,
  .col-xlg-2,
  .col-xlg-3,
  .col-xlg-4,
  .col-xlg-5,
  .col-xlg-6,
  .col-xlg-7,
  .col-xlg-8,
  .col-xlg-9 {
    float: left; }
  .col-xlg-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .col-xlg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%; }
  .col-xlg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%; }
  .col-xlg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xlg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%; }
  .col-xlg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%; }
  .col-xlg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xlg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%; }
  .col-xlg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%; }
  .col-xlg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xlg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%; }
  .col-xlg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%; }
  .col-xlg-pull-12 {
    right: 100%; }
  .col-xlg-pull-11 {
    right: 91.66666667%; }
  .col-xlg-pull-10 {
    right: 83.33333333%; }
  .col-xlg-pull-9 {
    right: 75%; }
  .col-xlg-pull-8 {
    right: 66.66666667%; }
  .col-xlg-pull-7 {
    right: 58.33333333%; }
  .col-xlg-pull-6 {
    right: 50%; }
  .col-xlg-pull-5 {
    right: 41.66666667%; }
  .col-xlg-pull-4 {
    right: 33.33333333%; }
  .col-xlg-pull-3 {
    right: 25%; }
  .col-xlg-pull-2 {
    right: 16.66666667%; }
  .col-xlg-pull-1 {
    right: 8.33333333%; }
  .col-xlg-pull-0 {
    right: auto; }
  .col-xlg-push-12 {
    left: 100%; }
  .col-xlg-push-11 {
    left: 91.66666667%; }
  .col-xlg-push-10 {
    left: 83.33333333%; }
  .col-xlg-push-9 {
    left: 75%; }
  .col-xlg-push-8 {
    left: 66.66666667%; }
  .col-xlg-push-7 {
    left: 58.33333333%; }
  .col-xlg-push-6 {
    left: 50%; }
  .col-xlg-push-5 {
    left: 41.66666667%; }
  .col-xlg-push-4 {
    left: 33.33333333%; }
  .col-xlg-push-3 {
    left: 25%; }
  .col-xlg-push-2 {
    left: 16.66666667%; }
  .col-xlg-push-1 {
    left: 8.33333333%; }
  .col-xlg-push-0 {
    left: auto; }
  .offset-xlg-12 {
    margin-left: 100%; }
  .offset-xlg-11 {
    margin-left: 91.66666667%; }
  .offset-xlg-10 {
    margin-left: 83.33333333%; }
  .offset-xlg-9 {
    margin-left: 75%; }
  .offset-xlg-8 {
    margin-left: 66.66666667%; }
  .offset-xlg-7 {
    margin-left: 58.33333333%; }
  .offset-xlg-6 {
    margin-left: 50%; }
  .offset-xlg-5 {
    margin-left: 41.66666667%; }
  .offset-xlg-4 {
    margin-left: 33.33333333%; }
  .offset-xlg-3 {
    margin-left: 25%; }
  .offset-xlg-2 {
    margin-left: 16.66666667%; }
  .offset-xlg-1 {
    margin-left: 8.33333333%; }
  .offset-xlg-0 {
    margin-left: 0; } }
@media screen {
  .col-xlg-1,
  .col-xlg-10,
  .col-xlg-11,
  .col-xlg-12,
  .col-xlg-2,
  .col-xlg-3,
  .col-xlg-4,
  .col-xlg-5,
  .col-xlg-6,
  .col-xlg-7,
  .col-xlg-8,
  .col-xlg-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px; }
  /*-------------------*/
  /*Bootstrap 4 hack*/
  /*-------------------*/
  .bootstrap-touchspin .input-group-btn {
    align-items: normal; }
  .form-control-danger, .form-control-success, .form-control-warning {
    padding-right: 2.25rem;
    background-repeat: no-repeat;
    background-position: center right .5625rem;
    background-size: 1.125rem 1.125rem; }
  .has-success .col-form-label, .has-success .custom-control, .has-success .form-check-label, .has-success .form-control-feedback, .has-success .form-control-label {
    color: #26dad2; }
  .has-success .form-control-success {
    background-image: url('success.svg'); }
  .has-success .form-control {
    border-color: #26dad2; }
  .has-warning .col-form-label, .has-warning .custom-control, .has-warning .form-check-label, .has-warning .form-control-feedback, .has-warning .form-control-label {
    color: #ffb22b; }
  .has-warning .form-control-warning {
    background-image: url('warning.svg'); }
  .has-warning .form-control {
    border-color: #ffb22b; }
  .has-danger .col-form-label, .has-danger .custom-control, .has-danger .form-check-label, .has-danger .form-control-feedback, .has-danger .form-control-label {
    color: #ef5350; }
  .has-danger .form-control-danger {
    background-image: url('danger.svg'); }
  .has-danger .form-control {
    border-color: #ef5350; }
  .input-group-addon [type="radio"]:not(:checked),
  .input-group-addon [type="radio"]:checked,
  .input-group-addon [type="checkbox"]:not(:checked),
  .input-group-addon [type="checkbox"]:checked {
    position: initial;
    opacity: 1; }
  .invisible {
    visibility: hidden !important; }
  .hidden-xs-up {
    display: none !important; } }
@media screen and (max-width: 575px) {
  .hidden-xs-down {
    display: none !important; } }
@media screen and (min-width: 576px) {
  .hidden-sm-up {
    display: none !important; } }
@media screen and (max-width: 767px) {
  .hidden-sm-down {
    display: none !important; } }
@media screen and (min-width: 768px) {
  .hidden-md-up {
    display: none !important; } }
@media screen and (max-width: 991px) {
  .hidden-md-down {
    display: none !important; } }
@media screen and (min-width: 992px) {
  .hidden-lg-up {
    display: none !important; } }
@media screen and (max-width: 1199px) {
  .hidden-lg-down {
    display: none !important; } }
@media screen and (min-width: 1200px) {
  .hidden-xl-up {
    display: none !important; } }
@media screen {
  .hidden-xl-down {
    display: none !important; }
  .card-inverse .card-blockquote,
  .card-inverse .card-footer,
  .card-inverse .card-header,
  .card-inverse .card-title {
    color: #ffffff; }
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*============================================================== 
 For Laptop & above all (1650px) 
 ============================================================== */ }
@media screen and (min-width: 1650px) {
  .widget-app-columns {
    -moz-column-count: 3;
         column-count: 3; } }
@media screen {
  /*============================================================== 
 For Laptop & above all (1370px) 
 ============================================================== */ }
@media screen and (max-width: 1370px) {
  .widget-app-columns {
    -moz-column-count: 2;
         column-count: 2; } }
@media screen {
  /*-- ============================================================== 
 Small Desktop & above all (1024px) 
 ============================================================== */ }
@media screen and (min-width: 1024px) {
  .page-wrapper {
    margin-left: 240px; }
  .footer {
    left: 240px; } }
@media screen and (max-width: 1023px) {
  .widget-app-columns {
    -moz-column-count: 1;
         column-count: 1; } }
@media screen {
  /*-- ============================================================== 
 Ipad & above all(768px) 
 ============================================================== */ }
@media screen and (min-width: 768px) {
  .navbar-header {
    width: 240px;
    flex-shrink: 0; }
    .navbar-header .navbar-brand {
      padding-top: 0px; }
  /*This is for the breeadcrumd*/
  .page-titles .breadcrumb {
    float: right; }
  .card-group .card:first-child, .card-group .card:not(:first-child):not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.03); }
  .material-icon-list-demo .icons div {
    width: 33%;
    padding: 15px;
    display: inline-block;
    line-height: 40px; }
  .mini-sidebar .page-wrapper {
    margin-left: 70px; }
  .mini-sidebar .footer {
    left: 70px; }
  .flex-wrap {
    flex-wrap: nowrap !important;
    -webkit-flex-wrap: nowrap !important; } }
@media screen {
  /*-- ============================================================== 
 Phone and below ipad(767px) 
 ============================================================== */ }
@media screen and (max-width: 767px) {
  /*Header*/
  .topbar {
    width: 100%; }
    .topbar .top-navbar {
      padding-right: 15px;
      flex-direction: row;
      flex-wrap: nowrap;
      -webkit-align-items: center; }
      .topbar .top-navbar .navbar-collapse {
        display: flex;
        width: 100%; }
      .topbar .top-navbar .navbar-header {
        width: 70px; }
      .topbar .top-navbar .navbar-brand span {
        display: none; }
      .topbar .top-navbar .navbar-nav {
        flex-direction: row; }
        .topbar .top-navbar .navbar-nav > .nav-item.show {
          position: static; }
          .topbar .top-navbar .navbar-nav > .nav-item.show .dropdown-menu {
            width: 100%;
            margin-top: 0px;
            left: 0 !important;
            right: 0 !important; }
        .topbar .top-navbar .navbar-nav > .nav-item > .nav-link {
          padding-left: .50rem;
          padding-right: .50rem; }
        .topbar .top-navbar .navbar-nav .dropdown-menu {
          position: absolute; }
  .mega-dropdown .dropdown-menu {
    height: 480px;
    overflow: auto; }
  /*Sidebar and wrapper*/
  .mini-sidebar .page-wrapper {
    margin-left: 0px; }
  .comment-text .comment-footer .action-icons {
    display: block;
    padding: 10px 0; }
  /*Footer*/
  .footer {
    left: 0px; }
  .material-icon-list-demo .icons div {
    width: 100%; }
  .error-page .footer {
    position: fixed;
    bottom: 0px;
    z-index: 10; }
  .error-box {
    position: relative;
    padding-bottom: 60px; }
  .error-body {
    padding-top: 10%; }
    .error-body h1 {
      font-size: 100px;
      font-weight: 600;
      line-height: 100px; }
  .login-register {
    position: relative;
    overflow: hidden; }
  .login-box {
    width: 90%; }
  .login-sidebar {
    padding: 10% 0; }
    .login-sidebar .login-box {
      position: relative; }
  /*Timeline*/
  ul.timeline:before {
    left: 40px; }
  ul.timeline > li > .timeline-panel {
    width: calc(100% - 90px); }
  ul.timeline > li > .timeline-badge {
    top: 16px;
    left: 15px;
    margin-left: 0; }
  ul.timeline > li > .timeline-panel {
    float: right; }
  ul.timeline > li > .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0; }
  ul.timeline > li > .timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0; } }
@media screen {
  .preloader {
    position: absolute;
    margin: 0 auto;
    width: 100%;
    height: 100%; }
  .spinner {
    width: 40px;
    height: 40px;
    top: 35%;
    position: relative;
    margin: 100px auto; }
  .double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #1976d2;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-bounce 2.0s infinite ease-in-out; }
  .double-bounce2 {
    animation-delay: -1.0s; }
  @keyframes sk-bounce {
    0%, 100% {
      transform: scale(0);
      -webkit-transform: scale(0); }
    50% {
      transform: scale(1);
      -webkit-transform: scale(1); } }
  /*******************
This is for the minisidebar
******************/
  .mini-sidebar .top-navbar .navbar-header {
    width: 70px;
    text-align: center; }
  /****************
When click on sidebar toggler and also for tablet
*****************/
  .mini-sidebar .navbar-brand span {
    display: none; } }
@media screen and (min-width: 768px) {
  .mini-sidebar .navbar-brand span {
    display: none; }
  .mini-sidebar .sidebar-nav #sidebarnav li {
    position: relative; }
  .mini-sidebar .sidebar-nav #sidebarnav > li > ul {
    position: absolute;
    left: 70px;
    top: 56px;
    width: 220px;
    padding-bottom: 10px;
    z-index: 1001;
    background: #f2f6f8;
    display: none;
    padding-left: 1px; }
  .mini-sidebar .sidebar-nav #sidebarnav > li:hover > ul {
    height: auto !important;
    overflow: auto; }
  .mini-sidebar .sidebar-nav #sidebarnav > li:hover > ul,
  .mini-sidebar .sidebar-nav #sidebarnav > li:hover > ul.collapse {
    display: block; }
  .mini-sidebar .sidebar-nav #sidebarnav > li > a.has-arrow:after {
    display: none; }
  .mini-sidebar .user-profile .profile-img {
    width: 50px; }
    .mini-sidebar .user-profile .profile-img .setpos {
      top: -35px; }
  .mini-sidebar.fix-sidebar .left-sidebar {
    position: fixed; }
  .mini-sidebar .left-sidebar {
    width: 70px; }
  .mini-sidebar .user-profile {
    padding-bottom: 15px;
    width: 70px;
    margin-bottom: 7px; }
    .mini-sidebar .user-profile .profile-img {
      padding: 15px 0 0 0; }
      .mini-sidebar .user-profile .profile-img:before {
        top: 15px; }
  .mini-sidebar .scroll-sidebar {
    padding-bottom: 0px;
    position: absolute; }
  .mini-sidebar .hide-menu,
  .mini-sidebar .nav-small-cap,
  .mini-sidebar .sidebar-footer,
  .mini-sidebar .user-profile .profile-text,
  .mini-sidebar > .label {
    display: none; }
  .mini-sidebar .nav-devider {
    width: 70px; }
  .mini-sidebar .sidebar-nav {
    background: transparent; }
  .mini-sidebar .sidebar-nav #sidebarnav > li > a {
    padding: 12px 24px;
    width: 70px; }
  .mini-sidebar .sidebar-nav #sidebarnav > li:hover > a {
    width: 290px;
    background: #f2f6f8; }
    .mini-sidebar .sidebar-nav #sidebarnav > li:hover > a .hide-menu {
      display: inline; }
    .mini-sidebar .sidebar-nav #sidebarnav > li:hover > a .label {
      display: none; } }
@media screen and (max-width: 767px) {
  .mini-sidebar .left-sidebar,
  .mini-sidebar .sidebar-footer {
    left: -240px; } }
@media screen {
  /*******************
This is for the Logo in center
******************/
  .logo-center .top-navbar .navbar-header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto; }
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*Theme Colors*/
  /*bootstrap Color*/
  /*Light colors*/
  /*Normal Color*/
  /*Extra Variable*/
  /*Preloader*/
  .preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff; }
    .preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .dark_preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #232a37; }
    .dark_preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .bluedark {
    /*******************
/*Top bar
*******************/
    /*******************
/*General Elements
*******************/
    /*******************
/*Buttons
*******************/
    /*******************
/*sidebar navigation
*******************/ }
    .bluedark .topbar {
      background: #1e88e5; }
      .bluedark .topbar .top-navbar .navbar-header .navbar-brand .dark-logo {
        display: none; }
      .bluedark .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
        display: inline-block;
        color: rgba(255, 255, 255, 0.8); }
      .bluedark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link {
        color: rgba(255, 255, 255, 0.8) !important; }
        .bluedark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:hover, .bluedark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:focus {
          color: #ffffff !important; }
      .bluedark .topbar .navbar-header {
        background: #272c33; }
    .bluedark .logo-center .topbar .navbar-header {
      background: transparent;
      box-shadow: none; }
    .bluedark .logo-center .topbar .top-navbar .navbar-header .navbar-brand .dark-logo {
      display: none; }
    .bluedark .logo-center .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
      display: inline-block;
      color: rgba(255, 255, 255, 0.8); }
    .bluedark a.link:hover, .bluedark a.link:focus {
      color: #1e88e5 !important; }
    .bluedark .right-sidebar .rpanel-title {
      background: #1e88e5; }
    .bluedark .text-themecolor {
      color: #1e88e5 !important; }
    .bluedark .btn-themecolor,
    .bluedark .btn-themecolor.disabled {
      background: #1e88e5;
      color: #ffffff;
      border: 1px solid #1e88e5; }
      .bluedark .btn-themecolor:hover,
      .bluedark .btn-themecolor.disabled:hover {
        background: #1e88e5;
        opacity: 0.7;
        border: 1px solid #1e88e5; }
      .bluedark .btn-themecolor.active, .bluedark .btn-themecolor:focus,
      .bluedark .btn-themecolor.disabled.active,
      .bluedark .btn-themecolor.disabled:focus {
        background: #028ee1; }
    .bluedark .left-sidebar,
    .bluedark .card-no-border .left-sidebar,
    .bluedark .card-no-border .sidebar-nav {
      background: #272c33; }
    .bluedark .user-profile .profile-text a {
      color: #798699 !important; }
    .bluedark .card-no-border .sidebar-footer {
      background: #181c22; }
    .bluedark .label-themecolor {
      background: #1e88e5; }
    .bluedark .sidebar-nav > ul > li.active > a {
      color: #1e88e5;
      border-color: #1e88e5; }
      .bluedark .sidebar-nav > ul > li.active > a i {
        color: #1e88e5; }
    .bluedark .sidebar-nav ul li a.router-link-active, .bluedark .sidebar-nav ul li a:hover {
      color: #1e88e5; }
      .bluedark .sidebar-nav ul li a.router-link-active i, .bluedark .sidebar-nav ul li a:hover i {
        color: #1e88e5; }
    .bluedark .sidebar-nav ul li.nav-small-cap {
      color: #798699; } }
@media screen and (min-width: 768px) {
    .bluedark.mini-sidebar .sidebar-nav #sidebarnav > li > ul {
      background: #181c22; }
    .bluedark.mini-sidebar .sidebar-nav #sidebarnav > li:hover > a {
      background: #181c22; } }
@media screen {
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  .defaultdark {
    /*******************
/*Top bar
*******************/
    /*******************
/*General Elements
*******************/
    /*******************
/*Buttons
*******************/
    /*******************
/*sidebar navigation
*******************/ }
    .defaultdark .topbar {
      background: #009efb; }
      .defaultdark .topbar .top-navbar .navbar-header .navbar-brand .dark-logo {
        display: none; }
      .defaultdark .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
        display: inline-block;
        color: rgba(255, 255, 255, 0.8); }
      .defaultdark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link {
        color: rgba(255, 255, 255, 0.8) !important; }
        .defaultdark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:hover, .defaultdark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:focus {
          color: #ffffff !important; }
      .defaultdark .topbar .navbar-header {
        background: #272c33; }
    .defaultdark .logo-center .topbar .navbar-header {
      background: transparent;
      box-shadow: none; }
    .defaultdark .logo-center .topbar .top-navbar .navbar-header .navbar-brand .dark-logo {
      display: none; }
    .defaultdark .logo-center .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
      display: inline-block;
      color: rgba(255, 255, 255, 0.8); }
    .defaultdark a.link:hover, .defaultdark a.link:focus {
      color: #009efb !important; }
    .defaultdark .right-sidebar .rpanel-title {
      background: #009efb; }
    .defaultdark .text-themecolor {
      color: #009efb !important; }
    .defaultdark .btn-themecolor,
    .defaultdark .btn-themecolor.disabled {
      background: #009efb;
      color: #ffffff;
      border: 1px solid #009efb; }
      .defaultdark .btn-themecolor:hover,
      .defaultdark .btn-themecolor.disabled:hover {
        background: #009efb;
        opacity: 0.7;
        border: 1px solid #009efb; }
      .defaultdark .btn-themecolor.active, .defaultdark .btn-themecolor:focus,
      .defaultdark .btn-themecolor.disabled.active,
      .defaultdark .btn-themecolor.disabled:focus {
        background: #028ee1; }
    .defaultdark .left-sidebar,
    .defaultdark .card-no-border .left-sidebar,
    .defaultdark .card-no-border .sidebar-nav {
      background: #272c33; }
    .defaultdark .user-profile .profile-text a {
      color: #798699 !important; }
    .defaultdark .card-no-border .sidebar-footer {
      background: #181c22; }
    .defaultdark .label-themecolor {
      background: #009efb; }
    .defaultdark .sidebar-nav > ul > li.active > a {
      color: #009efb;
      border-color: #009efb; }
      .defaultdark .sidebar-nav > ul > li.active > a i {
        color: #009efb; }
    .defaultdark .sidebar-nav ul li a.router-link-active, .defaultdark .sidebar-nav ul li a:hover {
      color: #009efb; }
      .defaultdark .sidebar-nav ul li a.router-link-active i, .defaultdark .sidebar-nav ul li a:hover i {
        color: #009efb; }
    .defaultdark .sidebar-nav ul li.nav-small-cap {
      color: #798699; } }
@media screen and (min-width: 768px) {
    .defaultdark.mini-sidebar .sidebar-nav #sidebarnav > li > ul {
      background: #181c22; }
    .defaultdark.mini-sidebar .sidebar-nav #sidebarnav > li:hover > a {
      background: #181c22; } }
@media screen {
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*Theme Colors*/
  /*bootstrap Color*/
  /*Light colors*/
  /*Normal Color*/
  /*Extra Variable*/
  /*Preloader*/
  .preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff; }
    .preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .dark_preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #232a37; }
    .dark_preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .reddark {
    /*******************
/*Top bar
*******************/
    /*******************
/*General Elements
*******************/
    /*******************
/*Buttons
*******************/
    /*******************
/*sidebar navigation
*******************/ }
    .reddark .topbar {
      background: #f62d51; }
      .reddark .topbar .top-navbar .navbar-header .navbar-brand .dark-logo {
        display: none; }
      .reddark .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
        display: inline-block;
        color: rgba(255, 255, 255, 0.8); }
      .reddark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link {
        color: rgba(255, 255, 255, 0.8) !important; }
        .reddark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:hover, .reddark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:focus {
          color: #ffffff !important; }
      .reddark .topbar .navbar-header {
        background: #272c33; }
    .reddark .logo-center .topbar .navbar-header {
      background: transparent;
      box-shadow: none; }
    .reddark .logo-center .topbar .top-navbar .navbar-header .navbar-brand .dark-logo {
      display: none; }
    .reddark .logo-center .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
      display: inline-block;
      color: rgba(255, 255, 255, 0.8); }
    .reddark a.link:hover, .reddark a.link:focus {
      color: #f62d51 !important; }
    .reddark .right-sidebar .rpanel-title {
      background: #f62d51; }
    .reddark .text-themecolor {
      color: #f62d51 !important; }
    .reddark .btn-themecolor,
    .reddark .btn-themecolor.disabled {
      background: #f62d51;
      color: #ffffff;
      border: 1px solid #f62d51; }
      .reddark .btn-themecolor:hover,
      .reddark .btn-themecolor.disabled:hover {
        background: #f62d51;
        opacity: 0.7;
        border: 1px solid #f62d51; }
      .reddark .btn-themecolor.active, .reddark .btn-themecolor:focus,
      .reddark .btn-themecolor.disabled.active,
      .reddark .btn-themecolor.disabled:focus {
        background: #028ee1; }
    .reddark .left-sidebar,
    .reddark .card-no-border .left-sidebar,
    .reddark .card-no-border .sidebar-nav {
      background: #272c33; }
    .reddark .user-profile .profile-text a {
      color: #798699 !important; }
    .reddark .card-no-border .sidebar-footer {
      background: #181c22; }
    .reddark .label-themecolor {
      background: #f62d51; }
    .reddark .sidebar-nav > ul > li.active > a {
      color: #f62d51;
      border-color: #f62d51; }
      .reddark .sidebar-nav > ul > li.active > a i {
        color: #f62d51; }
    .reddark .sidebar-nav ul li a.router-link-active, .reddark .sidebar-nav ul li a:hover {
      color: #f62d51; }
      .reddark .sidebar-nav ul li a.router-link-active i, .reddark .sidebar-nav ul li a:hover i {
        color: #f62d51; }
    .reddark .sidebar-nav ul li.nav-small-cap {
      color: #798699; } }
@media screen and (min-width: 768px) {
    .reddark.mini-sidebar .sidebar-nav #sidebarnav > li > ul {
      background: #181c22; }
    .reddark.mini-sidebar .sidebar-nav #sidebarnav > li:hover > a {
      background: #181c22; } }
@media screen {
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*Theme Colors*/
  /*bootstrap Color*/
  /*Light colors*/
  /*Normal Color*/
  /*Extra Variable*/
  /*Preloader*/
  .preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff; }
    .preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .dark_preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #232a37; }
    .dark_preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .greendark {
    /*******************
/*Top bar
*******************/
    /*******************
/*General Elements
*******************/
    /*******************
/*Buttons
*******************/
    /*******************
/*sidebar navigation
*******************/ }
    .greendark .topbar {
      background: #00acc1; }
      .greendark .topbar .top-navbar .navbar-header .navbar-brand .dark-logo {
        display: none; }
      .greendark .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
        display: inline-block;
        color: rgba(255, 255, 255, 0.8); }
      .greendark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link {
        color: rgba(255, 255, 255, 0.8) !important; }
        .greendark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:hover, .greendark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:focus {
          color: #ffffff !important; }
      .greendark .topbar .navbar-header {
        background: #272c33; }
    .greendark .logo-center .topbar .navbar-header {
      background: transparent;
      box-shadow: none; }
    .greendark .logo-center .topbar .top-navbar .navbar-header .navbar-brand .dark-logo {
      display: none; }
    .greendark .logo-center .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
      display: inline-block;
      color: rgba(255, 255, 255, 0.8); }
    .greendark a.link:hover, .greendark a.link:focus {
      color: #00acc1 !important; }
    .greendark .right-sidebar .rpanel-title {
      background: #00acc1; }
    .greendark .text-themecolor {
      color: #00acc1 !important; }
    .greendark .btn-themecolor,
    .greendark .btn-themecolor.disabled {
      background: #00acc1;
      color: #ffffff;
      border: 1px solid #00acc1; }
      .greendark .btn-themecolor:hover,
      .greendark .btn-themecolor.disabled:hover {
        background: #00acc1;
        opacity: 0.7;
        border: 1px solid #00acc1; }
      .greendark .btn-themecolor.active, .greendark .btn-themecolor:focus,
      .greendark .btn-themecolor.disabled.active,
      .greendark .btn-themecolor.disabled:focus {
        background: #028ee1; }
    .greendark .left-sidebar,
    .greendark .card-no-border .left-sidebar,
    .greendark .card-no-border .sidebar-nav {
      background: #272c33; }
    .greendark .user-profile .profile-text a {
      color: #798699 !important; }
    .greendark .card-no-border .sidebar-footer {
      background: #181c22; }
    .greendark .label-themecolor {
      background: #00acc1; }
    .greendark .sidebar-nav > ul > li.active > a {
      color: #00acc1;
      border-color: #00acc1; }
      .greendark .sidebar-nav > ul > li.active > a i {
        color: #00acc1; }
    .greendark .sidebar-nav ul li a.router-link-active, .greendark .sidebar-nav ul li a:hover {
      color: #00acc1; }
      .greendark .sidebar-nav ul li a.router-link-active i, .greendark .sidebar-nav ul li a:hover i {
        color: #00acc1; }
    .greendark .sidebar-nav ul li.nav-small-cap {
      color: #798699; } }
@media screen and (min-width: 768px) {
    .greendark.mini-sidebar .sidebar-nav #sidebarnav > li > ul {
      background: #181c22; }
    .greendark.mini-sidebar .sidebar-nav #sidebarnav > li:hover > a {
      background: #181c22; } }
@media screen {
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*Theme Colors*/
  /*bootstrap Color*/
  /*Light colors*/
  /*Normal Color*/
  /*Extra Variable*/
  /*Preloader*/
  .preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff; }
    .preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .dark_preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #232a37; }
    .dark_preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .purpledark {
    /*******************
/*Top bar
*******************/
    /*******************
/*General Elements
*******************/
    /*******************
/*Buttons
*******************/
    /*******************
/*sidebar navigation
*******************/ }
    .purpledark .topbar {
      background: #7460ee; }
      .purpledark .topbar .top-navbar .navbar-header .navbar-brand .dark-logo {
        display: none; }
      .purpledark .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
        display: inline-block;
        color: rgba(255, 255, 255, 0.8); }
      .purpledark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link {
        color: rgba(255, 255, 255, 0.8) !important; }
        .purpledark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:hover, .purpledark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:focus {
          color: #ffffff !important; }
      .purpledark .topbar .navbar-header {
        background: #272c33; }
    .purpledark .logo-center .topbar .navbar-header {
      background: transparent;
      box-shadow: none; }
    .purpledark .logo-center .topbar .top-navbar .navbar-header .navbar-brand .dark-logo {
      display: none; }
    .purpledark .logo-center .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
      display: inline-block;
      color: rgba(255, 255, 255, 0.8); }
    .purpledark a.link:hover, .purpledark a.link:focus {
      color: #7460ee !important; }
    .purpledark .right-sidebar .rpanel-title {
      background: #7460ee; }
    .purpledark .text-themecolor {
      color: #7460ee !important; }
    .purpledark .btn-themecolor,
    .purpledark .btn-themecolor.disabled {
      background: #7460ee;
      color: #ffffff;
      border: 1px solid #7460ee; }
      .purpledark .btn-themecolor:hover,
      .purpledark .btn-themecolor.disabled:hover {
        background: #7460ee;
        opacity: 0.7;
        border: 1px solid #7460ee; }
      .purpledark .btn-themecolor.active, .purpledark .btn-themecolor:focus,
      .purpledark .btn-themecolor.disabled.active,
      .purpledark .btn-themecolor.disabled:focus {
        background: #028ee1; }
    .purpledark .left-sidebar,
    .purpledark .card-no-border .left-sidebar,
    .purpledark .card-no-border .sidebar-nav {
      background: #272c33; }
    .purpledark .user-profile .profile-text a {
      color: #798699 !important; }
    .purpledark .card-no-border .sidebar-footer {
      background: #181c22; }
    .purpledark .label-themecolor {
      background: #7460ee; }
    .purpledark .sidebar-nav > ul > li.active > a {
      color: #7460ee;
      border-color: #7460ee; }
      .purpledark .sidebar-nav > ul > li.active > a i {
        color: #7460ee; }
    .purpledark .sidebar-nav ul li a.router-link-active, .purpledark .sidebar-nav ul li a:hover {
      color: #7460ee; }
      .purpledark .sidebar-nav ul li a.router-link-active i, .purpledark .sidebar-nav ul li a:hover i {
        color: #7460ee; }
    .purpledark .sidebar-nav ul li.nav-small-cap {
      color: #798699; } }
@media screen and (min-width: 768px) {
    .purpledark.mini-sidebar .sidebar-nav #sidebarnav > li > ul {
      background: #181c22; }
    .purpledark.mini-sidebar .sidebar-nav #sidebarnav > li:hover > a {
      background: #181c22; } }
@media screen {
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*Theme Colors*/
  /*bootstrap Color*/
  /*Light colors*/
  /*Normal Color*/
  /*Extra Variable*/
  /*Preloader*/
  .preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff; }
    .preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .dark_preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #232a37; }
    .dark_preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .megnadark {
    /*******************
/*Top bar
*******************/
    /*******************
/*General Elements
*******************/
    /*******************
/*Buttons
*******************/
    /*******************
/*sidebar navigation
*******************/ }
    .megnadark .topbar {
      background: #00897b; }
      .megnadark .topbar .top-navbar .navbar-header .navbar-brand .dark-logo {
        display: none; }
      .megnadark .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
        display: inline-block;
        color: rgba(255, 255, 255, 0.8); }
      .megnadark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link {
        color: rgba(255, 255, 255, 0.8) !important; }
        .megnadark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:hover, .megnadark .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:focus {
          color: #ffffff !important; }
      .megnadark .topbar .navbar-header {
        background: #272c33; }
    .megnadark .logo-center .topbar .navbar-header {
      background: transparent;
      box-shadow: none; }
    .megnadark .logo-center .topbar .top-navbar .navbar-header .navbar-brand .dark-logo {
      display: none; }
    .megnadark .logo-center .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
      display: inline-block;
      color: rgba(255, 255, 255, 0.8); }
    .megnadark a.link:hover, .megnadark a.link:focus {
      color: #00897b !important; }
    .megnadark .right-sidebar .rpanel-title {
      background: #00897b; }
    .megnadark .text-themecolor {
      color: #00897b !important; }
    .megnadark .btn-themecolor,
    .megnadark .btn-themecolor.disabled {
      background: #00897b;
      color: #ffffff;
      border: 1px solid #00897b; }
      .megnadark .btn-themecolor:hover,
      .megnadark .btn-themecolor.disabled:hover {
        background: #00897b;
        opacity: 0.7;
        border: 1px solid #00897b; }
      .megnadark .btn-themecolor.active, .megnadark .btn-themecolor:focus,
      .megnadark .btn-themecolor.disabled.active,
      .megnadark .btn-themecolor.disabled:focus {
        background: #028ee1; }
    .megnadark .left-sidebar,
    .megnadark .card-no-border .left-sidebar,
    .megnadark .card-no-border .sidebar-nav {
      background: #272c33; }
    .megnadark .user-profile .profile-text a {
      color: #798699 !important; }
    .megnadark .card-no-border .sidebar-footer {
      background: #181c22; }
    .megnadark .label-themecolor {
      background: #00897b; }
    .megnadark .sidebar-nav > ul > li.active > a {
      color: #00897b;
      border-color: #00897b; }
      .megnadark .sidebar-nav > ul > li.active > a i {
        color: #00897b; }
    .megnadark .sidebar-nav ul li a.router-link-active, .megnadark .sidebar-nav ul li a:hover {
      color: #00897b; }
      .megnadark .sidebar-nav ul li a.router-link-active i, .megnadark .sidebar-nav ul li a:hover i {
        color: #00897b; }
    .megnadark .sidebar-nav ul li.nav-small-cap {
      color: #798699; } }
@media screen and (min-width: 768px) {
    .megnadark.mini-sidebar .sidebar-nav #sidebarnav > li > ul {
      background: #181c22; }
    .megnadark.mini-sidebar .sidebar-nav #sidebarnav > li:hover > a {
      background: #181c22; } }
@media screen {
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*Theme Colors*/
  /*bootstrap Color*/
  /*Light colors*/
  /*Normal Color*/
  /*Extra Variable*/
  /*Preloader*/
  .preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff; }
    .preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .dark_preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #232a37; }
    .dark_preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .megna {
    /*******************
/*Top bar
*******************/
    /*******************
/*General Elements
*******************/
    /*******************
/*Buttons
*******************/
    /*******************
/*sidebar navigation
*******************/ }
    .megna .topbar {
      background: #00897b; }
      .megna .topbar .navbar-header {
        background: #ffffff; }
      .megna .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
        display: none;
        color: rgba(255, 255, 255, 0.8); }
      .megna .topbar .navbar-light .navbar-nav .nav-item > a.nav-link {
        color: #ffffff !important; }
        .megna .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:hover, .megna .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:focus {
          color: rgba(255, 255, 255, 0.8) !important; }
    .megna a.link:hover, .megna a.link:focus {
      color: #00897b !important; }
    .megna .bg-theme {
      background-color: #00897b !important; }
    .megna .pagination > .active > a,
    .megna .pagination > .active > span,
    .megna .pagination > .active > a:hover,
    .megna .pagination > .active > span:hover,
    .megna .pagination > .active > a:focus,
    .megna .pagination > .active > span:focus {
      background-color: #00897b;
      border-color: #00897b; }
    .megna .right-sidebar .rpanel-title {
      background: #00897b; }
    .megna .stylish-table tbody tr:hover, .megna .stylish-table tbody tr.active {
      border-left: 4px solid #00897b; }
    .megna .text-themecolor {
      color: #00897b !important; }
    .megna .profile-tab li a.nav-link.active,
    .megna .customtab li a.nav-link.active {
      border-bottom: 2px solid #00897b;
      color: #00897b; }
    .megna .profile-tab li a.nav-link:hover,
    .megna .customtab li a.nav-link:hover {
      color: #00897b; }
    .megna .btn-themecolor,
    .megna .btn-themecolor.disabled {
      background: #00897b;
      color: #ffffff;
      border: 1px solid #00897b; }
      .megna .btn-themecolor:hover,
      .megna .btn-themecolor.disabled:hover {
        background: #00897b;
        opacity: 0.7;
        border: 1px solid #00897b; }
      .megna .btn-themecolor.active, .megna .btn-themecolor:focus,
      .megna .btn-themecolor.disabled.active,
      .megna .btn-themecolor.disabled:focus {
        background: #028ee1; }
    .megna .label-themecolor {
      background: #00897b; }
    .megna .sidebar-nav > ul > li.active > a {
      color: #00897b;
      border-color: #00897b; }
      .megna .sidebar-nav > ul > li.active > a i {
        color: #00897b; }
    .megna .sidebar-nav ul li a.router-link-active, .megna .sidebar-nav ul li a:hover {
      color: #00897b; }
      .megna .sidebar-nav ul li a.router-link-active i, .megna .sidebar-nav ul li a:hover i {
        color: #00897b; }
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*Theme Colors*/
  /*bootstrap Color*/
  /*Light colors*/
  /*Normal Color*/
  /*Extra Variable*/
  /*Preloader*/
  .preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff; }
    .preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .dark_preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #232a37; }
    .dark_preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .blue {
    /*******************
/*Top bar
*******************/
    /*******************
/*General Elements
*******************/
    /*******************
/*Buttons
*******************/
    /*******************
/*sidebar navigation
*******************/ }
    .blue .topbar {
      background: #1976d2; }
      .blue .topbar .navbar-header {
        background: #ffffff; }
      .blue .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
        display: none;
        color: rgba(255, 255, 255, 0.8); }
      .blue .topbar .navbar-light .navbar-nav .nav-item > a.nav-link {
        color: #ffffff !important; }
        .blue .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:hover, .blue .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:focus {
          color: rgba(255, 255, 255, 0.8) !important; }
    .blue a.link:hover, .blue a.link:focus {
      color: #1976d2 !important; }
    .blue .bg-theme {
      background-color: #1976d2 !important; }
    .blue .pagination > .active > a,
    .blue .pagination > .active > span,
    .blue .pagination > .active > a:hover,
    .blue .pagination > .active > span:hover,
    .blue .pagination > .active > a:focus,
    .blue .pagination > .active > span:focus {
      background-color: #1976d2;
      border-color: #1976d2; }
    .blue .right-sidebar .rpanel-title {
      background: #1976d2; }
    .blue .stylish-table tbody tr:hover, .blue .stylish-table tbody tr.active {
      border-left: 4px solid #1976d2; }
    .blue .text-themecolor {
      color: #1976d2 !important; }
    .blue .profile-tab li a.nav-link.active,
    .blue .customtab li a.nav-link.active {
      border-bottom: 2px solid #1976d2;
      color: #1976d2; }
    .blue .profile-tab li a.nav-link:hover,
    .blue .customtab li a.nav-link:hover {
      color: #1976d2; }
    .blue .btn-themecolor,
    .blue .btn-themecolor.disabled {
      background: #1976d2;
      color: #ffffff;
      border: 1px solid #1976d2; }
      .blue .btn-themecolor:hover,
      .blue .btn-themecolor.disabled:hover {
        background: #1976d2;
        opacity: 0.7;
        border: 1px solid #1976d2; }
      .blue .btn-themecolor.active, .blue .btn-themecolor:focus,
      .blue .btn-themecolor.disabled.active,
      .blue .btn-themecolor.disabled:focus {
        background: #028ee1; }
    .blue .label-themecolor {
      background: #1976d2; }
    .blue .sidebar-nav ul li a.router-link-active, .blue .sidebar-nav ul li a:hover {
      color: #1976d2; }
      .blue .sidebar-nav ul li a.router-link-active i, .blue .sidebar-nav ul li a:hover i {
        color: #1976d2; }
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*Theme Colors*/
  /*bootstrap Color*/
  /*Light colors*/
  /*Normal Color*/
  /*Extra Variable*/
  /*Preloader*/
  .preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff; }
    .preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .dark_preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #232a37; }
    .dark_preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .red {
    /*******************
/*Top bar
*******************/
    /*******************
/*General Elements
*******************/
    /*******************
/*Buttons
*******************/
    /*******************
/*sidebar navigation
*******************/ }
    .red .topbar {
      background: #f62d51; }
      .red .topbar .navbar-header {
        background: #ffffff; }
      .red .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
        display: none;
        color: rgba(255, 255, 255, 0.8); }
      .red .topbar .navbar-light .navbar-nav .nav-item > a.nav-link {
        color: #ffffff !important; }
        .red .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:hover, .red .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:focus {
          color: rgba(255, 255, 255, 0.8) !important; }
    .red a.link:hover, .red a.link:focus {
      color: #f62d51 !important; }
    .red .bg-theme {
      background-color: #f62d51 !important; }
    .red .pagination > .active > a,
    .red .pagination > .active > span,
    .red .pagination > .active > a:hover,
    .red .pagination > .active > span:hover,
    .red .pagination > .active > a:focus,
    .red .pagination > .active > span:focus {
      background-color: #f62d51;
      border-color: #f62d51; }
    .red .right-sidebar .rpanel-title {
      background: #f62d51; }
    .red .stylish-table tbody tr:hover, .red .stylish-table tbody tr.active {
      border-left: 4px solid #f62d51; }
    .red .text-themecolor {
      color: #f62d51 !important; }
    .red .profile-tab li a.nav-link.active,
    .red .customtab li a.nav-link.active {
      border-bottom: 2px solid #f62d51;
      color: #f62d51; }
    .red .profile-tab li a.nav-link:hover,
    .red .customtab li a.nav-link:hover {
      color: #f62d51; }
    .red .btn-themecolor,
    .red .btn-themecolor.disabled {
      background: #f62d51;
      color: #ffffff;
      border: 1px solid #f62d51; }
      .red .btn-themecolor:hover,
      .red .btn-themecolor.disabled:hover {
        background: #f62d51;
        opacity: 0.7;
        border: 1px solid #f62d51; }
      .red .btn-themecolor.active, .red .btn-themecolor:focus,
      .red .btn-themecolor.disabled.active,
      .red .btn-themecolor.disabled:focus {
        background: #028ee1; }
    .red .label-themecolor {
      background: #f62d51; }
    .red .sidebar-nav > ul > li.active > a {
      color: #f62d51;
      border-color: #f62d51; }
      .red .sidebar-nav > ul > li.active > a i {
        color: #f62d51; }
    .red .sidebar-nav ul li a.router-link-active, .red .sidebar-nav ul li a:hover {
      color: #f62d51; }
      .red .sidebar-nav ul li a.router-link-active i, .red .sidebar-nav ul li a:hover i {
        color: #f62d51; }
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*Theme Colors*/
  /*bootstrap Color*/
  /*Light colors*/
  /*Normal Color*/
  /*Extra Variable*/
  /*Preloader*/
  .preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff; }
    .preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .dark_preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #232a37; }
    .dark_preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .green {
    /*******************
/*Top bar
*******************/
    /*******************
/*General Elements
*******************/
    /*******************
/*Buttons
*******************/
    /*******************
/*sidebar navigation
*******************/ }
    .green .topbar {
      background: #00acc1; }
      .green .topbar .navbar-header {
        background: #ffffff; }
      .green .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
        display: none;
        color: rgba(255, 255, 255, 0.8); }
      .green .topbar .navbar-light .navbar-nav .nav-item > a.nav-link {
        color: #ffffff !important; }
        .green .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:hover, .green .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:focus {
          color: rgba(255, 255, 255, 0.8) !important; }
    .green a.link:hover, .green a.link:focus {
      color: #00acc1 !important; }
    .green .bg-theme {
      background-color: #00acc1 !important; }
    .green .pagination > .active > a,
    .green .pagination > .active > span,
    .green .pagination > .active > a:hover,
    .green .pagination > .active > span:hover,
    .green .pagination > .active > a:focus,
    .green .pagination > .active > span:focus {
      background-color: #00acc1;
      border-color: #00acc1; }
    .green .right-sidebar .rpanel-title {
      background: #00acc1; }
    .green .stylish-table tbody tr:hover, .green .stylish-table tbody tr.active {
      border-left: 4px solid #00acc1; }
    .green .text-themecolor {
      color: #00acc1 !important; }
    .green .profile-tab li a.nav-link.active,
    .green .customtab li a.nav-link.active {
      border-bottom: 2px solid #00acc1;
      color: #00acc1; }
    .green .profile-tab li a.nav-link:hover,
    .green .customtab li a.nav-link:hover {
      color: #00acc1; }
    .green .btn-themecolor,
    .green .btn-themecolor.disabled {
      background: #00acc1;
      color: #ffffff;
      border: 1px solid #00acc1; }
      .green .btn-themecolor:hover,
      .green .btn-themecolor.disabled:hover {
        background: #00acc1;
        opacity: 0.7;
        border: 1px solid #00acc1; }
      .green .btn-themecolor.active, .green .btn-themecolor:focus,
      .green .btn-themecolor.disabled.active,
      .green .btn-themecolor.disabled:focus {
        background: #028ee1; }
    .green .label-themecolor {
      background: #00acc1; }
    .green .sidebar-nav > ul > li.active > a {
      color: #00acc1;
      border-color: #00acc1; }
      .green .sidebar-nav > ul > li.active > a i {
        color: #00acc1; }
    .green .sidebar-nav ul li a.router-link-active, .green .sidebar-nav ul li a:hover {
      color: #00acc1; }
      .green .sidebar-nav ul li a.router-link-active i, .green .sidebar-nav ul li a:hover i {
        color: #00acc1; }
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*Theme Colors*/
  /*bootstrap Color*/
  /*Light colors*/
  /*Normal Color*/
  /*Extra Variable*/
  /*Preloader*/
  .preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff; }
    .preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .dark_preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #232a37; }
    .dark_preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .purple {
    /*******************
/*Top bar
*******************/
    /*******************
/*General Elements
*******************/
    /*******************
/*Buttons
*******************/
    /*******************
/*sidebar navigation
*******************/ }
    .purple .topbar {
      background: #7460ee; }
      .purple .topbar .navbar-header {
        background: #ffffff; }
      .purple .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
        display: none;
        color: rgba(255, 255, 255, 0.8); }
      .purple .topbar .navbar-light .navbar-nav .nav-item > a.nav-link {
        color: #ffffff !important; }
        .purple .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:hover, .purple .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:focus {
          color: rgba(255, 255, 255, 0.8) !important; }
    .purple a.link:hover, .purple a.link:focus {
      color: #7460ee !important; }
    .purple .bg-theme {
      background-color: #7460ee !important; }
    .purple .pagination > .active > a,
    .purple .pagination > .active > span,
    .purple .pagination > .active > a:hover,
    .purple .pagination > .active > span:hover,
    .purple .pagination > .active > a:focus,
    .purple .pagination > .active > span:focus {
      background-color: #7460ee;
      border-color: #7460ee; }
    .purple .right-sidebar .rpanel-title {
      background: #7460ee; }
    .purple .stylish-table tbody tr:hover, .purple .stylish-table tbody tr.active {
      border-left: 4px solid #7460ee; }
    .purple .text-themecolor {
      color: #7460ee !important; }
    .purple .profile-tab li a.nav-link.active,
    .purple .customtab li a.nav-link.active {
      border-bottom: 2px solid #7460ee;
      color: #7460ee; }
    .purple .profile-tab li a.nav-link:hover,
    .purple .customtab li a.nav-link:hover {
      color: #7460ee; }
    .purple .btn-themecolor,
    .purple .btn-themecolor.disabled {
      background: #7460ee;
      color: #ffffff;
      border: 1px solid #7460ee; }
      .purple .btn-themecolor:hover,
      .purple .btn-themecolor.disabled:hover {
        background: #7460ee;
        opacity: 0.7;
        border: 1px solid #7460ee; }
      .purple .btn-themecolor.active, .purple .btn-themecolor:focus,
      .purple .btn-themecolor.disabled.active,
      .purple .btn-themecolor.disabled:focus {
        background: #028ee1; }
    .purple .label-themecolor {
      background: #7460ee; }
    .purple .sidebar-nav > ul > li.active > a {
      color: #7460ee;
      border-color: #7460ee; }
      .purple .sidebar-nav > ul > li.active > a i {
        color: #7460ee; }
    .purple .sidebar-nav ul li a.router-link-active, .purple .sidebar-nav ul li a:hover {
      color: #7460ee; }
      .purple .sidebar-nav ul li a.router-link-active i, .purple .sidebar-nav ul li a:hover i {
        color: #7460ee; }
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*Theme Colors*/
  /*bootstrap Color*/
  /*Light colors*/
  /*Normal Color*/
  /*Extra Variable*/
  /*Preloader*/
  .preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff; }
    .preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .dark_preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #232a37; }
    .dark_preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .default {
    /*******************
/*Top bar
*******************/
    /*******************
/*General Elements
*******************/
    /*******************
/*Buttons
*******************/
    /*******************
/*sidebar navigation
*******************/ }
    .default .topbar {
      background: #455a64; }
      .default .topbar .navbar-header {
        background: #ffffff; }
      .default .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
        display: none;
        color: rgba(255, 255, 255, 0.8); }
      .default .topbar .navbar-light .navbar-nav .nav-item > a.nav-link {
        color: #ffffff !important; }
        .default .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:hover, .default .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:focus {
          color: rgba(255, 255, 255, 0.8) !important; }
    .default a.link:hover, .default a.link:focus {
      color: #009efb !important; }
    .default .bg-theme {
      background-color: #009efb !important; }
    .default .pagination > .active > a,
    .default .pagination > .active > span,
    .default .pagination > .active > a:hover,
    .default .pagination > .active > span:hover,
    .default .pagination > .active > a:focus,
    .default .pagination > .active > span:focus {
      background-color: #009efb;
      border-color: #009efb; }
    .default .right-sidebar .rpanel-title {
      background: #009efb; }
    .default .stylish-table tbody tr:hover, .default .stylish-table tbody tr.active {
      border-left: 4px solid #009efb; }
    .default .text-themecolor {
      color: #009efb !important; }
    .default .profile-tab li a.nav-link.active,
    .default .customtab li a.nav-link.active {
      border-bottom: 2px solid #009efb;
      color: #009efb; }
    .default .profile-tab li a.nav-link:hover,
    .default .customtab li a.nav-link:hover {
      color: #009efb; }
    .default .btn-themecolor,
    .default .btn-themecolor.disabled {
      background: #009efb;
      color: #ffffff;
      border: 1px solid #009efb; }
      .default .btn-themecolor:hover,
      .default .btn-themecolor.disabled:hover {
        background: #009efb;
        opacity: 0.7;
        border: 1px solid #009efb; }
      .default .btn-themecolor.active, .default .btn-themecolor:focus,
      .default .btn-themecolor.disabled.active,
      .default .btn-themecolor.disabled:focus {
        background: #028ee1; }
    .default .label-themecolor {
      background: #009efb; }
    .default .sidebar-nav > ul > li.active > a {
      color: #009efb;
      border-color: #009efb; }
      .default .sidebar-nav > ul > li.active > a i {
        color: #009efb; }
    .default .sidebar-nav ul li a.router-link-active, .default .sidebar-nav ul li a:hover {
      color: #009efb; }
      .default .sidebar-nav ul li a.router-link-active i, .default .sidebar-nav ul li a:hover i {
        color: #009efb; }
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  :root {
    --dynamic-themecolor: #00897b;
    --dynamic-themecolor-dark: #028ee1;
    --dynamic-topbar: #00897b;
    --dynamic-themecolor-alt: #00897b;
    --dynamic-topbar-alt: #f10707; }
  /*
Template Name: Admin Press Admin
Author: Themedesigner
Email: niravjoshi87@gmail.com
File: scss
*/
  /*Theme Colors*/
  /*bootstrap Color*/
  /*Light colors*/
  /*Normal Color*/
  /*Extra Variable*/
  /*Preloader*/
  .preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff; }
    .preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .dark_preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #232a37; }
    .dark_preloader .cssload-speeding-wheel {
      position: absolute;
      top: calc(50% - 3.5px);
      left: calc(50% - 3.5px); }
  .custom {
    /*******************
/*Top bar
*******************/
    /*******************
/*General Elements
*******************/
    /*******************
/*Buttons
*******************/
    /*******************
/*sidebar navigation
*******************/ }
    .custom .topbar {
      background: var(--dynamic-topbar); }
      .custom .topbar .navbar-header {
        background: var(--dynamic-topbar-alt); }
      .custom .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
        display: none;
        color: rgba(255, 255, 255, 0.8); }
      .custom .topbar .navbar-light .navbar-nav .nav-item > a.nav-link {
        color: #ffffff !important; }
        .custom .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:hover, .custom .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:focus {
          color: rgba(255, 255, 255, 0.8) !important; }
    .custom a.link:hover, .custom a.link:focus {
      color: var(--dynamic-themecolor) !important; }
    .custom .bg-theme {
      background-color: var(--dynamic-themecolor) !important; }
    .custom .pagination > .active > a,
    .custom .pagination > .active > span,
    .custom .pagination > .active > a:hover,
    .custom .pagination > .active > span:hover,
    .custom .pagination > .active > a:focus,
    .custom .pagination > .active > span:focus {
      background-color: var(--dynamic-themecolor);
      border-color: var(--dynamic-themecolor); }
    .custom .right-sidebar .rpanel-title {
      background: var(--dynamic-themecolor); }
    .custom .stylish-table tbody tr:hover, .custom .stylish-table tbody tr.active {
      border-left: 4px solid var(--dynamic-themecolor); }
    .custom .text-themecolor {
      color: var(--dynamic-themecolor) !important; }
    .custom .profile-tab li a.nav-link.active,
    .custom .customtab li a.nav-link.active {
      border-bottom: 2px solid var(--dynamic-themecolor);
      color: var(--dynamic-themecolor); }
    .custom .profile-tab li a.nav-link:hover,
    .custom .customtab li a.nav-link:hover {
      color: var(--dynamic-themecolor); }
    .custom .btn-themecolor,
    .custom .btn-themecolor.disabled {
      background: var(--dynamic-themecolor);
      color: #ffffff;
      border: 1px solid var(--dynamic-themecolor); }
      .custom .btn-themecolor:hover,
      .custom .btn-themecolor.disabled:hover {
        background: var(--dynamic-themecolor);
        opacity: 0.7;
        border: 1px solid var(--dynamic-themecolor); }
      .custom .btn-themecolor.active, .custom .btn-themecolor:focus,
      .custom .btn-themecolor.disabled.active,
      .custom .btn-themecolor.disabled:focus {
        background: var(--dynamic-themecolor-dark); }
    .custom .label-themecolor {
      background: var(--dynamic-themecolor); }
    .custom .sidebar-nav > ul > li.active > a {
      color: var(--dynamic-themecolor);
      border-color: var(--dynamic-themecolor); }
      .custom .sidebar-nav > ul > li.active > a i {
        color: var(--dynamic-themecolor); }
    .custom .sidebar-nav ul li a.router-link-active, .custom .sidebar-nav ul li a:hover {
      color: var(--dynamic-themecolor); }
      .custom .sidebar-nav ul li a.router-link-active i, .custom .sidebar-nav ul li a:hover i {
        color: var(--dynamic-themecolor); }
  /*
Template Name: Admin Press Admin
File: scss
*/
  .dark-theme {
    /*******************
/*Top bar
*******************/
    /*******************
/*General Elements
*******************/
    /*******************
/*sidebar navigation
*******************/
    /*******************
/* Light colors conversion
*******************/
    /*******************
/* General light colors font conversion
*******************/
    /*******************
/* Dark -alt conversion
*******************/
    /*******************
/* Dark  conversion
*******************/
    /*******************
/* Dark border conversion
*******************/
    /*******************
/* Dark -odd border conversion
*******************/ }
    .dark-theme .topbar {
      /*.top-navbar .navbar-header .navbar-brand .dark-logo {
            display: none;
        }*/ }
      .dark-theme .topbar .top-navbar .navbar-header .navbar-brand .dark-logo {
        display: inline-block;
        color: rgba(255, 255, 255, 0.8); }
      .dark-theme .topbar .navbar-light .navbar-nav .nav-item > a.nav-link {
        color: rgba(255, 255, 255, 0.8) !important; }
        .dark-theme .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:hover, .dark-theme .topbar .navbar-light .navbar-nav .nav-item > a.nav-link:focus {
          color: #ffffff !important; }
      .dark-theme .topbar .navbar-header {
        background: #272c33; }
    .dark-theme a.link:hover, .dark-theme a.link:focus {
      color: #009efb !important; }
    .dark-theme .right-sidebar .rpanel-title {
      background: #009efb; }
    .dark-theme .text-themecolor {
      color: #009efb !important; }
    .dark-theme .left-sidebar,
    .dark-theme .card-no-border .left-sidebar,
    .dark-theme .card-no-border .sidebar-nav {
      background: #272c33; }
    .dark-theme .user-profile .profile-text a {
      color: #798699 !important; }
    .dark-theme .card-no-border .sidebar-footer {
      background: #181c22; }
    .dark-theme .label-themecolor {
      background: #009efb; }
    .dark-theme .sidebar-nav > ul > li.active > a {
      color: #009efb;
      border-color: #009efb; }
      .dark-theme .sidebar-nav > ul > li.active > a i {
        color: #009efb; }
    .dark-theme .sidebar-nav ul li.nav-small-cap {
      color: #798699; } }
@media screen and (min-width: 768px) {
    .dark-theme.mini-sidebar .sidebar-nav #sidebarnav > li > ul {
      background: #181c22; }
    .dark-theme.mini-sidebar .sidebar-nav #sidebarnav > li:hover > a {
      background: #181c22; } }
@media screen {
    .dark-theme h1, .dark-theme h2, .dark-theme h3, .dark-theme h4, .dark-theme h5, .dark-theme h6 {
      color: #bbbbbb; }
    .dark-theme .todo-list li .checkbox label, .dark-theme .page-link, .dark-theme .list-group-item-action, .dark-theme .custom-select, .dark-theme .custom-file-control, .dark-theme .form-control:focus, .dark-theme .btn-light, .dark-theme .dropdown-menu, .dark-theme .navbar-light .navbar-nav .nav-link, .dark-theme .ngx-datatable.material .datatable-body .datatable-body-row .datatable-body-cell {
      color: #7d8b92; }
    .dark-theme .page-wrapper, .dark-theme .form-control, .dark-theme .progress, .dark-theme .page-item.disabled .page-link, .dark-theme .page-link, .dark-theme .btn-secondary, .dark-theme .btn-outline-secondary, .dark-theme .btn-secondary.disabled {
      background: #3d4554; }
    .dark-theme .custom-select, .dark-theme .custom-file-control, .dark-theme .mailbox .message-center a:hover, .dark-theme .mega-dropdown .nav-accordion .card-header, .dark-theme .table-striped tbody tr:nth-of-type(odd), .dark-theme .ngx-datatable.material {
      background-color: #3d4554; }
    .dark-theme .card, .dark-theme .page-titles, .dark-theme .list-group-item, .dark-theme .bg-white, .dark-theme .nav-tabs .nav-link.active, .dark-theme .btn-outline-primary {
      background: #272c33; }
    .dark-theme .form-control, .dark-theme .table td, .dark-theme .table th, .dark-theme .page-item.disabled .page-link, .dark-theme .page-link, .dark-theme .btn-secondary, .dark-theme .btn-secondary.disabled, .dark-theme .btn-outline-secondary,
    .dark-theme .cal-month-view .cal-day-cell:not(:last-child), .dark-theme .cal-month-view .cal-days .cal-cell-row, .dark-theme .cal-month-view .cal-days, .dark-theme .nav-tabs .nav-link.active, .dark-theme .nav-tabs, .dark-theme .dragndrop > div,
    .dark-theme .custom-select, .dark-theme .custom-file-control, .dark-theme .input-group-addon, .dark-theme .table-bordered {
      border-color: rgba(120, 130, 140, 0.13); }
    .dark-theme .card-default .card-header, .dark-theme .footer, .dark-theme .bg-light, .dark-theme .table-hover tbody tr:hover, .dark-theme .right-sidebar, .dark-theme .cal-month-view .cal-cell-row:hover,
    .dark-theme .cal-month-view .cal-cell-row .cal-cell:hover, .dark-theme .cal-month-view .cal-cell.cal-has-events.cal-open, .dark-theme .cal-month-view .cal-open-day-events,
    .dark-theme .cal-day-view .cal-hour:nth-child(odd), .dark-theme .taskboard .taskboard-task, .dark-theme .input-group-addon, .dark-theme .dropdown-menu {
      background: #1f2227 !important; }
    .dark-theme .container-fluid {
      background-color: #181c22;
      color: #bbbbbb; }
    .dark-theme .page-titles {
      background-color: #181c22;
      color: #bbbbbb;
      margin: 0px; }
    .dark-theme .page-wrapper {
      /*height: 825px;*/
      background-color: #181c22;
      color: #bbbbbb; }
    .dark-theme #main-wrapper {
      background-color: #181c22;
      color: #bbbbbb; }
    .dark-theme body {
      background-color: #181c22;
      color: #bbbbbb; }
    .dark-theme .dataTables_filter input {
      margin-left: 0.5em;
      background-color: #181c22;
      color: #bbbbbb; }
    .dark-theme table.dataTable tbody tr {
      background-color: #3d4554; }
    .dark-theme table.dataTable.hover tbody tr:hover, .dark-theme table.dataTable.display tbody tr:hover {
      background-color: #028ee1; }
    .dark-theme .dataTables_wrapper .dataTables_paginate .paginate_button {
      color: #7d8b92 !important; }
  /* Padding margin for rtl */
  html body .rtl-theme .m-r-5 {
    margin-left: 5px; }
  html body .rtl-theme .m-l-5 {
    margin-right: 5px; }
  html body .rtl-theme .p-r-5 {
    padding-left: 5px; }
  html body .rtl-theme .p-l-5 {
    padding-right: 5px; }
  html body .rtl-theme .m-r-10 {
    margin-left: 10px; }
  html body .rtl-theme .m-l-10 {
    margin-right: 10px; }
  html body .rtl-theme .p-r-10 {
    padding-left: 10px; }
  html body .rtl-theme .p-l-10 {
    padding-right: 10px; }
  html body .rtl-theme .m-r-15 {
    margin-left: 15px; }
  html body .rtl-theme .m-l-15 {
    margin-right: 15px; }
  html body .rtl-theme .p-r-15 {
    padding-left: 15px; }
  html body .rtl-theme .p-l-15 {
    padding-right: 15px; }
  html body .rtl-theme .m-r-20 {
    margin-left: 20px; }
  html body .rtl-theme .m-l-20 {
    margin-right: 20px; }
  html body .rtl-theme .p-r-20 {
    padding-left: 20px; }
  html body .rtl-theme .p-l-20 {
    padding-right: 20px; }
  html body .rtl-theme .m-r-25 {
    margin-left: 25px; }
  html body .rtl-theme .m-l-25 {
    margin-right: 25px; }
  html body .rtl-theme .p-r-25 {
    padding-left: 25px; }
  html body .rtl-theme .p-l-25 {
    padding-right: 25px; }
  html body .rtl-theme .m-r-30 {
    margin-left: 30px; }
  html body .rtl-theme .m-l-30 {
    margin-right: 30px; }
  html body .rtl-theme .p-r-30 {
    padding-left: 30px; }
  html body .rtl-theme .p-l-30 {
    padding-right: 30px; }
  html body .rtl-theme .m-r-40 {
    margin-left: 40px; }
  html body .rtl-theme .m-l-40 {
    margin-right: 40px; }
  html body .rtl-theme .p-r-40 {
    padding-left: 40px; }
  html body .rtl-theme .p-l-40 {
    padding-right: 40px; }
  /* Discarding margin padding of ltr */
  html body .rtl-theme .m-r-5 {
    margin-right: 0; }
  html body .rtl-theme .m-l-5 {
    margin-left: 0; }
  html body .rtl-theme .p-r-5 {
    padding-right: 0; }
  html body .rtl-theme .p-l-5 {
    padding-left: 0; }
  html body .rtl-theme .m-r-10 {
    margin-right: 0; }
  html body .rtl-theme .m-l-10 {
    margin-left: 0; }
  html body .rtl-theme .p-r-10 {
    padding-right: 0; }
  html body .rtl-theme .p-l-10 {
    padding-left: 0; }
  html body .rtl-theme .m-r-15 {
    margin-right: 0; }
  html body .rtl-theme .m-l-15 {
    margin-left: 0; }
  html body .rtl-theme .p-r-15 {
    padding-right: 0; }
  html body .rtl-theme .p-l-15 {
    padding-left: 0; }
  html body .rtl-theme .m-r-20 {
    margin-right: 0; }
  html body .rtl-theme .m-l-20 {
    margin-left: 0; }
  html body .rtl-theme .p-r-20 {
    padding-right: 0; }
  html body .rtl-theme .p-l-20 {
    padding-left: 0; }
  html body .rtl-theme .m-r-25 {
    margin-right: 0; }
  html body .rtl-theme .m-l-25 {
    margin-left: 0; }
  html body .rtl-theme .p-r-25 {
    padding-right: 0; }
  html body .rtl-theme .p-l-25 {
    padding-left: 0; }
  html body .rtl-theme .m-r-30 {
    margin-right: 0; }
  html body .rtl-theme .m-l-30 {
    margin-left: 0; }
  html body .rtl-theme .p-r-30 {
    padding-right: 0; }
  html body .rtl-theme .p-l-30 {
    padding-left: 0; }
  html body .rtl-theme .m-r-40 {
    margin-right: 0; }
  html body .rtl-theme .m-l-40 {
    margin-left: 0; }
  html body .rtl-theme .p-r-40 {
    padding-right: 0; }
  html body .rtl-theme .p-l-40 {
    padding-left: 0; }
  /* Zero margin padding for rtl */
  html body .rtl-theme .m-r-0 {
    margin-left: 0; }
  html body .rtl-theme .m-l-0 {
    margin-right: 0; }
  html body .rtl-theme .p-r-0 {
    padding-left: 0; }
  html body .rtl-theme .p-l-0 {
    padding-right: 0; }
  .rtl-theme {
    text-align: right;
    direction: rtl;
    /* Mini-Sidebar in RTL */
    /* plugins */
    /*.sl-icon i,
    [class*=" ti-"],
    [class^=ti-] {
        float: right;
        margin-left: 10px;
        line-height: 20px;
    }*/
    /* Vertical responsive layout */ }
    .rtl-theme .page-wrapper {
      margin-left: 0px;
      margin-right: 240px; }
    .rtl-theme .topbar .top-navbar {
      padding: 0px 0px 0 15px; }
    .rtl-theme .footer {
      left: 0px;
      right: 240px; }
    .rtl-theme .shw-rside {
      left: 0px;
      right: unset; }
    .rtl-theme .btn-circle.right-side-toggle {
      left: 20px;
      right: 0; }
    .rtl-theme .page-titles .breadcrumb {
      float: left; }
    .rtl-theme .right-sidebar .rpanel-title span {
      float: left; }
    .rtl-theme .scroll-sidebar.ps .ps__rail-y {
      left: auto;
      right: 2px; }
    .rtl-theme .sidebar-nav > ul > li > a .label {
      float: left;
      margin-left: 12px; }
    .rtl-theme .topbar .top-navbar .navbar-header {
      padding-left: 0;
      padding-right: 10px; }
    .rtl-theme .topbar ul.dropdown-user li .dw-user-box .u-text {
      padding-left: 0px;
      padding-right: 10px; }
    .rtl-theme .topbar .profile-pic {
      border-right: 1px solid rgba(120, 130, 140, 0.13);
      border-left: 0; }
    .rtl-theme.mini-sidebar .page-wrapper {
      margin-right: 70px;
      margin-left: 0; }
    .rtl-theme .custom-select {
      padding: .375rem .75rem .375rem 1.75rem; }
    .rtl-theme .custom-control {
      padding-left: 0;
      padding-right: 1.5rem; }
    .rtl-theme .custom-control-label::after,
    .rtl-theme .custom-control-label::before {
      left: auto;
      right: 0px; }
    .rtl-theme .list-group {
      padding: 0px; }
    .rtl-theme .float-left {
      float: right !important; }
    .rtl-theme .float-right {
      float: left !important; }
    .rtl-theme .text-left {
      text-align: right !important; }
    .rtl-theme .text-right {
      text-align: left !important; }
    .rtl-theme .close {
      float: left; }
    .rtl-theme .modal-header .close {
      float: left;
      margin: -1rem auto -1rem -1rem; }
    .rtl-theme .modal-footer > :not(:last-child) {
      margin-left: 0.25rem;
      margin-right: 0; }
    .rtl-theme .ml-auto {
      margin-right: auto !important;
      margin-left: 0px !important; }
    .rtl-theme .mr-auto {
      margin-left: auto !important;
      margin-right: 0px !important; }
    .rtl-theme .border-right {
      border-right: none !important;
      border-left: 1px solid #dee2e6 !important; }
    .rtl-theme .border-left {
      border-left: none !important;
      border-right: 1px solid #dee2e6 !important; }
    .rtl-theme .alert-dismissible {
      padding-left: 3.8125rem;
      padding-right: 1.25rem; }
      .rtl-theme .alert-dismissible .close {
        left: 0;
        right: auto; }
    .rtl-theme .custom-file-label {
      left: auto;
      right: 0;
      width: 100%; }
      .rtl-theme .custom-file-label::after {
        right: auto;
        left: 0; }
    .rtl-theme .dropdown-menu {
      text-align: right;
      right: 0 !important; }
      .rtl-theme .dropdown-menu.dropdown-menu-right {
        right: auto !important;
        left: 0 !important; }
    .rtl-theme .topbar .navbar-collapse {
      padding: 0 0 0 10px; }
    .rtl-theme .navbar-nav,
    .rtl-theme .nav,
    .rtl-theme .list-unstyled,
    .rtl-theme .pagination {
      padding-right: 0; }
    .rtl-theme .topbar .top-navbar .navbar-header .navbar-brand .logo-icon {
      margin-right: 0; }
    .rtl-theme .topbar .dropdown-menu.dropdown-menu-right .with-arrow {
      left: 0;
      right: auto; }
    .rtl-theme .topbar .dropdown-menu.dropdown-menu-right .with-arrow > span {
      left: 20px;
      right: auto; }
    .rtl-theme .search-box .app-search .srh-btn {
      right: auto;
      left: 20px; }
    .rtl-theme .mailbox .message-center .message-item .mail-contnet {
      padding-right: 10px;
      padding-left: 0; }
    .rtl-theme .sidebar-nav .has-arrow::after {
      margin-left: 0;
      margin-right: 10px;
      right: auto;
      left: 15px; }
    .rtl-theme .profiletimeline {
      padding-right: 40px;
      padding-left: 0;
      margin: 40px 30px 0 10px;
      border-right: 1px solid #dee2e6;
      border-left: none; }
      .rtl-theme .profiletimeline .sl-left {
        float: right;
        margin-right: -60px;
        margin-left: 15px; }
    .rtl-theme .feed-widget .feed-body .feed-item > .feed-icon {
      margin-right: 0;
      margin-left: 10px; }
    .rtl-theme .chat-list .chat-item .chat-content {
      padding-right: 15px;
      padding-left: 0; }
    .rtl-theme .chat-list .chat-item .chat-time {
      margin: 5px 65px 15px 0; }
    .rtl-theme .chat-list .chat-item.odd .chat-content,
    .rtl-theme .chat-list .chat-item.odd .chat-time {
      text-align: left; }
    .rtl-theme div.dataTables_wrapper div.dataTables_filter {
      text-align: left; }
    .rtl-theme table.table-bordered.dataTable th,
    .rtl-theme table.table-bordered.dataTable td {
      border-left-width: 1px; }
    .rtl-theme div.dataTables_wrapper div.dataTables_filter input {
      margin-right: 0.5rem;
      margin-left: 0; }
    .rtl-theme div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child {
      padding-left: 1px; }
    .rtl-theme .lobilists .lobilist-actions {
      right: auto;
      left: 8px; }
    .rtl-theme .lobilists .lobilist-item .todo-actions {
      right: auto;
      left: 4px; }
    .rtl-theme .lobilists .lobilist-check {
      left: auto;
      right: 12px; }
    .rtl-theme .lobilists .lobilist-item,
    .rtl-theme .lobilists .lobilist-item-placeholder {
      padding-left: 0;
      padding-right: 35px; }
    .rtl-theme .lobilists .lobilist-item .drag-handler {
      left: auto;
      right: 0; }
    .rtl-theme .lobilists .lobilist-wrapper,
    .rtl-theme .lobilists .lobilist-placeholder {
      margin-left: 16px;
      margin-right: 0; }
    .rtl-theme .datepicker {
      direction: rtl; }
    .rtl-theme .css-bar > i {
      margin-left: 0;
      margin-right: 5px; }
    .rtl-theme#main-wrapper {
      /*sidebar type*/ }
      .rtl-theme#main-wrapper[data-sidebartype="full"] .page-wrapper {
        margin-right: 240px;
        margin-left: 0; }
    .rtl-theme .dz-hidden-input {
      display: none; } }
@media screen and (max-width: 766px) {
    .rtl-theme#main-wrapper .page-wrapper {
      margin-right: 0; }
    .rtl-theme#main-wrapper.mini-sidebar .page-wrapper {
      margin-right: 0; }
    .rtl-theme#main-wrapper .footer {
      right: 0; }
    .rtl-theme#main-wrapper .page-titles .breadcrumb {
      float: right; } }
@media screen and (min-width: 768px) {
    .rtl-theme.mini-sidebar .footer {
      left: 0px;
      right: 70px; }
    .rtl-theme.mini-sidebar .sidebar-nav #sidebarnav > li > ul {
      right: 70px;
      left: 0; } }
@media print {
  .modal-content {
    display: none; } }

/*
 * Table styles
 */
table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
  /*
   * Header and footer styles
   */
  /*
   * Body styles
   */
}
table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: bold;
}
table.dataTable thead th,
table.dataTable thead td {
  padding: 10px 18px;
  border-bottom: 1px solid #111111;
}
table.dataTable thead th:active,
table.dataTable thead td:active {
  outline: none;
}
table.dataTable tfoot th,
table.dataTable tfoot td {
  padding: 10px 18px 6px 18px;
  border-top: 1px solid #111111;
}
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  *cursor: hand;
  background-repeat: no-repeat;
  background-position: center right;
}
table.dataTable thead .sorting {
  background-image: url('sort_both.png');
}
table.dataTable thead .sorting_asc {
  background-image: url('sort_asc.png');
}
table.dataTable thead .sorting_desc {
  background-image: url('sort_desc.png');
}
table.dataTable thead .sorting_asc_disabled {
  background-image: url('sort_asc_disabled.png');
}
table.dataTable thead .sorting_desc_disabled {
  background-image: url('sort_desc_disabled.png');
}
table.dataTable tbody tr {
  background-color: white;
}
table.dataTable tbody tr.selected {
  background-color: #b0bed9;
}
table.dataTable tbody th,
table.dataTable tbody td {
  padding: 8px 10px;
}
table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
  border-top: 1px solid #dddddd;
}
table.dataTable.row-border tbody tr:first-child th,
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
table.dataTable.display tbody tr:first-child td {
  border-top: none;
}
table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
  border-top: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}
table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
  border-left: 1px solid #dddddd;
}
table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
  border-top: none;
}
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
  background-color: #f9f9f9;
}
table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
  background-color: #abb9d3;
}
table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
  background-color: whitesmoke;
}
table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
  background-color: #a9b7d1;
}
table.dataTable.order-column tbody tr > .sorting_1,
table.dataTable.order-column tbody tr > .sorting_2,
table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
table.dataTable.display tbody tr > .sorting_2,
table.dataTable.display tbody tr > .sorting_3 {
  background-color: #f9f9f9;
}
table.dataTable.order-column tbody tr.selected > .sorting_1,
table.dataTable.order-column tbody tr.selected > .sorting_2,
table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
table.dataTable.display tbody tr.selected > .sorting_2,
table.dataTable.display tbody tr.selected > .sorting_3 {
  background-color: #acbad4;
}
table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
  background-color: #f1f1f1;
}
table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
  background-color: #f3f3f3;
}
table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
  background-color: whitesmoke;
}
table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
  background-color: #a6b3cd;
}
table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
  background-color: #a7b5ce;
}
table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
  background-color: #a9b6d0;
}
table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
  background-color: #f9f9f9;
}
table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
  background-color: #fbfbfb;
}
table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
  background-color: #fdfdfd;
}
table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
  background-color: #acbad4;
}
table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
  background-color: #adbbd6;
}
table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
  background-color: #afbdd8;
}
table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
  background-color: #eaeaea;
}
table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
  background-color: #ebebeb;
}
table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
  background-color: #eeeeee;
}
table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
  background-color: #a1aec7;
}
table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
  background-color: #a2afc8;
}
table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
  background-color: #a4b2cb;
}
table.dataTable.no-footer {
  border-bottom: 1px solid #111111;
}
table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap;
}
table.dataTable.compact thead th,
table.dataTable.compact thead td {
  padding: 4px 17px 4px 4px;
}
table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td {
  padding: 4px;
}
table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
  padding: 4px;
}
table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left;
}
table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
  text-align: center;
}
table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right;
}
table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify;
}
table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap;
}
table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left;
}
table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center;
}
table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right;
}
table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}
table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}
table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left;
}
table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center;
}
table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right;
}
table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}
table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}
table.dataTable,
table.dataTable th,
table.dataTable td {
  box-sizing: content-box;
}
/*
 * Control feature layout
 */
.dataTables_wrapper {
  position: relative;
  clear: both;
  *zoom: 1;
  zoom: 1;
}
.dataTables_wrapper .dataTables_length {
  float: left;
}
.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right;
}
.dataTables_wrapper .dataTables_filter input {
  margin-left: 0.5em;
}
.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: 0.755em;
}
.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  *cursor: hand;
  color: #333333 !important;
  border: 1px solid transparent;
  border-radius: 2px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #333333 !important;
  border: 1px solid #979797;
  background-color: white;
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* FF3.6+ */
  /* IE10+ */
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, white 0%, gainsboro 100%);
  /* W3C */
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #111111;
  background-color: #585858;
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* FF3.6+ */
  /* IE10+ */
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #585858 0%, #111111 100%);
  /* W3C */
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: #2b2b2b;
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* FF3.6+ */
  /* IE10+ */
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
  /* W3C */
  box-shadow: inset 0 0 3px #111;
}
.dataTables_wrapper .dataTables_paginate .ellipsis {
  padding: 0 1em;
}
.dataTables_wrapper .dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 40px;
  margin-left: -50%;
  margin-top: -25px;
  padding-top: 20px;
  text-align: center;
  font-size: 1.2em;
  background-color: white;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: #333333;
}
.dataTables_wrapper .dataTables_scroll {
  clear: both;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  *margin-top: -1px;
  -webkit-overflow-scrolling: touch;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
  vertical-align: middle;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid #111111;
}
.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
.dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
  border-bottom: none;
}
.dataTables_wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}
@media screen and (max-width: 767px) {
  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em;
  }
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
  cursor: default !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before {
  display: none !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child,
table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
  top: 9px;
  left: 4px;
  height: 14px;
  width: 14px;
  display: block;
  position: absolute;
  color: white;
  border: 2px solid white;
  border-radius: 14px;
  box-shadow: 0 0 3px #444;
  box-sizing: content-box;
  text-align: center;
  text-indent: 0 !important;
  font-family: 'Courier New', Courier, monospace;
  line-height: 14px;
  content: '+';
  background-color: #31b131;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
  content: '-';
  background-color: #d33333;
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {
  padding-left: 27px;
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {
  top: 5px;
  left: 4px;
  height: 14px;
  width: 14px;
  border-radius: 14px;
  line-height: 14px;
  text-indent: 3px;
}
table.dataTable.dtr-column > tbody > tr > td.control,
table.dataTable.dtr-column > tbody > tr > th.control {
  position: relative;
  cursor: pointer;
}
table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
  top: 50%;
  left: 50%;
  height: 16px;
  width: 16px;
  margin-top: -10px;
  margin-left: -10px;
  display: block;
  position: absolute;
  color: white;
  border: 2px solid white;
  border-radius: 14px;
  box-shadow: 0 0 3px #444;
  box-sizing: content-box;
  text-align: center;
  text-indent: 0 !important;
  font-family: 'Courier New', Courier, monospace;
  line-height: 14px;
  content: '+';
  background-color: #31b131;
}
table.dataTable.dtr-column > tbody > tr.parent td.control:before,
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
  content: '-';
  background-color: #d33333;
}
table.dataTable > tbody > tr.child {
  padding: 0.5em 1em;
}
table.dataTable > tbody > tr.child:hover {
  background: transparent !important;
}
table.dataTable > tbody > tr.child ul.dtr-details {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details > li {
  border-bottom: 1px solid #efefef;
  padding: 0.5em 0;
}
table.dataTable > tbody > tr.child ul.dtr-details > li:first-child {
  padding-top: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details > li:last-child {
  border-bottom: none;
}
table.dataTable > tbody > tr.child span.dtr-title {
  display: inline-block;
  min-width: 75px;
  font-weight: bold;
}
div.dtr-modal {
  position: fixed;
  box-sizing: border-box;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  padding: 10em 1em;
}
div.dtr-modal div.dtr-modal-display {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  overflow: auto;
  margin: auto;
  z-index: 102;
  overflow: auto;
  background-color: #f5f5f7;
  border: 1px solid black;
  border-radius: 0.5em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}
div.dtr-modal div.dtr-modal-content {
  position: relative;
  padding: 1em;
}
div.dtr-modal div.dtr-modal-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border: 1px solid #eaeaea;
  background-color: #f9f9f9;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  z-index: 12;
}
div.dtr-modal div.dtr-modal-close:hover {
  background-color: #eaeaea;
}
div.dtr-modal div.dtr-modal-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 767px) {
  div.dtr-modal div.dtr-modal-display {
    width: 95%;
  }
}

table.dataTable tbody > tr.selected,
table.dataTable tbody > tr > .selected {
  background-color: #b0bed9;
}
table.dataTable.stripe tbody > tr.odd.selected,
table.dataTable.stripe tbody > tr.odd > .selected, table.dataTable.display tbody > tr.odd.selected,
table.dataTable.display tbody > tr.odd > .selected {
  background-color: #abb9d3;
}
table.dataTable.hover tbody > tr.selected:hover,
table.dataTable.hover tbody > tr > .selected:hover, table.dataTable.display tbody > tr.selected:hover,
table.dataTable.display tbody > tr > .selected:hover {
  background-color: #a9b7d1;
}
table.dataTable.order-column tbody > tr.selected > .sorting_1,
table.dataTable.order-column tbody > tr.selected > .sorting_2,
table.dataTable.order-column tbody > tr.selected > .sorting_3,
table.dataTable.order-column tbody > tr > .selected, table.dataTable.display tbody > tr.selected > .sorting_1,
table.dataTable.display tbody > tr.selected > .sorting_2,
table.dataTable.display tbody > tr.selected > .sorting_3,
table.dataTable.display tbody > tr > .selected {
  background-color: #acbad4;
}
table.dataTable.display tbody > tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_1 {
  background-color: #a6b3cd;
}
table.dataTable.display tbody > tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_2 {
  background-color: #a7b5ce;
}
table.dataTable.display tbody > tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_3 {
  background-color: #a9b6d0;
}
table.dataTable.display tbody > tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_1 {
  background-color: #acbad4;
}
table.dataTable.display tbody > tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_2 {
  background-color: #adbbd6;
}
table.dataTable.display tbody > tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_3 {
  background-color: #afbdd8;
}
table.dataTable.display tbody > tr.odd > .selected, table.dataTable.order-column.stripe tbody > tr.odd > .selected {
  background-color: #a6b3cd;
}
table.dataTable.display tbody > tr.even > .selected, table.dataTable.order-column.stripe tbody > tr.even > .selected {
  background-color: #acbad4;
}
table.dataTable.display tbody > tr.selected:hover > .sorting_1, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_1 {
  background-color: #a1aec7;
}
table.dataTable.display tbody > tr.selected:hover > .sorting_2, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_2 {
  background-color: #a2afc8;
}
table.dataTable.display tbody > tr.selected:hover > .sorting_3, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_3 {
  background-color: #a4b2cb;
}
table.dataTable.display tbody > tr:hover > .selected,
table.dataTable.display tbody > tr > .selected:hover, table.dataTable.order-column.hover tbody > tr:hover > .selected,
table.dataTable.order-column.hover tbody > tr > .selected:hover {
  background-color: #a1aec7;
}
table.dataTable tbody td.select-checkbox,
table.dataTable tbody th.select-checkbox {
  position: relative;
}
table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after,
table.dataTable tbody th.select-checkbox:before,
table.dataTable tbody th.select-checkbox:after {
  display: block;
  position: absolute;
  top: 1.2em;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
}
table.dataTable tbody td.select-checkbox:before,
table.dataTable tbody th.select-checkbox:before {
  content: ' ';
  margin-top: -6px;
  margin-left: -6px;
  border: 1px solid black;
  border-radius: 3px;
}
table.dataTable tr.selected td.select-checkbox:after,
table.dataTable tr.selected th.select-checkbox:after {
  content: '\2714';
  margin-top: -11px;
  margin-left: -4px;
  text-align: center;
  text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
}
div.dataTables_wrapper span.select-info,
div.dataTables_wrapper span.select-item {
  margin-left: 0.5em;
}
@media screen and (max-width: 640px) {
  div.dataTables_wrapper span.select-info,
  div.dataTables_wrapper span.select-item {
    margin-left: 0;
    display: block;
  }
}

.switch.switch-small {
  min-width: 33px; }

.switch.switch-medium {
  min-width: 50px; }

.switch.switch-large {
  min-width: 60px; }

.switch.switch-small > .switch-pane > span {
  font-size: 9px; }

.switch.switch-medium > .switch-pane > span {
  font-size: 16px; }

.switch.switch-large > .switch-pane > span {
  font-size: 16px; }

.switch {
  border: 1px solid #dfdfdf;
  position: relative;
  display: inline-block;
  box-sizing: content-box;
  padding: 0;
  margin: 0;
  cursor: pointer;
  box-shadow: #dfdfdf 0 0 0 0 inset;
  transition: 0.3s ease-out all;
  -webkit-transition: 0.3s ease-out all;
  white-space: nowrap; }

.switch small {
    border-radius: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    right: calc(100% - 30px);
    transition: 0.3s ease-out all;
    -webkit-transition: 0.3s ease-out all;
    background: #fff; }

.switch.switch-small {
    height: 20px;
    border-radius: 20px; }

.switch.switch-small small {
      width: 20px;
      height: 20px;
      right: calc(100% - 20px); }

.switch.switch-small > .switch-pane > span {
      line-height: 20px; }

.switch.switch-small > .switch-pane .switch-label-checked {
      padding-right: 25px;
      padding-left: 10px; }

.switch.switch-small > .switch-pane .switch-label-unchecked {
      padding-left: 25px;
      padding-right: 10px; }

.switch.switch-medium {
    height: 30px;
    border-radius: 30px; }

.switch.switch-medium small {
      width: 30px;
      height: 30px;
      right: calc(100% - 30px); }

.switch.switch-medium > .switch-pane > span {
      line-height: 30px; }

.switch.switch-medium > .switch-pane .switch-label-checked {
      padding-right: 35px;
      padding-left: 15px; }

.switch.switch-medium > .switch-pane .switch-label-unchecked {
      padding-left: 35px;
      padding-right: 15px; }

.switch.switch-large {
    height: 40px;
    border-radius: 40px; }

.switch.switch-large small {
      width: 40px;
      height: 40px;
      right: calc(100% - 40px); }

.switch.switch-large > .switch-pane > span {
      line-height: 40px; }

.switch.switch-large > .switch-pane .switch-label-checked {
      padding-right: 45px;
      padding-left: 20px; }

.switch.switch-large > .switch-pane .switch-label-unchecked {
      padding-left: 45px;
      padding-right: 20px; }

.switch.checked {
    background: #64bd63; }

.switch.checked.checked small {
      right: 0;
      left: auto; }

.switch.checked .switch-pane {
      top: 0; }

.switch.checked .switch-pane .switch-label-checked {
        opacity: 1; }

.switch.checked .switch-pane .switch-label-unchecked {
        opacity: 0; }

.switch.disabled {
    opacity: 0.5;
    cursor: not-allowed; }

.switch .switch-pane {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    justify-content: flex-start;
    align-items: center;
    top: -100%;
    position: relative;
    pointer-events: none; }

.switch .switch-pane > span {
      display: block;
      min-height: 100%; }

.switch .switch-pane .switch-label-checked {
      opacity: 0; }

.switch .switch-pane .switch-label-unchecked {
      opacity: 1; }

/* based on angular-toastr css https://github.com/Foxandxss/angular-toastr/blob/cb508fe6801d6b288d3afc525bb40fee1b101650/dist/angular-toastr.css */

/* position */

.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-left {
  top: 12px;
  left: 12px;
}

.toast-top-right {
  top: 12px;
  right: 12px;
}

.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

/* toast styles */

.toast-title {
  font-weight: bold;
}

.toast-message {
  word-wrap: break-word;
}

.toast-message a,
.toast-message label {
  color: #FFFFFF;
}

.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
  /* opacity: 0.8; */
}

.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/

button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}

.toast-container * {
  box-sizing: border-box;
}

.toast-container .toast {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}

.toast-container .toast:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/info-circle.svg */

.toast-info {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z'/%3E%3C/svg%3E");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/times-circle.svg */

.toast-error {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z'/%3E%3C/svg%3E");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/check.svg */

.toast-success {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/exclamation-triangle.svg */

.toast-warning {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512' width='576' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z'/%3E%3C/svg%3E");
}

.toast-container.toast-top-center .toast,
.toast-container.toast-bottom-center .toast {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.toast-container.toast-top-full-width .toast,
.toast-container.toast-bottom-full-width .toast {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.toast {
  background-color: #030303;
  pointer-events: auto;
}

.toast-success {
  background-color: #51A351;
}

.toast-error {
  background-color: #BD362F;
}

.toast-info {
  background-color: #2F96B4;
}

.toast-warning {
  background-color: #F89406;
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}

/* Responsive Design */

@media all and (max-width: 240px) {
  .toast-container .toast.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .toast.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .toast.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

@charset "UTF-8";/*!
 * =============================================================
 * dropify v0.2.1 - Override your input files with style.
 * https://github.com/JeremyFagis/dropify
 *
 * (c) 2016 - Jeremy FAGIS <jeremy@fagis.fr> (http://fagis.fr)
 * =============================================================
 */@font-face{font-family:dropify;src:url('dropify.eot');src:url('dropify.eot#iefix') format("embedded-opentype"),url('dropify.woff') format("woff"),url('dropify.ttf') format("truetype"),url('dropify.svg#dropify') format("svg");font-weight:400;font-style:normal}.dropify-font:before,.dropify-wrapper .dropify-message span.file-icon:before,.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-filename span.file-icon:before,[class*=" dropify-font-"]:before,[class^=dropify-font-]:before{font-family:dropify;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-left:.2em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em}.dropify-wrapper,.dropify-wrapper .dropify-clear{font-family:Roboto,"Helvetica Neue",Helvetica,Arial}.dropify-wrapper.has-error .dropify-message .dropify-error,.dropify-wrapper.has-preview .dropify-clear{display:block}.dropify-font-upload:before,.dropify-wrapper .dropify-message span.file-icon:before{content:'\e800'}.dropify-font-file:before{content:'\e801'}.dropify-wrapper{display:block;position:relative;cursor:pointer;overflow:hidden;width:100%;max-width:100%;height:200px;padding:5px 10px;font-size:14px;line-height:22px;color:#777;background-color:#FFF;background-image:none;text-align:center;border:2px solid #E5E5E5;transition:border-color .15s linear}.dropify-wrapper:hover{background-size:30px 30px;background-image:linear-gradient(-45deg,#F6F6F6 25%,transparent 25%,transparent 50%,#F6F6F6 50%,#F6F6F6 75%,transparent 75%,transparent);animation:stripes 2s linear infinite}.dropify-wrapper.has-error{border-color:#F34141}.dropify-wrapper.has-error:hover .dropify-errors-container{visibility:visible;opacity:1;transition-delay:0s}.dropify-wrapper.disabled input{cursor:not-allowed}.dropify-wrapper.disabled:hover{background-image:none;animation:none}.dropify-wrapper.disabled .dropify-message{opacity:.5;text-decoration:line-through}.dropify-wrapper.disabled .dropify-infos-message{display:none}.dropify-wrapper input{position:absolute;top:0;right:0;bottom:0;left:0;height:100%;width:100%;opacity:0;cursor:pointer;z-index:5}.dropify-wrapper .dropify-message{position:relative;top:50%;transform:translateY(-50%)}.dropify-wrapper .dropify-message span.file-icon{font-size:50px;color:#CCC}.dropify-wrapper .dropify-message p{margin:5px 0 0}.dropify-wrapper .dropify-message p.dropify-error{color:#F34141;font-weight:700;display:none}.dropify-wrapper .dropify-clear{display:none;position:absolute;opacity:0;z-index:7;top:10px;right:10px;background:0 0;border:2px solid #FFF;text-transform:uppercase;font-size:11px;padding:4px 8px;font-weight:700;color:#FFF;transition:all .15s linear}.dropify-wrapper .dropify-clear:hover{background:rgba(255,255,255,.2)}.dropify-wrapper .dropify-preview{display:none;position:absolute;z-index:1;background-color:#FFF;padding:5px;width:100%;height:100%;top:0;right:0;bottom:0;left:0;overflow:hidden;text-align:center}.dropify-wrapper .dropify-preview .dropify-render img{top:50%;transform:translate(0,-50%);position:relative;max-width:100%;max-height:100%;background-color:#FFF;transition:border-color .15s linear}.dropify-wrapper .dropify-preview .dropify-render i{font-size:70px;top:50%;left:50%;transform:translate(-50%,-50%);position:absolute;color:#777}.dropify-wrapper .dropify-preview .dropify-render .dropify-extension{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);margin-top:10px;text-transform:uppercase;font-weight:900;letter-spacing:-.03em;font-size:13px;width:42px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dropify-wrapper .dropify-preview .dropify-infos{position:absolute;left:0;top:0;right:0;bottom:0;z-index:3;background:rgba(0,0,0,.7);opacity:0;transition:opacity .15s linear}.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner{position:absolute;top:50%;transform:translate(0,-40%);-webkit-backface-visibility:hidden;backface-visibility:hidden;width:100%;padding:0 20px;transition:all .2s ease}.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p{padding:0;margin:0;position:relative;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#FFF;text-align:center;line-height:25px;font-weight:700}.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-filename span.file-icon{margin-right:2px}.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-infos-message{margin-top:15px;padding-top:15px;font-size:12px;position:relative;opacity:.5}.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-infos-message::before{content:'';position:absolute;top:0;left:50%;transform:translate(-50%,0);background:#FFF;width:30px;height:2px}.dropify-wrapper:hover .dropify-clear,.dropify-wrapper:hover .dropify-preview .dropify-infos{opacity:1}.dropify-wrapper:hover .dropify-preview .dropify-infos .dropify-infos-inner{margin-top:-5px}.dropify-wrapper.touch-fallback{height:auto!important}.dropify-wrapper.touch-fallback:hover{background-image:none;animation:none}.dropify-wrapper.touch-fallback .dropify-preview{position:relative;padding:0}.dropify-wrapper.touch-fallback .dropify-preview .dropify-render{display:block;position:relative}.dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-infos-message::before,.dropify-wrapper.touch-fallback.has-preview .dropify-message{display:none}.dropify-wrapper.touch-fallback .dropify-preview .dropify-render .dropify-font-file{position:relative;transform:translate(0,0);top:0;left:0}.dropify-wrapper.touch-fallback .dropify-preview .dropify-render .dropify-font-file::before{margin-top:30px;margin-bottom:30px}.dropify-wrapper.touch-fallback .dropify-preview .dropify-render img{position:relative;transform:translate(0,0)}.dropify-wrapper.touch-fallback .dropify-preview .dropify-infos{position:relative;opacity:1;background:0 0}.dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner{position:relative;top:0;transform:translate(0,0);padding:5px 90px 5px 0}.dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner p{padding:0;margin:0;position:relative;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#777;text-align:left;line-height:25px}.dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-filename{font-weight:700}.dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-infos-message{margin-top:0;padding-top:0;font-size:11px;position:relative;opacity:1}.dropify-wrapper.touch-fallback .dropify-message{transform:translate(0,0);padding:40px 0}.dropify-wrapper.touch-fallback .dropify-clear{top:auto;bottom:23px;opacity:1;border-color:rgba(119,119,119,.7);color:#777}.dropify-wrapper.touch-fallback:hover .dropify-preview .dropify-infos .dropify-infos-inner{margin-top:0}.dropify-wrapper .dropify-loader{position:absolute;top:15px;right:15px;display:none;z-index:9}.dropify-wrapper .dropify-loader::after{display:block;position:relative;width:20px;height:20px;animation:rotate .6s linear infinite;border-radius:100%;border-top:1px solid #CCC;border-bottom:1px solid #777;border-left:1px solid #CCC;border-right:1px solid #777;content:''}.dropify-wrapper .dropify-errors-container{position:absolute;left:0;top:0;right:0;bottom:0;z-index:3;background:rgba(243,65,65,.8);text-align:left;visibility:hidden;opacity:0;transition:visibility 0s linear .15s,opacity .15s linear}.dropify-wrapper .dropify-errors-container ul{padding:10px 20px;margin:0;position:absolute;left:0;top:50%;transform:translateY(-50%)}.dropify-wrapper .dropify-errors-container ul li{margin-left:20px;color:#FFF;font-weight:700}.dropify-wrapper .dropify-errors-container.visible{visibility:visible;opacity:1;transition-delay:0s}.dropify-wrapper~.dropify-errors-container ul{padding:0;margin:15px 0}.dropify-wrapper~.dropify-errors-container ul li{margin-left:20px;color:#F34141;font-weight:700}@keyframes stripes{from{background-position:0 0}to{background-position:60px 30px}}@keyframes rotate{0%{transform:rotateZ(-360deg)}100%{transform:rotateZ(0)}}
/*!
 *  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('fontawesome-webfont.eot?v=4.7.0');
  src: url('fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('fontawesome-webfont.woff?v=4.7.0') format('woff'), url('fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') 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.33333333em;
  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.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  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 {
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=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: #ffffff;
}
/* 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;
}

/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  -o-tab-size: 4;
     tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}

/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  -o-tab-size: 4;
     tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-bubble.ql-toolbar:after,
.ql-bubble .ql-toolbar:after {
  clear: both;
  content: '';
  display: table;
}
.ql-bubble.ql-toolbar button,
.ql-bubble .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-bubble.ql-toolbar button svg,
.ql-bubble .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-bubble.ql-toolbar button:active:hover,
.ql-bubble .ql-toolbar button:active:hover {
  outline: none;
}
.ql-bubble.ql-toolbar input.ql-image[type=file],
.ql-bubble .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-bubble.ql-toolbar button:hover,
.ql-bubble .ql-toolbar button:hover,
.ql-bubble.ql-toolbar button:focus,
.ql-bubble .ql-toolbar button:focus,
.ql-bubble.ql-toolbar button.ql-active,
.ql-bubble .ql-toolbar button.ql-active,
.ql-bubble.ql-toolbar .ql-picker-label:hover,
.ql-bubble .ql-toolbar .ql-picker-label:hover,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active,
.ql-bubble.ql-toolbar .ql-picker-item:hover,
.ql-bubble .ql-toolbar .ql-picker-item:hover,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected {
  color: #fff;
}
.ql-bubble.ql-toolbar button:hover .ql-fill,
.ql-bubble .ql-toolbar button:hover .ql-fill,
.ql-bubble.ql-toolbar button:focus .ql-fill,
.ql-bubble .ql-toolbar button:focus .ql-fill,
.ql-bubble.ql-toolbar button.ql-active .ql-fill,
.ql-bubble .ql-toolbar button.ql-active .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-bubble.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #fff;
}
.ql-bubble.ql-toolbar button:hover .ql-stroke,
.ql-bubble .ql-toolbar button:hover .ql-stroke,
.ql-bubble.ql-toolbar button:focus .ql-stroke,
.ql-bubble .ql-toolbar button:focus .ql-stroke,
.ql-bubble.ql-toolbar button.ql-active .ql-stroke,
.ql-bubble .ql-toolbar button.ql-active .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-bubble.ql-toolbar button:hover .ql-stroke-miter,
.ql-bubble .ql-toolbar button:hover .ql-stroke-miter,
.ql-bubble.ql-toolbar button:focus .ql-stroke-miter,
.ql-bubble .ql-toolbar button:focus .ql-stroke-miter,
.ql-bubble.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-bubble .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #fff;
}
@media (pointer: coarse) {
  .ql-bubble.ql-toolbar button:hover:not(.ql-active),
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) {
    color: #ccc;
  }
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #ccc;
  }
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #ccc;
  }
}
.ql-bubble {
  box-sizing: border-box;
}
.ql-bubble * {
  box-sizing: border-box;
}
.ql-bubble .ql-hidden {
  display: none;
}
.ql-bubble .ql-out-bottom,
.ql-bubble .ql-out-top {
  visibility: hidden;
}
.ql-bubble .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-bubble .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-bubble .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-bubble .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-bubble .ql-formats:after {
  clear: both;
  content: '';
  display: table;
}
.ql-bubble .ql-stroke {
  fill: none;
  stroke: #ccc;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-bubble .ql-stroke-miter {
  fill: none;
  stroke: #ccc;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-bubble .ql-fill,
.ql-bubble .ql-stroke.ql-fill {
  fill: #ccc;
}
.ql-bubble .ql-empty {
  fill: none;
}
.ql-bubble .ql-even {
  fill-rule: evenodd;
}
.ql-bubble .ql-thin,
.ql-bubble .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-bubble .ql-transparent {
  opacity: 0.4;
}
.ql-bubble .ql-direction svg:last-child {
  display: none;
}
.ql-bubble .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-bubble .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-bubble .ql-editor h1 {
  font-size: 2em;
}
.ql-bubble .ql-editor h2 {
  font-size: 1.5em;
}
.ql-bubble .ql-editor h3 {
  font-size: 1.17em;
}
.ql-bubble .ql-editor h4 {
  font-size: 1em;
}
.ql-bubble .ql-editor h5 {
  font-size: 0.83em;
}
.ql-bubble .ql-editor h6 {
  font-size: 0.67em;
}
.ql-bubble .ql-editor a {
  text-decoration: underline;
}
.ql-bubble .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-bubble .ql-editor code,
.ql-bubble .ql-editor pre {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-bubble .ql-editor pre {
  white-space: pre-wrap;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-bubble .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-bubble .ql-editor pre.ql-syntax {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-bubble .ql-editor img {
  max-width: 100%;
}
.ql-bubble .ql-picker {
  color: #ccc;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-bubble .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-bubble .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-bubble .ql-picker-options {
  background-color: #444;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-bubble .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-label {
  color: #777;
  z-index: 2;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #777;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #777;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-bubble .ql-color-picker,
.ql-bubble .ql-icon-picker {
  width: 28px;
}
.ql-bubble .ql-color-picker .ql-picker-label,
.ql-bubble .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-bubble .ql-color-picker .ql-picker-label svg,
.ql-bubble .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-bubble .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}
.ql-bubble .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-bubble .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-bubble .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}
.ql-bubble .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-bubble .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
  content: attr(data-label);
}
.ql-bubble .ql-picker.ql-header {
  width: 98px;
}
.ql-bubble .ql-picker.ql-header .ql-picker-label::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item::before {
  content: 'Normal';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: 'Heading 1';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: 'Heading 2';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: 'Heading 3';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: 'Heading 4';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: 'Heading 5';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: 'Heading 6';
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}
.ql-bubble .ql-picker.ql-font {
  width: 108px;
}
.ql-bubble .ql-picker.ql-font .ql-picker-label::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item::before {
  content: 'Sans Serif';
}
.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: 'Serif';
}
.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: 'Monospace';
}
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family: Georgia, Times New Roman, serif;
}
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family: Monaco, Courier New, monospace;
}
.ql-bubble .ql-picker.ql-size {
  width: 98px;
}
.ql-bubble .ql-picker.ql-size .ql-picker-label::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normal';
}
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: 'Small';
}
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: 'Large';
}
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: 'Huge';
}
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-bubble .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-bubble .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-bubble .ql-toolbar .ql-formats {
  margin: 8px 12px 8px 0px;
}
.ql-bubble .ql-toolbar .ql-formats:first-child {
  margin-left: 12px;
}
.ql-bubble .ql-color-picker svg {
  margin: 1px;
}
.ql-bubble .ql-color-picker .ql-picker-item.ql-selected,
.ql-bubble .ql-color-picker .ql-picker-item:hover {
  border-color: #fff;
}
.ql-bubble .ql-tooltip {
  background-color: #444;
  border-radius: 25px;
  color: #fff;
}
.ql-bubble .ql-tooltip-arrow {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: " ";
  display: block;
  left: 50%;
  margin-left: -6px;
  position: absolute;
}
.ql-bubble .ql-tooltip:not(.ql-flip) .ql-tooltip-arrow {
  border-bottom: 6px solid #444;
  top: -6px;
}
.ql-bubble .ql-tooltip.ql-flip .ql-tooltip-arrow {
  border-top: 6px solid #444;
  bottom: -6px;
}
.ql-bubble .ql-tooltip.ql-editing .ql-tooltip-editor {
  display: block;
}
.ql-bubble .ql-tooltip.ql-editing .ql-formats {
  visibility: hidden;
}
.ql-bubble .ql-tooltip-editor {
  display: none;
}
.ql-bubble .ql-tooltip-editor input[type=text] {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13px;
  height: 100%;
  outline: none;
  padding: 10px 20px;
  position: absolute;
  width: 100%;
}
.ql-bubble .ql-tooltip-editor a {
  top: 10px;
  position: absolute;
  right: 20px;
}
.ql-bubble .ql-tooltip-editor a:before {
  color: #ccc;
  content: "\D7";
  font-size: 16px;
  font-weight: bold;
}
.ql-container.ql-bubble:not(.ql-disabled) a {
  position: relative;
  white-space: nowrap;
}
.ql-container.ql-bubble:not(.ql-disabled) a::before {
  background-color: #444;
  border-radius: 15px;
  top: -5px;
  font-size: 12px;
  color: #fff;
  content: attr(href);
  font-weight: normal;
  overflow: hidden;
  padding: 5px 15px;
  text-decoration: none;
  z-index: 1;
}
.ql-container.ql-bubble:not(.ql-disabled) a::after {
  border-top: 6px solid #444;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  top: 0;
  content: " ";
  height: 0;
  width: 0;
}
.ql-container.ql-bubble:not(.ql-disabled) a::before,
.ql-container.ql-bubble:not(.ql-disabled) a::after {
  left: 0;
  margin-left: 50%;
  position: absolute;
  transform: translate(-50%, -100%);
  transition: visibility 0s ease 200ms;
  visibility: hidden;
}
.ql-container.ql-bubble:not(.ql-disabled) a:hover::before,
.ql-container.ql-bubble:not(.ql-disabled) a:hover::after {
  visibility: visible;
}

/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  -o-tab-size: 4;
     tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: 0.4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: 0.83em;
}
.ql-snow .ql-editor h6 {
  font-size: 0.67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor pre {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor pre {
  white-space: pre-wrap;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor pre.ql-syntax {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: 'Heading 1';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: 'Heading 2';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: 'Heading 3';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: 'Heading 4';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: 'Heading 5';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: 'Heading 6';
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: 'Sans Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: 'Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: 'Monospace';
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family: Georgia, Times New Roman, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family: Monaco, Courier New, monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: 'Small';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: 'Large';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: 'Huge';
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0,0,0,0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0px;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0px;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: 'Edit';
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: 'Remove';
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0px;
  content: 'Save';
  padding-right: 0px;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}

/*!
 * 
 * Super simple WYSIWYG editor v0.8.20
 * https://summernote.org
 *
 *
 * Copyright 2013- Alan Hong and contributors
 * Summernote may be freely distributed under the MIT license.
 *
 * Date: 2021-10-14T21:15Z
 *
 */
@font-face {
    font-family: "summernote";
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: url('summernote.eot?#iefix') format("embedded-opentype"), url('summernote.woff2') format("woff2"), url('summernote.woff') format("woff"), url('summernote.ttf') format("truetype");
}
[class^=note-icon]:before,
[class*=" note-icon"]:before {
    display: inline-block;
    font-family: "summernote";
    font-style: normal;
    font-size: inherit;
    text-decoration: inherit;
    text-rendering: auto;
    text-transform: none;
    vertical-align: middle;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    speak: none;
}
.note-icon-fw {
    text-align: center;
    width: 1.25em;
}
.note-icon-border {
    border: solid 0.08em #eee;
    border-radius: 0.1em;
    padding: 0.2em 0.25em 0.15em;
}
.note-icon-pull-left {
    float: left;
}
.note-icon-pull-right {
    float: right;
}
.note-icon.note-icon-pull-left {
    margin-right: 0.3em;
}
.note-icon.note-icon-pull-right {
    margin-left: 0.3em;
}
.note-icon-align::before {
    content: "\ea01";
}
.note-icon-align-center::before {
    content: "\ea02";
}
.note-icon-align-indent::before {
    content: "\ea03";
}
.note-icon-align-justify::before {
    content: "\ea04";
}
.note-icon-align-left::before {
    content: "\ea05";
}
.note-icon-align-outdent::before {
    content: "\ea06";
}
.note-icon-align-right::before {
    content: "\ea07";
}
.note-icon-arrow-circle-down::before {
    content: "\ea08";
}
.note-icon-arrow-circle-left::before {
    content: "\ea09";
}
.note-icon-arrow-circle-right::before {
    content: "\ea0a";
}
.note-icon-arrow-circle-up::before {
    content: "\ea0b";
}
.note-icon-arrows-alt::before {
    content: "\ea0c";
}
.note-icon-arrows-h::before {
    content: "\ea0d";
}
.note-icon-arrows-v::before {
    content: "\ea0e";
}
.note-icon-bold::before {
    content: "\ea0f";
}
.note-icon-caret::before {
    content: "\ea10";
}
.note-icon-chain-broken::before {
    content: "\ea11";
}
.note-icon-circle::before {
    content: "\ea12";
}
.note-icon-close::before {
    content: "\ea13";
}
.note-icon-code::before {
    content: "\ea14";
}
.note-icon-col-after::before {
    content: "\ea15";
}
.note-icon-col-before::before {
    content: "\ea16";
}
.note-icon-col-remove::before {
    content: "\ea17";
}
.note-icon-eraser::before {
    content: "\ea18";
}
.note-icon-float-left::before {
    content: "\ea19";
}
.note-icon-float-none::before {
    content: "\ea1a";
}
.note-icon-float-right::before {
    content: "\ea1b";
}
.note-icon-font::before {
    content: "\ea1c";
}
.note-icon-frame::before {
    content: "\ea1d";
}
.note-icon-italic::before {
    content: "\ea1e";
}
.note-icon-link::before {
    content: "\ea1f";
}
.note-icon-magic::before {
    content: "\ea20";
}
.note-icon-menu-check::before {
    content: "\ea21";
}
.note-icon-minus::before {
    content: "\ea22";
}
.note-icon-orderedlist::before {
    content: "\ea23";
}
.note-icon-pencil::before {
    content: "\ea24";
}
.note-icon-picture::before {
    content: "\ea25";
}
.note-icon-question::before {
    content: "\ea26";
}
.note-icon-redo::before {
    content: "\ea27";
}
.note-icon-rollback::before {
    content: "\ea28";
}
.note-icon-row-above::before {
    content: "\ea29";
}
.note-icon-row-below::before {
    content: "\ea2a";
}
.note-icon-row-remove::before {
    content: "\ea2b";
}
.note-icon-special-character::before {
    content: "\ea2c";
}
.note-icon-square::before {
    content: "\ea2d";
}
.note-icon-strikethrough::before {
    content: "\ea2e";
}
.note-icon-subscript::before {
    content: "\ea2f";
}
.note-icon-summernote::before {
    content: "\ea30";
}
.note-icon-superscript::before {
    content: "\ea31";
}
.note-icon-table::before {
    content: "\ea32";
}
.note-icon-text-height::before {
    content: "\ea33";
}
.note-icon-trash::before {
    content: "\ea34";
}
.note-icon-underline::before {
    content: "\ea35";
}
.note-icon-undo::before {
    content: "\ea36";
}
.note-icon-unorderedlist::before {
    content: "\ea37";
}
.note-icon-video::before {
    content: "\ea38";
}
.note-frame {
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    color: #000;
    font-family: sans-serif;
    border-radius: 4px;
}
.note-toolbar {
    padding: 10px 5px;
    border-bottom: 1px solid #e2e2e2;
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.note-btn-group {
    position: relative;
    display: inline-block;
    margin-right: 8px;
}
.note-btn-group > .note-btn-group {
    margin-right: 0;
}
.note-btn-group > .note-btn:first-child {
    margin-left: 0;
}
.note-btn-group .note-btn + .note-btn,
.note-btn-group .note-btn + .note-btn-group,
.note-btn-group .note-btn-group + .note-btn,
.note-btn-group .note-btn-group + .note-btn-group {
    margin-left: -1px;
}
.note-btn-group > .note-btn:not(:first-child),
.note-btn-group > .note-btn-group:not(:first-child) > .note-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.note-btn-group > .note-btn:not(:last-child):not(.dropdown-toggle),
.note-btn-group > .note-btn-group:not(:last-child) > .note-btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.note-btn-group.open > .note-dropdown {
    display: block;
}
.note-btn {
    display: inline-block;
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid #dae0e5;
    white-space: nowrap;
    outline: 0;
    color: #333;
    background-color: #fff;
    border-color: #dae0e5;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.note-btn:focus, .note-btn.focus {
    color: #333;
    background-color: #ebebeb;
    border-color: #dae0e5;
}
.note-btn:hover {
    color: #333;
    background-color: #ebebeb;
    border-color: #dae0e5;
}
.note-btn.disabled:focus, .note-btn.disabled.focus, .note-btn[disabled]:focus, .note-btn[disabled].focus, fieldset[disabled] .note-btn:focus, fieldset[disabled] .note-btn.focus {
    background-color: #fff;
    border-color: #dae0e5;
}
.note-btn:hover, .note-btn:focus, .note-btn.focus {
    color: #333;
    text-decoration: none;
    border: 1px solid #dae0e5;
    background-color: #ebebeb;
    outline: 0;
    border-radius: 1px;
}
.note-btn:active, .note-btn.active {
    outline: 0;
    background-image: none;
    color: #333;
    text-decoration: none;
    border: 1px solid #dae0e5;
    background-color: #ebebeb;
    outline: 0;
    border-radius: 1px;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.note-btn.disabled, .note-btn[disabled], fieldset[disabled] .note-btn {
    cursor: not-allowed;
    -webkit-opacity: 0.65;
    -khtml-opacity: 0.65;
    -moz-opacity: 0.65;
    opacity: 0.65;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=65);
    filter: alpha(opacity=65);
    box-shadow: none;
}
.note-btn > span.note-icon-caret:first-child {
    margin-left: -1px;
}
.note-btn > span.note-icon-caret:nth-child(2) {
    padding-left: 3px;
    margin-right: -5px;
}
.note-btn-primary {
    background: #fa6362;
    color: #fff;
}
.note-btn-primary:hover, .note-btn-primary:focus, .note-btn-primary.focus {
    color: #fff;
    text-decoration: none;
    border: 1px solid #dae0e5;
    background-color: #fa6362;
    border-radius: 1px;
}
.note-btn-block {
    display: block;
    width: 100%;
}
.note-btn-block + .note-btn-block {
    margin-top: 5px;
}
input[type=submit].note-btn-block,
input[type=reset].note-btn-block,
input[type=button].note-btn-block {
    width: 100%;
}
button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}
.close {
    float: right;
    font-size: 21px;
    line-height: 1;
    color: #000;
    opacity: 0.2;
}
.close:hover {
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-filter: alpha(opacity=100);
    filter: alpha(opacity=100);
    opacity: 1;
}
.note-dropdown {
    position: relative;
}
.note-color .dropdown-toggle {
    width: 30px;
    padding-left: 5px;
}
.note-dropdown-menu {
    display: none;
    min-width: 100px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    text-align: left;
    background: #fff;
    border: 1px solid #e2e2e2;
    padding: 5px;
    background-clip: padding-box;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}
.note-dropdown-menu > *:last-child {
    margin-right: 0;
}
.note-btn-group.open .note-dropdown-menu {
    display: block;
}
.note-dropdown-item {
    display: block;
}
.note-dropdown-item:hover {
    background-color: #ebebeb;
}
a.note-dropdown-item,
a.note-dropdown-item:hover {
    margin: 5px 0;
    color: #000;
    text-decoration: none;
}
.note-modal {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1050;
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
    display: none;
}
.note-modal.open {
    display: block;
}
.note-modal-content {
    position: relative;
    width: auto;
    margin: 30px 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #fff;
    background-clip: border-box;
    outline: 0;
    border-radius: 5px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.note-modal-header {
    padding: 10px 20px;
    border: 1px solid #ededef;
}
.note-modal-body {
    position: relative;
    padding: 20px 30px;
}
.note-modal-body kbd {
    border-radius: 2px;
    background-color: #000;
    color: #fff;
    padding: 3px 5px;
    font-weight: 700;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.note-modal-footer {
    height: 40px;
    padding: 10px;
    text-align: center;
}
.note-modal-footer a {
    color: #337ab7;
    text-decoration: none;
}
.note-modal-footer a:hover,
.note-modal-footer a:focus {
    color: #23527c;
    text-decoration: underline;
}
.note-modal-footer .note-btn {
    float: right;
}
.note-modal-title {
    font-size: 20px;
    color: #42515f;
    margin: 0;
    line-height: 1.4;
}
.note-modal-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1040;
    background: #000;
    -webkit-opacity: 0.5;
    -khtml-opacity: 0.5;
    -moz-opacity: 0.5;
    opacity: 0.5;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
    filter: alpha(opacity=50);
    display: none;
}
.note-modal-backdrop.open {
    display: block;
}
@media (min-width: 768px) {
    .note-modal-content {
        width: 600px;
        margin: 30px auto;
    }
}
@media (min-width: 992px) {
    .note-modal-content-large {
        width: 900px;
    }
}
.note-modal .note-help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}
.note-modal .note-nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.note-modal .note-nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}
.note-modal .note-nav-link:focus,
.note-modal .note-nav-link:hover {
    color: #0056b3;
    text-decoration: none;
}
.note-modal .note-nav-link.disabled {
    color: #868e96;
}
.note-modal .note-nav-tabs {
    border-bottom: 1px solid #ddd;
}
.note-modal .note-nav-tabs .note-nav-item {
    margin-bottom: -1px;
}
.note-modal .note-nav-tabs .note-nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.note-modal .note-nav-tabs .note-nav-link:focus,
.note-modal .note-nav-tabs .note-nav-link:hover {
    border-color: #e9ecef #e9ecef #ddd;
}
.note-modal .note-nav-tabs .note-nav-link.disabled {
    color: #868e96;
    background-color: transparent;
    border-color: transparent;
}
.note-modal .note-nav-tabs .note-nav-item.show .note-nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #ddd #ddd #fff;
}
.note-modal .note-tab-content {
    margin: 15px auto;
}
.note-modal .note-tab-content > .note-tab-pane:target ~ .note-tab-pane:last-child,
.note-modal .note-tab-content > .note-tab-pane {
    display: none;
}
.note-modal .note-tab-content > :last-child,
.note-modal .note-tab-content > .note-tab-pane:target {
    display: block;
}
.note-form-group {
    padding-bottom: 20px;
}
.note-form-group:last-child {
    padding-bottom: 0;
}
.note-form-label {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #42515f;
    margin-bottom: 10px;
    font-weight: 700;
}
.note-input {
    width: 100%;
    display: block;
    border: 1px solid #ededef;
    background: #fff;
    outline: 0;
    padding: 6px 4px;
    font-size: 14px;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.note-input::-webkit-input-placeholder {
    color: #eeeeee;
}
.note-input:-moz-placeholder {
    /* Firefox 18- */
    color: #eeeeee;
}
.note-input::-moz-placeholder {
    /* Firefox 19+ */
    color: #eeeeee;
}
.note-input:-ms-input-placeholder {
    color: #eeeeee;
}
.note-tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-size: 13px;
    transition: opacity 0.15s;
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
}
.note-tooltip.in {
    -webkit-opacity: 0.9;
    -khtml-opacity: 0.9;
    -moz-opacity: 0.9;
    opacity: 0.9;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=90);
    filter: alpha(opacity=90);
}
.note-tooltip.top {
    margin-top: -3px;
    padding: 5px 0;
}
.note-tooltip.right {
    margin-left: 3px;
    padding: 0 5px;
}
.note-tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0;
}
.note-tooltip.left {
    margin-left: -3px;
    padding: 0 5px;
}
.note-tooltip.bottom .note-tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}
.note-tooltip.top .note-tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}
.note-tooltip.right .note-tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
}
.note-tooltip.left .note-tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
}
.note-tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
.note-tooltip-content {
    max-width: 200px;
    font-family: sans-serif;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
}
.note-popover {
    position: absolute;
    z-index: 1060;
    display: block;
    font-size: 13px;
    font-family: sans-serif;
    display: none;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
}
.note-popover.in {
    display: block;
}
.note-popover.top {
    margin-top: -10px;
    padding: 5px 0;
}
.note-popover.right {
    margin-left: 10px;
    padding: 0 5px;
}
.note-popover.bottom {
    margin-top: 10px;
    padding: 5px 0;
}
.note-popover.left {
    margin-left: -10px;
    padding: 0 5px;
}
.note-popover.bottom .note-popover-arrow {
    top: -11px;
    left: 20px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #999999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
}
.note-popover.bottom .note-popover-arrow::after {
    top: 1px;
    margin-left: -10px;
    content: "\0020";
    border-top-width: 0;
    border-bottom-color: #fff;
}
.note-popover.top .note-popover-arrow {
    bottom: -11px;
    left: 20px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #999999;
    border-top-color: rgba(0, 0, 0, 0.25);
}
.note-popover.top .note-popover-arrow::after {
    bottom: 1px;
    margin-left: -10px;
    content: "\0020";
    border-bottom-width: 0;
    border-top-color: #fff;
}
.note-popover.right .note-popover-arrow {
    top: 50%;
    left: -11px;
    margin-top: -10px;
    border-left-width: 0;
    border-right-color: #999999;
    border-right-color: rgba(0, 0, 0, 0.25);
}
.note-popover.right .note-popover-arrow::after {
    left: 1px;
    margin-top: -10px;
    content: "\0020";
    border-left-width: 0;
    border-right-color: #fff;
}
.note-popover.left .note-popover-arrow {
    top: 50%;
    right: -11px;
    margin-top: -10px;
    border-right-width: 0;
    border-left-color: #999999;
    border-left-color: rgba(0, 0, 0, 0.25);
}
.note-popover.left .note-popover-arrow::after {
    right: 1px;
    margin-top: -10px;
    content: "\0020";
    border-right-width: 0;
    border-left-color: #fff;
}
.note-popover-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border: 11px solid transparent;
}
.note-popover-arrow::after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    content: "\0020";
    border-width: 10px;
}
.note-popover-content {
    /*max-width: $popover-max-width;*/
    padding: 3px 8px;
    color: #000;
    text-align: center;
    background-color: #ffffff;
    min-width: 100px;
    min-height: 30px;
}
/* Theme Variables
 ------------------------------------------ */
/* Layout
 ------------------------------------------ */
.note-editor {
    position: relative;
}
.note-editor .note-dropzone {
    position: absolute;
    display: none;
    z-index: 100;
    color: lightskyblue;
    background-color: #fff;
    opacity: 0.95;
}
.note-editor .note-dropzone .note-dropzone-message {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}
.note-editor .note-dropzone.hover {
    color: #098ddf;
}
.note-editor.dragover .note-dropzone {
    display: table;
}
.note-editor .note-editing-area {
    position: relative;
}
.note-editor .note-editing-area .note-editable {
    outline: none;
}
.note-editor .note-editing-area .note-editable sup {
    vertical-align: super;
}
.note-editor .note-editing-area .note-editable sub {
    vertical-align: sub;
}
.note-editor .note-editing-area .note-editable img.note-float-left {
    margin-right: 10px;
}
.note-editor .note-editing-area .note-editable img.note-float-right {
    margin-left: 10px;
}
/* Frame mode layout
 ------------------------------------------ */
.note-editor.note-frame,
.note-editor.note-airframe {
    border: 1px solid #00000032;
}
.note-editor.note-frame.codeview .note-editing-area .note-editable,
.note-editor.note-airframe.codeview .note-editing-area .note-editable {
    display: none;
}
.note-editor.note-frame.codeview .note-editing-area .note-codable,
.note-editor.note-airframe.codeview .note-editing-area .note-codable {
    display: block;
}
.note-editor.note-frame .note-editing-area,
.note-editor.note-airframe .note-editing-area {
    overflow: hidden;
}
.note-editor.note-frame .note-editing-area .note-editable,
.note-editor.note-airframe .note-editing-area .note-editable {
    padding: 10px;
    overflow: auto;
    word-wrap: break-word;
}
.note-editor.note-frame .note-editing-area .note-editable[contenteditable=false],
.note-editor.note-airframe .note-editing-area .note-editable[contenteditable=false] {
    background-color: #8080801d;
}
.note-editor.note-frame .note-editing-area .note-codable,
.note-editor.note-airframe .note-editing-area .note-codable {
    display: none;
    width: 100%;
    padding: 10px;
    border: none;
    box-shadow: none;
    font-family: Menlo, Monaco, monospace, sans-serif;
    font-size: 14px;
    color: #ccc;
    background-color: #222;
    resize: none;
    outline: none;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
    margin-bottom: 0;
}
.note-editor.note-frame.fullscreen,
.note-editor.note-airframe.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 1050;
}
.note-editor.note-frame.fullscreen .note-resizebar,
.note-editor.note-airframe.fullscreen .note-resizebar {
    display: none;
}
.note-editor.note-frame .note-status-output,
.note-editor.note-airframe .note-status-output {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.42857143;
    height: 20px;
    margin-bottom: 0;
    color: #000;
    border: 0;
    border-top: 1px solid #e2e2e2;
}
.note-editor.note-frame .note-status-output:empty,
.note-editor.note-airframe .note-status-output:empty {
    height: 0;
    border-top: 0 solid transparent;
}
.note-editor.note-frame .note-status-output .pull-right,
.note-editor.note-airframe .note-status-output .pull-right {
    float: right !important;
}
.note-editor.note-frame .note-status-output .text-muted,
.note-editor.note-airframe .note-status-output .text-muted {
    color: #777;
}
.note-editor.note-frame .note-status-output .text-primary,
.note-editor.note-airframe .note-status-output .text-primary {
    color: #286090;
}
.note-editor.note-frame .note-status-output .text-success,
.note-editor.note-airframe .note-status-output .text-success {
    color: #3c763d;
}
.note-editor.note-frame .note-status-output .text-info,
.note-editor.note-airframe .note-status-output .text-info {
    color: #31708f;
}
.note-editor.note-frame .note-status-output .text-warning,
.note-editor.note-airframe .note-status-output .text-warning {
    color: #8a6d3b;
}
.note-editor.note-frame .note-status-output .text-danger,
.note-editor.note-airframe .note-status-output .text-danger {
    color: #a94442;
}
.note-editor.note-frame .note-status-output .alert,
.note-editor.note-airframe .note-status-output .alert {
    margin: -7px 0 0 0;
    padding: 7px 10px 2px 10px;
    border-radius: 0;
    color: #000;
    background-color: #f5f5f5;
}
.note-editor.note-frame .note-status-output .alert .note-icon,
.note-editor.note-airframe .note-status-output .alert .note-icon {
    margin-right: 5px;
}
.note-editor.note-frame .note-status-output .alert-success,
.note-editor.note-airframe .note-status-output .alert-success {
    color: #3c763d !important;
    background-color: #dff0d8 !important;
}
.note-editor.note-frame .note-status-output .alert-info,
.note-editor.note-airframe .note-status-output .alert-info {
    color: #31708f !important;
    background-color: #d9edf7 !important;
}
.note-editor.note-frame .note-status-output .alert-warning,
.note-editor.note-airframe .note-status-output .alert-warning {
    color: #8a6d3b !important;
    background-color: #fcf8e3 !important;
}
.note-editor.note-frame .note-status-output .alert-danger,
.note-editor.note-airframe .note-status-output .alert-danger {
    color: #a94442 !important;
    background-color: #f2dede !important;
}
.note-editor.note-frame .note-statusbar,
.note-editor.note-airframe .note-statusbar {
    background-color: #8080801d;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: 1px solid #00000032;
}
.note-editor.note-frame .note-statusbar .note-resizebar,
.note-editor.note-airframe .note-statusbar .note-resizebar {
    padding-top: 1px;
    height: 9px;
    width: 100%;
    cursor: ns-resize;
}
.note-editor.note-frame .note-statusbar .note-resizebar .note-icon-bar,
.note-editor.note-airframe .note-statusbar .note-resizebar .note-icon-bar {
    width: 20px;
    margin: 1px auto;
    border-top: 1px solid #00000032;
}
.note-editor.note-frame .note-statusbar.locked .note-resizebar,
.note-editor.note-airframe .note-statusbar.locked .note-resizebar {
    cursor: default;
}
.note-editor.note-frame .note-statusbar.locked .note-resizebar .note-icon-bar,
.note-editor.note-airframe .note-statusbar.locked .note-resizebar .note-icon-bar {
    display: none;
}
.note-editor.note-frame .note-placeholder,
.note-editor.note-airframe .note-placeholder {
    padding: 10px;
}
.note-editor.note-airframe {
    border: 0;
}
.note-editor.note-airframe .note-editing-area .note-editable {
    padding: 0;
}
/* Popover
 ------------------------------------------ */
.note-popover.popover {
    display: none;
    max-width: none;
}
.note-popover.popover .popover-content a {
    display: inline-block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}
.note-popover.popover .arrow {
    left: 20px !important;
}
/* Popover and Toolbar (Button container)
 ------------------------------------------ */
.note-toolbar {
    position: relative;
}
.note-popover .popover-content, .note-editor .note-toolbar {
    margin: 0;
    padding: 0 0 5px 5px;
}
.note-popover .popover-content > .note-btn-group, .note-editor .note-toolbar > .note-btn-group {
    margin-top: 5px;
    margin-left: 0;
    margin-right: 5px;
}
.note-popover .popover-content .note-btn-group .note-table, .note-editor .note-toolbar .note-btn-group .note-table {
    min-width: 0;
    padding: 5px;
}
.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker, .note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker {
    font-size: 18px;
}
.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher, .note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher {
    position: absolute !important;
    z-index: 3;
    width: 10em;
    height: 10em;
    cursor: pointer;
}
.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted, .note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted {
    position: relative !important;
    z-index: 1;
    width: 5em;
    height: 5em;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC") repeat;
}
.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted, .note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted {
    position: absolute !important;
    z-index: 2;
    width: 1em;
    height: 1em;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC") repeat;
}
.note-popover .popover-content .note-style .dropdown-style blockquote, .note-popover .popover-content .note-style .dropdown-style pre, .note-editor .note-toolbar .note-style .dropdown-style blockquote, .note-editor .note-toolbar .note-style .dropdown-style pre {
    margin: 0;
    padding: 5px 10px;
}
.note-popover .popover-content .note-style .dropdown-style h1, .note-popover .popover-content .note-style .dropdown-style h2, .note-popover .popover-content .note-style .dropdown-style h3, .note-popover .popover-content .note-style .dropdown-style h4, .note-popover .popover-content .note-style .dropdown-style h5, .note-popover .popover-content .note-style .dropdown-style h6, .note-popover .popover-content .note-style .dropdown-style p, .note-editor .note-toolbar .note-style .dropdown-style h1, .note-editor .note-toolbar .note-style .dropdown-style h2, .note-editor .note-toolbar .note-style .dropdown-style h3, .note-editor .note-toolbar .note-style .dropdown-style h4, .note-editor .note-toolbar .note-style .dropdown-style h5, .note-editor .note-toolbar .note-style .dropdown-style h6, .note-editor .note-toolbar .note-style .dropdown-style p {
    margin: 0;
    padding: 0;
}
.note-popover .popover-content .note-color-all .note-dropdown-menu, .note-editor .note-toolbar .note-color-all .note-dropdown-menu {
    min-width: 337px;
}
.note-popover .popover-content .note-color .dropdown-toggle, .note-editor .note-toolbar .note-color .dropdown-toggle {
    width: 20px;
    padding-left: 5px;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette {
    display: inline-block;
    margin: 0;
    width: 160px;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette:first-child, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette:first-child {
    margin: 0 5px;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-palette-title, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-palette-title {
    font-size: 12px;
    margin: 2px 7px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-reset,
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-select, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-reset,
.note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-select {
    font-size: 11px;
    margin: 3px;
    padding: 0 3px;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-reset:hover,
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-select:hover, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-reset:hover,
.note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-select:hover {
    background: #eee;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-row, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-row {
    height: 20px;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-select-btn, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-select-btn {
    display: none;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-holder-custom .note-color-btn, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-holder-custom .note-color-btn {
    border: 1px solid #eee;
}
.note-popover .popover-content .note-para .note-dropdown-menu, .note-editor .note-toolbar .note-para .note-dropdown-menu {
    min-width: 228px;
    padding: 5px;
}
.note-popover .popover-content .note-para .note-dropdown-menu > div + div, .note-editor .note-toolbar .note-para .note-dropdown-menu > div + div {
    margin-left: 5px;
}
.note-popover .popover-content .note-dropdown-menu, .note-editor .note-toolbar .note-dropdown-menu {
    min-width: 160px;
}
.note-popover .popover-content .note-dropdown-menu.right, .note-editor .note-toolbar .note-dropdown-menu.right {
    right: 0;
    left: auto;
}
.note-popover .popover-content .note-dropdown-menu.right::before, .note-editor .note-toolbar .note-dropdown-menu.right::before {
    right: 9px;
    left: auto !important;
}
.note-popover .popover-content .note-dropdown-menu.right::after, .note-editor .note-toolbar .note-dropdown-menu.right::after {
    right: 10px;
    left: auto !important;
}
.note-popover .popover-content .note-dropdown-menu.note-check a i, .note-editor .note-toolbar .note-dropdown-menu.note-check a i {
    color: deepskyblue;
    visibility: hidden;
}
.note-popover .popover-content .note-dropdown-menu.note-check a.checked i, .note-editor .note-toolbar .note-dropdown-menu.note-check a.checked i {
    visibility: visible;
}
.note-popover .popover-content .note-fontsize-10, .note-editor .note-toolbar .note-fontsize-10 {
    font-size: 10px;
}
.note-popover .popover-content .note-color-palette, .note-editor .note-toolbar .note-color-palette {
    line-height: 1;
}
.note-popover .popover-content .note-color-palette div .note-color-btn, .note-editor .note-toolbar .note-color-palette div .note-color-btn {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
}
.note-popover .popover-content .note-color-palette div .note-color-btn:hover, .note-editor .note-toolbar .note-color-palette div .note-color-btn:hover {
    transform: scale(1.2);
    transition: all 0.2s;
}
/* Dialog
 ------------------------------------------ */
.note-modal .modal-dialog {
    outline: 0;
    border-radius: 5px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.note-modal .form-group {
    margin-left: 0;
    margin-right: 0;
}
.note-modal .note-modal-form {
    margin: 0;
}
.note-modal .note-image-dialog .note-dropzone {
    min-height: 100px;
    font-size: 30px;
    line-height: 4;
    color: lightgray;
    text-align: center;
    border: 4px dashed lightgray;
    margin-bottom: 10px;
}
@-moz-document url-prefix() {
    .note-modal .note-image-input {
        height: auto;
    }
}
/* Placeholder
 ------------------------------------------ */
.note-placeholder {
    position: absolute;
    display: none;
    color: gray;
}
/* Handle
 ------------------------------------------ */
.note-handle .note-control-selection {
    position: absolute;
    display: none;
    border: 1px solid #000;
}
.note-handle .note-control-selection > div {
    position: absolute;
}
.note-handle .note-control-selection .note-control-selection-bg {
    width: 100%;
    height: 100%;
    background-color: #000;
    -webkit-opacity: 0.3;
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    opacity: 0.3;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
    filter: alpha(opacity=30);
}
.note-handle .note-control-selection .note-control-handle, .note-handle .note-control-selection .note-control-sizing, .note-handle .note-control-selection .note-control-holder {
    width: 7px;
    height: 7px;
    border: 1px solid #000;
}
.note-handle .note-control-selection .note-control-sizing {
    background-color: #000;
}
.note-handle .note-control-selection .note-control-nw {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}
.note-handle .note-control-selection .note-control-ne {
    top: -5px;
    right: -5px;
    border-bottom: none;
    border-left: none;
}
.note-handle .note-control-selection .note-control-sw {
    bottom: -5px;
    left: -5px;
    border-top: none;
    border-right: none;
}
.note-handle .note-control-selection .note-control-se {
    right: -5px;
    bottom: -5px;
    cursor: se-resize;
}
.note-handle .note-control-selection .note-control-se.note-control-holder {
    cursor: default;
    border-top: none;
    border-left: none;
}
.note-handle .note-control-selection .note-control-selection-info {
    right: 0;
    bottom: 0;
    padding: 5px;
    margin: 5px;
    color: #fff;
    background-color: #000;
    font-size: 12px;
    border-radius: 5px;
    -webkit-opacity: 0.7;
    -khtml-opacity: 0.7;
    -moz-opacity: 0.7;
    opacity: 0.7;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
    filter: alpha(opacity=70);
}
.note-hint-popover {
    min-width: 100px;
    padding: 2px;
}
.note-hint-popover .popover-content {
    padding: 3px;
    max-height: 150px;
    overflow: auto;
}
.note-hint-popover .popover-content .note-hint-group .note-hint-item {
    display: block !important;
    padding: 3px;
}
.note-hint-popover .popover-content .note-hint-group .note-hint-item.active, .note-hint-popover .popover-content .note-hint-group .note-hint-item:hover {
    display: block;
    clear: both;
    font-weight: 400;
    line-height: 1.4;
    color: white;
    white-space: nowrap;
    text-decoration: none;
    background-color: #428bca;
    outline: 0;
    cursor: pointer;
}
/* Handle
 ------------------------------------------ */
html .note-fullscreen-body, body .note-fullscreen-body {
    overflow: hidden !important;
}
.note-editor .note-editing-area .note-editable table {
    width: 100%;
    border-collapse: collapse;
}
.note-editor .note-editing-area .note-editable table td, .note-editor .note-editing-area .note-editable table th {
    border: 1px solid #ececec;
    padding: 5px 3px;
}
.note-editor .note-editing-area .note-editable a {
    background-color: inherit;
    text-decoration: inherit;
    font-family: inherit;
    font-weight: inherit;
    color: #337ab7;
}
.note-editor .note-editing-area .note-editable a:hover,
.note-editor .note-editing-area .note-editable a:focus {
    color: #23527c;
    text-decoration: underline;
    outline: 0;
}
.note-editor .note-editing-area .note-editable figure {
    margin: 0;
}
/* Dialog
 ------------------------------------------*/
.note-modal .note-modal-body label {
    margin-bottom: 2px;
    padding: 2px 5px;
    display: inline-block;
}
.note-modal .note-modal-body .help-list-item:hover {
    background-color: #e0e0e0;
}
@-moz-document url-prefix() {
    .note-modal .note-image-input {
        height: auto;
    }
}
.help-list-item label {
    margin-bottom: 5px;
    display: inline-block;
}
