.component-loader {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(241, 244, 249, 0.6);
  z-index: 1500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .component-loader__text {
    margin-top: 40px;
    text-align: center; }
    .component-loader__text > * {
      margin-top: 20px; }

.ie .component-loader__icon, .ie .component-loader__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

.ie .component-loader__text {
  margin-top: 100px; }
.scrollable-list__fixed-box {
  height: 320px; }

.scrollable-list__scrollable-box {
  max-height: 320px;
  overflow: auto;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, white), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(70%, white)) 0 100%, -webkit-gradient(linear, left top, left bottom, color-stop(30%, #F1F4F9), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(70%, #F1F4F9)) 0 100%;
  background: linear-gradient(white 30%, rgba(255, 255, 255, 0)), linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%, linear-gradient(#F1F4F9 30%, rgba(255, 255, 255, 0)), linear-gradient(rgba(255, 255, 255, 0), #F1F4F9 70%) 0 100%;
  background-repeat: no-repeat;
  background-color: white;
  background-size: 100% 40px, 100% 40px, 100% 30px, 100% 30px;
  /* Opera doesn't support this in the shorthand */
  background-attachment: local, local, scroll, scroll; }

.scrollable-list__list {
  margin: 0;
  padding: 0; }
svg-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  svg-icon .svg-icon {
    width: 12px;
    height: 12px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.tmr-batch-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  width: 100%;
  padding: 24px 60px;
  -webkit-box-shadow: 0 -0.5px 1.5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 -0.5px 1.5px 0 rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .tmr-batch-actions__counter {
    font-size: 18px;
    color: var(--base-color-text);
    margin-right: 15px; }
  .tmr-batch-actions__icon {
    display: inline-block;
    color: #3da4f3;
    margin-right: 10px;
    font-size: 15px; }
    .tmr-batch-actions__icon--svg {
      height: 14px;
      width: auto; }
  .tmr-batch-actions__button {
    margin-right: 15px;
    cursor: pointer; }
    .tmr-batch-actions__button:last-of-type {
      margin: 0; }
    .tmr-batch-actions__button:hover .tmr-batch-actions__icon, .tmr-batch-actions__button:active .tmr-batch-actions__icon, .tmr-batch-actions__button:visited .tmr-batch-actions__icon, .tmr-batch-actions__button:focus .tmr-batch-actions__icon {
      color: #3da4f3; }
    .tmr-batch-actions__button--red {
      color: #F04764 !important; }
      .tmr-batch-actions__button--red .tmr-batch-actions__icon {
        color: #F04764 !important; }

.ie tmr-batch-actions .tmr-batch-actions {
  display: block;
  text-align: right; }
  .ie tmr-batch-actions .tmr-batch-actions__counter {
    display: inline-block; }
  .ie tmr-batch-actions .tmr-batch-actions__button {
    display: inline-block; }
app-modal-progress-bar .app-modal-progress-bar {
  height: 8px;
  position: relative;
  overflow: hidden;
  background: #d8d2da; }
  app-modal-progress-bar .app-modal-progress-bar__meter {
    height: 100%;
    position: relative;
    overflow: hidden;
    -webkit-transition: width .5s ease-in-out;
    transition: width .5s ease-in-out; }
.app-label {
  display: inline-block;
  color: #FFFFFF;
  background-color: var(--base-color-secondary-lighten);
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  margin-left: 4px;
  padding: 4px 6px;
  text-transform: uppercase;
  border-radius: 10px; }
  .app-label.danger {
    background-color: #f93e3e;
    color: white; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.tmr-list-search {
  position: relative;
  margin-bottom: 10px; }
  .tmr-list-search__input-box {
    position: relative;
    width: 82%;
    float: left; }
  .tmr-list-search__button-box {
    width: 18%;
    float: right;
    text-align: right; }
  .tmr-list-search__icon {
    position: absolute;
    right: 14px;
    top: 14px;
    font-size: 14px; }
    .tmr-list-search__icon--reset {
      cursor: pointer; }
      .tmr-list-search__icon--reset:hover {
        color: #3da4f3; }
  .tmr-list-search--long .tmr-list-search__input-box {
    width: 87%; }
  .tmr-list-search--long .tmr-list-search__button-box {
    width: 13%; }
tmr-optional {
  display: inline-block;
  color: #949cab;
  font-weight: 400; }
app-input {
  display: block;
  margin-bottom: 14px; }

.app-input {
  display: block;
  width: 100%;
  height: 42px;
  font-size: 16px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--base-color-text);
  padding: 6px 12px;
  line-height: 1.42857;
  background-color: #fff;
  background-image: none;
  border: 1px solid var(--base-color-border);
  border-radius: var(--base-spacing-input-border-radius);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s; }
  .app-input:hover {
    border-color: #63B7F8; }
  .app-input[disabled] {
    background-color: var(--base-color-text-lighten4); }
  .app-input--invalid {
    border: #F04864 1px solid !important; }
  .app-input--small {
    height: 35px;
    line-height: 35px;
    font-size: 14px; }

.app-input__label {
  color: #4e5560;
  display: block;
  max-width: 100%;
  margin-bottom: 0;
  font-weight: bold; }

.app-input__readonly-text {
  height: 42px;
  line-height: 42px;
  display: inline-block;
  font-size: 16px; }

.ie .app-input--small {
  line-height: 22px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

app-popover .app-popover {
  z-index: 300;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid var(--base-color-border-light);
  padding: 3px;
  border-radius: 3px;
  min-width: 0 !important; }
  app-popover .app-popover__arrow {
    z-index: 350;
    position: absolute;
    top: calc(100% - 9px);
    right: calc(50% + 10px);
    left: calc(50% - 10px);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white; }
    app-popover .app-popover__arrow:before {
      z-index: 100;
      content: '';
      position: absolute;
      top: -1px;
      left: -11px;
      width: 0;
      height: 0;
      border-left: 11px solid transparent;
      border-right: 11px solid transparent;
      border-bottom: 11px solid var(--base-color-border-light); }
    app-popover .app-popover__arrow:after {
      content: '';
      z-index: 350;
      position: absolute;
      top: 0px;
      left: -10px;
      width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 10px solid white; }
  app-popover .app-popover__overlay {
    z-index: 290;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0; }
  app-popover .app-popover--to-right {
    left: 0;
    right: initial; }
  app-popover .app-popover-variant--bordered .app-popover__arrow {
    display: none; }
  app-popover .app-popover-variant--bordered:after, app-popover .app-popover-variant--bordered:before {
    top: calc(100% - 10px);
    right: calc(50% + 5px);
    left: calc(50% - 5px);
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    z-index: 500; }
  app-popover .app-popover-variant--bordered:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #ffffff;
    border-width: 5px;
    margin-top: 1px; }
  app-popover .app-popover-variant--bordered:before {
    border-color: rgba(0, 0, 0, 0);
    border-bottom-color: rgba(0, 0, 0, 0.07);
    border-width: 5px;
    margin-left: 0px; }

template-document-inline-menu app-popover .app-popover {
  margin-top: 8px; }
  template-document-inline-menu app-popover .app-popover__arrow:before {
    top: -1px;
    left: 7px; }
  template-document-inline-menu app-popover .app-popover__arrow:after {
    top: 0px;
    left: 8px; }

tag-inline-menu app-popover .app-popover {
  margin-top: 8px; }
  tag-inline-menu app-popover .app-popover__arrow:before {
    top: -1px;
    left: 7px; }
  tag-inline-menu app-popover .app-popover__arrow:after {
    top: 0px;
    left: 8px; }

template-inline-menu app-popover .app-popover {
  margin-top: 8px; }
  template-inline-menu app-popover .app-popover__arrow:before {
    top: -1px;
    left: 7px; }
  template-inline-menu app-popover .app-popover__arrow:after {
    top: 0px;
    left: 8px; }

.ie app-popover .app-popover__overlay {
  background: rgba(0, 0, 0, 0.001); }
app-popover .app-popover-variant--dropdown .app-popover {
  border-radius: 0;
  border: solid 1px var(--base-color-border-light);
  -webkit-box-shadow: none;
          box-shadow: none; }
  app-popover .app-popover-variant--dropdown .app-popover__arrow {
    height: 3px;
    width: calc(100% - 2px);
    right: 1px;
    left: 1px;
    top: calc(100% - 1px);
    border: none;
    z-index: 301; }
app-popover .app-popover-variant--multiselect .app-popover {
  border-radius: 0;
  border: solid 1px #d8dadf;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  border-radius: var(--base-spacing-input-border-radius);
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden; }
  app-popover .app-popover-variant--multiselect .app-popover__arrow {
    display: none; }
app-popover .app-popover-variant--inline-menu .app-popover,
app-popover .app-popover-variant--inline-menu--large .app-popover {
  top: calc(100% + 10px);
  border: 1px var(--base-color-border-light) solid;
  -webkit-box-shadow: 0px 0px 1px 0px var(--base-color-border-light);
          box-shadow: 0px 0px 1px 0px var(--base-color-border-light); }
  app-popover .app-popover-variant--inline-menu .app-popover__arrow,
  app-popover .app-popover-variant--inline-menu--large .app-popover__arrow {
    overflow: hidden;
    z-index: 301;
    top: calc(100% + 5px);
    right: 0;
    left: calc(100% - 15px);
    border: none;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    border: 1px var(--base-color-border-light) solid;
    border-bottom: none;
    border-right: none; }
    app-popover .app-popover-variant--inline-menu .app-popover__arrow::after,
    app-popover .app-popover-variant--inline-menu--large .app-popover__arrow::after {
      content: " ";
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 14px;
      height: 7px;
      -webkit-transform-origin: bottom left;
              transform-origin: bottom left;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
      background: white; }

app-popover .app-popover-variant--inline-menu--large .app-popover__arrow {
  left: calc(100% - 25px); }

[page-title="vmProfile.title"] app-popover .app-popover-variant--inline-menu .app-popover__arrow,
[page-title="vmProfile.title"] app-popover .app-popover-variant--inline-menu--large .app-popover__arrow {
  left: calc(100% - 24px); }
  [page-title="vmProfile.title"] app-popover .app-popover-variant--inline-menu .app-popover__arrow::before,
  [page-title="vmProfile.title"] app-popover .app-popover-variant--inline-menu--large .app-popover__arrow::before {
    left: 15px; }
app-popover-root {
  position: relative;
  display: block;
  float: right; }
.app-popover-button {
  padding: 5px 10px;
  color: var(--base-color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  font-size: 1em;
  line-height: 1.3em; }
  .app-popover-button:hover {
    background: #e7f4fe; }
  .app-popover-button--danger {
    color: red; }
  .app-popover-button--primary {
    color: var(--base-color-primary); }
  .app-popover-button--as-link {
    text-decoration: underline; }
    .app-popover-button--as-link:hover {
      background: transparent; }
.app-popover-group {
  margin-top: 5px;
  padding: 5px 0;
  border-top: 1px solid var(--base-color-border); }
.app-popover-header {
  padding: 10px;
  margin: 0;
  border-bottom: 1px solid var(--base-color-border);
  margin-bottom: 5px; }
  .app-popover-header__icon {
    margin-right: 5px; }
  .app-popover-header__label {
    text-transform: capitalize; }
tmr-meatball {
  display: inline-block;
  position: relative;
  height: 21px;
  margin: 0 5px; }
  tmr-meatball .active {
    position: relative;
    z-index: 299;
    border-radius: 0; }
  tmr-meatball button.tmr-button:hover {
    background-color: transparent; }
  tmr-meatball button.tmr-button:focus {
    background-color: transparent; }
  tmr-meatball button.tmr-button:active {
    background-color: transparent; }
  tmr-meatball .icon-meatball {
    width: 40px;
    height: 20px;
    fill: #3DA4F3; }
app-nav .app-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px; }

app-nav.reports-nav .app-nav {
  margin-top: -20px; }
  app-nav.reports-nav .app-nav button {
    width: 150px; }
app-tooltip .app-tooltip {
  position: absolute;
  bottom: 110%;
  left: calc(-250px + 50%);
  width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1; }
  app-tooltip .app-tooltip.ng-hide {
    opacity: 0; }
  app-tooltip .app-tooltip.ng-hide-add, app-tooltip .app-tooltip.ng-hide-remove {
    -webkit-transition: all linear 0.1s;
    transition: all linear 0.1s; }
  app-tooltip .app-tooltip__content {
    display: inline-block;
    border-radius: 3px;
    background: rgba(53, 62, 76, 0.95);
    -webkit-box-shadow: 0 0.5px 1px 0 rgba(47, 50, 55, 0.39);
            box-shadow: 0 0.5px 1px 0 rgba(47, 50, 55, 0.39);
    color: white; }
  app-tooltip .app-tooltip__content-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 10;
        -ms-flex: 10 0 10px;
            flex: 10 0 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 2px;
    max-width: 450px; }
  app-tooltip .app-tooltip__arrow {
    z-index: 300;
    position: absolute;
    bottom: -5px;
    right: calc(50% + 5px);
    left: calc(50% - 5px);
    width: 0;
    height: 0;
    border-top: 5px solid rgba(53, 62, 76, 0.95);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent; }

.ie app-tooltip .app-tooltip {
  display: block;
  text-align: center; }
  .ie app-tooltip .app-tooltip__content-inner {
    display: block;
    white-space: normal !important; }
app-inline-menu {
  display: inline-block;
  position: relative;
  height: 21px;
  margin: 0; }
  app-inline-menu .app-inline-menu__button-icon, app-inline-menu .app-inline-menu__button-icon:hover, app-inline-menu .app-inline-menu__button-icon:focus, app-inline-menu .app-inline-menu__button-icon:active {
    color: var(--base-color-primary) !important; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.app-modal__header {
  background-color: var(--base-color-secondary);
  border-bottom: 1px solid #d8dadf;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  color: #FFFFFF;
  padding: 15px 24px;
  position: relative;
  text-align: left; }
  .app-modal__header .close {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-top: 5px;
    color: var(--base-color-primary);
    opacity: 1;
    background-color: #FFFFFF;
    padding-bottom: 2px;
    padding-right: 1px;
    margin-top: -2px;
    border-radius: 100%;
    text-align: center; }
    .app-modal__header .close:hover, .app-modal__header .close:focus {
      opacity: 0.5; }
  .app-modal__header .title {
    font-weight: 400;
    font-size: 24px; }
    .app-modal__header .title .bolder {
      font-weight: 500; }

.app-modal__body {
  background-color: #FFFFFF;
  padding: 20px 24px; }
  .app-modal__body--warning {
    background-color: #faf7e4; }
  .app-modal__body .intro {
    font-size: 16px;
    margin-bottom: 25px;
    max-height: 450px;
    overflow: auto; }
    .app-modal__body .intro:last-child {
      margin-bottom: 0; }
  .app-modal__body .row {
    margin-bottom: 15px; }
  .app-modal__body label {
    color: var(--base-color-text);
    font-weight: 400;
    margin-bottom: 0; }
  .app-modal__body .list-group {
    margin-bottom: 10px; }
    .app-modal__body .list-group .list-group-item {
      border-color: var(--base-color-secondary-lighten2); }
      .app-modal__body .list-group .list-group-item label {
        display: block;
        font-weight: normal;
        margin-bottom: 0; }
        .app-modal__body .list-group .list-group-item label input {
          margin-right: 9px; }
  .app-modal__body input.app-input-form {
    border-color: var(--base-color-secondary-lighten2);
    color: var(--base-color-text);
    font-size: 15px;
    padding: 0px 8px; }
    .app-modal__body input.app-input-form[disabled] {
      background-color: var(--base-color-text-lighten4); }
    .app-modal__body input.app-input-form.form-control-large {
      font-size: 16px;
      padding: 0px 12px; }
  .app-modal__body .form-field {
    margin-bottom: 10px; }
    .app-modal__body .form-field.invalid input.app-input-form {
      border-color: #F04864; }
    .app-modal__body .form-field.invalid .help-block {
      color: #F04864; }

.app-modal__footer {
  border-top: 1px solid #d8dadf;
  padding: 15px 24px;
  background-color: var(--base-color-primary-lighten4); }
  .app-modal__footer .button-group {
    overflow: hidden;
    text-align: center; }
    .app-modal__footer .button-group .btn {
      margin-top: 0; }
      .app-modal__footer .button-group .btn.btn-bnw {
        border-color: var(--base-color-primary);
        color: var(--base-color-primary); }
        .app-modal__footer .button-group .btn.btn-bnw:hover {
          background-color: var(--base-color-primary-lighten3); }
      .app-modal__footer .button-group .btn.pull-right {
        margin-left: 14px; }
  .app-modal__footer-text {
    color: #4a576a;
    display: inline-block;
    margin-top: 14px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

tmr-button-group .tmr-button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  border: #d8dadf solid 1px;
  padding: 0;
  overflow: hidden; }
  tmr-button-group .tmr-button-group > button {
    margin: 0; }

.ie tmr-button-group {
  display: block;
  text-align: center; }
  .ie tmr-button-group .tmr-button-group {
    display: inline-block; }
    .ie tmr-button-group .tmr-button-group > button {
      display: inline-block; }
tmr-multiselect {
  position: relative;
  display: block; }
  tmr-multiselect .tmr-multiselect {
    position: relative;
    outline: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 36px;
    font-size: 16px;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: var(--base-color-text);
    padding: 3px;
    line-height: 1.42857;
    background-color: #fff;
    background-image: none;
    border: 1px solid var(--base-color-border);
    border-radius: var(--base-spacing-input-border-radius); }
    tmr-multiselect .tmr-multiselect:hover, tmr-multiselect .tmr-multiselect:active, tmr-multiselect .tmr-multiselect:focus {
      border: 1px solid #63B7F8; }
    tmr-multiselect .tmr-multiselect:after {
      content: "\E93D";
      font-family: 'Linearicons';
      position: absolute;
      -webkit-transform: translate(0, -50%);
              transform: translate(0, -50%);
      top: 50%;
      right: 4px;
      pointer-events: none;
      color: var(--base-color-primary);
      font-size: 13px; }
    tmr-multiselect .tmr-multiselect__placeholder {
      margin-left: 9px;
      font-size: 14px;
      color: var(--base-color-text); }
    tmr-multiselect .tmr-multiselect__category {
      border: none;
      background: transparent;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      outline: none;
      padding: 5px;
      width: 100%;
      font-weight: bold; }
      tmr-multiselect .tmr-multiselect__category:hover {
        background: #e7f4fe; }
    tmr-multiselect .tmr-multiselect__item {
      border: none;
      background: transparent;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      outline: none;
      padding: 5px;
      width: 100%; }
      tmr-multiselect .tmr-multiselect__item:hover {
        background: #e7f4fe; }
    tmr-multiselect .tmr-multiselect__checkbox {
      margin-top: 0 !important;
      margin-right: 5px !important; }
    tmr-multiselect .tmr-multiselect__selected {
      position: relative;
      display: inline-block;
      padding: 4px;
      border: 1px #a6d5fa solid;
      border-radius: var(--base-spacing-input-border-radius);
      margin-left: 2px;
      background: #EEF7FE;
      z-index: 0;
      line-height: normal;
      font-size: 14px;
      color: var(--base-color-text); }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

tmr-search-dropdown {
  position: relative;
  display: block; }
  tmr-search-dropdown .tmr-search-dropdown {
    position: relative;
    outline: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 36px;
    font-size: 16px;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: var(--base-color-text);
    padding: 3px;
    line-height: 1.42857;
    background-color: #fff;
    background-image: none;
    border: 1px solid var(--base-color-border);
    border-radius: var(--base-spacing-input-border-radius);
    -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s; }
    tmr-search-dropdown .tmr-search-dropdown:hover, tmr-search-dropdown .tmr-search-dropdown:active, tmr-search-dropdown .tmr-search-dropdown:focus {
      border: 1px solid #63B7F8; }
    tmr-search-dropdown .tmr-search-dropdown:after {
      content: "\E93D";
      font-family: 'Linearicons';
      position: absolute;
      -webkit-transform: translate(0, -50%);
              transform: translate(0, -50%);
      top: 50%;
      right: 4px;
      pointer-events: none;
      color: var(--base-color-primary);
      font-size: 13px; }
    tmr-search-dropdown .tmr-search-dropdown__placeholder {
      margin-left: 9px;
      font-size: 14px;
      color: var(--base-color-text); }
    tmr-search-dropdown .tmr-search-dropdown__category {
      border: none;
      background: transparent;
      display: block;
      text-align: left;
      outline: none;
      padding: 5px;
      width: 100%;
      font-weight: bold; }
      tmr-search-dropdown .tmr-search-dropdown__category:hover {
        background: #e7f4fe; }
    tmr-search-dropdown .tmr-search-dropdown__item {
      border: none;
      background: transparent;
      display: block;
      text-align: left;
      outline: none;
      padding: 5px;
      width: 100%; }
      tmr-search-dropdown .tmr-search-dropdown__item:hover {
        background: #e7f4fe; }
    tmr-search-dropdown .tmr-search-dropdown__checkbox {
      margin-top: 0 !important;
      margin-right: 5px !important; }
    tmr-search-dropdown .tmr-search-dropdown__selected {
      position: relative;
      display: inline-block;
      padding: 4px;
      border: 1px #a6d5fa solid;
      border-radius: 2px;
      margin-left: 2px;
      background: #EEF7FE;
      z-index: 0;
      line-height: normal;
      font-size: 14px;
      color: var(--base-color-text); }
    tmr-search-dropdown .tmr-search-dropdown__selected-items {
      margin-bottom: 15px; }
    tmr-search-dropdown .tmr-search-dropdown__clear {
      padding: 5px; }
    tmr-search-dropdown .tmr-search-dropdown__icon {
      position: absolute;
      right: 14px;
      top: 14px;
      font-size: 14px; }
      tmr-search-dropdown .tmr-search-dropdown__icon--reset {
        cursor: pointer; }
        tmr-search-dropdown .tmr-search-dropdown__icon--reset:hover {
          color: #3da4f3; }
    tmr-search-dropdown .tmr-search-dropdown__empty {
      margin: 10px;
      color: #4a576a;
      text-align: center; }

.ie10 .tmr-search-dropdown,
.ie10 .tmr-search-dropdown__list button {
  text-align: left; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

account-item-variant .account-item-variant {
  text-align: left; }
  account-item-variant .account-item-variant__account {
    float: right; }
  account-item-variant .account-item-variant__account-id {
    float: right;
    text-align: right;
    color: #949cab; }
.user-item-variant {
  text-align: left; }
  .user-item-variant__member {
    display: inline-block;
    margin-left: 5px;
    position: relative;
    top: 7px; }
  .user-item-variant__full-name {
    line-height: 4px;
    font-size: 13px; }
  .user-item-variant__email {
    display: inline-block;
    font-size: 10px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

app-page .app-page {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 5px;
  border: 1px solid var(--base-color-secondary-lighten2);
  display: block;
  margin-bottom: 15px; }
app-page-content .app-page-content {
  margin: 0;
  padding: 23px 30px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

app-page-header .app-page-header {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #E5E6E8; }
  app-page-header .app-page-header__title {
    margin: 0;
    color: #353e4c; }
  app-page-header .app-page-header__actions {
    position: absolute;
    right: 20px; }
    app-page-header .app-page-header__actions > button {
      margin-right: 8px; }
      app-page-header .app-page-header__actions > button:last-child {
        margin-right: 0; }

.ie app-page-header .app-page-header {
  margin: 0;
  display: block; }
  .ie app-page-header .app-page-header__actions {
    height: 41px;
    line-height: 41px;
    vertical-align: middle;
    top: 12px; }
    .ie app-page-header .app-page-header__actions > button {
      line-height: 20px; }
confirm-delete .confirm-delete__header {
  margin: 0;
  padding: 10px 15px;
  text-align: left;
  border-bottom: 1px solid var(--base-color-border); }

confirm-delete .confirm-delete__footer {
  padding: 20px 15px;
  position: static;
  text-align: left;
  width: 232px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.tmr-button {
  color: var(--base-color-primary) !important;
  background: #FFFFFF;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 15px;
  padding-right: 15px;
  outline: none;
  border: var(--base-color-primary) solid 1px;
  border-radius: 80px;
  cursor: pointer;
  /* Color Variants */
  /* Size & shape variants */ }
  .tmr-button:disabled {
    opacity: .7;
    cursor: not-allowed; }
  .tmr-button:active {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
            box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    background-color: var(--base-color-primary-lighten3);
    text-decoration: none; }
  .tmr-button:hover, .tmr-button:focus {
    border: var(--base-color-primary) solid 1px;
    background-color: var(--base-color-primary-lighten); }
    .tmr-button:hover,
    .tmr-button:hover *, .tmr-button:focus,
    .tmr-button:focus * {
      text-decoration: none;
      color: currentColor; }
  .tmr-button.app-inline-menu:hover {
    background-color: transparent; }
  .tmr-button.app-inline-menu:active {
    background-color: transparent; }
  .tmr-button.app-inline-menu:focus {
    background-color: transparent; }
  .tmr-button--primary {
    background: var(--base-color-primary);
    border: transparent solid 1px;
    color: #ffffff !important; }
    .tmr-button--primary:active {
      background-color: var(--base-color-primary-lighten);
      border-color: transparent !important; }
    .tmr-button--primary:focus, .tmr-button--primary:hover {
      background-color: var(--base-color-primary-lighten);
      border-color: transparent; }
  .tmr-button--danger {
    background-color: #F04764;
    border: transparent solid 1px;
    color: #ffffff !important; }
    .tmr-button--danger:active {
      background-color: #c9302c;
      border-color: transparent !important; }
    .tmr-button--danger:focus, .tmr-button--danger:hover {
      border-color: transparent; }
  .tmr-button--circle {
    padding: 0;
    border-radius: 50%;
    font-size: 36px;
    font-weight: 100;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    vertical-align: middle; }
  .tmr-button--large {
    font-size: 1.3em;
    padding: 10px 20px; }
  .tmr-button--inline {
    font-size: 1.2em;
    padding: 9px 20px; }
  .tmr-button--flat {
    border-radius: 0;
    padding: 0;
    height: 22px;
    border-color: transparent;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none; }
    .tmr-button--flat:hover, .tmr-button--flat:focus, .tmr-button--flat:active {
      border-color: transparent;
      -webkit-box-shadow: none;
              box-shadow: none; }
    .tmr-button--flat.tmr-button--danger {
      color: #F04764 !important;
      background: transparent; }
  .tmr-button--grouped {
    text-align: center;
    line-height: 14px;
    font-size: 14px;
    padding: 11px 20px;
    display: block;
    border-radius: 0;
    margin: 0;
    width: 110px;
    color: #3da4f3 !important; }
    .tmr-button--grouped:disabled {
      background: #dce2ea;
      color: #353e4c !important;
      cursor: default; }
      .tmr-button--grouped:disabled.tab-active {
        background-color: var(--base-color-primary-lighten) !important;
        opacity: 1;
        color: #FFFFFF !important; }
    .tmr-button--grouped, .tmr-button--grouped:hover, .tmr-button--grouped:active, .tmr-button--grouped:focus {
      border: transparent;
      border-right: inherit; }
      .tmr-button--grouped:last-child, .tmr-button--grouped:hover:last-child, .tmr-button--grouped:active:last-child, .tmr-button--grouped:focus:last-child {
        border-right: transparent; }
    .tmr-button--grouped:hover, .tmr-button--grouped:active, .tmr-button--grouped:focus {
      background-color: var(--base-color-primary-lighten);
      color: #FFFFFF !important; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.app-button {
  color: #4e5560 !important;
  background: #FFFFFF;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 15px;
  padding-right: 15px;
  outline: none;
  border: #DDDEE0 solid 1px;
  border-radius: 80px;
  cursor: pointer;
  /* Color Variants */
  /* Size & shape variants */ }
  .app-button:disabled {
    opacity: .7;
    cursor: not-allowed; }
  .app-button:active {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
            box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    text-decoration: none; }
  .app-button:hover, .app-button:focus, .app-button:visited {
    border: #DDDEE0 solid 1px; }
    .app-button:hover,
    .app-button:hover *, .app-button:focus,
    .app-button:focus *, .app-button:visited,
    .app-button:visited * {
      text-decoration: none;
      color: currentColor; }
  .app-button--primary {
    background: var(--base-color-primary);
    border: transparent solid 1px;
    color: #ffffff !important; }
    .app-button--primary:active {
      background-color: var(--base-color-primary-lighten);
      border-color: transparent !important; }
    .app-button--primary:visited, .app-button--primary:focus, .app-button--primary:hover {
      border-color: transparent;
      background-color: var(--base-color-primary-lighten); }
  .app-button--danger {
    background-color: #F04764;
    border: transparent solid 1px;
    color: #ffffff !important; }
    .app-button--danger:active {
      background-color: #c9302c;
      border-color: transparent !important; }
    .app-button--danger:visited, .app-button--danger:focus, .app-button--danger:hover {
      border-color: transparent; }
  .app-button--circle {
    padding: 0;
    border-radius: 50%;
    font-size: 36px;
    font-weight: 100;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    vertical-align: middle; }
  .app-button--large {
    font-size: 1.3em;
    padding: 10px 20px; }
  .app-button--inline {
    font-size: 1.2em;
    padding: 9px 20px; }
  .app-button--flat {
    border-radius: 0;
    padding: 0;
    height: 22px;
    border-color: transparent;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none; }
    .app-button--flat:hover, .app-button--flat:focus, .app-button--flat:active {
      border-color: transparent;
      -webkit-box-shadow: none;
              box-shadow: none; }
    .app-button--flat.app-button--danger {
      color: #F04764 !important;
      background: transparent; }
  .app-button--grouped {
    text-align: center;
    line-height: 14px;
    font-size: 14px;
    padding: 11px 20px;
    display: block;
    border-radius: 0;
    margin: 0;
    width: 110px;
    color: #3da4f3 !important; }
    .app-button--grouped:disabled {
      background: #dce2ea;
      color: #353e4c !important;
      cursor: default; }
      .app-button--grouped:disabled.tab-active {
        background-color: var(--base-color-primary-lighten) !important;
        opacity: 1;
        color: #FFFFFF !important; }
    .app-button--grouped, .app-button--grouped:hover, .app-button--grouped:active, .app-button--grouped:focus {
      color: #3da4f3;
      border: transparent;
      border-right: inherit; }
      .app-button--grouped:last-child, .app-button--grouped:hover:last-child, .app-button--grouped:active:last-child, .app-button--grouped:focus:last-child {
        border-right: transparent; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

auth-panel {
  width: 100%; }
  auth-panel iframe {
    width: 100%; }
  auth-panel .video-holder {
    width: 100%;
    position: relative; }
  auth-panel .text {
    width: 100%;
    height: 700px;
    position: absolute;
    top: 0px;
    left: 0px;
    color: #FFFFFF;
    text-align: center;
    background-color: #435b7d;
    padding: 35px; }
    auth-panel .text h2 {
      color: #FFFFFF;
      font-weight: bold;
      font-size: 42px;
      margin-top: 50px; }
    auth-panel .text p {
      color: #FFFFFF;
      margin-top: 25px;
      margin-bottom: 25px;
      font-size: 18px;
      font-weight: 600; }
  auth-panel .video-overlay {
    padding: 80px;
    z-index: 10;
    background-image: url(assets/background_video.png?);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
    auth-panel .video-overlay h1 {
      margin-top: 0px; }
    auth-panel .video-overlay a.play-button {
      width: 90px;
      height: 90px;
      background-image: url(assets/video-play.png?);
      background-size: cover;
      cursor: pointer;
      display: none; }
  auth-panel .carousel-control {
    display: none; }
  auth-panel .slider {
    padding: 50px;
    background-repeat: no-repeat;
    background-image: url(assets/background_slider.png?);
    background-size: cover;
    background-position: center; }
    auth-panel .slider h2 {
      border-bottom: 1px solid #FFFFFF;
      padding-bottom: 15px;
      margin-bottom: 15px; }
  auth-panel .carousel-indicators {
    bottom: -50px; }
    auth-panel .carousel-indicators li {
      width: 21px;
      height: 21px;
      border: 5px solid #62B9F1;
      margin: 0px;
      margin-left: 5px;
      margin-right: 5px;
      background-color: #62B9F1; }
      auth-panel .carousel-indicators li.active {
        width: 21px;
        height: 21px;
        border: 5px solid #FFFFFF;
        margin-left: 5px;
        margin-right: 5px; }
  auth-panel .image-holder h2 {
    margin-top: 15px; }
  auth-panel .image-holder .row {
    margin-top: 35px; }
  auth-panel .image-holder .image-overlay {
    background-image: url(assets/imagebg.jpg?);
    background-size: cover; }
  auth-panel .image-holder .image {
    width: 250px;
    height: 150px;
    border-radius: 15px;
    display: inline-block;
    background-size: cover; }
    auth-panel .image-holder .image.image-task-manager {
      background-image: url(assets/task-manager.png?); }
    auth-panel .image-holder .image.image-flagging {
      background-image: url(assets/flagging.png?); }
    auth-panel .image-holder .image.image-bulk-actions {
      background-image: url(assets/bulk-actions.png?); }
    auth-panel .image-holder .image.image-invites {
      background-image: url(assets/invites.png?); }
  auth-panel .image-holder .image-info {
    display: inline-block;
    text-align: left; }
    auth-panel .image-holder .image-info .image-title {
      font-size: 20px;
      margin-bottom: 15px;
      margin-top: 20px; }
  auth-panel a {
    width: 100%;
    display: none;
    padding: 17px;
    background-color: #63b7f8;
    color: #FFFFFF;
    position: absolute;
    bottom: 0px;
    left: 0px;
    font-size: 17px;
    text-align: center; }
    auth-panel a:hover {
      color: #FFFFFF;
      text-decoration: none; }
  auth-panel .decoration-holder .image-overlay {
    background-image: url(assets/registration.png?);
    background-size: cover;
    background-position-x: center; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

auth-footer {
  color: #353E4E;
  font-family: SourceSansPro;
  margin-top: 60px; }
  auth-footer footer {
    color: #353E4E; }
    auth-footer footer .footer-content {
      padding-top: 40px; }
      auth-footer footer .footer-content .social {
        float: left;
        margin-top: -2px; }
        auth-footer footer .footer-content .social a {
          width: 40px;
          height: 40px;
          text-align: center;
          line-height: 40px;
          padding: 0px;
          font-size: 21px;
          background-color: #63b7f8; }
  auth-footer .footer-image {
    width: 300px;
    height: 70px;
    background: url(assets/logo_footer.png?) center no-repeat;
    background-size: contain;
    margin-top: -15px;
    margin-bottom: 50px; }
  auth-footer .image {
    height: 35px; }
  auth-footer .text {
    margin-top: 2px; }
  auth-footer .tagline {
    font-size: 20px;
    text-align: left;
    float: left;
    margin-right: 17px; }
  auth-footer .pages {
    text-align: left;
    margin-top: 2px; }
    auth-footer .pages a {
      font-size: 14px; }
.registration__account-brand {
  margin: 25px auto;
  width: 250px; }

.registration__powered {
  margin: 20px auto;
  text-align: center;
  margin-bottom: 190px; }

.registration__tmr-brand-powered {
  display: inline-block;
  background: url(assets/Logo.svg?) center no-repeat;
  background-size: contain;
  height: 30px;
  width: 131px;
  position: relative;
  top: 10px;
  margin-left: 5px; }

.registration__error {
  position: relative;
  top: -5px;
  margin-bottom: 10px;
  text-align: justify;
  color: #F04864; }

.co-branded-logos {
  margin: 60px auto;
  width: 600px; }
  .co-branded-logos > div {
    display: inline-block;
    overflow: hidden;
    width: 45%; }
    .co-branded-logos > div.co-branded-logos__tmr {
      background: url(assets/Logo.svg?) center no-repeat;
      background-size: contain;
      float: right;
      height: 135px; }
    .co-branded-logos > div img {
      width: 100%; }
.login__co-branded-logos {
  padding: 30px;
  width: 100%; }

.login__account-brand-full {
  width: 100%; }

.login__account-logo {
  width: 100%; }

.login__powered {
  text-align: center; }

.login__tmr-brand {
  width: 48%;
  float: right;
  background: url(assets/Logo.svg?) center no-repeat;
  background-size: contain;
  height: 44px;
  margin: 25px 0; }
  .login__tmr-brand-powered {
    display: inline-block;
    background: url(assets/Logo.svg?) center no-repeat;
    background-size: contain;
    height: 30px;
    width: 131px;
    position: relative;
    top: 10px;
    margin-left: 5px; }
.activity-logs-filter input,
.activity-logs-filter .tmr-search-dropdown {
  border-color: var(--base-color-border); }

.activity-logs-filter.global-search-area {
  padding: 15px 30px 20px; }

.activity-logs-filter__left {
  width: 85% !important; }
  .activity-logs-filter__left [class*='col-xs-'] {
    padding-left: 5px;
    padding-right: 5px; }

.activity-logs-filter__right {
  width: 15% !important;
  height: 124px; }

.activity-logs-filter__buttons {
  position: absolute;
  bottom: 2px;
  right: 5px; }

.ie10 .activity-logs-filter__buttons {
  bottom: -1px; }
.activity-logs-table__activity {
  max-width: 400px;
  word-wrap: break-word; }

.activity-logs-table__account {
  max-width: 150px;
  word-wrap: break-word; }

.activity-logs-table__user {
  max-width: 200px;
  word-wrap: break-word; }

.activity-logs-table__date {
  min-width: 150px; }
.activity-type-filter-field .tmr-search-dropdown__item {
  padding-left: 20px; }

.activity-type-filter-field .tmr-search-dropdown__selected-items .tmr-search-dropdown__item {
  padding: 5px; }
.export-button.btn {
  margin-top: 0; }
account-filters .filter-input {
  padding: 0 5px; }

.account-limits {
  color: var(--base-color-text);
  font-size: 1.1em;
  margin-bottom: 30px; }
  .account-limits .tmr-subtitle-area {
    margin-top: 0; }

.merge-button {
  font-size: 17px; }
.account-member-widget__full-name {
  margin-left: 7px; }

.account-member-widget .key {
  width: 15px;
  display: inline-block; }
  .account-member-widget .key .has-aaa {
    color: var(--base-color-purple);
    display: inline-block;
    margin-left: 5px;
    font-size: 14px; }

.account-member-widget a.invited:hover {
  text-decoration: none; }

.account-member-widget span.invited {
  color: #9d9d9e; }
.account-modules {
  /* Variables */
  margin-bottom: 15px; }
  .account-modules__container {
    border: 1px solid var(--base-color-text-lighten3);
    border-radius: 4px;
    color: var(--base-color-text);
    line-height: 26px;
    padding: 11px 12px; }
    .account-modules__container.module-access-disabled {
      background-color: var(--base-color-text-lighten4); }
    .account-modules__container .icon-lock {
      display: inline-block;
      font-size: 20px; }
    .account-modules__container .module-items-count {
      font-size: 16px;
      font-weight: 300;
      margin-left: 3px; }
    .account-modules__container .module-name {
      font-size: 18px;
      font-weight: 500; }
  .account-modules__upgrade-link {
    font-size: 18px;
    padding-top: 20px; }
    .account-modules__upgrade-link a {
      color: currentColor;
      font-weight: 400;
      margin-left: 5px;
      text-decoration: underline; }
account-manager-nav {
  position: relative;
  top: -35px; }
  account-manager-nav#account-manager-nav nav button {
    width: 150px; }
  account-manager-nav + ui-view {
    position: relative;
    top: -35px; }

.with-breadcrumbs account-manager-nav + ui-view {
  top: 0px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

accounts-dashboard .support-accounts .data-row > div {
  width: 18.75%; }
  accounts-dashboard .support-accounts .data-row > div.accounts {
    width: 25%; }

accounts-dashboard .dashboard-widget {
  height: auto; }

accounts-dashboard .accounts {
  height: 125px;
  border-right: solid 1px #979797; }

accounts-dashboard .accounts-number {
  font-size: 105px;
  font-weight: 300;
  line-height: 125px;
  color: var(--base-color-secondary);
  text-align: center; }

accounts-dashboard .subscription {
  text-align: center;
  border-right: solid 1px #979797;
  display: block;
  padding-top: 13px;
  padding-bottom: 13px; }
  accounts-dashboard .subscription.professional {
    border-right: none; }
  accounts-dashboard .subscription .subscription-name {
    font-size: 20px;
    font-weight: bold;
    color: #3B3E53; }
    accounts-dashboard .subscription .subscription-name span + span {
      font-weight: normal; }
  accounts-dashboard .subscription .subscription-accounts {
    font-size: 50px;
    font-weight: 600;
    color: var(--base-color-secondary); }

accounts-dashboard .documents-widget-wrapper {
  margin-top: 30px;
  border-top: 1px solid #979797; }
  accounts-dashboard .documents-widget-wrapper .document-statuses {
    margin-top: 30px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.account-manager-table .muted-text {
  color: #c4c5cc; }

.account-manager-table app-popover-root app-inline-menu app-popover-button i {
  margin-right: 2px; }

.account-manager-table app-popover-root app-inline-menu app-popover-button i.icon-tag-brand:before {
  width: 15px;
  height: 15px; }

.account-manager-table .ng-table-header {
  white-space: nowrap; }

.account-manager-table__cog-icon {
  display: inline-block;
  float: none;
  position: relative;
  top: -2px; }

.account-manager-table .app-account-row__checkbox-cell {
  width: 25px;
  text-align: center;
  cursor: default; }

.account-manager-table.table.table-striped > tbody > tr > td {
  line-height: 14px;
  vertical-align: middle;
  padding: 5px; }
  .account-manager-table.table.table-striped > tbody > tr > td.login-date {
    min-width: 115px; }
    .account-manager-table.table.table-striped > tbody > tr > td.login-date .icon {
      color: #F04764;
      position: relative;
      left: 5px; }

.account-manager-table .status-title {
  cursor: pointer; }
  .account-manager-table .status-title .sort-indicator {
    text-decoration: underline;
    cursor: pointer; }
  .account-manager-table .status-title .status-icon {
    background-color: #FFFFFF;
    padding: 2px;
    border-radius: 2px;
    margin-left: 5px;
    display: inline-block;
    top: 2px;
    position: relative; }
    .account-manager-table .status-title .status-icon.icon-file-empty2 {
      color: #949cab; }

.account-manager-table .users-title {
  cursor: pointer; }
  .account-manager-table .users-title .sort-indicator {
    text-decoration: underline;
    cursor: pointer; }
  .account-manager-table .users-title .users-icon {
    background-color: #FFFFFF;
    padding: 2px;
    border-radius: 2px;
    margin-left: 5px;
    display: inline-block;
    top: 2px;
    position: relative; }
    .account-manager-table .users-title .users-icon.icon-users-registered {
      color: green; }
    .account-manager-table .users-title .users-icon.icon-users-pending {
      color: orange; }

.account-manager-table .account-users > .users-holder {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  opacity: 1;
  text-align: center; }
  .account-manager-table .account-users > .users-holder.yellow {
    color: orange; }
  .account-manager-table .account-users > .users-holder.green {
    color: green; }
  .account-manager-table .account-users > .users-holder .users {
    margin-top: 1px; }

.account-manager-table .tooltip-link {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  text-align: right; }

.account-manager-table .tooltip.tooltip-large .tooltip-section {
  overflow: hidden; }

.account-manager-table .document-status {
  width: 130px; }
  .account-manager-table .document-status > div {
    width: 22px;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    opacity: 1;
    text-align: center; }
    .account-manager-table .document-status > div.empty {
      opacity: 0.2; }
    .account-manager-table .document-status > div.placeholders {
      color: #949cab;
      margin-left: 0px; }
    .account-manager-table .document-status > div.red {
      color: red; }
    .account-manager-table .document-status > div.yellow {
      color: orange; }
    .account-manager-table .document-status > div.green {
      color: green;
      margin-right: 0px; }
    .account-manager-table .document-status > div .documents {
      margin-top: 1px; }

.account-manager-table .account-suspended {
  font-size: 20px;
  margin-bottom: 7px;
  display: inline-block; }

.account-manager-table.table-striped td {
  background-color: #FFFFFF !important; }

.account-manager-table.table-striped tr.suspended td {
  background-color: var(--base-color-text-lighten3) !important; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.brand-login-checkbox label {
  color: #353e4c;
  margin-bottom: 0; }
  .brand-login-checkbox label.brand-login-checkbox__input {
    font-weight: 500; }

.brand-login-checkbox__link {
  margin-top: 15px; }
  .brand-login-checkbox__link pre {
    font-size: 16px; }

.brand-login-checkbox a.clipboard {
  cursor: pointer; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.edit-account__template-selector {
  margin-bottom: 14px; }

.edit-account__error {
  color: #F04864;
  margin-top: 7px; }

.edit-account .toggle-holder {
  margin-left: -50px; }

.edit-account .optional-fields {
  background-color: #F1F4F9;
  padding: 15px;
  border: 1px solid var(--base-color-secondary-lighten2);
  border-radius: 4px;
  margin-top: 5px;
  margin-bottom: 15px; }
  .edit-account .optional-fields .form-small-box textarea {
    margin-bottom: -15px; }

.edit-account .uprn-error {
  margin-top: -10px; }

.edit-account .choosen-templates-description {
  margin-top: 33px; }

.app .pac-container {
  width: 675px !important; }
.managed-account-manager {
  font-weight: 500; }
  .managed-account-manager__label {
    margin-bottom: 10px; }
.tmr-header-account .upgrade-now-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  margin-left: 9px;
  -webkit-transition: all ease .2s;
  transition: all ease .2s; }
  .tmr-header-account .upgrade-now-link:hover, .tmr-header-account .upgrade-now-link:focus, .tmr-header-account .upgrade-now-link:active {
    color: #fff; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

app-account-switcher {
  display: block;
  position: relative; }

.app-account-switcher__empty {
  color: #4a576a;
  padding: 10px; }

.app-account-switcher {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  background: transparent;
  border: none;
  outline: none;
  padding: 18px 10px;
  font-size: 18px;
  line-height: 18px;
  -webkit-transition: opacity .2s ease-in;
  transition: opacity .2s ease-in; }
  .app-account-switcher:hover {
    text-decoration: underline; }
    .app-account-switcher:hover > .app-account-switcher__arrows {
      opacity: 1; }
  .app-account-switcher__name {
    margin-left: 10px;
    white-space: nowrap; }
  .app-account-switcher__arrows {
    height: 14px;
    opacity: .8; }
  .app-account-switcher__list {
    max-height: 500px;
    overflow: auto; }
  .app-account-switcher__labels {
    float: right; }
  .app-account-switcher__item button {
    width: 100%;
    display: block; }
  .app-account-switcher__item.active button {
    background-color: var(--base-color-primary-lighten);
    color: #FFFFFF; }
  .app-account-switcher__item-name {
    display: inline-block;
    white-space: nowrap; }
  .app-account-switcher--disabled {
    pointer-events: none; }
  .app-account-switcher__input {
    display: block;
    height: 42px;
    font-size: 16px;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: var(--base-color-text);
    padding: 6px 12px;
    line-height: 1.42857;
    background-color: #fff;
    background-image: none;
    border: 1px solid var(--base-color-border);
    border-radius: var(--base-spacing-input-border-radius);
    -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    margin-bottom: 10px;
    width: 96%;
    margin-top: 10px;
    margin-left: 6px; }

.search-input-holder {
  position: relative;
  min-width: 350px; }
  .search-input-holder input {
    padding-right: 35px; }
  .search-input-holder .search-input-reset {
    position: absolute;
    top: 50%;
    right: 17px;
    cursor: pointer;
    font-size: 17px;
    margin-top: -10px;
    color: #949eab; }

.app-account-switcher__list {
  max-height: 500px;
  overflow: auto; }

.account-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #4e5560; }
  .account-group__link {
    color: #4e5560;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
    text-decoration: underline;
    text-align: left; }

.ie10 app-account-switcher {
  display: inline-block; }

.ie10 .app-account-switcher {
  display: inline-block; }

.app-account-switcher__input {
  margin-bottom: 0; }

.app-account-switcher__empty-list {
  padding: 0 10px; }

.mfa-icon {
  display: inline-block;
  width: 25px;
  text-align: left; }
  .mfa-icon .icon-mfa {
    color: #F44963;
    padding-left: 3px;
    padding-right: 3px;
    position: relative;
    top: 1px; }
my-account-user-list .user-list__edit {
  position: relative;
  float: right; }

my-account-user-list .groups-title {
  text-align: center !important; }

my-account-user-list .user-groups {
  text-align: center; }
  my-account-user-list .user-groups .groups {
    display: inline-block;
    border-bottom: 1px dotted;
    padding-bottom: 0px;
    line-height: 15px; }
    my-account-user-list .user-groups .groups.empty {
      color: #aeb2b7;
      border: none; }

my-account-user-list .mfa-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

my-account-user-list .mfa-info-icon-container {
  display: inline-block;
  position: relative;
  margin-left: 5px;
  width: 12px;
  height: 12px;
  top: 0px;
  background-color: #FFFFFF;
  border-radius: 50%; }
  my-account-user-list .mfa-info-icon-container .mfa-info-icon {
    display: inline-block;
    position: absolute;
    top: -2px;
    left: -1px;
    z-index: 1; }

my-account-user-list .table > tbody > tr > td {
  min-height: 40px;
  padding-top: 7px;
  padding-bottom: 7px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

template-selector {
  position: relative;
  display: block;
  z-index: 11; }
  template-selector interactive-tooltip document-template {
    display: none; }
  template-selector .input-holder {
    position: relative; }
    template-selector .input-holder input {
      height: 35px;
      padding-left: 10px;
      padding-right: 35px;
      border-radius: var(--base-spacing-input-border-radius);
      border: 1px solid var(--base-color-secondary-lighten2); }
      template-selector .input-holder input:focus {
        border: 1px solid #3da4f3; }
    template-selector .input-holder div {
      font-size: 15px;
      position: absolute;
      top: 0px;
      right: 0px;
      color: #353e4c;
      padding: 10px; }
      template-selector .input-holder div.input-clear {
        cursor: pointer; }
    template-selector .input-holder .input-message {
      font-size: 14px;
      position: absolute;
      top: 0px;
      right: 35px;
      padding: 7px;
      padding-right: 0px; }
    template-selector .input-holder a.input-message {
      cursor: pointer; }
    template-selector .input-holder + .input-message {
      margin-top: 5px;
      padding-left: 10px;
      font-size: 14px; }
    template-selector .input-holder .input-template + .input-clear {
      padding: 5px;
      top: 5px;
      border-left: 1px solid var(--base-color-secondary-lighten2); }
  template-selector .document-template-multiselect {
    position: relative;
    outline: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 36px;
    font-size: 16px;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: var(--base-color-text);
    padding: 3px;
    padding-left: 0;
    line-height: 1.42857;
    background-color: #fff;
    background-image: none;
    border: 1px solid var(--base-color-secondary-lighten2);
    border-radius: var(--base-spacing-input-border-radius); }
    template-selector .document-template-multiselect:hover, template-selector .document-template-multiselect:active, template-selector .document-template-multiselect:focus {
      border: 1px solid #63B7F8; }
    template-selector .document-template-multiselect:after {
      content: "\E93D";
      font-family: 'Linearicons';
      position: absolute;
      -webkit-transform: translate(0, -50%);
              transform: translate(0, -50%);
      top: 50%;
      right: 4px;
      pointer-events: none;
      color: var(--base-color-primary);
      font-size: 13px; }
    template-selector .document-template-multiselect.global {
      background-color: var(--base-color-text-lighten4);
      border-color: #b4bdcb;
      color: #353e4c;
      cursor: not-allowed; }
      template-selector .document-template-multiselect.global:after {
        display: none; }
      template-selector .document-template-multiselect.global .document-template-multiselect__placeholder {
        display: none; }
      template-selector .document-template-multiselect.global .document-template-multiselect__selected {
        background: var(--base-color-text-lighten4);
        border-color: #b4bdcb;
        color: #353e4c; }
    template-selector .document-template-multiselect__placeholder {
      margin-left: 9px;
      font-size: 14px;
      color: var(--base-color-text); }
    template-selector .document-template-multiselect__category {
      border: none;
      background: transparent;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      outline: none;
      padding: 5px;
      width: 100%;
      text-align: left;
      font-weight: bold; }
      template-selector .document-template-multiselect__category:hover {
        background: #e7f4fe; }
      template-selector .document-template-multiselect__category.inactive {
        opacity: .4; }
    template-selector .document-template-multiselect__item {
      border: none;
      background: transparent;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      outline: none;
      padding: 5px;
      width: 100%;
      text-align: left; }
      template-selector .document-template-multiselect__item:hover {
        background: #e7f4fe; }
      template-selector .document-template-multiselect__item.inactive {
        opacity: .4; }
    template-selector .document-template-multiselect__checkbox {
      margin-top: 0 !important;
      margin-right: 5px !important; }
    template-selector .document-template-multiselect__selected {
      position: relative;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 4px;
      border: 1px #a6d5fa solid;
      border-radius: var(--base-spacing-input-border-radius);
      margin-left: 5px;
      background: #EEF7FE;
      z-index: 0;
      line-height: normal;
      font-size: 14px;
      color: var(--base-color-text);
      white-space: nowrap; }
      template-selector .document-template-multiselect__selected--global {
        background: #f4f4f4;
        border-color: var(--base-color-border);
        color: #7b8699; }
    template-selector .document-template-multiselect__more-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
    template-selector .document-template-multiselect__close-button {
      height: .8em;
      padding: 0 2px;
      margin-top: -4px; }
    template-selector .document-template-multiselect__globe {
      margin-right: 3px; }
  template-selector .template-dropdown {
    width: 100%;
    max-height: 250px;
    background: #FFFFFF;
    overflow: auto;
    position: absolute;
    border: 1px solid var(--base-color-secondary-lighten2);
    border-radius: var(--base-spacing-input-border-radius);
    padding: 5px;
    margin-top: 2px; }
    template-selector .template-dropdown input[type="text"] {
      width: 100%; }
  template-selector .template-action {
    cursor: pointer; }

.ie document-template-multiselect .document-template-multiselect {
  display: block;
  text-align: left; }
  .ie document-template-multiselect .document-template-multiselect__selected {
    display: inline-block; }
    .ie document-template-multiselect .document-template-multiselect__selected * {
      display: inline-block; }
  .ie document-template-multiselect .document-template-multiselect__more-list {
    display: block;
    text-align: left; }
  .ie document-template-multiselect .document-template-multiselect__close-button, .ie document-template-multiselect .document-template-multiselect__globe {
    line-height: .8em;
    vertical-align: middle; }
  .ie document-template-multiselect .document-template-multiselect__category {
    display: block; }
  .ie document-template-multiselect .document-template-multiselect__item {
    display: block; }
    .ie document-template-multiselect .document-template-multiselect__item * {
      display: inline-block; }
user-access-rights .user-access-rights__edit {
  position: relative;
  float: right; }

user-access-rights .add-document-select {
  width: 0px;
  height: 0px;
  position: absolute;
  visibility: hidden; }

.allow-documents {
  margin-bottom: 15px; }
  .allow-documents label span {
    display: inline-block;
    margin-left: 3px;
    margin-right: 7px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

users-dashboard .users {
  border-bottom: solid 1px #979797;
  padding-bottom: 21px;
  margin-bottom: 10px; }
  users-dashboard .users > div {
    width: 33.33333%; }
  users-dashboard .users .icon-user {
    font-size: 50px;
    color: #5599DF;
    float: left;
    margin-top: 13px; }
  users-dashboard .users .user-number {
    font-size: 40px;
    color: var(--base-color-secondary);
    text-align: center;
    float: left;
    font-weight: 400; }
    users-dashboard .users .user-number div {
      font-size: 13px;
      font-weight: bold;
      color: #333e4e;
      margin-top: -10px; }

users-dashboard .dashboard-widget .widget-header .header-button.btn {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  top: -7px; }

users-dashboard .dashboard-widget .widget-header button.btn-add {
  position: relative;
  top: -7px; }

users-dashboard .activity .active-users .number {
  font-size: 30px;
  color: var(--base-color-secondary);
  display: inline-block;
  padding-right: 7px; }

users-dashboard .activity .active-users .text {
  font-size: 14px;
  color: #333e4e;
  position: relative;
  top: -3px; }
.add-document-button .btn.disabled {
  cursor: pointer; }

.add-document-button .tooltip-inner {
  max-width: 166px; }
  .add-document-button .tooltip-inner .add-document-tooltip {
    width: 76px; }
  .add-document-button .tooltip-inner .add-document-upgrade-tooltip {
    width: 150px; }
.bulk-remove-access-modal__list {
  font-weight: 500;
  margin: 15px 0; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

document-manager-batch-actions .document-manager-batch-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  width: 100%;
  padding: 24px 60px;
  -webkit-box-shadow: 0 -0.5px 1.5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 -0.5px 1.5px 0 rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  document-manager-batch-actions .document-manager-batch-actions__counter {
    font-size: 18px;
    color: var(--base-color-text);
    margin-right: 15px; }
  document-manager-batch-actions .document-manager-batch-actions__icon {
    display: inline-block;
    color: #3da4f3;
    margin-right: 10px;
    font-size: 15px; }
    document-manager-batch-actions .document-manager-batch-actions__icon--svg {
      height: 14px;
      width: auto; }
  document-manager-batch-actions .document-manager-batch-actions__button {
    margin-right: 15px;
    cursor: pointer; }
    document-manager-batch-actions .document-manager-batch-actions__button:last-of-type {
      margin: 0; }
    document-manager-batch-actions .document-manager-batch-actions__button:hover .document-manager-batch-actions__icon, document-manager-batch-actions .document-manager-batch-actions__button:active .document-manager-batch-actions__icon, document-manager-batch-actions .document-manager-batch-actions__button:visited .document-manager-batch-actions__icon, document-manager-batch-actions .document-manager-batch-actions__button:focus .document-manager-batch-actions__icon {
      color: #3da4f3; }
    document-manager-batch-actions .document-manager-batch-actions__button--red {
      color: #F04764 !important; }
      document-manager-batch-actions .document-manager-batch-actions__button--red .document-manager-batch-actions__icon {
        color: #F04764 !important; }

.ie document-manager-batch-actions .document-manager-batch-actions {
  display: block;
  text-align: right; }
  .ie document-manager-batch-actions .document-manager-batch-actions__counter {
    display: inline-block; }
  .ie document-manager-batch-actions .document-manager-batch-actions__button {
    display: inline-block; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.document-manager-filters .btn-small {
  font-weight: 400;
  margin-top: 20px; }

.document-manager-filters__form [class^="col-"] {
  padding: 0 5px; }

.document-manager-filters__form [class^="col-"]:first-child {
  padding-left: 15px; }

.document-manager-filters__form [class^="col-"]:last-child {
  padding-right: 15px; }

.document-manager-filters__filter {
  margin: 0; }
  .document-manager-filters__filter .tmr-dropdown {
    margin-bottom: 0; }
    .document-manager-filters__filter .tmr-dropdown .tmr-dropdown__match-icon {
      margin-right: 5px; }
    .document-manager-filters__filter .tmr-dropdown .tmr-dropdown-choices {
      max-height: 260px; }
      .document-manager-filters__filter .tmr-dropdown .tmr-dropdown-choices .ui-select-choices-row-inner {
        padding: 3px 10px; }
        .document-manager-filters__filter .tmr-dropdown .tmr-dropdown-choices .ui-select-choices-row-inner .tmr-dropdown__icon {
          margin-right: 5px; }
  .document-manager-filters__filter .ui-select-match .btn {
    -webkit-transition: -webkit-box-shadow 0.5s;
    transition: -webkit-box-shadow 0.5s;
    transition: box-shadow 0.5s;
    transition: box-shadow 0.5s, -webkit-box-shadow 0.5s; }
  .document-manager-filters__filter .highlight .ui-select-match .btn {
    -webkit-box-shadow: 0px 0px 7px 3px #3da4f3;
            box-shadow: 0px 0px 7px 3px #3da4f3; }

.document-manager-filters__button {
  font-weight: 400 !important;
  margin-top: 20px !important; }
  .document-manager-filters__button:first-child {
    margin-right: 5px; }

.document-manager-filters__label {
  color: #353e4c;
  margin-bottom: 0; }

.document-manager-filters__multiselect .multiple-select-box {
  padding: 3px;
  padding-right: 20px;
  white-space: nowrap; }
  .document-manager-filters__multiselect .multiple-select-box .multiple-select-box-area {
    overflow: hidden; }

.document-manager-filters__multiselect .multiple-select-dropdown {
  height: auto;
  max-height: 300px;
  max-width: 250px;
  min-width: 175px;
  overflow: auto;
  right: auto; }
  .document-manager-filters__multiselect .multiple-select-dropdown .select-box-checkboxes.tags-checkbox-container {
    max-width: 250px;
    padding-top: 5px;
    position: static; }
  .document-manager-filters__multiselect .multiple-select-dropdown .full-dropdown {
    white-space: nowrap; }
  .document-manager-filters__multiselect .multiple-select-dropdown .select-box-category {
    margin-bottom: 0; }
  .document-manager-filters__multiselect .multiple-select-dropdown .select-box-category-group:last-child hr.select-box-hr {
    display: none; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

document-manager-header .document-manager-header {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #E5E6E8; }
  document-manager-header .document-manager-header__title-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  document-manager-header .document-manager-header__title {
    color: #353e4c;
    font-size: 30px;
    font-weight: 500;
    margin: 0; }
  document-manager-header .document-manager-header__counter {
    color: #353e4c;
    font-size: 20px;
    font-weight: normal;
    margin-left: 10px;
    margin-top: 3px; }

document-manager-header .document-info {
  background-color: #E8F3FB;
  padding: 15px;
  font-size: 16px; }
  document-manager-header .document-info .documents {
    float: left;
    margin-left: 10px; }
    document-manager-header .document-info .documents .global {
      font-size: 14px;
      font-weight: bold;
      position: relative;
      bottom: 1px; }
    document-manager-header .document-info .documents .global-icon {
      width: 14px;
      height: 14px;
      background: url(assets/globe.svg?) no-repeat;
      background-size: 100%;
      display: inline-block;
      margin-left: 5px;
      cursor: pointer;
      position: relative;
      top: 2px; }
  document-manager-header .document-info .quota {
    float: right;
    text-align: right;
    margin-right: 10px; }
    document-manager-header .document-info .quota .icon {
      display: inline-block;
      margin-right: 5px; }
    document-manager-header .document-info .quota > span {
      display: inline-block;
      margin-left: 15px; }

.ie document-manager-header .document-manager-header {
  display: block;
  position: relative; }
  .ie document-manager-header .document-manager-header__title-area {
    display: block; }
    .ie document-manager-header .document-manager-header__title-area > * {
      display: inline-block; }

.ie document-manager-header add-document-button {
  position: absolute;
  top: 9px;
  right: 20px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

document-manager-table table.document-manager-table app-popover .app-popover {
  padding: 0px;
  overflow: hidden; }

document-manager-table table.document-manager-table > tbody > tr.document-row > td {
  height: 41px;
  background-color: #FFFFFF; }

document-manager-table table.document-manager-table > tbody > tr.document-row.unpermissioned {
  cursor: default; }
  document-manager-table table.document-manager-table > tbody > tr.document-row.unpermissioned > td {
    color: #353e4c;
    background-color: #f0f0f0; }
    document-manager-table table.document-manager-table > tbody > tr.document-row.unpermissioned > td document-name.has-file {
      font-weight: 600; }
      document-manager-table table.document-manager-table > tbody > tr.document-row.unpermissioned > td document-name.has-file.unpermissioned span:before {
        background: url(assets/globe_gray.svg?) no-repeat;
        background-size: cover; }
  document-manager-table table.document-manager-table > tbody > tr.document-row.unpermissioned .unpermissioned-holder {
    position: relative; }
    document-manager-table table.document-manager-table > tbody > tr.document-row.unpermissioned .unpermissioned-holder .unpermissioned-tooltip {
      width: 210px;
      background-color: #353e4c;
      opacity: 0.9;
      color: #FFFFFF;
      display: none;
      position: absolute;
      border-radius: 10px;
      -webkit-box-shadow: 0 1px 2px 0 rgba(47, 50, 55, 0.39);
              box-shadow: 0 1px 2px 0 rgba(47, 50, 55, 0.39);
      bottom: 5px;
      padding: 10px;
      font-size: 12px; }
      document-manager-table table.document-manager-table > tbody > tr.document-row.unpermissioned .unpermissioned-holder .unpermissioned-tooltip .unpermissioned-arrow {
        width: 0px;
        height: 0px;
        position: absolute;
        bottom: -5px;
        left: 50%;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 5px 0;
        border-top-color: #353e4c;
        margin-left: -5px; }

document-manager-table .document-manager-table {
  margin-bottom: 0;
  line-height: 20px;
  max-width: 100%; }
  document-manager-table .document-manager-table th {
    text-decoration: none;
    white-space: nowrap;
    word-break: keep-all;
    font-weight: 500; }
    document-manager-table .document-manager-table th.sortable {
      text-decoration: underline; }
      document-manager-table .document-manager-table th.sortable .sort-indicator {
        padding-right: 0;
        position: inherit; }
    document-manager-table .document-manager-table th.centered {
      text-align: center; }

document-manager-table .app-document-row--clickable {
  cursor: pointer; }
  document-manager-table .app-document-row--clickable:hover td {
    background: #ebf6ff !important; }
  document-manager-table .app-document-row--clickable:hover .app-document-row__edit-link {
    opacity: 1; }

document-manager-table .app-document-row__valid-from, document-manager-table .app-document-row__expiry-date {
  min-width: 100px; }
  document-manager-table .app-document-row__valid-from.invalid, document-manager-table .app-document-row__valid-from.expired, document-manager-table .app-document-row__expiry-date.invalid, document-manager-table .app-document-row__expiry-date.expired {
    color: #FF0000; }

document-manager-table .app-document-row__name {
  width: 470px;
  max-width: 470px;
  word-break: keep-all; }
  document-manager-table .app-document-row__name .tooltip-inner {
    max-width: 320px;
    overflow: hidden; }
  document-manager-table .app-document-row__name .tooltip-arrow {
    left: 10px; }

document-manager-table .app-document-row__reference {
  white-space: nowrap;
  word-break: keep-all; }

document-manager-table .app-document-row__status {
  text-align: left;
  width: 50px;
  max-width: 50px; }
  document-manager-table .app-document-row__status .tooltip-inner:first-letter {
    text-transform: capitalize; }

document-manager-table .app-document-row__icon,
document-manager-table .app-document-row .document-icon {
  font-size: 20px;
  vertical-align: middle;
  position: relative;
  top: -3px; }
  document-manager-table .app-document-row__icon.icon-file-empty2,
  document-manager-table .app-document-row .document-icon.icon-file-empty2 {
    color: #949cab; }

document-manager-table .app-document-row__owners {
  text-align: left;
  width: 100px;
  white-space: nowrap; }
  document-manager-table .app-document-row__owners > * {
    display: inline-block;
    cursor: default; }
  document-manager-table .app-document-row__owners div > * {
    display: inline-block; }
  document-manager-table .app-document-row__owners .tooltip-link {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    text-align: right;
    cursor: pointer;
    display: block; }

document-manager-table .app-document-row__owners-count {
  border-bottom: 1px dotted;
  line-height: 15px;
  margin-left: 7px; }

document-manager-table .app-document-row__valid-date {
  width: 105px;
  max-width: 105px; }

document-manager-table .app-document-row__expiry-date {
  width: 95px;
  max-width: 95px; }

document-manager-table .app-document-row__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%; }

document-manager-table .app-document-row__tags {
  text-align: center;
  width: 75px; }
  document-manager-table .app-document-row__tags .table-tags {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

document-manager-table .app-document-row__accounts {
  text-align: center; }

document-manager-table .app-document-row__edit-link {
  opacity: 0;
  color: #3da4f3; }

document-manager-table .app-document-row__checkbox-cell {
  width: 60px;
  text-align: left;
  cursor: default; }
  document-manager-table .app-document-row__checkbox-cell .flagged {
    font-size: 17px;
    position: relative;
    left: 10px;
    top: 2px; }

document-manager-table .app-document-row.dragover:not(.unpermissioned) td {
  background: #faf7e4 !important; }
  document-manager-table .app-document-row.dragover:not(.unpermissioned) td .document-name {
    font-size: 18px; }

document-manager-table .app-document-row.undroppable td {
  background: #f0f0f0 !important; }

document-manager-table .document-manager-table .row-readonly {
  display: none; }

document-manager-table .document-manager-table.dragover .app-document-row.readonly td {
  background: #f0f0f0 !important; }

document-manager-table .document-manager-table.dragover .app-document-row.readonly td * {
  opacity: 0.15; }

document-manager-table .document-manager-table.dragover .app-document-row.readonly td.app-document-row__name * {
  opacity: 1;
  color: #4e5560; }

document-manager-table .document-manager-table.dragover .app-document-row.readonly td document-name .document-name--global::before {
  background: url(assets/globe_gray.svg?) no-repeat;
  background-size: cover; }

document-manager-table .document-manager-table.dragover .app-document-row.readonly .app-document-row__actions {
  display: none; }

document-manager-table .document-manager-table.dragover .app-document-row.readonly .row-readonly {
  display: block;
  white-space: nowrap;
  opacity: 1;
  position: relative;
  left: -5px;
  color: #4e5560; }
  document-manager-table .document-manager-table.dragover .app-document-row.readonly .row-readonly .icon-eye {
    display: inline-block;
    margin-right: 5px;
    opacity: 1; }

document-manager-table .table-holder {
  position: relative; }

.ie document-manager-table .app-document-row__actions {
  width: 75px;
  display: block;
  position: relative; }
  .ie document-manager-table .app-document-row__actions document-inline-menu {
    position: absolute;
    top: 0;
    right: 5px; }
document-name {
  position: relative; }
  document-name .document-name--global::before {
    position: absolute;
    content: '';
    background: url(assets/globe.svg?) no-repeat;
    background-size: 100%;
    top: 2px;
    font-size: inherit;
    left: -20px;
    width: 14px;
    height: 14px; }
.document-select {
  position: relative; }
  .document-select__item {
    line-height: 22px; }
    .document-select__item-details {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .document-select__permissions {
    position: absolute;
    right: 9px;
    top: 9px; }
    .document-select__permissions-dropdown {
      width: 120px; }
      .document-select__permissions-dropdown .ui-select-toggle {
        font-size: 14px; }
      .document-select__permissions-dropdown .dropdown-menu {
        min-width: 120px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.document-upload {
  color: #353e4c;
  padding: 30px 0 30px 0; }
  .document-upload__icon {
    margin-bottom: 11px; }
    .document-upload__icon .upload-box-icon {
      background-color: #e6f2fa;
      border-radius: 50%;
      display: inline-block;
      font-size: 3.5em;
      padding: 35px; }
  .document-upload__drop-text {
    font-size: 1.1em;
    margin-bottom: 6px; }
  .document-upload__restrictions {
    font-size: 0.9em;
    margin-bottom: 20px;
    padding: 0 50px; }
  .document-upload__button.btn {
    margin-top: 0;
    padding: 7px 40px 9px 40px; }
  .document-upload .bulk-dropdown-button {
    background: url(assets/open_folder.svg?) no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    height: 20px;
    position: relative;
    width: 20px;
    z-index: 1;
    display: inline-block;
    top: 5px;
    left: -5px; }
  .document-upload .buttons button {
    width: 140px;
    display: inline-block;
    padding: 7px 0px 9px 0px;
    margin-top: 0px;
    text-align: center; }
.table-document-sharing .tasks_field .tasks > span {
  padding-right: 15px; }

.table-document-sharing .tasks_field .tasks .icon {
  font-size: 19px;
  padding-left: 5px; }

.table-document-sharing .tasks_field .tasks .status {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #d8d8d8;
  display: inline-block; }
  .table-document-sharing .tasks_field .tasks .status.done {
    background-color: #4de556; }

.table-document-sharing .document-sharing--invited {
  color: #9d9d9e; }

.table-document-sharing .document-sharing__access {
  width: 65%; }

.table-document-sharing .ui-select-choices-row.disabled {
  display: none; }

.table-document-sharing .sharing-user-status {
  text-transform: capitalize; }

.table-document-sharing .has-aaa {
  color: var(--base-color-purple);
  display: inline-block;
  margin-left: 10px;
  font-size: 14px; }
.document-transfer__inputs {
  padding-bottom: 15px; }

.document-transfer__current-editor {
  width: 45%;
  display: inline-block; }

.document-transfer__icon {
  display: inline-block;
  margin: 0 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 24px;
  vertical-align: bottom; }

.document-transfer__new-editor {
  width: 45%;
  display: inline-block;
  float: right; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

documents-dashboard-widget .documents-dashboard-widget__table {
  margin-bottom: 0;
  line-height: 20px;
  max-width: 100%; }
  documents-dashboard-widget .documents-dashboard-widget__table th {
    text-decoration: none;
    white-space: nowrap;
    word-break: keep-all;
    font-weight: 500; }
    documents-dashboard-widget .documents-dashboard-widget__table th.sortable {
      text-decoration: underline; }
      documents-dashboard-widget .documents-dashboard-widget__table th.sortable .sort-indicator {
        padding-right: 0;
        position: inherit; }

documents-dashboard-widget .app-document-row--clickable {
  cursor: pointer; }
  documents-dashboard-widget .app-document-row--clickable:hover td {
    background: #ebf6ff !important; }
  documents-dashboard-widget .app-document-row--clickable:hover .app-document-row__edit-link {
    opacity: 1; }

documents-dashboard-widget .app-document-row__expiry-date {
  min-width: 100px; }
  documents-dashboard-widget .app-document-row__expiry-date.invalid, documents-dashboard-widget .app-document-row__expiry-date.expired {
    color: #FF0000; }

documents-dashboard-widget .app-document-row__name {
  width: 325px;
  max-width: 325px;
  word-break: keep-all; }
  documents-dashboard-widget .app-document-row__name span,
  documents-dashboard-widget .app-document-row__name strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all; }
  documents-dashboard-widget .app-document-row__name .tooltip-inner {
    max-width: 320px;
    overflow: hidden; }
  documents-dashboard-widget .app-document-row__name .tooltip-arrow {
    left: 10px; }

documents-dashboard-widget .app-document-row__status {
  width: 75px;
  max-width: 75px;
  text-align: center; }
  documents-dashboard-widget .app-document-row__status .tooltip-inner:first-letter {
    text-transform: capitalize; }

documents-dashboard-widget .app-document-row__icon,
documents-dashboard-widget .app-document-row .document-icon {
  font-size: 20px;
  vertical-align: middle;
  position: relative;
  top: -2px; }
  documents-dashboard-widget .app-document-row__icon.icon-file-empty2,
  documents-dashboard-widget .app-document-row .document-icon.icon-file-empty2 {
    color: #949cab; }

documents-dashboard-widget .app-document-row__expiry-date {
  width: 95px;
  max-width: 95px; }

documents-dashboard-widget .app-document-row__edit-link {
  opacity: 0;
  color: #3da4f3; }

documents-dashboard-widget .app-document-row__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%; }

.ie documents-dashboard-widget .app-document-row__actions {
  width: 75px;
  display: block;
  position: relative; }
  .ie documents-dashboard-widget .app-document-row__actions document-inline-menu {
    position: absolute;
    top: 0;
    right: 5px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

documents-dashboard .dashboard-widget {
  height: auto; }
  documents-dashboard .dashboard-widget .widget-header {
    margin-bottom: 25px; }

documents-dashboard .numbers {
  position: relative; }
  documents-dashboard .numbers a:focus {
    text-decoration: none; }
    documents-dashboard .numbers a:focus span {
      text-decoration: none; }
  documents-dashboard .numbers .number {
    width: 12.5%;
    height: 75px;
    text-align: center;
    float: left;
    position: relative;
    opacity: 0.6;
    cursor: not-allowed; }
    documents-dashboard .numbers .number:before {
      content: ' ';
      display: inline-block;
      width: 3px;
      height: 50px;
      background-color: #949DAB;
      position: absolute;
      bottom: 0px;
      left: 50%; }
    documents-dashboard .numbers .number.expired:before {
      background-color: #F93E3E; }
    documents-dashboard .numbers .number.due:before {
      background-color: #F5A623; }
    documents-dashboard .numbers .number.valid:before {
      background-color: #008002; }
    documents-dashboard .numbers .number span {
      width: 52px;
      height: 23px;
      display: inline-block;
      background-color: var(--base-color-primary);
      color: #FFFFFF;
      line-height: 23px;
      border-radius: 9px;
      font-size: 18px;
      font-weight: 600; }
    documents-dashboard .numbers .number.active {
      opacity: 1;
      cursor: default; }
  documents-dashboard .numbers .today {
    position: absolute;
    left: 37.5%;
    top: 21px;
    text-align: center;
    margin-left: -50px; }
    documents-dashboard .numbers .today .text {
      width: 100px;
      font-weight: 600;
      color: #435b7d; }
    documents-dashboard .numbers .today .border {
      width: 2px;
      height: 35px;
      background-color: #949cab;
      display: inline-block; }

documents-dashboard .status-bar {
  border-radius: 19px;
  overflow: hidden; }
  documents-dashboard .status-bar .has-file {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 5px;
    left: 17px;
    background: green;
    border-radius: 100%;
    z-index: 10;
    border: 2px solid #FFFFFF;
    padding: 0px; }
  documents-dashboard .status-bar > div {
    width: 12.5%;
    height: 46px;
    float: left;
    background-color: #949DAB;
    text-align: center; }
    documents-dashboard .status-bar > div.expired {
      background-color: #F93E3E; }
    documents-dashboard .status-bar > div.due {
      background-color: #F5A623; }
      documents-dashboard .status-bar > div.due > span {
        width: auto;
        border-radius: 15px;
        padding-left: 5px;
        padding-right: 5px;
        line-height: 32px; }
        documents-dashboard .status-bar > div.due > span span {
          display: inline-block;
          margin-left: -5px;
          font-size: 18px;
          font-weight: bold;
          position: relative;
          top: -2px; }
    documents-dashboard .status-bar > div.valid {
      background-color: #008002; }
    documents-dashboard .status-bar > div.flagged {
      background-color: #353e4e; }
      documents-dashboard .status-bar > div.flagged span:before {
        top: 0px; }
    documents-dashboard .status-bar > div > span {
      width: 35px;
      height: 35px;
      font-size: 21px;
      background-color: #FFFFFF;
      line-height: 35px;
      border-radius: 100%;
      position: relative;
      display: inline-block;
      margin-top: 5px;
      cursor: pointer; }
      documents-dashboard .status-bar > div > span:before {
        position: relative;
        top: -2px;
        display: inline-block; }

documents-dashboard .days {
  position: relative;
  overflow: hidden;
  margin-top: 9px;
  display: none; }
  documents-dashboard .days div {
    width: 12.5%;
    float: left;
    color: #435b7d;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    position: relative; }
    documents-dashboard .days div span {
      padding-left: 5px;
      padding-right: 5px;
      background-color: #FFFFFF; }
    documents-dashboard .days div.title {
      width: 25%;
      text-align: left;
      font-size: 18px; }
      documents-dashboard .days div.title span {
        padding-left: 17px;
        padding-right: 5px;
        background-color: #FFFFFF; }
  documents-dashboard .days .border {
    width: 100%;
    height: 1px;
    background-color: #979797;
    position: absolute;
    top: 15px;
    left: 0px; }
.documents-limit {
  cursor: default; }
  .documents-limit--red {
    color: #f44963; }
.file-restrictions {
  font-weight: 400; }

.file-restrictions__tooltip.tooltip.tooltip-lighter > .tooltip-inner {
  text-align: center; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.global-document-accounts__counter {
  text-decoration: underline;
  position: relative;
  cursor: default; }
  .global-document-accounts__counter--disabled {
    text-decoration: none;
    color: #4a576a; }

.global-document-accounts__list {
  padding: 0 0 5px 15px;
  margin: 0; }
  .global-document-accounts__list-more {
    display: block;
    margin-bottom: 5px; }

.global-document-accounts__tooltip {
  text-align: left; }
  .global-document-accounts__tooltip .app-tooltip__content-inner {
    display: block; }

.global-document-accounts__document-title {
  font-weight: normal;
  margin-left: 5px; }

.global-document-accounts__tooltip-content {
  font-size: 13px;
  line-height: 16px;
  padding: 10px 15px;
  text-align: left; }
  .global-document-accounts__tooltip-content a {
    text-align: right; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.info-document-panel .expiry-required {
  font-weight: normal;
  cursor: pointer;
  height: 25px;
  position: relative;
  top: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }
  .info-document-panel .expiry-required input {
    margin-right: 5px;
    position: relative;
    top: 1px; }

.info-document-panel__error {
  color: #F34963;
  text-align: left;
  display: block;
  margin-top: 2px; }

.info-document-panel .optional-fields {
  background-color: #F1F4F9;
  padding: 15px;
  border: 1px solid var(--base-color-secondary-lighten2);
  border-radius: 4px;
  margin-top: 5px; }
  .info-document-panel .optional-fields .form-small-box textarea {
    margin-bottom: -15px; }

.info-document-panel .dragover {
  background: #faf7e4 !important; }

.info-document-panel .flag-holder {
  background-color: rgba(240, 73, 100, 0.1);
  padding: 10px;
  border-radius: 3px;
  margin-bottom: 12px; }
  .info-document-panel .flag-holder label {
    display: block; }
  .info-document-panel .flag-holder input {
    display: block; }

.info-document-panel .dropover {
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px; }
  .info-document-panel .dropover .upload-box-icon {
    width: 45px;
    height: 45px;
    background-color: #e6f2fa;
    border-radius: 100%;
    padding: 10px;
    font-size: 25px;
    margin-top: 0px;
    margin-right: 15px; }
  .info-document-panel .dropover a {
    cursor: pointer; }
  .info-document-panel .dropover .text {
    position: relative; }
  .info-document-panel .dropover span {
    display: inline-block;
    line-height: 1; }

.info-document-panel .view-download {
  margin-bottom: 15px; }
  .info-document-panel .view-download .text {
    font-weight: bold;
    padding-right: 10px; }
  .info-document-panel .view-download input {
    position: relative;
    top: 1px;
    display: inline-block;
    margin-right: 10px; }
  .info-document-panel .view-download .view {
    border-right: 1px solid #e0eae2;
    display: inline-block;
    padding-right: 10px;
    margin-right: 13px; }
  .info-document-panel .view-download label {
    font-weight: normal;
    cursor: pointer; }

.info-document-panel .info-document-panel-holder {
  position: relative; }

.info-document-panel #flagInput {
  overflow: hidden;
  height: 35px; }
.share-documents-step {
  overflow: auto;
  max-height: 400px; }
  .share-documents-step__header {
    color: #313e4c;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    padding-left: 4px; }
  .share-documents-step__view {
    margin-bottom: 5px; }
tag-inline-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
.template-inline-menu__icon--svg {
  height: auto;
  width: 14px; }

.ie10 .template-inline-menu__icon--svg {
  vertical-align: auto; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

table-tags .table-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: default; }
  table-tags .table-tags__count {
    position: relative;
    margin-left: 5px;
    text-decoration: underline; }
    table-tags .table-tags__count--zero {
      text-decoration: none;
      color: #949cab; }
  table-tags .table-tags__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }

.ie table-tags .table-tags {
  display: block;
  text-align: left; }
  .ie table-tags .table-tags__list {
    display: block;
    text-align: left; }
document-tag {
  font-size: 14px;
  line-height: 16px;
  margin: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.21);
  padding: 3px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  document-tag .document-tag__icon {
    margin: 3px 3px 0 1px;
    width: 11px;
    height: 11px; }

.ie document-tag {
  display: inline-block; }
  .ie document-tag .document-tag__icon {
    margin: -2px 0 0 1px; }
document-inline-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  document-inline-menu app-popover-button button.app-popover-button {
    width: 195px; }
  document-inline-menu .document-inline-menu__icon--svg {
    width: auto;
    height: 13px; }
document-manager-nav {
  position: relative;
  top: -35px; }
  document-manager-nav#document-manager-nav nav button {
    width: 150px; }
  document-manager-nav + ui-view {
    position: relative;
    top: -35px; }

.with-breadcrumbs document-manager-nav + ui-view {
  top: 0px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

document-tag-multiselect {
  position: relative;
  display: block; }
  document-tag-multiselect .document-tag-multiselect {
    position: relative;
    outline: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 36px;
    font-size: 16px;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: var(--base-color-primary);
    padding: 3px;
    padding-left: 0;
    line-height: 1.42857;
    background-color: #fff;
    background-image: none;
    border: 1px solid var(--base-color-border);
    border-radius: var(--base-spacing-input-border-radius); }
    document-tag-multiselect .document-tag-multiselect:hover, document-tag-multiselect .document-tag-multiselect:active, document-tag-multiselect .document-tag-multiselect:focus {
      border: 1px solid #63B7F8; }
    document-tag-multiselect .document-tag-multiselect:after {
      content: "\E93D";
      font-family: 'Linearicons';
      position: absolute;
      -webkit-transform: translate(0, -50%);
              transform: translate(0, -50%);
      top: 50%;
      right: 4px;
      pointer-events: none;
      color: var(--base-color-primary);
      font-size: 13px; }
    document-tag-multiselect .document-tag-multiselect__placeholder {
      margin-left: 9px;
      font-size: 14px;
      color: var(--base-color-text); }
    document-tag-multiselect .document-tag-multiselect__category {
      border: none;
      background: transparent;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      outline: none;
      padding: 5px;
      width: 100%;
      text-align: left;
      font-weight: bold; }
      document-tag-multiselect .document-tag-multiselect__category:hover {
        background: #e7f4fe; }
    document-tag-multiselect .document-tag-multiselect__item {
      border: none;
      background: transparent;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      outline: none;
      padding: 5px;
      width: 100%;
      text-align: left; }
      document-tag-multiselect .document-tag-multiselect__item:hover {
        background: #e7f4fe; }
    document-tag-multiselect .document-tag-multiselect__checkbox {
      margin-top: 0 !important;
      margin-right: 5px !important; }
    document-tag-multiselect .document-tag-multiselect__selected {
      position: relative;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 4px;
      border: 1px #a6d5fa solid;
      border-radius: var(--base-spacing-input-border-radius);
      margin-left: 5px;
      background: #EEF7FE;
      z-index: 0;
      line-height: normal;
      font-size: 14px;
      color: var(--base-color-text);
      white-space: nowrap; }
      document-tag-multiselect .document-tag-multiselect__selected--global {
        background: #f4f4f4;
        border-color: var(--base-color-border);
        color: #7b8699; }
    document-tag-multiselect .document-tag-multiselect__more-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
    document-tag-multiselect .document-tag-multiselect__close-button {
      height: .8em;
      padding: 0 2px;
      margin-top: -4px; }
    document-tag-multiselect .document-tag-multiselect__globe {
      margin-right: 3px; }

.ie document-tag-multiselect .document-tag-multiselect {
  display: block;
  text-align: left; }
  .ie document-tag-multiselect .document-tag-multiselect__selected {
    display: inline-block; }
    .ie document-tag-multiselect .document-tag-multiselect__selected * {
      display: inline-block; }
  .ie document-tag-multiselect .document-tag-multiselect__more-list {
    display: block;
    text-align: left; }
  .ie document-tag-multiselect .document-tag-multiselect__close-button, .ie document-tag-multiselect .document-tag-multiselect__globe {
    line-height: .8em;
    vertical-align: middle; }
  .ie document-tag-multiselect .document-tag-multiselect__category {
    display: block; }
  .ie document-tag-multiselect .document-tag-multiselect__item {
    display: block; }
    .ie document-tag-multiselect .document-tag-multiselect__item * {
      display: inline-block; }
trim-tag-name .trim-tag-name__tooltip-text {
  padding: 0 5px;
  white-space: normal; }

trim-tag-name app-tooltip .app-tooltip {
  bottom: initial;
  margin-top: -50px;
  left: 0px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.templates-filter__label {
  color: #353e4c;
  margin-bottom: 0; }

.templates-filter__buttons {
  padding-top: 20px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

templates-list .templates-list {
  margin-bottom: 5px !important;
  width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
  color: #353e4c;
  margin-bottom: 0; }
  templates-list .templates-list tr > td {
    background-color: #FFFFFF;
    color: #353e4c; }
  templates-list .templates-list tr.disabled > td {
    color: #949cab; }
  templates-list .templates-list > thead {
    background-color: var(--base-color-secondary); }
    templates-list .templates-list > thead th {
      text-decoration: none; }
      templates-list .templates-list > thead th.sortable {
        text-decoration: underline; }
  templates-list .templates-list tr {
    width: 100%; }
  templates-list .templates-list td,
  templates-list .templates-list th {
    height: 40px;
    vertical-align: middle;
    border-top: 1px solid var(--base-color-border); }
  templates-list .templates-list > thead > tr > th {
    vertical-align: middle;
    border-bottom: 1px solid var(--base-color-text); }
  templates-list .templates-list tr {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    templates-list .templates-list tr > td,
    templates-list .templates-list tr > th {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 0px;
              flex: 1 0 0;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
  templates-list .templates-list__empty {
    margin: auto; }
  templates-list .templates-list__gray-row {
    background-color: #F9FAFD !important; }
  templates-list .templates-list__template {
    background: #edf0f9 !important;
    cursor: pointer; }
    templates-list .templates-list__template > td {
      background: #edf0f9 !important;
      -webkit-transition: background 1s;
      transition: background 1s; }
    templates-list .templates-list__template.highlighted {
      -webkit-transition: background 0s;
      transition: background 0s;
      background-color: #FAF7E4 !important; }
    templates-list .templates-list__template.highlighted > td {
      -webkit-transition: background 0s;
      transition: background 0s;
      background-color: #FAF7E4 !important; }
    templates-list .templates-list__template__meatball-cell {
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
    templates-list .templates-list__template:not(:first-of-type) {
      margin-top: 5px; }
  templates-list .templates-list__template-name {
    color: #3da4f3; }
  templates-list .templates-list__checkbox {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 30px !important;
            flex: 0 0 30px !important;
    text-align: center;
    padding-right: 0 !important; }
  templates-list .templates-list__name {
    -webkit-box-flex: 3 !important;
        -ms-flex: 3 0 0px !important;
            flex: 3 0 0 !important;
    padding-left: 0; }
  templates-list .templates-list__document:not(.touched) > td {
    -webkit-transition: background 1s linear;
    transition: background 1s linear; }
  templates-list .templates-list__document.highlighted > td {
    -webkit-transition: background 0s;
    transition: background 0s;
    background-color: #FAF7E4 !important; }
  templates-list .templates-list__document-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 40px;
        flex-basis: 40px;
    margin-right: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  templates-list .templates-list__document-icon, templates-list .templates-list__placeholder-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #4a576a;
    -webkit-transform: scale(1.2);
            transform: scale(1.2); }
  templates-list .templates-list__globe-icon {
    margin-top: 2px; }
  templates-list .templates-list__reference {
    text-align: left; }
  templates-list .templates-list__tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  templates-list .templates-list__actions {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 75px !important;
            flex: 0 0 75px !important;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  templates-list .templates-list template-inline-menu,
  templates-list .templates-list template-document-inline-menu {
    height: 23px; }

.ie templates-list .templates-list tr {
  width: 100%;
  display: table-row; }
  .ie templates-list .templates-list tr > td,
  .ie templates-list .templates-list tr > th {
    display: table-cell; }

.ie templates-list .templates-list__empty {
  text-align: center;
  padding: 3px; }

.ie templates-list .templates-list__template__meatball-cell {
  width: 75px;
  text-align: right; }

.ie templates-list .templates-list__checkbox {
  width: 40px; }

.ie templates-list .templates-list__name {
  width: 50%; }

.ie templates-list .templates-list__tags {
  display: table-cell;
  text-align: center !important; }

.ie templates-list .templates-list__document-icons {
  display: block;
  float: left;
  width: 40px;
  margin-right: 10px; }

.ie templates-list .templates-list__globe-icon {
  float: left;
  margin-top: 2px;
  margin-left: 10px; }

.ie templates-list .templates-list__document-icon, .ie templates-list .templates-list__placeholder-icon {
  display: block;
  float: left; }

.ie templates-list .templates-list__placeholder-icon {
  margin-top: 3px; }

.ie templates-list .templates-list__actions {
  width: 75px;
  text-align: right; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

tag-selector {
  position: relative;
  display: block;
  z-index: 10; }
  tag-selector interactive-tooltip document-tag {
    display: none; }
  tag-selector .input-holder {
    position: relative; }
    tag-selector .input-holder input {
      height: 35px;
      padding-left: 10px;
      padding-right: 35px;
      border-radius: var(--base-spacing-input-border-radius);
      border: 1px solid var(--base-color-secondary-lighten2); }
      tag-selector .input-holder input:focus {
        border: 1px solid #3da4f3; }
    tag-selector .input-holder div {
      font-size: 15px;
      position: absolute;
      top: 0px;
      right: 0px;
      color: #353e4c;
      padding: 10px; }
      tag-selector .input-holder div.input-clear {
        cursor: pointer; }
    tag-selector .input-holder .input-message {
      font-size: 14px;
      position: absolute;
      top: 0px;
      right: 35px;
      padding: 7px;
      padding-right: 0px; }
    tag-selector .input-holder a.input-message {
      cursor: pointer; }
    tag-selector .input-holder + .input-message {
      margin-top: 5px;
      padding-left: 10px;
      font-size: 14px; }
    tag-selector .input-holder .input-tag + .input-clear {
      padding: 5px;
      top: 5px;
      border-left: 1px solid var(--base-color-secondary-lighten2); }
  tag-selector .document-tag-multiselect {
    position: relative;
    outline: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 36px;
    font-size: 16px;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: var(--base-color-primary);
    padding: 3px;
    padding-left: 0;
    line-height: 1.42857;
    background-color: #fff;
    background-image: none;
    border: 1px solid var(--base-color-secondary-lighten2);
    border-radius: var(--base-spacing-input-border-radius); }
    tag-selector .document-tag-multiselect:hover, tag-selector .document-tag-multiselect:active, tag-selector .document-tag-multiselect:focus {
      border: 1px solid #63B7F8; }
    tag-selector .document-tag-multiselect:after {
      content: "\E93D";
      font-family: 'Linearicons';
      position: absolute;
      -webkit-transform: translate(0, -50%);
              transform: translate(0, -50%);
      top: 50%;
      right: 4px;
      pointer-events: none;
      color: var(--base-color-primary);
      font-size: 13px; }
    tag-selector .document-tag-multiselect.global {
      background-color: var(--base-color-text-lighten4);
      border-color: #b4bdcb;
      color: #353e4c;
      cursor: not-allowed; }
      tag-selector .document-tag-multiselect.global:after {
        display: none; }
      tag-selector .document-tag-multiselect.global .document-tag-multiselect__placeholder {
        display: none; }
      tag-selector .document-tag-multiselect.global .document-tag-multiselect__selected {
        background: var(--base-color-text-lighten4);
        border-color: #b4bdcb;
        color: #353e4c; }
    tag-selector .document-tag-multiselect__placeholder {
      margin-left: 9px;
      font-size: 14px;
      color: var(--base-color-text); }
    tag-selector .document-tag-multiselect__category {
      border: none;
      background: transparent;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      outline: none;
      padding: 5px;
      width: 100%;
      text-align: left;
      font-weight: bold; }
      tag-selector .document-tag-multiselect__category:hover {
        background: #e7f4fe; }
    tag-selector .document-tag-multiselect__item {
      border: none;
      background: transparent;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      outline: none;
      padding: 5px;
      width: 100%;
      text-align: left; }
      tag-selector .document-tag-multiselect__item:hover {
        background: #e7f4fe; }
    tag-selector .document-tag-multiselect__checkbox {
      margin-top: 0 !important;
      margin-right: 5px !important; }
    tag-selector .document-tag-multiselect__selected {
      height: 30px;
      position: relative;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 4px;
      background-color: #FFFFFF;
      border: 1px solid var(--base-color-primary);
      border-radius: var(--base-spacing-input-border-radius);
      margin-left: 5px;
      z-index: 0;
      line-height: normal;
      font-size: 14px;
      color: var(--base-color-text);
      white-space: nowrap; }
      tag-selector .document-tag-multiselect__selected--global {
        background: #f4f4f4;
        border-color: var(--base-color-border);
        color: #7b8699; }
    tag-selector .document-tag-multiselect__more-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
    tag-selector .document-tag-multiselect__close-button {
      height: 30px;
      line-height: 30px;
      position: relative;
      top: 0px;
      right: -4px;
      padding: 0 3px;
      color: #FFFFFF;
      background-color: var(--base-color-primary); }
      tag-selector .document-tag-multiselect__close-button:hover {
        color: #FFFFFF; }
    tag-selector .document-tag-multiselect__globe {
      margin-right: 3px; }
  tag-selector .tag-dropdown {
    width: 100%;
    max-height: 250px;
    background: #FFFFFF;
    overflow: auto;
    position: absolute;
    border: 1px solid var(--base-color-secondary-lighten2);
    border-radius: 0;
    padding: 5px;
    margin-top: 2px; }
    tag-selector .tag-dropdown input[type="text"] {
      width: 100%; }
  tag-selector .tag-action {
    cursor: pointer; }

.ie document-tag-multiselect .document-tag-multiselect {
  display: block;
  text-align: left; }
  .ie document-tag-multiselect .document-tag-multiselect__selected {
    display: inline-block; }
    .ie document-tag-multiselect .document-tag-multiselect__selected * {
      display: inline-block; }
  .ie document-tag-multiselect .document-tag-multiselect__more-list {
    display: block;
    text-align: left; }
  .ie document-tag-multiselect .document-tag-multiselect__close-button, .ie document-tag-multiselect .document-tag-multiselect__globe {
    line-height: .8em;
    vertical-align: middle; }
  .ie document-tag-multiselect .document-tag-multiselect__category {
    display: block; }
  .ie document-tag-multiselect .document-tag-multiselect__item {
    display: block; }
    .ie document-tag-multiselect .document-tag-multiselect__item * {
      display: inline-block; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

document-icon .document-icon.for-template {
  position: relative; }
  document-icon .document-icon.for-template .has-file {
    left: 10px; }

document-icon .document-icon span {
  position: relative;
  font-size: 20px;
  top: 2px; }

document-icon .document-icon .has-file {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 1px;
  left: 13px;
  background: green;
  border-radius: 100%;
  z-index: 10;
  border: 1px solid #FFFFFF; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

uploaded-file .uploaded-file {
  display: block;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 4px;
  border: 1px solid var(--base-color-secondary-lighten2);
  margin-bottom: 15px; }
  uploaded-file .uploaded-file__status {
    float: left;
    height: 50px;
    padding-top: 8px;
    text-align: center;
    width: 50px; }
    uploaded-file .uploaded-file__status--inactive {
      background-color: #b1b6c1; }
    uploaded-file .uploaded-file__status--valid {
      background-color: #69C0AF; }
      uploaded-file .uploaded-file__status--valid .uploaded-file__status-icon:before {
        content: "\E911"; }
    uploaded-file .uploaded-file__status--due_to_expire {
      background-color: orange; }
      uploaded-file .uploaded-file__status--due_to_expire .uploaded-file__status-icon:before {
        content: "\E90E"; }
    uploaded-file .uploaded-file__status--expired, uploaded-file .uploaded-file__status--due_to_activate {
      background-color: #F04864; }
      uploaded-file .uploaded-file__status--expired .uploaded-file__status-icon:before, uploaded-file .uploaded-file__status--due_to_activate .uploaded-file__status-icon:before {
        content: "\E90F"; }
    uploaded-file .uploaded-file__status-icon, uploaded-file .uploaded-file__status-format {
      color: #fff;
      display: block;
      margin: auto;
      text-align: center; }
      uploaded-file .uploaded-file__status-icon::before, uploaded-file .uploaded-file__status-format::before {
        color: #fff; }
    uploaded-file .uploaded-file__status-icon {
      font-size: 21px; }
    uploaded-file .uploaded-file__status-format {
      font-size: 11px;
      font-weight: 500;
      margin-top: 1px;
      text-transform: uppercase; }
  uploaded-file .uploaded-file__virus-icon {
    float: left;
    margin-right: 5px;
    margin-top: 1px; }
  uploaded-file .uploaded-file__file {
    float: left;
    margin-left: 10px; }
  uploaded-file .uploaded-file__name {
    padding-top: 16px; }
  uploaded-file .uploaded-file__dates {
    line-height: 12px; }
  uploaded-file .uploaded-file__menu {
    position: relative;
    float: right;
    font-size: 18px;
    height: 50px;
    padding-right: 15px;
    padding-top: 15px; }
    uploaded-file .uploaded-file__menu-icon {
      position: relative; }
    uploaded-file .uploaded-file__menu-button {
      font-size: 14px;
      display: block; }
    uploaded-file .uploaded-file__menu a, uploaded-file .uploaded-file__menu i {
      text-decoration: none; }
  uploaded-file .uploaded-file--replacement .uploaded-file__name {
    padding-top: 6px; }
  uploaded-file .uploaded-file .file-actions {
    text-align: right;
    padding-top: 15px; }
    uploaded-file .uploaded-file .file-actions a {
      font-size: 17px;
      display: inline-block;
      margin-right: 12px;
      cursor: pointer; }
      uploaded-file .uploaded-file .file-actions a:hover {
        text-decoration: none; }
.virus-checked-icon img {
  height: 16px;
  width: 16px; }
document-viewer .document-viewer {
  position: absolute;
  width: 100vw;
  height: 100vh;
  overflow: auto; }
  document-viewer .document-viewer__header {
    position: fixed;
    display: block;
    text-align: center;
    height: 55px;
    width: 100%;
    padding: 17px 20px;
    background-color: #2E2E2E;
    color: #FFF;
    z-index: 99999; }
    document-viewer .document-viewer__header:before {
      content: "";
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      opacity: 0.08;
      -webkit-transform: scale(1);
              transform: scale(1);
      position: absolute;
      bottom: 0;
      top: -15px;
      right: calc(50% - 45px);
      left: calc(50% - 45px);
      z-index: 0;
      background-image: url(assets/brand.svg?);
      background-repeat: no-repeat;
      height: 70px; }
    document-viewer .document-viewer__header--loading > .document-viewer__headeritem {
      display: none; }
  document-viewer .document-viewer__headeritem {
    display: inline-block; }
    document-viewer .document-viewer__headeritem--right {
      position: absolute;
      right: 20px;
      top: 10px; }
    document-viewer .document-viewer__headeritem--left {
      position: absolute;
      left: 20px; }
    document-viewer .document-viewer__headeritem--center {
      position: relative; }
  document-viewer .document-viewer__filename {
    display: inline-block;
    color: #fff; }
  document-viewer .document-viewer__antivirus {
    display: inline-block;
    color: #69c0af;
    margin-left: 20px; }
    document-viewer .document-viewer__antivirus-text {
      display: inline-block;
      margin-left: 3px; }
      @media (max-width: 1000px) {
        document-viewer .document-viewer__antivirus-text {
          display: none; } }
    document-viewer .document-viewer__antivirus-icon {
      position: relative;
      top: 1px; }
  document-viewer .document-viewer__page {
    display: inline-block;
    margin: 0 15px; }
    document-viewer .document-viewer__page-control {
      display: inline-block;
      margin: 0;
      padding: 0;
      background: transparent;
      border: 0;
      font-size: 1.05em;
      position: relative;
      top: 2px;
      cursor: pointer;
      opacity: 0.8;
      margin-top: -2px; }
      document-viewer .document-viewer__page-control--disabled {
        opacity: 0.1; }
        document-viewer .document-viewer__page-control--disabled :hover {
          opacity: 0.1; }
      document-viewer .document-viewer__page-control:hover {
        opacity: 1; }
  document-viewer .document-viewer__controls {
    position: fixed;
    bottom: 50px;
    right: 80px;
    z-index: 999999; }
  document-viewer .document-viewer__control-button {
    display: block;
    margin-top: 15px;
    font-size: 28px; }
    document-viewer .document-viewer__control-button--zoomout span {
      position: relative;
      top: -3px; }
    document-viewer .document-viewer__control-button--fit {
      font-size: 18px; }
      document-viewer .document-viewer__control-button--fit i {
        position: relative;
        top: 1px; }
  document-viewer .document-viewer__single-page {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    top: 75px;
    right: 0;
    bottom: 0;
    left: 0;
    outline: none;
    -webkit-transition-duration: 200ms;
    -webkit-transition-timing-function: ease;
    transition-duration: 200ms;
    transition-timing-function: ease;
    text-align: center; }
    document-viewer .document-viewer__single-page canvas {
      margin: auto; }
  document-viewer .document-viewer__multi-page {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    top: 55px;
    right: 0;
    bottom: 0;
    left: 0;
    outline: none;
    -webkit-transition-duration: 200ms;
    -webkit-transition-timing-function: ease;
    transition-duration: 200ms;
    transition-timing-function: ease; }
    document-viewer .document-viewer__multi-page--invisible {
      display: none; }
    document-viewer .document-viewer__multi-page .page {
      margin-bottom: 30px;
      -o-border-image: none;
         border-image: none;
      -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
              box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
      border: none; }
      document-viewer .document-viewer__multi-page .page:first-of-type {
        margin-top: 20px; }
  document-viewer .document-viewer__error {
    border-radius: 5px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  document-viewer .document-viewer__error-icon {
    display: block;
    margin-bottom: 5px;
    font-size: 60px; }
  document-viewer .document-viewer__error-text {
    display: block;
    font-size: 22px;
    margin-bottom: 25px; }
  document-viewer .document-viewer__download-icon {
    position: relative;
    display: inline-block;
    margin-right: 4px;
    top: 1px; }
  document-viewer .document-viewer__downloading-icon {
    display: inline-block;
    width: 15px;
    position: relative;
    top: -2px;
    margin-right: 5px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.document-manager__actions {
  padding-top: 8px;
  padding-bottom: 12px;
  margin-bottom: 15px; }

.document-manager__bulk-actions {
  border-right: solid 1px #b4bdcb; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.add-documents-to-templates__template {
  line-height: 22px;
  background-color: transparent !important;
  padding-bottom: 5px; }
  .add-documents-to-templates__template.selected {
    background-color: #FAF7E4 !important; }
  .add-documents-to-templates__template-details {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }

.add-documents-to-templates__row {
  margin-bottom: 0 !important; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.shared-accounts__template {
  background-color: transparent !important;
  line-height: 22px;
  padding: 0px !important; }
  .shared-accounts__template label {
    width: 100%;
    padding: 10px 15px;
    cursor: pointer; }
  .shared-accounts__template.selected {
    background-color: #FAF7E4 !important; }
  .shared-accounts__template-details {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
    .shared-accounts__template-details input {
      position: relative;
      top: 2px;
      display: inline-block;
      margin-right: 5px !important; }

.shared-accounts__row {
  margin-bottom: 0 !important; }

.list-header {
  padding-bottom: 10px;
  padding-top: 10px; }
  .list-header.list-group-item {
    background-color: #353e4c;
    color: #FFFFFF; }
  .list-header .row {
    margin-bottom: 0px;
    width: 100%; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

attach-documents-to-template-modal .attach-documents-to-template__document {
  line-height: 22px;
  background-color: transparent !important; }
  attach-documents-to-template-modal .attach-documents-to-template__document.disabled {
    background-color: var(--base-color-text-lighten4) !important; }
  attach-documents-to-template-modal .attach-documents-to-template__document.selected {
    background-color: #FAF7E4 !important; }
  attach-documents-to-template-modal .attach-documents-to-template__document-label {
    display: block; }
  attach-documents-to-template-modal .attach-documents-to-template__document-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }

attach-documents-to-template-modal .attach-documents-to-template__checkbox {
  margin-top: 0 !important;
  margin-right: 10px !important; }

attach-documents-to-template-modal .attach-documents-to-template__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 35px;
      flex-basis: 35px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 5px; }

attach-documents-to-template-modal .attach-documents-to-template__document-icon {
  -webkit-transform: scale(1.2);
          transform: scale(1.2); }

attach-documents-to-template-modal .attach-documents-to-template__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0 !important; }

attach-documents-to-template-modal .attach-documents-to-template__documents-title {
  background-color: #353e4c;
  padding: 15px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 14px; }
  attach-documents-to-template-modal .attach-documents-to-template__documents-title span.title {
    display: inline-block;
    margin-left: 12px;
    top: -2px;
    position: relative; }
  attach-documents-to-template-modal .attach-documents-to-template__documents-title span.input {
    cursor: pointer; }
  attach-documents-to-template-modal .attach-documents-to-template__documents-title input {
    pointer-events: none; }

.ie attach-documents-to-template-modal .attach-documents-to-template__document-details {
  display: block; }

.ie attach-documents-to-template-modal .attach-documents-to-template__icons {
  display: inline-block;
  width: 35px; }

.ie attach-documents-to-template-modal .attach-documents-to-template > svg-icon {
  display: block; }

.ie attach-documents-to-template-modal .attach-documents-to-template__globe-icon {
  float: right;
  margin-top: 4px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.bulk-download__processing {
  line-height: 28px; }
  .bulk-download__processing img {
    margin-right: 10px;
    width: 28px; }
  .bulk-download__processing span {
    vertical-align: middle; }

.bulk-download__ready {
  font-style: italic; }

.bulk-download__url {
  color: #3da4f3;
  font-size: 15px;
  font-weight: 500;
  margin-top: 8px; }
  .bulk-download__url > span {
    vertical-align: middle; }
  .bulk-download__url .icon-file-empty2 {
    margin-right: 3px;
    font-size: 18px; }

.bulk-download__scanned {
  margin-top: 10px;
  color: #69C0AF;
  font-size: 0.8em;
  font-weight: 500; }
  .bulk-download__scanned-icon {
    margin-right: 3px;
    width: 16px !important;
    position: relative;
    top: 1px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

upload-progress .upload-progress {
  border-radius: 4px; }
  upload-progress .upload-progress__header {
    background-color: var(--base-color-secondary);
    border-bottom: 1px solid #d8dadf;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: #FFFFFF;
    padding: 15px 24px;
    position: relative;
    text-align: left; }
    upload-progress .upload-progress__header .close {
      width: 40px;
      height: 40px;
      font-size: 20px;
      color: var(--base-color-primary);
      opacity: 1;
      background-color: #FFFFFF;
      padding-bottom: 2px;
      padding-right: 1px;
      margin-top: -2px;
      border-radius: 100%;
      text-align: center; }
      upload-progress .upload-progress__header .close:hover, upload-progress .upload-progress__header .close:focus {
        opacity: 0.5; }
    upload-progress .upload-progress__header .title {
      font-weight: 400;
      font-size: 24px; }
  upload-progress .upload-progress__body {
    background-color: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 200px; }
  upload-progress .upload-progress__step {
    text-align: center;
    padding-top: 10px;
    font-size: 16px; }
  upload-progress .upload-progress__filename {
    font-weight: bold;
    display: block;
    padding: 0 30px;
    word-break: break-all; }
    upload-progress .upload-progress__filename--scan {
      color: #5db1f1; }
    upload-progress .upload-progress__filename--success {
      color: #69c0af; }
    upload-progress .upload-progress__filename--error {
      color: var(--base-color-red); }
  upload-progress .upload-progress svg-icon {
    height: 96px; }
  upload-progress .upload-progress__scan-icon {
    height: 15px;
    display: block; }
  upload-progress .upload-progress__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 24px;
    color: var(--base-color-text);
    background-color: var(--base-color-primary-lighten4); }

.ie upload-progress .upload-progress__body {
  display: block;
  text-align: center;
  height: auto;
  padding: 50px 0; }

.ie upload-progress .upload-progress__uploading {
  height: 100px;
  position: relative; }

.ie upload-progress .upload-progress__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

.ie upload-progress .upload-progress__scan-icon {
  display: inline-block; }

.ie upload-progress .upload-progress__footer {
  display: block; }
  .ie upload-progress .upload-progress__footer-left {
    float: left; }
  .ie upload-progress .upload-progress__footer-right {
    float: right; }
  .ie upload-progress .upload-progress__footer-text {
    line-height: 46px; }
  .ie upload-progress .upload-progress__footer:after, .ie upload-progress .upload-progress__footer:before {
    content: ' ';
    clear: both;
    display: table; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.copy-from-template-modal__account.list-group-item {
  line-height: 22px;
  background-color: transparent;
  padding-bottom: 5px; }
  .copy-from-template-modal__account.list-group-item.selected {
    background-color: #FAF7E4; }
    .copy-from-template-modal__account.list-group-item.selected.background {
      background-color: #FAF7E4; }
  .copy-from-template-modal__account.list-group-item.disabled {
    color: #353E4E;
    background-color: #F1F1F1; }
    .copy-from-template-modal__account.list-group-item.disabled.background {
      background-color: #F0F0F0; }
  .copy-from-template-modal__account.list-group-item.background {
    background-color: #F9FAFD; }
  .copy-from-template-modal__account.list-group-item-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
    .disabled .copy-from-template-modal__account.list-group-item-name {
      color: #7b8699; }
  .disabled .copy-from-template-modal__account.list-group-item-limit {
    color: #7b8699; }
  .copy-from-template-modal__account.list-group-item-quota {
    text-align: left;
    color: #F34963; }
  .copy-from-template-modal__account.list-group-item-plan {
    color: #4a576a;
    padding-right: 0 !important; }

.copy-from-template-modal__row {
  margin-bottom: 0 !important;
  width: 100%; }

copy-from-template-modal .filters-row .search-row {
  padding-right: 0px; }

copy-from-template-modal .filters-row .tag-row {
  padding-right: 0px;
  margin-left: -5px; }

copy-from-template-modal .filters-row .reset-row {
  text-align: right;
  margin-left: -5px; }

copy-from-template-modal .row {
  margin-bottom: 0px !important; }
  copy-from-template-modal .row label {
    font-weight: bold; }

copy-from-template-modal .reset-button-element {
  display: none; }

copy-from-template-modal .search-input-element {
  width: 100% !important; }

copy-from-template-modal document-tag-multiselect .document-tag-multiselect {
  height: 42px; }

copy-from-template-modal .btn-reset {
  font-weight: normal;
  background-color: #FFFFFF;
  margin-top: 0px;
  border: 1px solid #E0EAE2;
  padding-left: 20px;
  padding-right: 20px; }

copy-from-template-modal .button-group > span {
  color: #353e4c !important; }

copy-from-template-modal .list-group-item {
  padding-top: 7px;
  padding-bottom: 2px; }

copy-from-template-modal .list-header {
  padding-top: 10px;
  padding-bottom: 10px; }
  copy-from-template-modal .list-header.list-group-item {
    background-color: #353e4c;
    color: #FFFFFF; }
  copy-from-template-modal .list-header .row {
    width: 100%;
    margin-bottom: 0px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.apply-tag-for-account__account.list-group-item {
  line-height: 22px;
  background-color: transparent;
  padding-bottom: 5px; }
  .apply-tag-for-account__account.list-group-item.selected {
    background-color: #FAF7E4; }
    .apply-tag-for-account__account.list-group-item.selected.background {
      background-color: #FAF7E4; }
  .apply-tag-for-account__account.list-group-item.disabled {
    color: #353E4E;
    background-color: #F1F1F1; }
    .apply-tag-for-account__account.list-group-item.disabled.background {
      background-color: #F0F0F0; }
  .apply-tag-for-account__account.list-group-item.background {
    background-color: #F9FAFD; }
  .apply-tag-for-account__account.list-group-item-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
    .disabled .apply-tag-for-account__account.list-group-item-name {
      color: #7b8699; }
  .disabled .apply-tag-for-account__account.list-group-item-limit {
    color: #7b8699; }
  .apply-tag-for-account__account.list-group-item-quota {
    text-align: left;
    color: #F34963; }
  .apply-tag-for-account__account.list-group-item-plan {
    color: #4a576a;
    padding-right: 0 !important; }

.apply-tag-for-account__row {
  margin-bottom: 0 !important;
  width: 100%; }

apply-tag-for-account .button-group > span {
  color: #353e4c !important; }

apply-tag-for-account .list-group-item {
  padding-top: 7px;
  padding-bottom: 2px; }

apply-tag-for-account .list-header {
  padding-top: 10px;
  padding-bottom: 10px; }
  apply-tag-for-account .list-header.list-group-item {
    background-color: #353e4c;
    color: #FFFFFF; }
  apply-tag-for-account .list-header .row {
    width: 100%;
    margin-bottom: 0px; }
.create-template-modal__back-link {
  margin-top: 15px;
  display: inline-block; }
.replace-tag-modal__body {
  overflow: auto;
  max-height: 500px; }

.replace-tag-modal__accounts {
  margin-bottom: 15px; }

.replace-tag-modal__label {
  font-weight: 500 !important; }

.replace-tag-modal__form {
  width: 100%; }
account-group {
  display: block;
  border-bottom: 3px solid #667a97; }
  account-group .account-group {
    background: #f9fafd; }
    account-group .account-group__managed--disabled-parent account-item:first-of-type .account-item__wrapper, account-group .account-group__managed--active-parent account-item:first-of-type .account-item__wrapper {
      border-color: transparent; }
account-item {
  display: block; }
  account-item .account-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0 20px;
    font-size: 14px;
    background: transparent;
    color: var(--base-color-text);
    overflow: hidden; }
    account-item .account-item--top-level {
      border-top: none;
      padding: 0 10px; }
      account-item .account-item--top-level .account-item__wrapper {
        border: none; }
    account-item .account-item--active {
      background: #55a9df;
      color: #ffffff; }
      account-item .account-item--active .account-item__wrapper {
        border-color: #55a9df; }
    account-item .account-item--disabled {
      background: #dfe4ea;
      padding: 0 10px;
      font-weight: bold;
      opacity: 0.5;
      pointer-events: none; }
      account-item .account-item--disabled .account-item__wrapper {
        padding: 5px 0px; }
    account-item .account-item__wrapper {
      position: relative;
      border-top: 1px solid var(--base-color-secondary-lighten2);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%;
      max-width: 100%;
      padding: 10px 0; }
    account-item .account-item__name {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    account-item .account-item__icon {
      margin-top: 2px;
      margin-right: 10px; }
notifications-account-list {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  display: block;
  overflow: auto;
  position: relative; }
  @media (min-width: 768px) {
    notifications-account-list {
      float: left;
      width: 25%; } }
  notifications-account-list .notifications-account-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

app-header-notifications {
  position: relative;
  z-index: 1;
  display: block;
  padding: 14px 0px; }

.header-notifications {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  margin-right: 15px; }
  .header-notifications:before {
    content: '';
    position: absolute;
    top: -3px;
    left: -6px;
    width: 38px;
    height: 35px;
    background-color: var(--base-color-primary-lighten);
    opacity: 0;
    border-radius: 16px; }
  .header-notifications:hover:before {
    opacity: 1; }
  .header-notifications:focus:before {
    opacity: 1; }
  .header-notifications:active:before {
    opacity: 1; }
  .header-notifications--empty {
    opacity: .5; }
  .header-notifications__icon {
    padding: 3px 3px 4px 4px;
    z-index: 10; }
  .header-notifications__counter {
    top: 0;
    left: 21px;
    background: var(--base-color-red);
    border-radius: 10px;
    color: #fff;
    display: block;
    font-size: 10px;
    min-width: 17px;
    line-height: 10px;
    position: absolute;
    text-align: center;
    cursor: normal;
    padding: 2px; }
  .header-notifications__dropdown.dropdown-open {
    max-height: 578px;
    -webkit-transition: max-height 0.2s ease;
    transition: max-height 0.2s ease;
    -webkit-transition-delay: 0.06667s;
            transition-delay: 0.06667s; }
  .header-notifications__dropdown .dismiss-all-notifications {
    color: #3da4f3;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding-top: 8px;
    text-align: center; }
  .header-notifications__dropdown .tmr-notifications-content {
    max-height: 500px;
    overflow: auto;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 8px; }
  .header-notifications__dropdown .tmr-notification-item {
    position: relative;
    display: block;
    border-radius: 2px;
    margin-bottom: 6px;
    padding: 5px 10px 10px; }
    .header-notifications__dropdown .tmr-notification-item.clickable:hover {
      background-color: #ebf6ff;
      cursor: pointer; }
    .header-notifications__dropdown .tmr-notification-item .notification-title {
      color: #353e4c;
      border-top: 1px solid var(--base-color-border);
      padding-top: 15px; }
    .header-notifications__dropdown .tmr-notification-item .notification-content {
      color: #353e4c;
      line-height: 16px;
      word-wrap: break-word; }
      .header-notifications__dropdown .tmr-notification-item .notification-content strong {
        font-weight: 500; }
  .header-notifications__dropdown .dismiss-notification-icon {
    color: #3da4f3;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    right: 9px;
    top: 21px; }
    .header-notifications__dropdown .dismiss-notification-icon:hover {
      color: #F04864; }
  .header-notifications__dropdown .notification-title {
    margin-top: 4px; }
  .header-notifications__dropdown .show-all-notifications {
    line-height: 50px;
    overflow: hidden; }
    .header-notifications__dropdown .show-all-notifications a {
      background-color: #3da4f3;
      border-bottom-left-radius: 4px;
      border-bottom-right-radius: 4px;
      color: #fff;
      display: block;
      font-size: 16px;
      font-weight: 500;
      line-height: 20px;
      padding: 15px 0;
      text-align: center; }
  .header-notifications__dropdown .no-notifications {
    line-height: 70px;
    padding: 36px 8px 10px 8px;
    text-align: center; }
  .header-notifications__dropdown .no-notifications-icon {
    font-size: 62px;
    text-align: center;
    color: #69C0AF; }
  .header-notifications__dropdown .no-notifications-text {
    color: #353e4c;
    font-size: 15px; }

.app-header--support .header-notifications:before {
  background-color: var(--base-color-purple-lighten); }

.app-header--enterprise .header-notifications:before {
  background-color: var(--base-color-secondary-lighten); }

.ie10 app-header-notifications {
  display: inline-block; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.settings-row td {
  background: #FFF !important; }
  .settings-row td label {
    margin: 0; }
  .settings-row td input {
    visibility: hidden;
    /* <-- hide the default checkbox, the rest is to hide and alllow tabbing, which display:none prevents */
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    overflow: hidden; }
  .settings-row td span {
    height: 12px;
    width: 12px;
    border: 2px solid var(--base-color-primary);
    border-radius: 3px;
    display: inline-block;
    position: relative;
    text-align: center; }
  .settings-row td [type=checkbox]:checked + span {
    background-color: var(--base-color-primary); }
  .settings-row td [type=checkbox]:checked:disabled + span {
    line-height: 1em;
    border: 1px solid var(--base-color-text-lighten2);
    background-color: var(--base-color-text-lighten2);
    text-align: center; }
  .settings-row td [type=checkbox]:checked:disabled + span:before {
    left: 1px;
    top: -1px; }
  .settings-row td [type=checkbox]:not(:checked):disabled + span {
    border: 1px solid var(--base-color-text-lighten2);
    background-color: var(--base-color-text-lighten2); }
  .settings-row td [type=checkbox]:checked + span:before {
    /* <-- style its checked state..with a ticked icon */
    content: "\EE20";
    font-family: 'Linearicons';
    color: #fff;
    font-size: 9px;
    position: absolute;
    top: -2px;
    left: 0px; }

.settings-row__name {
  padding-left: 25px !important; }
  .settings-row__name--disabled {
    color: #4a576a !important; }

.settings-row__in-app {
  text-align: center; }

.settings-row--special td {
  background: #c1e3fd !important;
  font-weight: 500; }

.settings-row--gray td {
  background: #f9fafd !important; }

.settings-row--changed td {
  background: #faf7ed !important; }

.settings-row > .settings-row__email,
.settings-row > .settings-row__global {
  padding-left: 12px; }
.settings-section {
  border-bottom: 25px solid transparent; }
  .settings-section__header {
    padding: 15px 0 10px 25px !important;
    border: 0 !important; }
  .settings-section__title {
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
    margin-right: 5px; }
  .settings-section__text {
    display: inline-block;
    margin-left: 5px; }
  .settings-section .settings-row:nth-of-type(2) td {
    border-top: 0 !important; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.settings-table {
  margin-bottom: 5px !important;
  width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
  color: #353e4c;
  margin-bottom: 0; }
  .settings-table tr > td {
    background-color: #FFFFFF;
    color: #353e4c; }
  .settings-table tr.disabled > td {
    color: #949cab; }
  .settings-table > thead {
    background-color: var(--base-color-secondary); }
    .settings-table > thead th {
      text-decoration: none; }
      .settings-table > thead th.sortable {
        text-decoration: underline; }
  .settings-table tr {
    width: 100%; }
  .settings-table td,
  .settings-table th {
    height: 40px;
    vertical-align: middle;
    border-top: 1px solid var(--base-color-border); }
  .settings-table > thead > tr > th {
    vertical-align: middle;
    border-bottom: 1px solid var(--base-color-text); }
  .settings-table__head {
    background-color: var(--base-color-secondary);
    color: #FFF; }
    .settings-table__head th {
      height: 42px; }
  .settings-table__button {
    display: inline-block;
    font-weight: 500;
    padding: 1px 0;
    margin: 0;
    border: 0;
    background: transparent;
    outline: none; }
  .settings-table__checkbox {
    position: relative;
    top: 2px;
    display: inline-block;
    margin-right: 5px !important;
    margin-top: 2px; }
  .settings-table__tip {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #843aa4;
    display: inline-block;
    margin-left: 5px;
    font-size: 12px;
    line-height: normal;
    text-align: center;
    cursor: default; }
.account-notifications-page {
  min-height: 700px;
  margin-right: -15px;
  margin-left: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .account-notifications-page:before, .account-notifications-page:after {
    display: table;
    content: " "; }
  .account-notifications-page:after {
    clear: both; }
.profile-notifications-page {
  margin-right: -15px;
  margin-left: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .profile-notifications-page:before, .profile-notifications-page:after {
    display: table;
    content: " "; }
  .profile-notifications-page:after {
    clear: both; }
  .profile-notifications-page .settings-row__name {
    width: 865px; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

processes-page .processes-page__sorting {
  padding-bottom: 5px;
  text-align: right; }
  processes-page .processes-page__sorting > label {
    color: #353e4c;
    font-weight: 500;
    line-height: 36px;
    margin-right: 10px;
    vertical-align: top; }
  processes-page .processes-page__sorting > .ui-select-container {
    display: inline-block;
    min-width: 25%; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

resources-page .resources-page__sorting {
  padding-bottom: 5px;
  text-align: right; }
  resources-page .resources-page__sorting > label {
    color: #353e4c;
    font-weight: 500;
    line-height: 36px;
    margin-right: 10px;
    vertical-align: top; }
  resources-page .resources-page__sorting > .ui-select-container {
    display: inline-block;
    min-width: 25%; }
add-resource {
  position: relative;
  display: inline-block; }
.vue-component {
  /*!
 * Bootstrap v4.5.2 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */ }
  .vue-component :root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --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, "Noto Sans", 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; }
  .vue-component *,
  .vue-component *::before,
  .vue-component *::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .vue-component html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .vue-component article, .vue-component aside, .vue-component figcaption, .vue-component figure, .vue-component footer, .vue-component header, .vue-component hgroup, .vue-component main, .vue-component nav, .vue-component section {
    display: block; }
  .vue-component body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", 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: #fff; }
  .vue-component [tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important; }
  .vue-component hr {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    height: 0;
    overflow: visible; }
  .vue-component h1, .vue-component h2, .vue-component h3, .vue-component h4, .vue-component h5, .vue-component h6 {
    margin-top: 0;
    margin-bottom: 0.5rem; }
  .vue-component p {
    margin-top: 0;
    margin-bottom: 1rem; }
  .vue-component abbr[title],
  .vue-component abbr[data-original-title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
            text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    text-decoration-skip-ink: none; }
  .vue-component address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit; }
  .vue-component ol,
  .vue-component ul,
  .vue-component dl {
    margin-top: 0;
    margin-bottom: 1rem; }
  .vue-component ol ol,
  .vue-component ul ul,
  .vue-component ol ul,
  .vue-component ul ol {
    margin-bottom: 0; }
  .vue-component dt {
    font-weight: 700; }
  .vue-component dd {
    margin-bottom: .5rem;
    margin-left: 0; }
  .vue-component blockquote {
    margin: 0 0 1rem; }
  .vue-component b,
  .vue-component strong {
    font-weight: bolder; }
  .vue-component small {
    font-size: 80%; }
  .vue-component sub,
  .vue-component sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline; }
  .vue-component sub {
    bottom: -.25em; }
  .vue-component sup {
    top: -.5em; }
  .vue-component a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent; }
    .vue-component a:hover {
      color: #0056b3;
      text-decoration: underline; }
  .vue-component a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none; }
    .vue-component a:not([href]):not([class]):hover {
      color: inherit;
      text-decoration: none; }
  .vue-component pre,
  .vue-component code,
  .vue-component kbd,
  .vue-component samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em; }
  .vue-component pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar; }
  .vue-component figure {
    margin: 0 0 1rem; }
  .vue-component img {
    vertical-align: middle;
    border-style: none; }
  .vue-component svg {
    overflow: hidden;
    vertical-align: middle; }
  .vue-component table {
    border-collapse: collapse; }
  .vue-component caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom; }
  .vue-component th {
    text-align: inherit; }
  .vue-component label {
    display: inline-block;
    margin-bottom: 0.5rem; }
  .vue-component button {
    border-radius: 0; }
  .vue-component button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color; }
  .vue-component input,
  .vue-component button,
  .vue-component select,
  .vue-component optgroup,
  .vue-component textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit; }
  .vue-component button,
  .vue-component input {
    overflow: visible; }
  .vue-component button,
  .vue-component select {
    text-transform: none; }
  .vue-component [role="button"] {
    cursor: pointer; }
  .vue-component select {
    word-wrap: normal; }
  .vue-component button,
  .vue-component [type="button"],
  .vue-component [type="reset"],
  .vue-component [type="submit"] {
    -webkit-appearance: button; }
  .vue-component button:not(:disabled),
  .vue-component [type="button"]:not(:disabled),
  .vue-component [type="reset"]:not(:disabled),
  .vue-component [type="submit"]:not(:disabled) {
    cursor: pointer; }
  .vue-component button::-moz-focus-inner,
  .vue-component [type="button"]::-moz-focus-inner,
  .vue-component [type="reset"]::-moz-focus-inner,
  .vue-component [type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none; }
  .vue-component input[type="radio"],
  .vue-component input[type="checkbox"] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0; }
  .vue-component textarea {
    overflow: auto;
    resize: vertical; }
  .vue-component fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0; }
  .vue-component 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; }
  .vue-component progress {
    vertical-align: baseline; }
  .vue-component [type="number"]::-webkit-inner-spin-button,
  .vue-component [type="number"]::-webkit-outer-spin-button {
    height: auto; }
  .vue-component [type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none; }
  .vue-component [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }
  .vue-component ::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button; }
  .vue-component output {
    display: inline-block; }
  .vue-component summary {
    display: list-item;
    cursor: pointer; }
  .vue-component template {
    display: none; }
  .vue-component [hidden] {
    display: none !important; }
  .vue-component h1, .vue-component h2, .vue-component h3, .vue-component h4, .vue-component h5, .vue-component h6,
  .vue-component .h1, .vue-component .h2, .vue-component .h3, .vue-component .h4, .vue-component .h5, .vue-component .h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2; }
  .vue-component h1, .vue-component .h1 {
    font-size: 2.5rem; }
  .vue-component h2, .vue-component .h2 {
    font-size: 2rem; }
  .vue-component h3, .vue-component .h3 {
    font-size: 1.75rem; }
  .vue-component h4, .vue-component .h4 {
    font-size: 1.5rem; }
  .vue-component h5, .vue-component .h5 {
    font-size: 1.25rem; }
  .vue-component h6, .vue-component .h6 {
    font-size: 1rem; }
  .vue-component .lead {
    font-size: 1.25rem;
    font-weight: 300; }
  .vue-component .display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2; }
  .vue-component .display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2; }
  .vue-component .display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2; }
  .vue-component .display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2; }
  .vue-component hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .vue-component small,
  .vue-component .small {
    font-size: 80%;
    font-weight: 400; }
  .vue-component mark,
  .vue-component .mark {
    padding: 0.2em;
    background-color: #fcf8e3; }
  .vue-component .list-unstyled {
    padding-left: 0;
    list-style: none; }
  .vue-component .list-inline {
    padding-left: 0;
    list-style: none; }
  .vue-component .list-inline-item {
    display: inline-block; }
    .vue-component .list-inline-item:not(:last-child) {
      margin-right: 0.5rem; }
  .vue-component .initialism {
    font-size: 90%;
    text-transform: uppercase; }
  .vue-component .blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem; }
  .vue-component .blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d; }
    .vue-component .blockquote-footer::before {
      content: "\2014\A0"; }
  .vue-component .img-fluid {
    max-width: 100%;
    height: auto; }
  .vue-component .img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto; }
  .vue-component .figure {
    display: inline-block; }
  .vue-component .figure-img {
    margin-bottom: 0.5rem;
    line-height: 1; }
  .vue-component .figure-caption {
    font-size: 90%;
    color: #6c757d; }
  .vue-component code {
    font-size: 87.5%;
    color: #e83e8c;
    word-wrap: break-word; }
    a > .vue-component code {
      color: inherit; }
  .vue-component kbd {
    padding: 0.2rem 0.4rem;
    font-size: 87.5%;
    color: #fff;
    background-color: #212529;
    border-radius: 0.2rem; }
    .vue-component kbd kbd {
      padding: 0;
      font-size: 100%;
      font-weight: 700; }
  .vue-component pre {
    display: block;
    font-size: 87.5%;
    color: #212529; }
    .vue-component pre code {
      font-size: inherit;
      color: inherit;
      word-break: normal; }
  .vue-component .pre-scrollable {
    max-height: 340px;
    overflow-y: scroll; }
  .vue-component .container,
  .vue-component .container-fluid,
  .vue-component .container-sm,
  .vue-component .container-md,
  .vue-component .container-lg,
  .vue-component .container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto; }
  @media (min-width: 576px) {
    .vue-component .container, .vue-component .container-sm {
      max-width: 540px; } }
  @media (min-width: 768px) {
    .vue-component .container, .vue-component .container-sm, .vue-component .container-md {
      max-width: 720px; } }
  @media (min-width: 992px) {
    .vue-component .container, .vue-component .container-sm, .vue-component .container-md, .vue-component .container-lg {
      max-width: 960px; } }
  @media (min-width: 1200px) {
    .vue-component .container, .vue-component .container-sm, .vue-component .container-md, .vue-component .container-lg, .vue-component .container-xl {
      max-width: 1140px; } }
  .vue-component .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px; }
  .vue-component .no-gutters {
    margin-right: 0;
    margin-left: 0; }
    .vue-component .no-gutters > .col,
    .vue-component .no-gutters > [class*="col-"] {
      padding-right: 0;
      padding-left: 0; }
  .vue-component .col-1, .vue-component .col-2, .vue-component .col-3, .vue-component .col-4, .vue-component .col-5, .vue-component .col-6, .vue-component .col-7, .vue-component .col-8, .vue-component .col-9, .vue-component .col-10, .vue-component .col-11, .vue-component .col-12, .vue-component .col,
  .vue-component .col-auto, .vue-component .col-sm-1, .vue-component .col-sm-2, .vue-component .col-sm-3, .vue-component .col-sm-4, .vue-component .col-sm-5, .vue-component .col-sm-6, .vue-component .col-sm-7, .vue-component .col-sm-8, .vue-component .col-sm-9, .vue-component .col-sm-10, .vue-component .col-sm-11, .vue-component .col-sm-12, .vue-component .col-sm,
  .vue-component .col-sm-auto, .vue-component .col-md-1, .vue-component .col-md-2, .vue-component .col-md-3, .vue-component .col-md-4, .vue-component .col-md-5, .vue-component .col-md-6, .vue-component .col-md-7, .vue-component .col-md-8, .vue-component .col-md-9, .vue-component .col-md-10, .vue-component .col-md-11, .vue-component .col-md-12, .vue-component .col-md,
  .vue-component .col-md-auto, .vue-component .col-lg-1, .vue-component .col-lg-2, .vue-component .col-lg-3, .vue-component .col-lg-4, .vue-component .col-lg-5, .vue-component .col-lg-6, .vue-component .col-lg-7, .vue-component .col-lg-8, .vue-component .col-lg-9, .vue-component .col-lg-10, .vue-component .col-lg-11, .vue-component .col-lg-12, .vue-component .col-lg,
  .vue-component .col-lg-auto, .vue-component .col-xl-1, .vue-component .col-xl-2, .vue-component .col-xl-3, .vue-component .col-xl-4, .vue-component .col-xl-5, .vue-component .col-xl-6, .vue-component .col-xl-7, .vue-component .col-xl-8, .vue-component .col-xl-9, .vue-component .col-xl-10, .vue-component .col-xl-11, .vue-component .col-xl-12, .vue-component .col-xl,
  .vue-component .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px; }
  .vue-component .col {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%; }
  .vue-component .row-cols-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .vue-component .row-cols-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .vue-component .row-cols-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .vue-component .row-cols-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .vue-component .row-cols-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%; }
  .vue-component .row-cols-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .vue-component .col-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .vue-component .col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .vue-component .col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .vue-component .col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .vue-component .col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .vue-component .col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .vue-component .col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .vue-component .col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .vue-component .col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .vue-component .col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .vue-component .col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .vue-component .col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .vue-component .col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .vue-component .order-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1; }
  .vue-component .order-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13; }
  .vue-component .order-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0; }
  .vue-component .order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
  .vue-component .order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
  .vue-component .order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3; }
  .vue-component .order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4; }
  .vue-component .order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5; }
  .vue-component .order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6; }
  .vue-component .order-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7; }
  .vue-component .order-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8; }
  .vue-component .order-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9; }
  .vue-component .order-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10; }
  .vue-component .order-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11; }
  .vue-component .order-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12; }
  .vue-component .offset-1 {
    margin-left: 8.33333%; }
  .vue-component .offset-2 {
    margin-left: 16.66667%; }
  .vue-component .offset-3 {
    margin-left: 25%; }
  .vue-component .offset-4 {
    margin-left: 33.33333%; }
  .vue-component .offset-5 {
    margin-left: 41.66667%; }
  .vue-component .offset-6 {
    margin-left: 50%; }
  .vue-component .offset-7 {
    margin-left: 58.33333%; }
  .vue-component .offset-8 {
    margin-left: 66.66667%; }
  .vue-component .offset-9 {
    margin-left: 75%; }
  .vue-component .offset-10 {
    margin-left: 83.33333%; }
  .vue-component .offset-11 {
    margin-left: 91.66667%; }
  @media (min-width: 576px) {
    .vue-component .col-sm {
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      max-width: 100%; }
    .vue-component .row-cols-sm-1 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%; }
    .vue-component .row-cols-sm-2 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: 50%; }
    .vue-component .row-cols-sm-3 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33333%;
              flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .vue-component .row-cols-sm-4 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      max-width: 25%; }
    .vue-component .row-cols-sm-5 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 20%;
              flex: 0 0 20%;
      max-width: 20%; }
    .vue-component .row-cols-sm-6 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 16.66667%;
              flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .vue-component .col-sm-auto {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: auto;
      max-width: 100%; }
    .vue-component .col-sm-1 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 8.33333%;
              flex: 0 0 8.33333%;
      max-width: 8.33333%; }
    .vue-component .col-sm-2 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 16.66667%;
              flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .vue-component .col-sm-3 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      max-width: 25%; }
    .vue-component .col-sm-4 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33333%;
              flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .vue-component .col-sm-5 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 41.66667%;
              flex: 0 0 41.66667%;
      max-width: 41.66667%; }
    .vue-component .col-sm-6 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: 50%; }
    .vue-component .col-sm-7 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 58.33333%;
              flex: 0 0 58.33333%;
      max-width: 58.33333%; }
    .vue-component .col-sm-8 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 66.66667%;
              flex: 0 0 66.66667%;
      max-width: 66.66667%; }
    .vue-component .col-sm-9 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 75%;
              flex: 0 0 75%;
      max-width: 75%; }
    .vue-component .col-sm-10 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 83.33333%;
              flex: 0 0 83.33333%;
      max-width: 83.33333%; }
    .vue-component .col-sm-11 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 91.66667%;
              flex: 0 0 91.66667%;
      max-width: 91.66667%; }
    .vue-component .col-sm-12 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%; }
    .vue-component .order-sm-first {
      -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1; }
    .vue-component .order-sm-last {
      -webkit-box-ordinal-group: 14;
          -ms-flex-order: 13;
              order: 13; }
    .vue-component .order-sm-0 {
      -webkit-box-ordinal-group: 1;
          -ms-flex-order: 0;
              order: 0; }
    .vue-component .order-sm-1 {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; }
    .vue-component .order-sm-2 {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
    .vue-component .order-sm-3 {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3; }
    .vue-component .order-sm-4 {
      -webkit-box-ordinal-group: 5;
          -ms-flex-order: 4;
              order: 4; }
    .vue-component .order-sm-5 {
      -webkit-box-ordinal-group: 6;
          -ms-flex-order: 5;
              order: 5; }
    .vue-component .order-sm-6 {
      -webkit-box-ordinal-group: 7;
          -ms-flex-order: 6;
              order: 6; }
    .vue-component .order-sm-7 {
      -webkit-box-ordinal-group: 8;
          -ms-flex-order: 7;
              order: 7; }
    .vue-component .order-sm-8 {
      -webkit-box-ordinal-group: 9;
          -ms-flex-order: 8;
              order: 8; }
    .vue-component .order-sm-9 {
      -webkit-box-ordinal-group: 10;
          -ms-flex-order: 9;
              order: 9; }
    .vue-component .order-sm-10 {
      -webkit-box-ordinal-group: 11;
          -ms-flex-order: 10;
              order: 10; }
    .vue-component .order-sm-11 {
      -webkit-box-ordinal-group: 12;
          -ms-flex-order: 11;
              order: 11; }
    .vue-component .order-sm-12 {
      -webkit-box-ordinal-group: 13;
          -ms-flex-order: 12;
              order: 12; }
    .vue-component .offset-sm-0 {
      margin-left: 0; }
    .vue-component .offset-sm-1 {
      margin-left: 8.33333%; }
    .vue-component .offset-sm-2 {
      margin-left: 16.66667%; }
    .vue-component .offset-sm-3 {
      margin-left: 25%; }
    .vue-component .offset-sm-4 {
      margin-left: 33.33333%; }
    .vue-component .offset-sm-5 {
      margin-left: 41.66667%; }
    .vue-component .offset-sm-6 {
      margin-left: 50%; }
    .vue-component .offset-sm-7 {
      margin-left: 58.33333%; }
    .vue-component .offset-sm-8 {
      margin-left: 66.66667%; }
    .vue-component .offset-sm-9 {
      margin-left: 75%; }
    .vue-component .offset-sm-10 {
      margin-left: 83.33333%; }
    .vue-component .offset-sm-11 {
      margin-left: 91.66667%; } }
  @media (min-width: 768px) {
    .vue-component .col-md {
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      max-width: 100%; }
    .vue-component .row-cols-md-1 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%; }
    .vue-component .row-cols-md-2 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: 50%; }
    .vue-component .row-cols-md-3 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33333%;
              flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .vue-component .row-cols-md-4 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      max-width: 25%; }
    .vue-component .row-cols-md-5 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 20%;
              flex: 0 0 20%;
      max-width: 20%; }
    .vue-component .row-cols-md-6 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 16.66667%;
              flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .vue-component .col-md-auto {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: auto;
      max-width: 100%; }
    .vue-component .col-md-1 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 8.33333%;
              flex: 0 0 8.33333%;
      max-width: 8.33333%; }
    .vue-component .col-md-2 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 16.66667%;
              flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .vue-component .col-md-3 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      max-width: 25%; }
    .vue-component .col-md-4 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33333%;
              flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .vue-component .col-md-5 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 41.66667%;
              flex: 0 0 41.66667%;
      max-width: 41.66667%; }
    .vue-component .col-md-6 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: 50%; }
    .vue-component .col-md-7 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 58.33333%;
              flex: 0 0 58.33333%;
      max-width: 58.33333%; }
    .vue-component .col-md-8 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 66.66667%;
              flex: 0 0 66.66667%;
      max-width: 66.66667%; }
    .vue-component .col-md-9 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 75%;
              flex: 0 0 75%;
      max-width: 75%; }
    .vue-component .col-md-10 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 83.33333%;
              flex: 0 0 83.33333%;
      max-width: 83.33333%; }
    .vue-component .col-md-11 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 91.66667%;
              flex: 0 0 91.66667%;
      max-width: 91.66667%; }
    .vue-component .col-md-12 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%; }
    .vue-component .order-md-first {
      -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1; }
    .vue-component .order-md-last {
      -webkit-box-ordinal-group: 14;
          -ms-flex-order: 13;
              order: 13; }
    .vue-component .order-md-0 {
      -webkit-box-ordinal-group: 1;
          -ms-flex-order: 0;
              order: 0; }
    .vue-component .order-md-1 {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; }
    .vue-component .order-md-2 {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
    .vue-component .order-md-3 {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3; }
    .vue-component .order-md-4 {
      -webkit-box-ordinal-group: 5;
          -ms-flex-order: 4;
              order: 4; }
    .vue-component .order-md-5 {
      -webkit-box-ordinal-group: 6;
          -ms-flex-order: 5;
              order: 5; }
    .vue-component .order-md-6 {
      -webkit-box-ordinal-group: 7;
          -ms-flex-order: 6;
              order: 6; }
    .vue-component .order-md-7 {
      -webkit-box-ordinal-group: 8;
          -ms-flex-order: 7;
              order: 7; }
    .vue-component .order-md-8 {
      -webkit-box-ordinal-group: 9;
          -ms-flex-order: 8;
              order: 8; }
    .vue-component .order-md-9 {
      -webkit-box-ordinal-group: 10;
          -ms-flex-order: 9;
              order: 9; }
    .vue-component .order-md-10 {
      -webkit-box-ordinal-group: 11;
          -ms-flex-order: 10;
              order: 10; }
    .vue-component .order-md-11 {
      -webkit-box-ordinal-group: 12;
          -ms-flex-order: 11;
              order: 11; }
    .vue-component .order-md-12 {
      -webkit-box-ordinal-group: 13;
          -ms-flex-order: 12;
              order: 12; }
    .vue-component .offset-md-0 {
      margin-left: 0; }
    .vue-component .offset-md-1 {
      margin-left: 8.33333%; }
    .vue-component .offset-md-2 {
      margin-left: 16.66667%; }
    .vue-component .offset-md-3 {
      margin-left: 25%; }
    .vue-component .offset-md-4 {
      margin-left: 33.33333%; }
    .vue-component .offset-md-5 {
      margin-left: 41.66667%; }
    .vue-component .offset-md-6 {
      margin-left: 50%; }
    .vue-component .offset-md-7 {
      margin-left: 58.33333%; }
    .vue-component .offset-md-8 {
      margin-left: 66.66667%; }
    .vue-component .offset-md-9 {
      margin-left: 75%; }
    .vue-component .offset-md-10 {
      margin-left: 83.33333%; }
    .vue-component .offset-md-11 {
      margin-left: 91.66667%; } }
  @media (min-width: 992px) {
    .vue-component .col-lg {
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      max-width: 100%; }
    .vue-component .row-cols-lg-1 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%; }
    .vue-component .row-cols-lg-2 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: 50%; }
    .vue-component .row-cols-lg-3 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33333%;
              flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .vue-component .row-cols-lg-4 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      max-width: 25%; }
    .vue-component .row-cols-lg-5 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 20%;
              flex: 0 0 20%;
      max-width: 20%; }
    .vue-component .row-cols-lg-6 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 16.66667%;
              flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .vue-component .col-lg-auto {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: auto;
      max-width: 100%; }
    .vue-component .col-lg-1 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 8.33333%;
              flex: 0 0 8.33333%;
      max-width: 8.33333%; }
    .vue-component .col-lg-2 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 16.66667%;
              flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .vue-component .col-lg-3 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      max-width: 25%; }
    .vue-component .col-lg-4 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33333%;
              flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .vue-component .col-lg-5 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 41.66667%;
              flex: 0 0 41.66667%;
      max-width: 41.66667%; }
    .vue-component .col-lg-6 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: 50%; }
    .vue-component .col-lg-7 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 58.33333%;
              flex: 0 0 58.33333%;
      max-width: 58.33333%; }
    .vue-component .col-lg-8 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 66.66667%;
              flex: 0 0 66.66667%;
      max-width: 66.66667%; }
    .vue-component .col-lg-9 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 75%;
              flex: 0 0 75%;
      max-width: 75%; }
    .vue-component .col-lg-10 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 83.33333%;
              flex: 0 0 83.33333%;
      max-width: 83.33333%; }
    .vue-component .col-lg-11 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 91.66667%;
              flex: 0 0 91.66667%;
      max-width: 91.66667%; }
    .vue-component .col-lg-12 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%; }
    .vue-component .order-lg-first {
      -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1; }
    .vue-component .order-lg-last {
      -webkit-box-ordinal-group: 14;
          -ms-flex-order: 13;
              order: 13; }
    .vue-component .order-lg-0 {
      -webkit-box-ordinal-group: 1;
          -ms-flex-order: 0;
              order: 0; }
    .vue-component .order-lg-1 {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; }
    .vue-component .order-lg-2 {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
    .vue-component .order-lg-3 {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3; }
    .vue-component .order-lg-4 {
      -webkit-box-ordinal-group: 5;
          -ms-flex-order: 4;
              order: 4; }
    .vue-component .order-lg-5 {
      -webkit-box-ordinal-group: 6;
          -ms-flex-order: 5;
              order: 5; }
    .vue-component .order-lg-6 {
      -webkit-box-ordinal-group: 7;
          -ms-flex-order: 6;
              order: 6; }
    .vue-component .order-lg-7 {
      -webkit-box-ordinal-group: 8;
          -ms-flex-order: 7;
              order: 7; }
    .vue-component .order-lg-8 {
      -webkit-box-ordinal-group: 9;
          -ms-flex-order: 8;
              order: 8; }
    .vue-component .order-lg-9 {
      -webkit-box-ordinal-group: 10;
          -ms-flex-order: 9;
              order: 9; }
    .vue-component .order-lg-10 {
      -webkit-box-ordinal-group: 11;
          -ms-flex-order: 10;
              order: 10; }
    .vue-component .order-lg-11 {
      -webkit-box-ordinal-group: 12;
          -ms-flex-order: 11;
              order: 11; }
    .vue-component .order-lg-12 {
      -webkit-box-ordinal-group: 13;
          -ms-flex-order: 12;
              order: 12; }
    .vue-component .offset-lg-0 {
      margin-left: 0; }
    .vue-component .offset-lg-1 {
      margin-left: 8.33333%; }
    .vue-component .offset-lg-2 {
      margin-left: 16.66667%; }
    .vue-component .offset-lg-3 {
      margin-left: 25%; }
    .vue-component .offset-lg-4 {
      margin-left: 33.33333%; }
    .vue-component .offset-lg-5 {
      margin-left: 41.66667%; }
    .vue-component .offset-lg-6 {
      margin-left: 50%; }
    .vue-component .offset-lg-7 {
      margin-left: 58.33333%; }
    .vue-component .offset-lg-8 {
      margin-left: 66.66667%; }
    .vue-component .offset-lg-9 {
      margin-left: 75%; }
    .vue-component .offset-lg-10 {
      margin-left: 83.33333%; }
    .vue-component .offset-lg-11 {
      margin-left: 91.66667%; } }
  @media (min-width: 1200px) {
    .vue-component .col-xl {
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      max-width: 100%; }
    .vue-component .row-cols-xl-1 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%; }
    .vue-component .row-cols-xl-2 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: 50%; }
    .vue-component .row-cols-xl-3 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33333%;
              flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .vue-component .row-cols-xl-4 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      max-width: 25%; }
    .vue-component .row-cols-xl-5 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 20%;
              flex: 0 0 20%;
      max-width: 20%; }
    .vue-component .row-cols-xl-6 > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 16.66667%;
              flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .vue-component .col-xl-auto {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: auto;
      max-width: 100%; }
    .vue-component .col-xl-1 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 8.33333%;
              flex: 0 0 8.33333%;
      max-width: 8.33333%; }
    .vue-component .col-xl-2 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 16.66667%;
              flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .vue-component .col-xl-3 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      max-width: 25%; }
    .vue-component .col-xl-4 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33333%;
              flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .vue-component .col-xl-5 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 41.66667%;
              flex: 0 0 41.66667%;
      max-width: 41.66667%; }
    .vue-component .col-xl-6 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: 50%; }
    .vue-component .col-xl-7 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 58.33333%;
              flex: 0 0 58.33333%;
      max-width: 58.33333%; }
    .vue-component .col-xl-8 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 66.66667%;
              flex: 0 0 66.66667%;
      max-width: 66.66667%; }
    .vue-component .col-xl-9 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 75%;
              flex: 0 0 75%;
      max-width: 75%; }
    .vue-component .col-xl-10 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 83.33333%;
              flex: 0 0 83.33333%;
      max-width: 83.33333%; }
    .vue-component .col-xl-11 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 91.66667%;
              flex: 0 0 91.66667%;
      max-width: 91.66667%; }
    .vue-component .col-xl-12 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%; }
    .vue-component .order-xl-first {
      -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1; }
    .vue-component .order-xl-last {
      -webkit-box-ordinal-group: 14;
          -ms-flex-order: 13;
              order: 13; }
    .vue-component .order-xl-0 {
      -webkit-box-ordinal-group: 1;
          -ms-flex-order: 0;
              order: 0; }
    .vue-component .order-xl-1 {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; }
    .vue-component .order-xl-2 {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
    .vue-component .order-xl-3 {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3; }
    .vue-component .order-xl-4 {
      -webkit-box-ordinal-group: 5;
          -ms-flex-order: 4;
              order: 4; }
    .vue-component .order-xl-5 {
      -webkit-box-ordinal-group: 6;
          -ms-flex-order: 5;
              order: 5; }
    .vue-component .order-xl-6 {
      -webkit-box-ordinal-group: 7;
          -ms-flex-order: 6;
              order: 6; }
    .vue-component .order-xl-7 {
      -webkit-box-ordinal-group: 8;
          -ms-flex-order: 7;
              order: 7; }
    .vue-component .order-xl-8 {
      -webkit-box-ordinal-group: 9;
          -ms-flex-order: 8;
              order: 8; }
    .vue-component .order-xl-9 {
      -webkit-box-ordinal-group: 10;
          -ms-flex-order: 9;
              order: 9; }
    .vue-component .order-xl-10 {
      -webkit-box-ordinal-group: 11;
          -ms-flex-order: 10;
              order: 10; }
    .vue-component .order-xl-11 {
      -webkit-box-ordinal-group: 12;
          -ms-flex-order: 11;
              order: 11; }
    .vue-component .order-xl-12 {
      -webkit-box-ordinal-group: 13;
          -ms-flex-order: 12;
              order: 12; }
    .vue-component .offset-xl-0 {
      margin-left: 0; }
    .vue-component .offset-xl-1 {
      margin-left: 8.33333%; }
    .vue-component .offset-xl-2 {
      margin-left: 16.66667%; }
    .vue-component .offset-xl-3 {
      margin-left: 25%; }
    .vue-component .offset-xl-4 {
      margin-left: 33.33333%; }
    .vue-component .offset-xl-5 {
      margin-left: 41.66667%; }
    .vue-component .offset-xl-6 {
      margin-left: 50%; }
    .vue-component .offset-xl-7 {
      margin-left: 58.33333%; }
    .vue-component .offset-xl-8 {
      margin-left: 66.66667%; }
    .vue-component .offset-xl-9 {
      margin-left: 75%; }
    .vue-component .offset-xl-10 {
      margin-left: 83.33333%; }
    .vue-component .offset-xl-11 {
      margin-left: 91.66667%; } }
  .vue-component .table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529; }
    .vue-component .table th,
    .vue-component .table td {
      padding: 0.75rem;
      vertical-align: top;
      border-top: 1px solid #dee2e6; }
    .vue-component .table thead th {
      vertical-align: bottom;
      border-bottom: 2px solid #dee2e6; }
    .vue-component .table tbody + tbody {
      border-top: 2px solid #dee2e6; }
  .vue-component .table-sm th,
  .vue-component .table-sm td {
    padding: 0.3rem; }
  .vue-component .table-bordered {
    border: 1px solid #dee2e6; }
    .vue-component .table-bordered th,
    .vue-component .table-bordered td {
      border: 1px solid #dee2e6; }
    .vue-component .table-bordered thead th,
    .vue-component .table-bordered thead td {
      border-bottom-width: 2px; }
  .vue-component .table-borderless th,
  .vue-component .table-borderless td,
  .vue-component .table-borderless thead th,
  .vue-component .table-borderless tbody + tbody {
    border: 0; }
  .vue-component .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05); }
  .vue-component .table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(0, 0, 0, 0.075); }
  .vue-component .table-primary,
  .vue-component .table-primary > th,
  .vue-component .table-primary > td {
    background-color: #b8daff; }
  .vue-component .table-primary th,
  .vue-component .table-primary td,
  .vue-component .table-primary thead th,
  .vue-component .table-primary tbody + tbody {
    border-color: #7abaff; }
  .vue-component .table-hover .table-primary:hover {
    background-color: #9fcdff; }
    .vue-component .table-hover .table-primary:hover > td,
    .vue-component .table-hover .table-primary:hover > th {
      background-color: #9fcdff; }
  .vue-component .table-secondary,
  .vue-component .table-secondary > th,
  .vue-component .table-secondary > td {
    background-color: #d6d8db; }
  .vue-component .table-secondary th,
  .vue-component .table-secondary td,
  .vue-component .table-secondary thead th,
  .vue-component .table-secondary tbody + tbody {
    border-color: #b3b7bb; }
  .vue-component .table-hover .table-secondary:hover {
    background-color: #c8cbcf; }
    .vue-component .table-hover .table-secondary:hover > td,
    .vue-component .table-hover .table-secondary:hover > th {
      background-color: #c8cbcf; }
  .vue-component .table-success,
  .vue-component .table-success > th,
  .vue-component .table-success > td {
    background-color: #c3e6cb; }
  .vue-component .table-success th,
  .vue-component .table-success td,
  .vue-component .table-success thead th,
  .vue-component .table-success tbody + tbody {
    border-color: #8fd19e; }
  .vue-component .table-hover .table-success:hover {
    background-color: #b1dfbb; }
    .vue-component .table-hover .table-success:hover > td,
    .vue-component .table-hover .table-success:hover > th {
      background-color: #b1dfbb; }
  .vue-component .table-info,
  .vue-component .table-info > th,
  .vue-component .table-info > td {
    background-color: #bee5eb; }
  .vue-component .table-info th,
  .vue-component .table-info td,
  .vue-component .table-info thead th,
  .vue-component .table-info tbody + tbody {
    border-color: #86cfda; }
  .vue-component .table-hover .table-info:hover {
    background-color: #abdde5; }
    .vue-component .table-hover .table-info:hover > td,
    .vue-component .table-hover .table-info:hover > th {
      background-color: #abdde5; }
  .vue-component .table-warning,
  .vue-component .table-warning > th,
  .vue-component .table-warning > td {
    background-color: #ffeeba; }
  .vue-component .table-warning th,
  .vue-component .table-warning td,
  .vue-component .table-warning thead th,
  .vue-component .table-warning tbody + tbody {
    border-color: #ffdf7e; }
  .vue-component .table-hover .table-warning:hover {
    background-color: #ffe8a1; }
    .vue-component .table-hover .table-warning:hover > td,
    .vue-component .table-hover .table-warning:hover > th {
      background-color: #ffe8a1; }
  .vue-component .table-danger,
  .vue-component .table-danger > th,
  .vue-component .table-danger > td {
    background-color: #f5c6cb; }
  .vue-component .table-danger th,
  .vue-component .table-danger td,
  .vue-component .table-danger thead th,
  .vue-component .table-danger tbody + tbody {
    border-color: #ed969e; }
  .vue-component .table-hover .table-danger:hover {
    background-color: #f1b0b7; }
    .vue-component .table-hover .table-danger:hover > td,
    .vue-component .table-hover .table-danger:hover > th {
      background-color: #f1b0b7; }
  .vue-component .table-light,
  .vue-component .table-light > th,
  .vue-component .table-light > td {
    background-color: #fdfdfe; }
  .vue-component .table-light th,
  .vue-component .table-light td,
  .vue-component .table-light thead th,
  .vue-component .table-light tbody + tbody {
    border-color: #fbfcfc; }
  .vue-component .table-hover .table-light:hover {
    background-color: #ececf6; }
    .vue-component .table-hover .table-light:hover > td,
    .vue-component .table-hover .table-light:hover > th {
      background-color: #ececf6; }
  .vue-component .table-dark,
  .vue-component .table-dark > th,
  .vue-component .table-dark > td {
    background-color: #c6c8ca; }
  .vue-component .table-dark th,
  .vue-component .table-dark td,
  .vue-component .table-dark thead th,
  .vue-component .table-dark tbody + tbody {
    border-color: #95999c; }
  .vue-component .table-hover .table-dark:hover {
    background-color: #b9bbbe; }
    .vue-component .table-hover .table-dark:hover > td,
    .vue-component .table-hover .table-dark:hover > th {
      background-color: #b9bbbe; }
  .vue-component .table-active,
  .vue-component .table-active > th,
  .vue-component .table-active > td {
    background-color: rgba(0, 0, 0, 0.075); }
  .vue-component .table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075); }
    .vue-component .table-hover .table-active:hover > td,
    .vue-component .table-hover .table-active:hover > th {
      background-color: rgba(0, 0, 0, 0.075); }
  .vue-component .table .thead-dark th {
    color: #fff;
    background-color: #343a40;
    border-color: #454d55; }
  .vue-component .table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6; }
  .vue-component .table-dark {
    color: #fff;
    background-color: #343a40; }
    .vue-component .table-dark th,
    .vue-component .table-dark td,
    .vue-component .table-dark thead th {
      border-color: #454d55; }
    .vue-component .table-dark.table-bordered {
      border: 0; }
    .vue-component .table-dark.table-striped tbody tr:nth-of-type(odd) {
      background-color: rgba(255, 255, 255, 0.05); }
    .vue-component .table-dark.table-hover tbody tr:hover {
      color: #fff;
      background-color: rgba(255, 255, 255, 0.075); }
  @media (max-width: 575.98px) {
    .vue-component .table-responsive-sm {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch; }
      .vue-component .table-responsive-sm > .table-bordered {
        border: 0; } }
  @media (max-width: 767.98px) {
    .vue-component .table-responsive-md {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch; }
      .vue-component .table-responsive-md > .table-bordered {
        border: 0; } }
  @media (max-width: 991.98px) {
    .vue-component .table-responsive-lg {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch; }
      .vue-component .table-responsive-lg > .table-bordered {
        border: 0; } }
  @media (max-width: 1199.98px) {
    .vue-component .table-responsive-xl {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch; }
      .vue-component .table-responsive-xl > .table-bordered {
        border: 0; } }
  .vue-component .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    .vue-component .table-responsive > .table-bordered {
      border: 0; }
  .vue-component .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .form-control {
        -webkit-transition: none;
        transition: none; } }
    .vue-component .form-control::-ms-expand {
      background-color: transparent;
      border: 0; }
    .vue-component .form-control:-moz-focusring {
      color: transparent;
      text-shadow: 0 0 0 #495057; }
    .vue-component .form-control:focus {
      color: #495057;
      background-color: #fff;
      border-color: #80bdff;
      outline: 0;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
    .vue-component .form-control::-webkit-input-placeholder {
      color: #6c757d;
      opacity: 1; }
    .vue-component .form-control::-moz-placeholder {
      color: #6c757d;
      opacity: 1; }
    .vue-component .form-control::-ms-input-placeholder {
      color: #6c757d;
      opacity: 1; }
    .vue-component .form-control::placeholder {
      color: #6c757d;
      opacity: 1; }
    .vue-component .form-control:disabled, .vue-component .form-control[readonly] {
      background-color: #e9ecef;
      opacity: 1; }
  .vue-component input[type="date"].form-control,
  .vue-component input[type="time"].form-control,
  .vue-component input[type="datetime-local"].form-control,
  .vue-component input[type="month"].form-control {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; }
  .vue-component select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff; }
  .vue-component .form-control-file,
  .vue-component .form-control-range {
    display: block;
    width: 100%; }
  .vue-component .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; }
  .vue-component .col-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5; }
  .vue-component .col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.875rem;
    line-height: 1.5; }
  .vue-component .form-control-plaintext {
    display: block;
    width: 100%;
    padding: 0.375rem 0;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0; }
    .vue-component .form-control-plaintext.form-control-sm, .vue-component .form-control-plaintext.form-control-lg {
      padding-right: 0;
      padding-left: 0; }
  .vue-component .form-control-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem; }
  .vue-component .form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem; }
  .vue-component select.form-control[size], .vue-component select.form-control[multiple] {
    height: auto; }
  .vue-component textarea.form-control {
    height: auto; }
  .vue-component .form-group {
    margin-bottom: 1rem; }
  .vue-component .form-text {
    display: block;
    margin-top: 0.25rem; }
  .vue-component .form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px; }
    .vue-component .form-row > .col,
    .vue-component .form-row > [class*="col-"] {
      padding-right: 5px;
      padding-left: 5px; }
  .vue-component .form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem; }
  .vue-component .form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem; }
    .vue-component .form-check-input[disabled] ~ .form-check-label,
    .vue-component .form-check-input:disabled ~ .form-check-label {
      color: #6c757d; }
  .vue-component .form-check-label {
    margin-bottom: 0; }
  .vue-component .form-check-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
    margin-right: 0.75rem; }
    .vue-component .form-check-inline .form-check-input {
      position: static;
      margin-top: 0;
      margin-right: 0.3125rem;
      margin-left: 0; }
  .vue-component .valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #28a745; }
  .vue-component .valid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    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: #fff;
    background-color: rgba(40, 167, 69, 0.9);
    border-radius: 0.25rem; }
  .was-validated .vue-component:valid ~ .valid-feedback,
  .was-validated .vue-component:valid ~ .valid-tooltip, .vue-component.is-valid ~ .valid-feedback,
  .vue-component.is-valid ~ .valid-tooltip {
    display: block; }
  .was-validated .vue-component .form-control:valid, .vue-component .form-control.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
    .was-validated .vue-component .form-control:valid:focus, .vue-component .form-control.is-valid:focus {
      border-color: #28a745;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  .was-validated .vue-component textarea.form-control:valid, .vue-component textarea.form-control.is-valid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); }
  .was-validated .vue-component .custom-select:valid, .vue-component .custom-select.is-valid {
    border-color: #28a745;
    padding-right: calc(0.75em + 2.3125rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' 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/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
    .was-validated .vue-component .custom-select:valid:focus, .vue-component .custom-select.is-valid:focus {
      border-color: #28a745;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  .was-validated .vue-component .form-check-input:valid ~ .form-check-label, .vue-component .form-check-input.is-valid ~ .form-check-label {
    color: #28a745; }
  .was-validated .vue-component .form-check-input:valid ~ .valid-feedback,
  .was-validated .vue-component .form-check-input:valid ~ .valid-tooltip, .vue-component .form-check-input.is-valid ~ .valid-feedback,
  .vue-component .form-check-input.is-valid ~ .valid-tooltip {
    display: block; }
  .was-validated .vue-component .custom-control-input:valid ~ .custom-control-label, .vue-component .custom-control-input.is-valid ~ .custom-control-label {
    color: #28a745; }
    .was-validated .vue-component .custom-control-input:valid ~ .custom-control-label::before, .vue-component .custom-control-input.is-valid ~ .custom-control-label::before {
      border-color: #28a745; }
  .was-validated .vue-component .custom-control-input:valid:checked ~ .custom-control-label::before, .vue-component .custom-control-input.is-valid:checked ~ .custom-control-label::before {
    border-color: #34ce57;
    background-color: #34ce57; }
  .was-validated .vue-component .custom-control-input:valid:focus ~ .custom-control-label::before, .vue-component .custom-control-input.is-valid:focus ~ .custom-control-label::before {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
            box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  .was-validated .vue-component .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .vue-component .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #28a745; }
  .was-validated .vue-component .custom-file-input:valid ~ .custom-file-label, .vue-component .custom-file-input.is-valid ~ .custom-file-label {
    border-color: #28a745; }
  .was-validated .vue-component .custom-file-input:valid:focus ~ .custom-file-label, .vue-component .custom-file-input.is-valid:focus ~ .custom-file-label {
    border-color: #28a745;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
            box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  .vue-component .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545; }
  .vue-component .invalid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    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: #fff;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 0.25rem; }
  .was-validated .vue-component:invalid ~ .invalid-feedback,
  .was-validated .vue-component:invalid ~ .invalid-tooltip, .vue-component.is-invalid ~ .invalid-feedback,
  .vue-component.is-invalid ~ .invalid-tooltip {
    display: block; }
  .was-validated .vue-component .form-control:invalid, .vue-component .form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
    .was-validated .vue-component .form-control:invalid:focus, .vue-component .form-control.is-invalid:focus {
      border-color: #dc3545;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  .was-validated .vue-component textarea.form-control:invalid, .vue-component textarea.form-control.is-invalid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); }
  .was-validated .vue-component .custom-select:invalid, .vue-component .custom-select.is-invalid {
    border-color: #dc3545;
    padding-right: calc(0.75em + 2.3125rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' 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/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
    .was-validated .vue-component .custom-select:invalid:focus, .vue-component .custom-select.is-invalid:focus {
      border-color: #dc3545;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  .was-validated .vue-component .form-check-input:invalid ~ .form-check-label, .vue-component .form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545; }
  .was-validated .vue-component .form-check-input:invalid ~ .invalid-feedback,
  .was-validated .vue-component .form-check-input:invalid ~ .invalid-tooltip, .vue-component .form-check-input.is-invalid ~ .invalid-feedback,
  .vue-component .form-check-input.is-invalid ~ .invalid-tooltip {
    display: block; }
  .was-validated .vue-component .custom-control-input:invalid ~ .custom-control-label, .vue-component .custom-control-input.is-invalid ~ .custom-control-label {
    color: #dc3545; }
    .was-validated .vue-component .custom-control-input:invalid ~ .custom-control-label::before, .vue-component .custom-control-input.is-invalid ~ .custom-control-label::before {
      border-color: #dc3545; }
  .was-validated .vue-component .custom-control-input:invalid:checked ~ .custom-control-label::before, .vue-component .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
    border-color: #e4606d;
    background-color: #e4606d; }
  .was-validated .vue-component .custom-control-input:invalid:focus ~ .custom-control-label::before, .vue-component .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  .was-validated .vue-component .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .vue-component .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #dc3545; }
  .was-validated .vue-component .custom-file-input:invalid ~ .custom-file-label, .vue-component .custom-file-input.is-invalid ~ .custom-file-label {
    border-color: #dc3545; }
  .was-validated .vue-component .custom-file-input:invalid:focus ~ .custom-file-label, .vue-component .custom-file-input.is-invalid:focus ~ .custom-file-label {
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  .vue-component .form-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .vue-component .form-inline .form-check {
      width: 100%; }
    @media (min-width: 576px) {
      .vue-component .form-inline label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-bottom: 0; }
      .vue-component .form-inline .form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 0; }
      .vue-component .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle; }
      .vue-component .form-inline .form-control-plaintext {
        display: inline-block; }
      .vue-component .form-inline .input-group,
      .vue-component .form-inline .custom-select {
        width: auto; }
      .vue-component .form-inline .form-check {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: auto;
        padding-left: 0; }
      .vue-component .form-inline .form-check-input {
        position: relative;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-top: 0;
        margin-right: 0.25rem;
        margin-left: 0; }
      .vue-component .form-inline .custom-control {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
      .vue-component .form-inline .custom-control-label {
        margin-bottom: 0; } }
  .vue-component .btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    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;
    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, -webkit-box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .btn {
        -webkit-transition: none;
        transition: none; } }
    .vue-component .btn:hover {
      color: #212529;
      text-decoration: none; }
    .vue-component .btn:focus, .vue-component .btn.focus {
      outline: 0;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
    .vue-component .btn.disabled, .vue-component .btn:disabled {
      opacity: 0.65; }
    .vue-component .btn:not(:disabled):not(.disabled) {
      cursor: pointer; }
  .vue-component a.btn.disabled,
  .vue-component fieldset:disabled a.btn {
    pointer-events: none; }
  .vue-component .btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }
    .vue-component .btn-primary:hover {
      color: #fff;
      background-color: #0069d9;
      border-color: #0062cc; }
    .vue-component .btn-primary:focus, .vue-component .btn-primary.focus {
      color: #fff;
      background-color: #0069d9;
      border-color: #0062cc;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); }
    .vue-component .btn-primary.disabled, .vue-component .btn-primary:disabled {
      color: #fff;
      background-color: #007bff;
      border-color: #007bff; }
    .vue-component .btn-primary:not(:disabled):not(.disabled):active, .vue-component .btn-primary:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-primary.dropdown-toggle {
      color: #fff;
      background-color: #0062cc;
      border-color: #005cbf; }
      .vue-component .btn-primary:not(:disabled):not(.disabled):active:focus, .vue-component .btn-primary:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-primary.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); }
  .vue-component .btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d; }
    .vue-component .btn-secondary:hover {
      color: #fff;
      background-color: #5a6268;
      border-color: #545b62; }
    .vue-component .btn-secondary:focus, .vue-component .btn-secondary.focus {
      color: #fff;
      background-color: #5a6268;
      border-color: #545b62;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); }
    .vue-component .btn-secondary.disabled, .vue-component .btn-secondary:disabled {
      color: #fff;
      background-color: #6c757d;
      border-color: #6c757d; }
    .vue-component .btn-secondary:not(:disabled):not(.disabled):active, .vue-component .btn-secondary:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-secondary.dropdown-toggle {
      color: #fff;
      background-color: #545b62;
      border-color: #4e555b; }
      .vue-component .btn-secondary:not(:disabled):not(.disabled):active:focus, .vue-component .btn-secondary:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-secondary.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); }
  .vue-component .btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745; }
    .vue-component .btn-success:hover {
      color: #fff;
      background-color: #218838;
      border-color: #1e7e34; }
    .vue-component .btn-success:focus, .vue-component .btn-success.focus {
      color: #fff;
      background-color: #218838;
      border-color: #1e7e34;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); }
    .vue-component .btn-success.disabled, .vue-component .btn-success:disabled {
      color: #fff;
      background-color: #28a745;
      border-color: #28a745; }
    .vue-component .btn-success:not(:disabled):not(.disabled):active, .vue-component .btn-success:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-success.dropdown-toggle {
      color: #fff;
      background-color: #1e7e34;
      border-color: #1c7430; }
      .vue-component .btn-success:not(:disabled):not(.disabled):active:focus, .vue-component .btn-success:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-success.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); }
  .vue-component .btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8; }
    .vue-component .btn-info:hover {
      color: #fff;
      background-color: #138496;
      border-color: #117a8b; }
    .vue-component .btn-info:focus, .vue-component .btn-info.focus {
      color: #fff;
      background-color: #138496;
      border-color: #117a8b;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); }
    .vue-component .btn-info.disabled, .vue-component .btn-info:disabled {
      color: #fff;
      background-color: #17a2b8;
      border-color: #17a2b8; }
    .vue-component .btn-info:not(:disabled):not(.disabled):active, .vue-component .btn-info:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-info.dropdown-toggle {
      color: #fff;
      background-color: #117a8b;
      border-color: #10707f; }
      .vue-component .btn-info:not(:disabled):not(.disabled):active:focus, .vue-component .btn-info:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-info.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); }
  .vue-component .btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107; }
    .vue-component .btn-warning:hover {
      color: #212529;
      background-color: #e0a800;
      border-color: #d39e00; }
    .vue-component .btn-warning:focus, .vue-component .btn-warning.focus {
      color: #212529;
      background-color: #e0a800;
      border-color: #d39e00;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); }
    .vue-component .btn-warning.disabled, .vue-component .btn-warning:disabled {
      color: #212529;
      background-color: #ffc107;
      border-color: #ffc107; }
    .vue-component .btn-warning:not(:disabled):not(.disabled):active, .vue-component .btn-warning:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-warning.dropdown-toggle {
      color: #212529;
      background-color: #d39e00;
      border-color: #c69500; }
      .vue-component .btn-warning:not(:disabled):not(.disabled):active:focus, .vue-component .btn-warning:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-warning.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); }
  .vue-component .btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545; }
    .vue-component .btn-danger:hover {
      color: #fff;
      background-color: #c82333;
      border-color: #bd2130; }
    .vue-component .btn-danger:focus, .vue-component .btn-danger.focus {
      color: #fff;
      background-color: #c82333;
      border-color: #bd2130;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); }
    .vue-component .btn-danger.disabled, .vue-component .btn-danger:disabled {
      color: #fff;
      background-color: #dc3545;
      border-color: #dc3545; }
    .vue-component .btn-danger:not(:disabled):not(.disabled):active, .vue-component .btn-danger:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-danger.dropdown-toggle {
      color: #fff;
      background-color: #bd2130;
      border-color: #b21f2d; }
      .vue-component .btn-danger:not(:disabled):not(.disabled):active:focus, .vue-component .btn-danger:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-danger.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); }
  .vue-component .btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
    .vue-component .btn-light:hover {
      color: #212529;
      background-color: #e2e6ea;
      border-color: #dae0e5; }
    .vue-component .btn-light:focus, .vue-component .btn-light.focus {
      color: #212529;
      background-color: #e2e6ea;
      border-color: #dae0e5;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); }
    .vue-component .btn-light.disabled, .vue-component .btn-light:disabled {
      color: #212529;
      background-color: #f8f9fa;
      border-color: #f8f9fa; }
    .vue-component .btn-light:not(:disabled):not(.disabled):active, .vue-component .btn-light:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-light.dropdown-toggle {
      color: #212529;
      background-color: #dae0e5;
      border-color: #d3d9df; }
      .vue-component .btn-light:not(:disabled):not(.disabled):active:focus, .vue-component .btn-light:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-light.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); }
  .vue-component .btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40; }
    .vue-component .btn-dark:hover {
      color: #fff;
      background-color: #23272b;
      border-color: #1d2124; }
    .vue-component .btn-dark:focus, .vue-component .btn-dark.focus {
      color: #fff;
      background-color: #23272b;
      border-color: #1d2124;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); }
    .vue-component .btn-dark.disabled, .vue-component .btn-dark:disabled {
      color: #fff;
      background-color: #343a40;
      border-color: #343a40; }
    .vue-component .btn-dark:not(:disabled):not(.disabled):active, .vue-component .btn-dark:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-dark.dropdown-toggle {
      color: #fff;
      background-color: #1d2124;
      border-color: #171a1d; }
      .vue-component .btn-dark:not(:disabled):not(.disabled):active:focus, .vue-component .btn-dark:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-dark.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); }
  .vue-component .btn-outline-primary {
    color: #007bff;
    border-color: #007bff; }
    .vue-component .btn-outline-primary:hover {
      color: #fff;
      background-color: #007bff;
      border-color: #007bff; }
    .vue-component .btn-outline-primary:focus, .vue-component .btn-outline-primary.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
    .vue-component .btn-outline-primary.disabled, .vue-component .btn-outline-primary:disabled {
      color: #007bff;
      background-color: transparent; }
    .vue-component .btn-outline-primary:not(:disabled):not(.disabled):active, .vue-component .btn-outline-primary:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-outline-primary.dropdown-toggle {
      color: #fff;
      background-color: #007bff;
      border-color: #007bff; }
      .vue-component .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .vue-component .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-outline-primary.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
  .vue-component .btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d; }
    .vue-component .btn-outline-secondary:hover {
      color: #fff;
      background-color: #6c757d;
      border-color: #6c757d; }
    .vue-component .btn-outline-secondary:focus, .vue-component .btn-outline-secondary.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
    .vue-component .btn-outline-secondary.disabled, .vue-component .btn-outline-secondary:disabled {
      color: #6c757d;
      background-color: transparent; }
    .vue-component .btn-outline-secondary:not(:disabled):not(.disabled):active, .vue-component .btn-outline-secondary:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-outline-secondary.dropdown-toggle {
      color: #fff;
      background-color: #6c757d;
      border-color: #6c757d; }
      .vue-component .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .vue-component .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-outline-secondary.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
  .vue-component .btn-outline-success {
    color: #28a745;
    border-color: #28a745; }
    .vue-component .btn-outline-success:hover {
      color: #fff;
      background-color: #28a745;
      border-color: #28a745; }
    .vue-component .btn-outline-success:focus, .vue-component .btn-outline-success.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
    .vue-component .btn-outline-success.disabled, .vue-component .btn-outline-success:disabled {
      color: #28a745;
      background-color: transparent; }
    .vue-component .btn-outline-success:not(:disabled):not(.disabled):active, .vue-component .btn-outline-success:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-outline-success.dropdown-toggle {
      color: #fff;
      background-color: #28a745;
      border-color: #28a745; }
      .vue-component .btn-outline-success:not(:disabled):not(.disabled):active:focus, .vue-component .btn-outline-success:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-outline-success.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
  .vue-component .btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8; }
    .vue-component .btn-outline-info:hover {
      color: #fff;
      background-color: #17a2b8;
      border-color: #17a2b8; }
    .vue-component .btn-outline-info:focus, .vue-component .btn-outline-info.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
    .vue-component .btn-outline-info.disabled, .vue-component .btn-outline-info:disabled {
      color: #17a2b8;
      background-color: transparent; }
    .vue-component .btn-outline-info:not(:disabled):not(.disabled):active, .vue-component .btn-outline-info:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-outline-info.dropdown-toggle {
      color: #fff;
      background-color: #17a2b8;
      border-color: #17a2b8; }
      .vue-component .btn-outline-info:not(:disabled):not(.disabled):active:focus, .vue-component .btn-outline-info:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-outline-info.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
  .vue-component .btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107; }
    .vue-component .btn-outline-warning:hover {
      color: #212529;
      background-color: #ffc107;
      border-color: #ffc107; }
    .vue-component .btn-outline-warning:focus, .vue-component .btn-outline-warning.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
    .vue-component .btn-outline-warning.disabled, .vue-component .btn-outline-warning:disabled {
      color: #ffc107;
      background-color: transparent; }
    .vue-component .btn-outline-warning:not(:disabled):not(.disabled):active, .vue-component .btn-outline-warning:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-outline-warning.dropdown-toggle {
      color: #212529;
      background-color: #ffc107;
      border-color: #ffc107; }
      .vue-component .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .vue-component .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-outline-warning.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
  .vue-component .btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545; }
    .vue-component .btn-outline-danger:hover {
      color: #fff;
      background-color: #dc3545;
      border-color: #dc3545; }
    .vue-component .btn-outline-danger:focus, .vue-component .btn-outline-danger.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
    .vue-component .btn-outline-danger.disabled, .vue-component .btn-outline-danger:disabled {
      color: #dc3545;
      background-color: transparent; }
    .vue-component .btn-outline-danger:not(:disabled):not(.disabled):active, .vue-component .btn-outline-danger:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-outline-danger.dropdown-toggle {
      color: #fff;
      background-color: #dc3545;
      border-color: #dc3545; }
      .vue-component .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .vue-component .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-outline-danger.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
  .vue-component .btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa; }
    .vue-component .btn-outline-light:hover {
      color: #212529;
      background-color: #f8f9fa;
      border-color: #f8f9fa; }
    .vue-component .btn-outline-light:focus, .vue-component .btn-outline-light.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
    .vue-component .btn-outline-light.disabled, .vue-component .btn-outline-light:disabled {
      color: #f8f9fa;
      background-color: transparent; }
    .vue-component .btn-outline-light:not(:disabled):not(.disabled):active, .vue-component .btn-outline-light:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-outline-light.dropdown-toggle {
      color: #212529;
      background-color: #f8f9fa;
      border-color: #f8f9fa; }
      .vue-component .btn-outline-light:not(:disabled):not(.disabled):active:focus, .vue-component .btn-outline-light:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-outline-light.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  .vue-component .btn-outline-dark {
    color: #343a40;
    border-color: #343a40; }
    .vue-component .btn-outline-dark:hover {
      color: #fff;
      background-color: #343a40;
      border-color: #343a40; }
    .vue-component .btn-outline-dark:focus, .vue-component .btn-outline-dark.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
    .vue-component .btn-outline-dark.disabled, .vue-component .btn-outline-dark:disabled {
      color: #343a40;
      background-color: transparent; }
    .vue-component .btn-outline-dark:not(:disabled):not(.disabled):active, .vue-component .btn-outline-dark:not(:disabled):not(.disabled).active,
    .show > .vue-component .btn-outline-dark.dropdown-toggle {
      color: #fff;
      background-color: #343a40;
      border-color: #343a40; }
      .vue-component .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .vue-component .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
      .show > .vue-component .btn-outline-dark.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
                box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
  .vue-component .btn-link {
    font-weight: 400;
    color: #007bff;
    text-decoration: none; }
    .vue-component .btn-link:hover {
      color: #0056b3;
      text-decoration: underline; }
    .vue-component .btn-link:focus, .vue-component .btn-link.focus {
      text-decoration: underline; }
    .vue-component .btn-link:disabled, .vue-component .btn-link.disabled {
      color: #6c757d;
      pointer-events: none; }
  .vue-component .btn-lg, .vue-component .btn-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem; }
  .vue-component .btn-sm, .vue-component .btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem; }
  .vue-component .btn-block {
    display: block;
    width: 100%; }
    .vue-component .btn-block + .btn-block {
      margin-top: 0.5rem; }
  .vue-component input[type="submit"].btn-block,
  .vue-component input[type="reset"].btn-block,
  .vue-component input[type="button"].btn-block {
    width: 100%; }
  .vue-component .fade {
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .fade {
        -webkit-transition: none;
        transition: none; } }
    .vue-component .fade:not(.show) {
      opacity: 0; }
  .vue-component .collapse:not(.show) {
    display: none; }
  .vue-component .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .collapsing {
        -webkit-transition: none;
        transition: none; } }
  .vue-component .dropup,
  .vue-component .dropright,
  .vue-component .dropdown,
  .vue-component .dropleft {
    position: relative; }
  .vue-component .dropdown-toggle {
    white-space: nowrap; }
    .vue-component .dropdown-toggle::after {
      display: inline-block;
      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; }
    .vue-component .dropdown-toggle:empty::after {
      margin-left: 0; }
  .vue-component .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem; }
  .vue-component .dropdown-menu-left {
    right: auto;
    left: 0; }
  .vue-component .dropdown-menu-right {
    right: 0;
    left: auto; }
  @media (min-width: 576px) {
    .vue-component .dropdown-menu-sm-left {
      right: auto;
      left: 0; }
    .vue-component .dropdown-menu-sm-right {
      right: 0;
      left: auto; } }
  @media (min-width: 768px) {
    .vue-component .dropdown-menu-md-left {
      right: auto;
      left: 0; }
    .vue-component .dropdown-menu-md-right {
      right: 0;
      left: auto; } }
  @media (min-width: 992px) {
    .vue-component .dropdown-menu-lg-left {
      right: auto;
      left: 0; }
    .vue-component .dropdown-menu-lg-right {
      right: 0;
      left: auto; } }
  @media (min-width: 1200px) {
    .vue-component .dropdown-menu-xl-left {
      right: auto;
      left: 0; }
    .vue-component .dropdown-menu-xl-right {
      right: 0;
      left: auto; } }
  .vue-component .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem; }
  .vue-component .dropup .dropdown-toggle::after {
    display: inline-block;
    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; }
  .vue-component .dropup .dropdown-toggle:empty::after {
    margin-left: 0; }
  .vue-component .dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem; }
  .vue-component .dropright .dropdown-toggle::after {
    display: inline-block;
    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; }
  .vue-component .dropright .dropdown-toggle:empty::after {
    margin-left: 0; }
  .vue-component .dropright .dropdown-toggle::after {
    vertical-align: 0; }
  .vue-component .dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem; }
  .vue-component .dropleft .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: ""; }
  .vue-component .dropleft .dropdown-toggle::after {
    display: none; }
  .vue-component .dropleft .dropdown-toggle::before {
    display: inline-block;
    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; }
  .vue-component .dropleft .dropdown-toggle:empty::after {
    margin-left: 0; }
  .vue-component .dropleft .dropdown-toggle::before {
    vertical-align: 0; }
  .vue-component .dropdown-menu[x-placement^="top"], .vue-component .dropdown-menu[x-placement^="right"], .vue-component .dropdown-menu[x-placement^="bottom"], .vue-component .dropdown-menu[x-placement^="left"] {
    right: auto;
    bottom: auto; }
  .vue-component .dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef; }
  .vue-component .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; }
    .vue-component .dropdown-item:hover, .vue-component .dropdown-item:focus {
      color: #16181b;
      text-decoration: none;
      background-color: #f8f9fa; }
    .vue-component .dropdown-item.active, .vue-component .dropdown-item:active {
      color: #fff;
      text-decoration: none;
      background-color: #007bff; }
    .vue-component .dropdown-item.disabled, .vue-component .dropdown-item:disabled {
      color: #6c757d;
      pointer-events: none;
      background-color: transparent; }
  .vue-component .dropdown-menu.show {
    display: block; }
  .vue-component .dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #6c757d;
    white-space: nowrap; }
  .vue-component .dropdown-item-text {
    display: block;
    padding: 0.25rem 1.5rem;
    color: #212529; }
  .vue-component .btn-group,
  .vue-component .btn-group-vertical {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle; }
    .vue-component .btn-group > .btn,
    .vue-component .btn-group-vertical > .btn {
      position: relative;
      -webkit-box-flex: 1;
          -ms-flex: 1 1 auto;
              flex: 1 1 auto; }
      .vue-component .btn-group > .btn:hover,
      .vue-component .btn-group-vertical > .btn:hover {
        z-index: 1; }
      .vue-component .btn-group > .btn:focus, .vue-component .btn-group > .btn:active, .vue-component .btn-group > .btn.active,
      .vue-component .btn-group-vertical > .btn:focus,
      .vue-component .btn-group-vertical > .btn:active,
      .vue-component .btn-group-vertical > .btn.active {
        z-index: 1; }
  .vue-component .btn-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    .vue-component .btn-toolbar .input-group {
      width: auto; }
  .vue-component .btn-group > .btn:not(:first-child),
  .vue-component .btn-group > .btn-group:not(:first-child) {
    margin-left: -1px; }
  .vue-component .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  .vue-component .btn-group > .btn-group:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .vue-component .btn-group > .btn:not(:first-child),
  .vue-component .btn-group > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .vue-component .dropdown-toggle-split {
    padding-right: 0.5625rem;
    padding-left: 0.5625rem; }
    .vue-component .dropdown-toggle-split::after,
    .dropup .vue-component .dropdown-toggle-split::after,
    .dropright .vue-component .dropdown-toggle-split::after {
      margin-left: 0; }
    .dropleft .vue-component .dropdown-toggle-split::before {
      margin-right: 0; }
  .vue-component .btn-sm + .dropdown-toggle-split, .vue-component .btn-group-sm > .btn + .dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem; }
  .vue-component .btn-lg + .dropdown-toggle-split, .vue-component .btn-group-lg > .btn + .dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem; }
  .vue-component .btn-group-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .vue-component .btn-group-vertical > .btn,
    .vue-component .btn-group-vertical > .btn-group {
      width: 100%; }
    .vue-component .btn-group-vertical > .btn:not(:first-child),
    .vue-component .btn-group-vertical > .btn-group:not(:first-child) {
      margin-top: -1px; }
    .vue-component .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
    .vue-component .btn-group-vertical > .btn-group:not(:last-child) > .btn {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0; }
    .vue-component .btn-group-vertical > .btn:not(:first-child),
    .vue-component .btn-group-vertical > .btn-group:not(:first-child) > .btn {
      border-top-left-radius: 0;
      border-top-right-radius: 0; }
  .vue-component .btn-group-toggle > .btn,
  .vue-component .btn-group-toggle > .btn-group > .btn {
    margin-bottom: 0; }
    .vue-component .btn-group-toggle > .btn input[type="radio"],
    .vue-component .btn-group-toggle > .btn input[type="checkbox"],
    .vue-component .btn-group-toggle > .btn-group > .btn input[type="radio"],
    .vue-component .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
      position: absolute;
      clip: rect(0, 0, 0, 0);
      pointer-events: none; }
  .vue-component .input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%; }
    .vue-component .input-group > .form-control,
    .vue-component .input-group > .form-control-plaintext,
    .vue-component .input-group > .custom-select,
    .vue-component .input-group > .custom-file {
      position: relative;
      -webkit-box-flex: 1;
          -ms-flex: 1 1 auto;
              flex: 1 1 auto;
      width: 1%;
      min-width: 0;
      margin-bottom: 0; }
      .vue-component .input-group > .form-control + .form-control,
      .vue-component .input-group > .form-control + .custom-select,
      .vue-component .input-group > .form-control + .custom-file,
      .vue-component .input-group > .form-control-plaintext + .form-control,
      .vue-component .input-group > .form-control-plaintext + .custom-select,
      .vue-component .input-group > .form-control-plaintext + .custom-file,
      .vue-component .input-group > .custom-select + .form-control,
      .vue-component .input-group > .custom-select + .custom-select,
      .vue-component .input-group > .custom-select + .custom-file,
      .vue-component .input-group > .custom-file + .form-control,
      .vue-component .input-group > .custom-file + .custom-select,
      .vue-component .input-group > .custom-file + .custom-file {
        margin-left: -1px; }
    .vue-component .input-group > .form-control:focus,
    .vue-component .input-group > .custom-select:focus,
    .vue-component .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
      z-index: 3; }
    .vue-component .input-group > .custom-file .custom-file-input:focus {
      z-index: 4; }
    .vue-component .input-group > .form-control:not(:last-child),
    .vue-component .input-group > .custom-select:not(:last-child) {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
    .vue-component .input-group > .form-control:not(:first-child),
    .vue-component .input-group > .custom-select:not(:first-child) {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }
    .vue-component .input-group > .custom-file {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .vue-component .input-group > .custom-file:not(:last-child) .custom-file-label,
      .vue-component .input-group > .custom-file:not(:last-child) .custom-file-label::after {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
      .vue-component .input-group > .custom-file:not(:first-child) .custom-file-label {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
  .vue-component .input-group-prepend,
  .vue-component .input-group-append {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .vue-component .input-group-prepend .btn,
    .vue-component .input-group-append .btn {
      position: relative;
      z-index: 2; }
      .vue-component .input-group-prepend .btn:focus,
      .vue-component .input-group-append .btn:focus {
        z-index: 3; }
    .vue-component .input-group-prepend .btn + .btn,
    .vue-component .input-group-prepend .btn + .input-group-text,
    .vue-component .input-group-prepend .input-group-text + .input-group-text,
    .vue-component .input-group-prepend .input-group-text + .btn,
    .vue-component .input-group-append .btn + .btn,
    .vue-component .input-group-append .btn + .input-group-text,
    .vue-component .input-group-append .input-group-text + .input-group-text,
    .vue-component .input-group-append .input-group-text + .btn {
      margin-left: -1px; }
  .vue-component .input-group-prepend {
    margin-right: -1px; }
  .vue-component .input-group-append {
    margin-left: -1px; }
  .vue-component .input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            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; }
    .vue-component .input-group-text input[type="radio"],
    .vue-component .input-group-text input[type="checkbox"] {
      margin-top: 0; }
  .vue-component .input-group-lg > .form-control:not(textarea),
  .vue-component .input-group-lg > .custom-select {
    height: calc(1.5em + 1rem + 2px); }
  .vue-component .input-group-lg > .form-control,
  .vue-component .input-group-lg > .custom-select,
  .vue-component .input-group-lg > .input-group-prepend > .input-group-text,
  .vue-component .input-group-lg > .input-group-append > .input-group-text,
  .vue-component .input-group-lg > .input-group-prepend > .btn,
  .vue-component .input-group-lg > .input-group-append > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem; }
  .vue-component .input-group-sm > .form-control:not(textarea),
  .vue-component .input-group-sm > .custom-select {
    height: calc(1.5em + 0.5rem + 2px); }
  .vue-component .input-group-sm > .form-control,
  .vue-component .input-group-sm > .custom-select,
  .vue-component .input-group-sm > .input-group-prepend > .input-group-text,
  .vue-component .input-group-sm > .input-group-append > .input-group-text,
  .vue-component .input-group-sm > .input-group-prepend > .btn,
  .vue-component .input-group-sm > .input-group-append > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem; }
  .vue-component .input-group-lg > .custom-select,
  .vue-component .input-group-sm > .custom-select {
    padding-right: 1.75rem; }
  .vue-component .input-group > .input-group-prepend > .btn,
  .vue-component .input-group > .input-group-prepend > .input-group-text,
  .vue-component .input-group > .input-group-append:not(:last-child) > .btn,
  .vue-component .input-group > .input-group-append:not(:last-child) > .input-group-text,
  .vue-component .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  .vue-component .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .vue-component .input-group > .input-group-append > .btn,
  .vue-component .input-group > .input-group-append > .input-group-text,
  .vue-component .input-group > .input-group-prepend:not(:first-child) > .btn,
  .vue-component .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
  .vue-component .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
  .vue-component .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .vue-component .custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem; }
  .vue-component .custom-control-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem; }
  .vue-component .custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0; }
    .vue-component .custom-control-input:checked ~ .custom-control-label::before {
      color: #fff;
      border-color: #007bff;
      background-color: #007bff; }
    .vue-component .custom-control-input:focus ~ .custom-control-label::before {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
    .vue-component .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
      border-color: #80bdff; }
    .vue-component .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
      color: #fff;
      background-color: #b3d7ff;
      border-color: #b3d7ff; }
    .vue-component .custom-control-input[disabled] ~ .custom-control-label, .vue-component .custom-control-input:disabled ~ .custom-control-label {
      color: #6c757d; }
      .vue-component .custom-control-input[disabled] ~ .custom-control-label::before, .vue-component .custom-control-input:disabled ~ .custom-control-label::before {
        background-color: #e9ecef; }
  .vue-component .custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top; }
    .vue-component .custom-control-label::before {
      position: absolute;
      top: 0.25rem;
      left: -1.5rem;
      display: block;
      width: 1rem;
      height: 1rem;
      pointer-events: none;
      content: "";
      background-color: #fff;
      border: #adb5bd solid 1px; }
    .vue-component .custom-control-label::after {
      position: absolute;
      top: 0.25rem;
      left: -1.5rem;
      display: block;
      width: 1rem;
      height: 1rem;
      content: "";
      background: no-repeat 50% / 50% 50%; }
  .vue-component .custom-checkbox .custom-control-label::before {
    border-radius: 0.25rem; }
  .vue-component .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e"); }
  .vue-component .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    border-color: #007bff;
    background-color: #007bff; }
  .vue-component .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); }
  .vue-component .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5); }
  .vue-component .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5); }
  .vue-component .custom-radio .custom-control-label::before {
    border-radius: 50%; }
  .vue-component .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); }
  .vue-component .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5); }
  .vue-component .custom-switch {
    padding-left: 2.25rem; }
    .vue-component .custom-switch .custom-control-label::before {
      left: -2.25rem;
      width: 1.75rem;
      pointer-events: all;
      border-radius: 0.5rem; }
    .vue-component .custom-switch .custom-control-label::after {
      top: calc(0.25rem + 2px);
      left: calc(-2.25rem + 2px);
      width: calc(1rem - 4px);
      height: calc(1rem - 4px);
      background-color: #adb5bd;
      border-radius: 0.5rem;
      -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
      transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
      transition: transform 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;
      transition: transform 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, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
      @media (prefers-reduced-motion: reduce) {
        .vue-component .custom-switch .custom-control-label::after {
          -webkit-transition: none;
          transition: none; } }
    .vue-component .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
      background-color: #fff;
      -webkit-transform: translateX(0.75rem);
              transform: translateX(0.75rem); }
    .vue-component .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
      background-color: rgba(0, 123, 255, 0.5); }
  .vue-component .custom-select {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' 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/8px 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; }
    .vue-component .custom-select:focus {
      border-color: #80bdff;
      outline: 0;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
      .vue-component .custom-select:focus::-ms-value {
        color: #495057;
        background-color: #fff; }
    .vue-component .custom-select[multiple], .vue-component .custom-select[size]:not([size="1"]) {
      height: auto;
      padding-right: 0.75rem;
      background-image: none; }
    .vue-component .custom-select:disabled {
      color: #6c757d;
      background-color: #e9ecef; }
    .vue-component .custom-select::-ms-expand {
      display: none; }
    .vue-component .custom-select:-moz-focusring {
      color: transparent;
      text-shadow: 0 0 0 #495057; }
  .vue-component .custom-select-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.875rem; }
  .vue-component .custom-select-lg {
    height: calc(1.5em + 1rem + 2px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem; }
  .vue-component .custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin-bottom: 0; }
  .vue-component .custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin: 0;
    opacity: 0; }
    .vue-component .custom-file-input:focus ~ .custom-file-label {
      border-color: #80bdff;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
    .vue-component .custom-file-input[disabled] ~ .custom-file-label,
    .vue-component .custom-file-input:disabled ~ .custom-file-label {
      background-color: #e9ecef; }
    .vue-component .custom-file-input:lang(en) ~ .custom-file-label::after {
      content: "Browse"; }
    .vue-component .custom-file-input ~ .custom-file-label[data-browse]::after {
      content: attr(data-browse); }
  .vue-component .custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem; }
    .vue-component .custom-file-label::after {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 3;
      display: block;
      height: calc(1.5em + 0.75rem);
      padding: 0.375rem 0.75rem;
      line-height: 1.5;
      color: #495057;
      content: "Browse";
      background-color: #e9ecef;
      border-left: inherit;
      border-radius: 0 0.25rem 0.25rem 0; }
  .vue-component .custom-range {
    width: 100%;
    height: 1.4rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; }
    .vue-component .custom-range:focus {
      outline: none; }
      .vue-component .custom-range:focus::-webkit-slider-thumb {
        -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
                box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
      .vue-component .custom-range:focus::-moz-range-thumb {
        box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
      .vue-component .custom-range:focus::-ms-thumb {
        box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
    .vue-component .custom-range::-moz-focus-outer {
      border: 0; }
    .vue-component .custom-range::-webkit-slider-thumb {
      width: 1rem;
      height: 1rem;
      margin-top: -0.25rem;
      background-color: #007bff;
      border: 0;
      border-radius: 1rem;
      -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
      transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
      transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
      transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
      -webkit-appearance: none;
              appearance: none; }
      @media (prefers-reduced-motion: reduce) {
        .vue-component .custom-range::-webkit-slider-thumb {
          -webkit-transition: none;
          transition: none; } }
      .vue-component .custom-range::-webkit-slider-thumb:active {
        background-color: #b3d7ff; }
    .vue-component .custom-range::-webkit-slider-runnable-track {
      width: 100%;
      height: 0.5rem;
      color: transparent;
      cursor: pointer;
      background-color: #dee2e6;
      border-color: transparent;
      border-radius: 1rem; }
    .vue-component .custom-range::-moz-range-thumb {
      width: 1rem;
      height: 1rem;
      background-color: #007bff;
      border: 0;
      border-radius: 1rem;
      -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
      transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
      transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
      transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
      -moz-appearance: none;
           appearance: none; }
      @media (prefers-reduced-motion: reduce) {
        .vue-component .custom-range::-moz-range-thumb {
          -webkit-transition: none;
          transition: none; } }
      .vue-component .custom-range::-moz-range-thumb:active {
        background-color: #b3d7ff; }
    .vue-component .custom-range::-moz-range-track {
      width: 100%;
      height: 0.5rem;
      color: transparent;
      cursor: pointer;
      background-color: #dee2e6;
      border-color: transparent;
      border-radius: 1rem; }
    .vue-component .custom-range::-ms-thumb {
      width: 1rem;
      height: 1rem;
      margin-top: 0;
      margin-right: 0.2rem;
      margin-left: 0.2rem;
      background-color: #007bff;
      border: 0;
      border-radius: 1rem;
      -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
      transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
      transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
      transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
      appearance: none; }
      @media (prefers-reduced-motion: reduce) {
        .vue-component .custom-range::-ms-thumb {
          -webkit-transition: none;
          transition: none; } }
      .vue-component .custom-range::-ms-thumb:active {
        background-color: #b3d7ff; }
    .vue-component .custom-range::-ms-track {
      width: 100%;
      height: 0.5rem;
      color: transparent;
      cursor: pointer;
      background-color: transparent;
      border-color: transparent;
      border-width: 0.5rem; }
    .vue-component .custom-range::-ms-fill-lower {
      background-color: #dee2e6;
      border-radius: 1rem; }
    .vue-component .custom-range::-ms-fill-upper {
      margin-right: 15px;
      background-color: #dee2e6;
      border-radius: 1rem; }
    .vue-component .custom-range:disabled::-webkit-slider-thumb {
      background-color: #adb5bd; }
    .vue-component .custom-range:disabled::-webkit-slider-runnable-track {
      cursor: default; }
    .vue-component .custom-range:disabled::-moz-range-thumb {
      background-color: #adb5bd; }
    .vue-component .custom-range:disabled::-moz-range-track {
      cursor: default; }
    .vue-component .custom-range:disabled::-ms-thumb {
      background-color: #adb5bd; }
  .vue-component .custom-control-label::before,
  .vue-component .custom-file-label,
  .vue-component .custom-select {
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .custom-control-label::before,
      .vue-component .custom-file-label,
      .vue-component .custom-select {
        -webkit-transition: none;
        transition: none; } }
  .vue-component .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
  .vue-component .nav-link {
    display: block;
    padding: 0.5rem 1rem; }
    .vue-component .nav-link:hover, .vue-component .nav-link:focus {
      text-decoration: none; }
    .vue-component .nav-link.disabled {
      color: #6c757d;
      pointer-events: none;
      cursor: default; }
  .vue-component .nav-tabs {
    border-bottom: 1px solid #dee2e6; }
    .vue-component .nav-tabs .nav-item {
      margin-bottom: -1px; }
    .vue-component .nav-tabs .nav-link {
      border: 1px solid transparent;
      border-top-left-radius: 0.25rem;
      border-top-right-radius: 0.25rem; }
      .vue-component .nav-tabs .nav-link:hover, .vue-component .nav-tabs .nav-link:focus {
        border-color: #e9ecef #e9ecef #dee2e6; }
      .vue-component .nav-tabs .nav-link.disabled {
        color: #6c757d;
        background-color: transparent;
        border-color: transparent; }
    .vue-component .nav-tabs .nav-link.active,
    .vue-component .nav-tabs .nav-item.show .nav-link {
      color: #495057;
      background-color: #fff;
      border-color: #dee2e6 #dee2e6 #fff; }
    .vue-component .nav-tabs .dropdown-menu {
      margin-top: -1px;
      border-top-left-radius: 0;
      border-top-right-radius: 0; }
  .vue-component .nav-pills .nav-link {
    border-radius: 0.25rem; }
  .vue-component .nav-pills .nav-link.active,
  .vue-component .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #007bff; }
  .vue-component .nav-fill > .nav-link,
  .vue-component .nav-fill .nav-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    text-align: center; }
  .vue-component .nav-justified > .nav-link,
  .vue-component .nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: center; }
  .vue-component .tab-content > .tab-pane {
    display: none; }
  .vue-component .tab-content > .active {
    display: block; }
  .vue-component .navbar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.5rem 1rem; }
    .vue-component .navbar .container,
    .vue-component .navbar .container-fluid, .vue-component .navbar .container-sm, .vue-component .navbar .container-md, .vue-component .navbar .container-lg, .vue-component .navbar .container-xl {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
  .vue-component .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; }
    .vue-component .navbar-brand:hover, .vue-component .navbar-brand:focus {
      text-decoration: none; }
  .vue-component .navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
    .vue-component .navbar-nav .nav-link {
      padding-right: 0;
      padding-left: 0; }
    .vue-component .navbar-nav .dropdown-menu {
      position: static;
      float: none; }
  .vue-component .navbar-text {
    display: inline-block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem; }
  .vue-component .navbar-collapse {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .vue-component .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; }
    .vue-component .navbar-toggler:hover, .vue-component .navbar-toggler:focus {
      text-decoration: none; }
  .vue-component .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 (max-width: 575.98px) {
    .vue-component .navbar-expand-sm > .container,
    .vue-component .navbar-expand-sm > .container-fluid, .vue-component .navbar-expand-sm > .container-sm, .vue-component .navbar-expand-sm > .container-md, .vue-component .navbar-expand-sm > .container-lg, .vue-component .navbar-expand-sm > .container-xl {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 576px) {
    .vue-component .navbar-expand-sm {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .vue-component .navbar-expand-sm .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; }
        .vue-component .navbar-expand-sm .navbar-nav .dropdown-menu {
          position: absolute; }
        .vue-component .navbar-expand-sm .navbar-nav .nav-link {
          padding-right: 0.5rem;
          padding-left: 0.5rem; }
      .vue-component .navbar-expand-sm > .container,
      .vue-component .navbar-expand-sm > .container-fluid, .vue-component .navbar-expand-sm > .container-sm, .vue-component .navbar-expand-sm > .container-md, .vue-component .navbar-expand-sm > .container-lg, .vue-component .navbar-expand-sm > .container-xl {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap; }
      .vue-component .navbar-expand-sm .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
            flex-basis: auto; }
      .vue-component .navbar-expand-sm .navbar-toggler {
        display: none; } }
  @media (max-width: 767.98px) {
    .vue-component .navbar-expand-md > .container,
    .vue-component .navbar-expand-md > .container-fluid, .vue-component .navbar-expand-md > .container-sm, .vue-component .navbar-expand-md > .container-md, .vue-component .navbar-expand-md > .container-lg, .vue-component .navbar-expand-md > .container-xl {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 768px) {
    .vue-component .navbar-expand-md {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .vue-component .navbar-expand-md .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; }
        .vue-component .navbar-expand-md .navbar-nav .dropdown-menu {
          position: absolute; }
        .vue-component .navbar-expand-md .navbar-nav .nav-link {
          padding-right: 0.5rem;
          padding-left: 0.5rem; }
      .vue-component .navbar-expand-md > .container,
      .vue-component .navbar-expand-md > .container-fluid, .vue-component .navbar-expand-md > .container-sm, .vue-component .navbar-expand-md > .container-md, .vue-component .navbar-expand-md > .container-lg, .vue-component .navbar-expand-md > .container-xl {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap; }
      .vue-component .navbar-expand-md .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
            flex-basis: auto; }
      .vue-component .navbar-expand-md .navbar-toggler {
        display: none; } }
  @media (max-width: 991.98px) {
    .vue-component .navbar-expand-lg > .container,
    .vue-component .navbar-expand-lg > .container-fluid, .vue-component .navbar-expand-lg > .container-sm, .vue-component .navbar-expand-lg > .container-md, .vue-component .navbar-expand-lg > .container-lg, .vue-component .navbar-expand-lg > .container-xl {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 992px) {
    .vue-component .navbar-expand-lg {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .vue-component .navbar-expand-lg .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; }
        .vue-component .navbar-expand-lg .navbar-nav .dropdown-menu {
          position: absolute; }
        .vue-component .navbar-expand-lg .navbar-nav .nav-link {
          padding-right: 0.5rem;
          padding-left: 0.5rem; }
      .vue-component .navbar-expand-lg > .container,
      .vue-component .navbar-expand-lg > .container-fluid, .vue-component .navbar-expand-lg > .container-sm, .vue-component .navbar-expand-lg > .container-md, .vue-component .navbar-expand-lg > .container-lg, .vue-component .navbar-expand-lg > .container-xl {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap; }
      .vue-component .navbar-expand-lg .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
            flex-basis: auto; }
      .vue-component .navbar-expand-lg .navbar-toggler {
        display: none; } }
  @media (max-width: 1199.98px) {
    .vue-component .navbar-expand-xl > .container,
    .vue-component .navbar-expand-xl > .container-fluid, .vue-component .navbar-expand-xl > .container-sm, .vue-component .navbar-expand-xl > .container-md, .vue-component .navbar-expand-xl > .container-lg, .vue-component .navbar-expand-xl > .container-xl {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 1200px) {
    .vue-component .navbar-expand-xl {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .vue-component .navbar-expand-xl .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; }
        .vue-component .navbar-expand-xl .navbar-nav .dropdown-menu {
          position: absolute; }
        .vue-component .navbar-expand-xl .navbar-nav .nav-link {
          padding-right: 0.5rem;
          padding-left: 0.5rem; }
      .vue-component .navbar-expand-xl > .container,
      .vue-component .navbar-expand-xl > .container-fluid, .vue-component .navbar-expand-xl > .container-sm, .vue-component .navbar-expand-xl > .container-md, .vue-component .navbar-expand-xl > .container-lg, .vue-component .navbar-expand-xl > .container-xl {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap; }
      .vue-component .navbar-expand-xl .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
            flex-basis: auto; }
      .vue-component .navbar-expand-xl .navbar-toggler {
        display: none; } }
  .vue-component .navbar-expand {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    .vue-component .navbar-expand > .container,
    .vue-component .navbar-expand > .container-fluid, .vue-component .navbar-expand > .container-sm, .vue-component .navbar-expand > .container-md, .vue-component .navbar-expand > .container-lg, .vue-component .navbar-expand > .container-xl {
      padding-right: 0;
      padding-left: 0; }
    .vue-component .navbar-expand .navbar-nav {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .vue-component .navbar-expand .navbar-nav .dropdown-menu {
        position: absolute; }
      .vue-component .navbar-expand .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .vue-component .navbar-expand > .container,
    .vue-component .navbar-expand > .container-fluid, .vue-component .navbar-expand > .container-sm, .vue-component .navbar-expand > .container-md, .vue-component .navbar-expand > .container-lg, .vue-component .navbar-expand > .container-xl {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; }
    .vue-component .navbar-expand .navbar-collapse {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-preferred-size: auto;
          flex-basis: auto; }
    .vue-component .navbar-expand .navbar-toggler {
      display: none; }
  .vue-component .navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9); }
    .vue-component .navbar-light .navbar-brand:hover, .vue-component .navbar-light .navbar-brand:focus {
      color: rgba(0, 0, 0, 0.9); }
  .vue-component .navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5); }
    .vue-component .navbar-light .navbar-nav .nav-link:hover, .vue-component .navbar-light .navbar-nav .nav-link:focus {
      color: rgba(0, 0, 0, 0.7); }
    .vue-component .navbar-light .navbar-nav .nav-link.disabled {
      color: rgba(0, 0, 0, 0.3); }
  .vue-component .navbar-light .navbar-nav .show > .nav-link,
  .vue-component .navbar-light .navbar-nav .active > .nav-link,
  .vue-component .navbar-light .navbar-nav .nav-link.show,
  .vue-component .navbar-light .navbar-nav .nav-link.active {
    color: rgba(0, 0, 0, 0.9); }
  .vue-component .navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1); }
  .vue-component .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
  .vue-component .navbar-light .navbar-text {
    color: rgba(0, 0, 0, 0.5); }
    .vue-component .navbar-light .navbar-text a {
      color: rgba(0, 0, 0, 0.9); }
      .vue-component .navbar-light .navbar-text a:hover, .vue-component .navbar-light .navbar-text a:focus {
        color: rgba(0, 0, 0, 0.9); }
  .vue-component .navbar-dark .navbar-brand {
    color: #fff; }
    .vue-component .navbar-dark .navbar-brand:hover, .vue-component .navbar-dark .navbar-brand:focus {
      color: #fff; }
  .vue-component .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5); }
    .vue-component .navbar-dark .navbar-nav .nav-link:hover, .vue-component .navbar-dark .navbar-nav .nav-link:focus {
      color: rgba(255, 255, 255, 0.75); }
    .vue-component .navbar-dark .navbar-nav .nav-link.disabled {
      color: rgba(255, 255, 255, 0.25); }
  .vue-component .navbar-dark .navbar-nav .show > .nav-link,
  .vue-component .navbar-dark .navbar-nav .active > .nav-link,
  .vue-component .navbar-dark .navbar-nav .nav-link.show,
  .vue-component .navbar-dark .navbar-nav .nav-link.active {
    color: #fff; }
  .vue-component .navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1); }
  .vue-component .navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
  .vue-component .navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.5); }
    .vue-component .navbar-dark .navbar-text a {
      color: #fff; }
      .vue-component .navbar-dark .navbar-text a:hover, .vue-component .navbar-dark .navbar-text a:focus {
        color: #fff; }
  .vue-component .card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem; }
    .vue-component .card > hr {
      margin-right: 0;
      margin-left: 0; }
    .vue-component .card > .list-group {
      border-top: inherit;
      border-bottom: inherit; }
      .vue-component .card > .list-group:first-child {
        border-top-width: 0;
        border-top-left-radius: calc(0.25rem - 1px);
        border-top-right-radius: calc(0.25rem - 1px); }
      .vue-component .card > .list-group:last-child {
        border-bottom-width: 0;
        border-bottom-right-radius: calc(0.25rem - 1px);
        border-bottom-left-radius: calc(0.25rem - 1px); }
    .vue-component .card > .card-header + .list-group,
    .vue-component .card > .list-group + .card-footer {
      border-top: 0; }
  .vue-component .card-body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem; }
  .vue-component .card-title {
    margin-bottom: 0.75rem; }
  .vue-component .card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0; }
  .vue-component .card-text:last-child {
    margin-bottom: 0; }
  .vue-component .card-link:hover {
    text-decoration: none; }
  .vue-component .card-link + .card-link {
    margin-left: 1.25rem; }
  .vue-component .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); }
    .vue-component .card-header:first-child {
      border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; }
  .vue-component .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); }
    .vue-component .card-footer:last-child {
      border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); }
  .vue-component .card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0; }
  .vue-component .card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem; }
  .vue-component .card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    border-radius: calc(0.25rem - 1px); }
  .vue-component .card-img,
  .vue-component .card-img-top,
  .vue-component .card-img-bottom {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100%; }
  .vue-component .card-img,
  .vue-component .card-img-top {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px); }
  .vue-component .card-img,
  .vue-component .card-img-bottom {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px); }
  .vue-component .card-deck .card {
    margin-bottom: 15px; }
  @media (min-width: 576px) {
    .vue-component .card-deck {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      margin-right: -15px;
      margin-left: -15px; }
      .vue-component .card-deck .card {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 0%;
                flex: 1 0 0%;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px; } }
  .vue-component .card-group > .card {
    margin-bottom: 15px; }
  @media (min-width: 576px) {
    .vue-component .card-group {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap; }
      .vue-component .card-group > .card {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 0%;
                flex: 1 0 0%;
        margin-bottom: 0; }
        .vue-component .card-group > .card + .card {
          margin-left: 0;
          border-left: 0; }
        .vue-component .card-group > .card:not(:last-child) {
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
          .vue-component .card-group > .card:not(:last-child) .card-img-top,
          .vue-component .card-group > .card:not(:last-child) .card-header {
            border-top-right-radius: 0; }
          .vue-component .card-group > .card:not(:last-child) .card-img-bottom,
          .vue-component .card-group > .card:not(:last-child) .card-footer {
            border-bottom-right-radius: 0; }
        .vue-component .card-group > .card:not(:first-child) {
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
          .vue-component .card-group > .card:not(:first-child) .card-img-top,
          .vue-component .card-group > .card:not(:first-child) .card-header {
            border-top-left-radius: 0; }
          .vue-component .card-group > .card:not(:first-child) .card-img-bottom,
          .vue-component .card-group > .card:not(:first-child) .card-footer {
            border-bottom-left-radius: 0; } }
  .vue-component .card-columns .card {
    margin-bottom: 0.75rem; }
  @media (min-width: 576px) {
    .vue-component .card-columns {
      -webkit-column-count: 3;
         -moz-column-count: 3;
              column-count: 3;
      -webkit-column-gap: 1.25rem;
         -moz-column-gap: 1.25rem;
              column-gap: 1.25rem;
      orphans: 1;
      widows: 1; }
      .vue-component .card-columns .card {
        display: inline-block;
        width: 100%; } }
  .vue-component .accordion {
    overflow-anchor: none; }
    .vue-component .accordion > .card {
      overflow: hidden; }
      .vue-component .accordion > .card:not(:last-of-type) {
        border-bottom: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0; }
      .vue-component .accordion > .card:not(:first-of-type) {
        border-top-left-radius: 0;
        border-top-right-radius: 0; }
      .vue-component .accordion > .card > .card-header {
        border-radius: 0;
        margin-bottom: -1px; }
  .vue-component .breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem; }
  .vue-component .breadcrumb-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .vue-component .breadcrumb-item + .breadcrumb-item {
      padding-left: 0.5rem; }
      .vue-component .breadcrumb-item + .breadcrumb-item::before {
        display: inline-block;
        padding-right: 0.5rem;
        color: #6c757d;
        content: "/"; }
    .vue-component .breadcrumb-item + .breadcrumb-item:hover::before {
      text-decoration: underline; }
    .vue-component .breadcrumb-item + .breadcrumb-item:hover::before {
      text-decoration: none; }
    .vue-component .breadcrumb-item.active {
      color: #6c757d; }
  .vue-component .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem; }
  .vue-component .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6; }
    .vue-component .page-link:hover {
      z-index: 2;
      color: #0056b3;
      text-decoration: none;
      background-color: #e9ecef;
      border-color: #dee2e6; }
    .vue-component .page-link:focus {
      z-index: 3;
      outline: 0;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  .vue-component .page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem; }
  .vue-component .page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem; }
  .vue-component .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }
  .vue-component .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6; }
  .vue-component .pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5; }
  .vue-component .pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem; }
  .vue-component .pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem; }
  .vue-component .pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5; }
  .vue-component .pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem; }
  .vue-component .pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem; }
  .vue-component .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;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    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;
    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, -webkit-box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .badge {
        -webkit-transition: none;
        transition: none; } }
    a.vue-component .badge:hover, a.vue-component .badge:focus {
      text-decoration: none; }
    .vue-component .badge:empty {
      display: none; }
  .vue-component .btn .badge {
    position: relative;
    top: -1px; }
  .vue-component .badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem; }
  .vue-component .badge-primary {
    color: #fff;
    background-color: #007bff; }
    a.vue-component .badge-primary:hover, a.vue-component .badge-primary:focus {
      color: #fff;
      background-color: #0062cc; }
    a.vue-component .badge-primary:focus, a.vue-component .badge-primary.focus {
      outline: 0;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
  .vue-component .badge-secondary {
    color: #fff;
    background-color: #6c757d; }
    a.vue-component .badge-secondary:hover, a.vue-component .badge-secondary:focus {
      color: #fff;
      background-color: #545b62; }
    a.vue-component .badge-secondary:focus, a.vue-component .badge-secondary.focus {
      outline: 0;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
  .vue-component .badge-success {
    color: #fff;
    background-color: #28a745; }
    a.vue-component .badge-success:hover, a.vue-component .badge-success:focus {
      color: #fff;
      background-color: #1e7e34; }
    a.vue-component .badge-success:focus, a.vue-component .badge-success.focus {
      outline: 0;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
  .vue-component .badge-info {
    color: #fff;
    background-color: #17a2b8; }
    a.vue-component .badge-info:hover, a.vue-component .badge-info:focus {
      color: #fff;
      background-color: #117a8b; }
    a.vue-component .badge-info:focus, a.vue-component .badge-info.focus {
      outline: 0;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
  .vue-component .badge-warning {
    color: #212529;
    background-color: #ffc107; }
    a.vue-component .badge-warning:hover, a.vue-component .badge-warning:focus {
      color: #212529;
      background-color: #d39e00; }
    a.vue-component .badge-warning:focus, a.vue-component .badge-warning.focus {
      outline: 0;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
  .vue-component .badge-danger {
    color: #fff;
    background-color: #dc3545; }
    a.vue-component .badge-danger:hover, a.vue-component .badge-danger:focus {
      color: #fff;
      background-color: #bd2130; }
    a.vue-component .badge-danger:focus, a.vue-component .badge-danger.focus {
      outline: 0;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
  .vue-component .badge-light {
    color: #212529;
    background-color: #f8f9fa; }
    a.vue-component .badge-light:hover, a.vue-component .badge-light:focus {
      color: #212529;
      background-color: #dae0e5; }
    a.vue-component .badge-light:focus, a.vue-component .badge-light.focus {
      outline: 0;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  .vue-component .badge-dark {
    color: #fff;
    background-color: #343a40; }
    a.vue-component .badge-dark:hover, a.vue-component .badge-dark:focus {
      color: #fff;
      background-color: #1d2124; }
    a.vue-component .badge-dark:focus, a.vue-component .badge-dark.focus {
      outline: 0;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
              box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
  .vue-component .jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: 0.3rem; }
    @media (min-width: 576px) {
      .vue-component .jumbotron {
        padding: 4rem 2rem; } }
  .vue-component .jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0; }
  .vue-component .alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem; }
  .vue-component .alert-heading {
    color: inherit; }
  .vue-component .alert-link {
    font-weight: 700; }
  .vue-component .alert-dismissible {
    padding-right: 4rem; }
    .vue-component .alert-dismissible .close {
      position: absolute;
      top: 0;
      right: 0;
      padding: 0.75rem 1.25rem;
      color: inherit; }
  .vue-component .alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff; }
    .vue-component .alert-primary hr {
      border-top-color: #9fcdff; }
    .vue-component .alert-primary .alert-link {
      color: #002752; }
  .vue-component .alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db; }
    .vue-component .alert-secondary hr {
      border-top-color: #c8cbcf; }
    .vue-component .alert-secondary .alert-link {
      color: #202326; }
  .vue-component .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb; }
    .vue-component .alert-success hr {
      border-top-color: #b1dfbb; }
    .vue-component .alert-success .alert-link {
      color: #0b2e13; }
  .vue-component .alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb; }
    .vue-component .alert-info hr {
      border-top-color: #abdde5; }
    .vue-component .alert-info .alert-link {
      color: #062c33; }
  .vue-component .alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba; }
    .vue-component .alert-warning hr {
      border-top-color: #ffe8a1; }
    .vue-component .alert-warning .alert-link {
      color: #533f03; }
  .vue-component .alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb; }
    .vue-component .alert-danger hr {
      border-top-color: #f1b0b7; }
    .vue-component .alert-danger .alert-link {
      color: #491217; }
  .vue-component .alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe; }
    .vue-component .alert-light hr {
      border-top-color: #ececf6; }
    .vue-component .alert-light .alert-link {
      color: #686868; }
  .vue-component .alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca; }
    .vue-component .alert-dark hr {
      border-top-color: #b9bbbe; }
    .vue-component .alert-dark .alert-link {
      color: #040505; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }
  .vue-component .progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    line-height: 0;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem; }
  .vue-component .progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .progress-bar {
        -webkit-transition: none;
        transition: none; } }
  .vue-component .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; }
  .vue-component .progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
            animation: progress-bar-stripes 1s linear infinite; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .progress-bar-animated {
        -webkit-animation: none;
                animation: none; } }
  .vue-component .media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .vue-component .media-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .vue-component .list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.25rem; }
  .vue-component .list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit; }
    .vue-component .list-group-item-action:hover, .vue-component .list-group-item-action:focus {
      z-index: 1;
      color: #495057;
      text-decoration: none;
      background-color: #f8f9fa; }
    .vue-component .list-group-item-action:active {
      color: #212529;
      background-color: #e9ecef; }
  .vue-component .list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125); }
    .vue-component .list-group-item:first-child {
      border-top-left-radius: inherit;
      border-top-right-radius: inherit; }
    .vue-component .list-group-item:last-child {
      border-bottom-right-radius: inherit;
      border-bottom-left-radius: inherit; }
    .vue-component .list-group-item.disabled, .vue-component .list-group-item:disabled {
      color: #6c757d;
      pointer-events: none;
      background-color: #fff; }
    .vue-component .list-group-item.active {
      z-index: 2;
      color: #fff;
      background-color: #007bff;
      border-color: #007bff; }
    .vue-component .list-group-item + .vue-component .list-group-item {
      border-top-width: 0; }
      .vue-component .list-group-item + .vue-component .list-group-item.active {
        margin-top: -1px;
        border-top-width: 1px; }
  .vue-component .list-group-horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
    .vue-component .list-group-horizontal > .list-group-item:first-child {
      border-bottom-left-radius: 0.25rem;
      border-top-right-radius: 0; }
    .vue-component .list-group-horizontal > .list-group-item:last-child {
      border-top-right-radius: 0.25rem;
      border-bottom-left-radius: 0; }
    .vue-component .list-group-horizontal > .list-group-item.active {
      margin-top: 0; }
    .vue-component .list-group-horizontal > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .vue-component .list-group-horizontal > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; }
  @media (min-width: 576px) {
    .vue-component .list-group-horizontal-sm {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .vue-component .list-group-horizontal-sm > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0; }
      .vue-component .list-group-horizontal-sm > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-radius: 0; }
      .vue-component .list-group-horizontal-sm > .list-group-item.active {
        margin-top: 0; }
      .vue-component .list-group-horizontal-sm > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0; }
        .vue-component .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
          margin-left: -1px;
          border-left-width: 1px; } }
  @media (min-width: 768px) {
    .vue-component .list-group-horizontal-md {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .vue-component .list-group-horizontal-md > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0; }
      .vue-component .list-group-horizontal-md > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-radius: 0; }
      .vue-component .list-group-horizontal-md > .list-group-item.active {
        margin-top: 0; }
      .vue-component .list-group-horizontal-md > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0; }
        .vue-component .list-group-horizontal-md > .list-group-item + .list-group-item.active {
          margin-left: -1px;
          border-left-width: 1px; } }
  @media (min-width: 992px) {
    .vue-component .list-group-horizontal-lg {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .vue-component .list-group-horizontal-lg > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0; }
      .vue-component .list-group-horizontal-lg > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-radius: 0; }
      .vue-component .list-group-horizontal-lg > .list-group-item.active {
        margin-top: 0; }
      .vue-component .list-group-horizontal-lg > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0; }
        .vue-component .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
          margin-left: -1px;
          border-left-width: 1px; } }
  @media (min-width: 1200px) {
    .vue-component .list-group-horizontal-xl {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .vue-component .list-group-horizontal-xl > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0; }
      .vue-component .list-group-horizontal-xl > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-radius: 0; }
      .vue-component .list-group-horizontal-xl > .list-group-item.active {
        margin-top: 0; }
      .vue-component .list-group-horizontal-xl > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0; }
        .vue-component .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
          margin-left: -1px;
          border-left-width: 1px; } }
  .vue-component .list-group-flush {
    border-radius: 0; }
    .vue-component .list-group-flush > .list-group-item {
      border-width: 0 0 1px; }
      .vue-component .list-group-flush > .list-group-item:last-child {
        border-bottom-width: 0; }
  .vue-component .list-group-item-primary {
    color: #004085;
    background-color: #b8daff; }
    .vue-component .list-group-item-primary.list-group-item-action:hover, .vue-component .list-group-item-primary.list-group-item-action:focus {
      color: #004085;
      background-color: #9fcdff; }
    .vue-component .list-group-item-primary.list-group-item-action.active {
      color: #fff;
      background-color: #004085;
      border-color: #004085; }
  .vue-component .list-group-item-secondary {
    color: #383d41;
    background-color: #d6d8db; }
    .vue-component .list-group-item-secondary.list-group-item-action:hover, .vue-component .list-group-item-secondary.list-group-item-action:focus {
      color: #383d41;
      background-color: #c8cbcf; }
    .vue-component .list-group-item-secondary.list-group-item-action.active {
      color: #fff;
      background-color: #383d41;
      border-color: #383d41; }
  .vue-component .list-group-item-success {
    color: #155724;
    background-color: #c3e6cb; }
    .vue-component .list-group-item-success.list-group-item-action:hover, .vue-component .list-group-item-success.list-group-item-action:focus {
      color: #155724;
      background-color: #b1dfbb; }
    .vue-component .list-group-item-success.list-group-item-action.active {
      color: #fff;
      background-color: #155724;
      border-color: #155724; }
  .vue-component .list-group-item-info {
    color: #0c5460;
    background-color: #bee5eb; }
    .vue-component .list-group-item-info.list-group-item-action:hover, .vue-component .list-group-item-info.list-group-item-action:focus {
      color: #0c5460;
      background-color: #abdde5; }
    .vue-component .list-group-item-info.list-group-item-action.active {
      color: #fff;
      background-color: #0c5460;
      border-color: #0c5460; }
  .vue-component .list-group-item-warning {
    color: #856404;
    background-color: #ffeeba; }
    .vue-component .list-group-item-warning.list-group-item-action:hover, .vue-component .list-group-item-warning.list-group-item-action:focus {
      color: #856404;
      background-color: #ffe8a1; }
    .vue-component .list-group-item-warning.list-group-item-action.active {
      color: #fff;
      background-color: #856404;
      border-color: #856404; }
  .vue-component .list-group-item-danger {
    color: #721c24;
    background-color: #f5c6cb; }
    .vue-component .list-group-item-danger.list-group-item-action:hover, .vue-component .list-group-item-danger.list-group-item-action:focus {
      color: #721c24;
      background-color: #f1b0b7; }
    .vue-component .list-group-item-danger.list-group-item-action.active {
      color: #fff;
      background-color: #721c24;
      border-color: #721c24; }
  .vue-component .list-group-item-light {
    color: #818182;
    background-color: #fdfdfe; }
    .vue-component .list-group-item-light.list-group-item-action:hover, .vue-component .list-group-item-light.list-group-item-action:focus {
      color: #818182;
      background-color: #ececf6; }
    .vue-component .list-group-item-light.list-group-item-action.active {
      color: #fff;
      background-color: #818182;
      border-color: #818182; }
  .vue-component .list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca; }
    .vue-component .list-group-item-dark.list-group-item-action:hover, .vue-component .list-group-item-dark.list-group-item-action:focus {
      color: #1b1e21;
      background-color: #b9bbbe; }
    .vue-component .list-group-item-dark.list-group-item-action.active {
      color: #fff;
      background-color: #1b1e21;
      border-color: #1b1e21; }
  .vue-component .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5; }
    .vue-component .close:hover {
      color: #000;
      text-decoration: none; }
    .vue-component .close:not(:disabled):not(.disabled):hover, .vue-component .close:not(:disabled):not(.disabled):focus {
      opacity: .75; }
  .vue-component button.close {
    padding: 0;
    background-color: transparent;
    border: 0; }
  .vue-component a.close.disabled {
    pointer-events: none; }
  .vue-component .toast {
    -ms-flex-preferred-size: 350px;
        flex-basis: 350px;
    max-width: 350px;
    font-size: 0.875rem;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    opacity: 0;
    border-radius: 0.25rem; }
    .vue-component .toast:not(:last-child) {
      margin-bottom: 0.75rem; }
    .vue-component .toast.showing {
      opacity: 1; }
    .vue-component .toast.show {
      display: block;
      opacity: 1; }
    .vue-component .toast.hide {
      display: none; }
  .vue-component .toast-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.25rem 0.75rem;
    color: #6c757d;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px); }
  .vue-component .toast-body {
    padding: 0.75rem; }
  .vue-component .modal-open {
    overflow: hidden; }
    .vue-component .modal-open .modal {
      overflow-x: hidden;
      overflow-y: auto; }
  .vue-component .modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0; }
  .vue-component .modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none; }
    .modal.fade .vue-component .modal-dialog {
      -webkit-transition: -webkit-transform 0.3s ease-out;
      transition: -webkit-transform 0.3s ease-out;
      transition: transform 0.3s ease-out;
      transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
      -webkit-transform: translate(0, -50px);
              transform: translate(0, -50px); }
      @media (prefers-reduced-motion: reduce) {
        .modal.fade .vue-component .modal-dialog {
          -webkit-transition: none;
          transition: none; } }
    .modal.show .vue-component .modal-dialog {
      -webkit-transform: none;
              transform: none; }
    .modal.modal-static .vue-component .modal-dialog {
      -webkit-transform: scale(1.02);
              transform: scale(1.02); }
  .vue-component .modal-dialog-scrollable {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100% - 1rem); }
    .vue-component .modal-dialog-scrollable .modal-content {
      max-height: calc(100vh - 1rem);
      overflow: hidden; }
    .vue-component .modal-dialog-scrollable .modal-header,
    .vue-component .modal-dialog-scrollable .modal-footer {
      -ms-flex-negative: 0;
          flex-shrink: 0; }
    .vue-component .modal-dialog-scrollable .modal-body {
      overflow-y: auto; }
  .vue-component .modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: calc(100% - 1rem); }
    .vue-component .modal-dialog-centered::before {
      display: block;
      height: calc(100vh - 1rem);
      height: -webkit-min-content;
      height: -moz-min-content;
      height: min-content;
      content: ""; }
    .vue-component .modal-dialog-centered.modal-dialog-scrollable {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      height: 100%; }
      .vue-component .modal-dialog-centered.modal-dialog-scrollable .modal-content {
        max-height: none; }
      .vue-component .modal-dialog-centered.modal-dialog-scrollable::before {
        content: none; }
  .vue-component .modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0; }
  .vue-component .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000; }
    .vue-component .modal-backdrop.fade {
      opacity: 0; }
    .vue-component .modal-backdrop.show {
      opacity: 0.5; }
  .vue-component .modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px); }
    .vue-component .modal-header .close {
      padding: 1rem 1rem;
      margin: -1rem -1rem -1rem auto; }
  .vue-component .modal-title {
    margin-bottom: 0;
    line-height: 1.5; }
  .vue-component .modal-body {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 1rem; }
  .vue-component .modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px); }
    .vue-component .modal-footer > * {
      margin: 0.25rem; }
  .vue-component .modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll; }
  @media (min-width: 576px) {
    .vue-component .modal-dialog {
      max-width: 500px;
      margin: 1.75rem auto; }
    .vue-component .modal-dialog-scrollable {
      max-height: calc(100% - 3.5rem); }
      .vue-component .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem); }
    .vue-component .modal-dialog-centered {
      min-height: calc(100% - 3.5rem); }
      .vue-component .modal-dialog-centered::before {
        height: calc(100vh - 3.5rem);
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content; }
    .vue-component .modal-sm {
      max-width: 300px; } }
  @media (min-width: 992px) {
    .vue-component .modal-lg,
    .vue-component .modal-xl {
      max-width: 800px; } }
  @media (min-width: 1200px) {
    .vue-component .modal-xl {
      max-width: 1140px; } }
  .vue-component .tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", 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; }
    .vue-component .tooltip.show {
      opacity: 0.9; }
    .vue-component .tooltip .arrow {
      position: absolute;
      display: block;
      width: 0.8rem;
      height: 0.4rem; }
      .vue-component .tooltip .arrow::before {
        position: absolute;
        content: "";
        border-color: transparent;
        border-style: solid; }
  .vue-component .bs-tooltip-top, .vue-component .bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="top"] {
    padding: 0.4rem 0; }
    .vue-component .bs-tooltip-top .arrow, .vue-component .bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="top"] .arrow {
      bottom: 0; }
      .vue-component .bs-tooltip-top .arrow::before, .vue-component .bs-tooltip-auto[x-placement^="top"] .arrow::before, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="top"] .arrow::before, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="top"] .arrow::before, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="top"] .arrow::before, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="top"] .arrow::before, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="top"] .arrow::before, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="top"] .arrow::before, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="top"] .arrow::before, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="top"] .arrow::before {
        top: 0;
        border-width: 0.4rem 0.4rem 0;
        border-top-color: #000; }
  .vue-component .bs-tooltip-right, .vue-component .bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="right"] {
    padding: 0 0.4rem; }
    .vue-component .bs-tooltip-right .arrow, .vue-component .bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="right"] .arrow {
      left: 0;
      width: 0.4rem;
      height: 0.8rem; }
      .vue-component .bs-tooltip-right .arrow::before, .vue-component .bs-tooltip-auto[x-placement^="right"] .arrow::before, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="right"] .arrow::before, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="right"] .arrow::before, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="right"] .arrow::before, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="right"] .arrow::before, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="right"] .arrow::before, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="right"] .arrow::before, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="right"] .arrow::before, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="right"] .arrow::before {
        right: 0;
        border-width: 0.4rem 0.4rem 0.4rem 0;
        border-right-color: #000; }
  .vue-component .bs-tooltip-bottom, .vue-component .bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="bottom"] {
    padding: 0.4rem 0; }
    .vue-component .bs-tooltip-bottom .arrow, .vue-component .bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="bottom"] .arrow {
      top: 0; }
      .vue-component .bs-tooltip-bottom .arrow::before, .vue-component .bs-tooltip-auto[x-placement^="bottom"] .arrow::before, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="bottom"] .arrow::before, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="bottom"] .arrow::before, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="bottom"] .arrow::before, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="bottom"] .arrow::before, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="bottom"] .arrow::before, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="bottom"] .arrow::before, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="bottom"] .arrow::before, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
        bottom: 0;
        border-width: 0 0.4rem 0.4rem;
        border-bottom-color: #000; }
  .vue-component .bs-tooltip-left, .vue-component .bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="left"] {
    padding: 0 0.4rem; }
    .vue-component .bs-tooltip-left .arrow, .vue-component .bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="left"] .arrow {
      right: 0;
      width: 0.4rem;
      height: 0.8rem; }
      .vue-component .bs-tooltip-left .arrow::before, .vue-component .bs-tooltip-auto[x-placement^="left"] .arrow::before, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="left"] .arrow::before, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="left"] .arrow::before, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="left"] .arrow::before, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="left"] .arrow::before, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="left"] .arrow::before, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="left"] .arrow::before, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="left"] .arrow::before, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="left"] .arrow::before {
        left: 0;
        border-width: 0.4rem 0 0.4rem 0.4rem;
        border-left-color: #000; }
  .vue-component .tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem; }
  .vue-component .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, "Noto Sans", 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: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem; }
    .vue-component .popover .arrow {
      position: absolute;
      display: block;
      width: 1rem;
      height: 0.5rem;
      margin: 0 0.3rem; }
      .vue-component .popover .arrow::before, .vue-component .popover .arrow::after {
        position: absolute;
        display: block;
        content: "";
        border-color: transparent;
        border-style: solid; }
  .vue-component .bs-popover-top, .vue-component .bs-popover-auto[x-placement^="top"], .vue-component .b-popover-primary.bs-popover-auto[x-placement^="top"], .vue-component .b-popover-secondary.bs-popover-auto[x-placement^="top"], .vue-component .b-popover-success.bs-popover-auto[x-placement^="top"], .vue-component .b-popover-info.bs-popover-auto[x-placement^="top"], .vue-component .b-popover-warning.bs-popover-auto[x-placement^="top"], .vue-component .b-popover-danger.bs-popover-auto[x-placement^="top"], .vue-component .b-popover-light.bs-popover-auto[x-placement^="top"], .vue-component .b-popover-dark.bs-popover-auto[x-placement^="top"] {
    margin-bottom: 0.5rem; }
    .vue-component .bs-popover-top > .arrow, .vue-component .bs-popover-auto[x-placement^="top"] > .arrow {
      bottom: calc(-0.5rem - 1px); }
      .vue-component .bs-popover-top > .arrow::before, .vue-component .bs-popover-auto[x-placement^="top"] > .arrow::before {
        bottom: 0;
        border-width: 0.5rem 0.5rem 0;
        border-top-color: rgba(0, 0, 0, 0.25); }
      .vue-component .bs-popover-top > .arrow::after, .vue-component .bs-popover-auto[x-placement^="top"] > .arrow::after {
        bottom: 1px;
        border-width: 0.5rem 0.5rem 0;
        border-top-color: #fff; }
  .vue-component .bs-popover-right, .vue-component .bs-popover-auto[x-placement^="right"], .vue-component .b-popover-primary.bs-popover-auto[x-placement^="right"], .vue-component .b-popover-secondary.bs-popover-auto[x-placement^="right"], .vue-component .b-popover-success.bs-popover-auto[x-placement^="right"], .vue-component .b-popover-info.bs-popover-auto[x-placement^="right"], .vue-component .b-popover-warning.bs-popover-auto[x-placement^="right"], .vue-component .b-popover-danger.bs-popover-auto[x-placement^="right"], .vue-component .b-popover-light.bs-popover-auto[x-placement^="right"], .vue-component .b-popover-dark.bs-popover-auto[x-placement^="right"] {
    margin-left: 0.5rem; }
    .vue-component .bs-popover-right > .arrow, .vue-component .bs-popover-auto[x-placement^="right"] > .arrow {
      left: calc(-0.5rem - 1px);
      width: 0.5rem;
      height: 1rem;
      margin: 0.3rem 0; }
      .vue-component .bs-popover-right > .arrow::before, .vue-component .bs-popover-auto[x-placement^="right"] > .arrow::before {
        left: 0;
        border-width: 0.5rem 0.5rem 0.5rem 0;
        border-right-color: rgba(0, 0, 0, 0.25); }
      .vue-component .bs-popover-right > .arrow::after, .vue-component .bs-popover-auto[x-placement^="right"] > .arrow::after {
        left: 1px;
        border-width: 0.5rem 0.5rem 0.5rem 0;
        border-right-color: #fff; }
  .vue-component .bs-popover-bottom, .vue-component .bs-popover-auto[x-placement^="bottom"], .vue-component .b-popover-primary.bs-popover-auto[x-placement^="bottom"], .vue-component .b-popover-secondary.bs-popover-auto[x-placement^="bottom"], .vue-component .b-popover-success.bs-popover-auto[x-placement^="bottom"], .vue-component .b-popover-info.bs-popover-auto[x-placement^="bottom"], .vue-component .b-popover-warning.bs-popover-auto[x-placement^="bottom"], .vue-component .b-popover-danger.bs-popover-auto[x-placement^="bottom"], .vue-component .b-popover-light.bs-popover-auto[x-placement^="bottom"], .vue-component .b-popover-dark.bs-popover-auto[x-placement^="bottom"] {
    margin-top: 0.5rem; }
    .vue-component .bs-popover-bottom > .arrow, .vue-component .bs-popover-auto[x-placement^="bottom"] > .arrow {
      top: calc(-0.5rem - 1px); }
      .vue-component .bs-popover-bottom > .arrow::before, .vue-component .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
        top: 0;
        border-width: 0 0.5rem 0.5rem 0.5rem;
        border-bottom-color: rgba(0, 0, 0, 0.25); }
      .vue-component .bs-popover-bottom > .arrow::after, .vue-component .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
        top: 1px;
        border-width: 0 0.5rem 0.5rem 0.5rem;
        border-bottom-color: #fff; }
    .vue-component .bs-popover-bottom .popover-header::before, .vue-component .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; }
  .vue-component .bs-popover-left, .vue-component .bs-popover-auto[x-placement^="left"], .vue-component .b-popover-primary.bs-popover-auto[x-placement^="left"], .vue-component .b-popover-secondary.bs-popover-auto[x-placement^="left"], .vue-component .b-popover-success.bs-popover-auto[x-placement^="left"], .vue-component .b-popover-info.bs-popover-auto[x-placement^="left"], .vue-component .b-popover-warning.bs-popover-auto[x-placement^="left"], .vue-component .b-popover-danger.bs-popover-auto[x-placement^="left"], .vue-component .b-popover-light.bs-popover-auto[x-placement^="left"], .vue-component .b-popover-dark.bs-popover-auto[x-placement^="left"] {
    margin-right: 0.5rem; }
    .vue-component .bs-popover-left > .arrow, .vue-component .bs-popover-auto[x-placement^="left"] > .arrow {
      right: calc(-0.5rem - 1px);
      width: 0.5rem;
      height: 1rem;
      margin: 0.3rem 0; }
      .vue-component .bs-popover-left > .arrow::before, .vue-component .bs-popover-auto[x-placement^="left"] > .arrow::before {
        right: 0;
        border-width: 0.5rem 0 0.5rem 0.5rem;
        border-left-color: rgba(0, 0, 0, 0.25); }
      .vue-component .bs-popover-left > .arrow::after, .vue-component .bs-popover-auto[x-placement^="left"] > .arrow::after {
        right: 1px;
        border-width: 0.5rem 0 0.5rem 0.5rem;
        border-left-color: #fff; }
  .vue-component .popover-header {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px); }
    .vue-component .popover-header:empty {
      display: none; }
  .vue-component .popover-body {
    padding: 0.5rem 0.75rem;
    color: #212529; }
  .vue-component .carousel {
    position: relative; }
  .vue-component .carousel.pointer-event {
    -ms-touch-action: pan-y;
        touch-action: pan-y; }
  .vue-component .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden; }
    .vue-component .carousel-inner::after {
      display: block;
      clear: both;
      content: ""; }
  .vue-component .carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .carousel-item {
        -webkit-transition: none;
        transition: none; } }
  .vue-component .carousel-item.active,
  .vue-component .carousel-item-next,
  .vue-component .carousel-item-prev {
    display: block; }
  .vue-component .carousel-item-next:not(.carousel-item-left),
  .vue-component .active.carousel-item-right {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  .vue-component .carousel-item-prev:not(.carousel-item-right),
  .vue-component .active.carousel-item-left {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
  .vue-component .carousel-fade .carousel-item {
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transform: none;
            transform: none; }
  .vue-component .carousel-fade .carousel-item.active,
  .vue-component .carousel-fade .carousel-item-next.carousel-item-left,
  .vue-component .carousel-fade .carousel-item-prev.carousel-item-right {
    z-index: 1;
    opacity: 1; }
  .vue-component .carousel-fade .active.carousel-item-left,
  .vue-component .carousel-fade .active.carousel-item-right {
    z-index: 0;
    opacity: 0;
    -webkit-transition: opacity 0s 0.6s;
    transition: opacity 0s 0.6s; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .carousel-fade .active.carousel-item-left,
      .vue-component .carousel-fade .active.carousel-item-right {
        -webkit-transition: none;
        transition: none; } }
  .vue-component .carousel-control-prev,
  .vue-component .carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    -webkit-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .carousel-control-prev,
      .vue-component .carousel-control-next {
        -webkit-transition: none;
        transition: none; } }
    .vue-component .carousel-control-prev:hover, .vue-component .carousel-control-prev:focus,
    .vue-component .carousel-control-next:hover,
    .vue-component .carousel-control-next:focus {
      color: #fff;
      text-decoration: none;
      outline: 0;
      opacity: 0.9; }
  .vue-component .carousel-control-prev {
    left: 0; }
  .vue-component .carousel-control-next {
    right: 0; }
  .vue-component .carousel-control-prev-icon,
  .vue-component .carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat 50% / 100% 100%; }
  .vue-component .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e"); }
  .vue-component .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e"); }
  .vue-component .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none; }
    .vue-component .carousel-indicators li {
      -webkit-box-sizing: content-box;
              box-sizing: content-box;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      width: 30px;
      height: 3px;
      margin-right: 3px;
      margin-left: 3px;
      text-indent: -999px;
      cursor: pointer;
      background-color: #fff;
      background-clip: padding-box;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      opacity: .5;
      -webkit-transition: opacity 0.6s ease;
      transition: opacity 0.6s ease; }
      @media (prefers-reduced-motion: reduce) {
        .vue-component .carousel-indicators li {
          -webkit-transition: none;
          transition: none; } }
    .vue-component .carousel-indicators .active {
      opacity: 1; }
  .vue-component .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center; }

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  .vue-component .spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
            animation: spinner-border .75s linear infinite; }
  .vue-component .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em; }

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  50% {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  50% {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }
  .vue-component .spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: spinner-grow .75s linear infinite;
            animation: spinner-grow .75s linear infinite; }
  .vue-component .spinner-grow-sm {
    width: 1rem;
    height: 1rem; }
  .vue-component .align-baseline {
    vertical-align: baseline !important; }
  .vue-component .align-top {
    vertical-align: top !important; }
  .vue-component .align-middle {
    vertical-align: middle !important; }
  .vue-component .align-bottom {
    vertical-align: bottom !important; }
  .vue-component .align-text-bottom {
    vertical-align: text-bottom !important; }
  .vue-component .align-text-top {
    vertical-align: text-top !important; }
  .vue-component .bg-primary {
    background-color: #007bff !important; }
  .vue-component a.bg-primary:hover, .vue-component a.bg-primary:focus,
  .vue-component button.bg-primary:hover,
  .vue-component button.bg-primary:focus {
    background-color: #0062cc !important; }
  .vue-component .bg-secondary {
    background-color: #6c757d !important; }
  .vue-component a.bg-secondary:hover, .vue-component a.bg-secondary:focus,
  .vue-component button.bg-secondary:hover,
  .vue-component button.bg-secondary:focus {
    background-color: #545b62 !important; }
  .vue-component .bg-success {
    background-color: #28a745 !important; }
  .vue-component a.bg-success:hover, .vue-component a.bg-success:focus,
  .vue-component button.bg-success:hover,
  .vue-component button.bg-success:focus {
    background-color: #1e7e34 !important; }
  .vue-component .bg-info {
    background-color: #17a2b8 !important; }
  .vue-component a.bg-info:hover, .vue-component a.bg-info:focus,
  .vue-component button.bg-info:hover,
  .vue-component button.bg-info:focus {
    background-color: #117a8b !important; }
  .vue-component .bg-warning {
    background-color: #ffc107 !important; }
  .vue-component a.bg-warning:hover, .vue-component a.bg-warning:focus,
  .vue-component button.bg-warning:hover,
  .vue-component button.bg-warning:focus {
    background-color: #d39e00 !important; }
  .vue-component .bg-danger {
    background-color: #dc3545 !important; }
  .vue-component a.bg-danger:hover, .vue-component a.bg-danger:focus,
  .vue-component button.bg-danger:hover,
  .vue-component button.bg-danger:focus {
    background-color: #bd2130 !important; }
  .vue-component .bg-light {
    background-color: #f8f9fa !important; }
  .vue-component a.bg-light:hover, .vue-component a.bg-light:focus,
  .vue-component button.bg-light:hover,
  .vue-component button.bg-light:focus {
    background-color: #dae0e5 !important; }
  .vue-component .bg-dark {
    background-color: #343a40 !important; }
  .vue-component a.bg-dark:hover, .vue-component a.bg-dark:focus,
  .vue-component button.bg-dark:hover,
  .vue-component button.bg-dark:focus {
    background-color: #1d2124 !important; }
  .vue-component .bg-white {
    background-color: #fff !important; }
  .vue-component .bg-transparent {
    background-color: transparent !important; }
  .vue-component .border {
    border: 1px solid #dee2e6 !important; }
  .vue-component .border-top {
    border-top: 1px solid #dee2e6 !important; }
  .vue-component .border-right {
    border-right: 1px solid #dee2e6 !important; }
  .vue-component .border-bottom {
    border-bottom: 1px solid #dee2e6 !important; }
  .vue-component .border-left {
    border-left: 1px solid #dee2e6 !important; }
  .vue-component .border-0 {
    border: 0 !important; }
  .vue-component .border-top-0 {
    border-top: 0 !important; }
  .vue-component .border-right-0 {
    border-right: 0 !important; }
  .vue-component .border-bottom-0 {
    border-bottom: 0 !important; }
  .vue-component .border-left-0 {
    border-left: 0 !important; }
  .vue-component .border-primary {
    border-color: #007bff !important; }
  .vue-component .border-secondary {
    border-color: #6c757d !important; }
  .vue-component .border-success {
    border-color: #28a745 !important; }
  .vue-component .border-info {
    border-color: #17a2b8 !important; }
  .vue-component .border-warning {
    border-color: #ffc107 !important; }
  .vue-component .border-danger {
    border-color: #dc3545 !important; }
  .vue-component .border-light {
    border-color: #f8f9fa !important; }
  .vue-component .border-dark {
    border-color: #343a40 !important; }
  .vue-component .border-white {
    border-color: #fff !important; }
  .vue-component .rounded-sm {
    border-radius: 0.2rem !important; }
  .vue-component .rounded {
    border-radius: 0.25rem !important; }
  .vue-component .rounded-top {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important; }
  .vue-component .rounded-right {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important; }
  .vue-component .rounded-bottom {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important; }
  .vue-component .rounded-left {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important; }
  .vue-component .rounded-lg {
    border-radius: 0.3rem !important; }
  .vue-component .rounded-circle {
    border-radius: 50% !important; }
  .vue-component .rounded-pill {
    border-radius: 50rem !important; }
  .vue-component .rounded-0 {
    border-radius: 0 !important; }
  .vue-component .clearfix::after {
    display: block;
    clear: both;
    content: ""; }
  .vue-component .d-none {
    display: none !important; }
  .vue-component .d-inline {
    display: inline !important; }
  .vue-component .d-inline-block {
    display: inline-block !important; }
  .vue-component .d-block {
    display: block !important; }
  .vue-component .d-table {
    display: table !important; }
  .vue-component .d-table-row {
    display: table-row !important; }
  .vue-component .d-table-cell {
    display: table-cell !important; }
  .vue-component .d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .vue-component .d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; }
  @media (min-width: 576px) {
    .vue-component .d-sm-none {
      display: none !important; }
    .vue-component .d-sm-inline {
      display: inline !important; }
    .vue-component .d-sm-inline-block {
      display: inline-block !important; }
    .vue-component .d-sm-block {
      display: block !important; }
    .vue-component .d-sm-table {
      display: table !important; }
    .vue-component .d-sm-table-row {
      display: table-row !important; }
    .vue-component .d-sm-table-cell {
      display: table-cell !important; }
    .vue-component .d-sm-flex {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important; }
    .vue-component .d-sm-inline-flex {
      display: -webkit-inline-box !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important; } }
  @media (min-width: 768px) {
    .vue-component .d-md-none {
      display: none !important; }
    .vue-component .d-md-inline {
      display: inline !important; }
    .vue-component .d-md-inline-block {
      display: inline-block !important; }
    .vue-component .d-md-block {
      display: block !important; }
    .vue-component .d-md-table {
      display: table !important; }
    .vue-component .d-md-table-row {
      display: table-row !important; }
    .vue-component .d-md-table-cell {
      display: table-cell !important; }
    .vue-component .d-md-flex {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important; }
    .vue-component .d-md-inline-flex {
      display: -webkit-inline-box !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important; } }
  @media (min-width: 992px) {
    .vue-component .d-lg-none {
      display: none !important; }
    .vue-component .d-lg-inline {
      display: inline !important; }
    .vue-component .d-lg-inline-block {
      display: inline-block !important; }
    .vue-component .d-lg-block {
      display: block !important; }
    .vue-component .d-lg-table {
      display: table !important; }
    .vue-component .d-lg-table-row {
      display: table-row !important; }
    .vue-component .d-lg-table-cell {
      display: table-cell !important; }
    .vue-component .d-lg-flex {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important; }
    .vue-component .d-lg-inline-flex {
      display: -webkit-inline-box !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important; } }
  @media (min-width: 1200px) {
    .vue-component .d-xl-none {
      display: none !important; }
    .vue-component .d-xl-inline {
      display: inline !important; }
    .vue-component .d-xl-inline-block {
      display: inline-block !important; }
    .vue-component .d-xl-block {
      display: block !important; }
    .vue-component .d-xl-table {
      display: table !important; }
    .vue-component .d-xl-table-row {
      display: table-row !important; }
    .vue-component .d-xl-table-cell {
      display: table-cell !important; }
    .vue-component .d-xl-flex {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important; }
    .vue-component .d-xl-inline-flex {
      display: -webkit-inline-box !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important; } }
  @media print {
    .vue-component .d-print-none {
      display: none !important; }
    .vue-component .d-print-inline {
      display: inline !important; }
    .vue-component .d-print-inline-block {
      display: inline-block !important; }
    .vue-component .d-print-block {
      display: block !important; }
    .vue-component .d-print-table {
      display: table !important; }
    .vue-component .d-print-table-row {
      display: table-row !important; }
    .vue-component .d-print-table-cell {
      display: table-cell !important; }
    .vue-component .d-print-flex {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important; }
    .vue-component .d-print-inline-flex {
      display: -webkit-inline-box !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important; } }
  .vue-component .embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden; }
    .vue-component .embed-responsive::before {
      display: block;
      content: ""; }
    .vue-component .embed-responsive .embed-responsive-item,
    .vue-component .embed-responsive iframe,
    .vue-component .embed-responsive embed,
    .vue-component .embed-responsive object,
    .vue-component .embed-responsive video {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0; }
  .vue-component .embed-responsive-21by9::before {
    padding-top: 42.85714%; }
  .vue-component .embed-responsive-16by9::before {
    padding-top: 56.25%; }
  .vue-component .embed-responsive-4by3::before {
    padding-top: 75%; }
  .vue-component .embed-responsive-1by1::before {
    padding-top: 100%; }
  .vue-component .flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important; }
  .vue-component .flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important; }
  .vue-component .flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important; }
  .vue-component .flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important; }
  .vue-component .flex-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important; }
  .vue-component .flex-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important; }
  .vue-component .flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important; }
  .vue-component .flex-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important; }
  .vue-component .flex-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important; }
  .vue-component .flex-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important; }
  .vue-component .flex-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important; }
  .vue-component .flex-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important; }
  .vue-component .justify-content-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important; }
  .vue-component .justify-content-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important; }
  .vue-component .justify-content-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important; }
  .vue-component .justify-content-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important; }
  .vue-component .justify-content-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important; }
  .vue-component .align-items-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important; }
  .vue-component .align-items-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important; }
  .vue-component .align-items-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important; }
  .vue-component .align-items-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important; }
  .vue-component .align-items-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important; }
  .vue-component .align-content-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important; }
  .vue-component .align-content-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important; }
  .vue-component .align-content-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important; }
  .vue-component .align-content-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important; }
  .vue-component .align-content-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important; }
  .vue-component .align-content-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important; }
  .vue-component .align-self-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important; }
  .vue-component .align-self-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important; }
  .vue-component .align-self-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important; }
  .vue-component .align-self-center {
    -ms-flex-item-align: center !important;
        align-self: center !important; }
  .vue-component .align-self-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important; }
  .vue-component .align-self-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important; }
  @media (min-width: 576px) {
    .vue-component .flex-sm-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
          -ms-flex-direction: row !important;
              flex-direction: row !important; }
    .vue-component .flex-sm-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
          -ms-flex-direction: column !important;
              flex-direction: column !important; }
    .vue-component .flex-sm-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
          -ms-flex-direction: row-reverse !important;
              flex-direction: row-reverse !important; }
    .vue-component .flex-sm-column-reverse {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
          -ms-flex-direction: column-reverse !important;
              flex-direction: column-reverse !important; }
    .vue-component .flex-sm-wrap {
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important; }
    .vue-component .flex-sm-nowrap {
      -ms-flex-wrap: nowrap !important;
          flex-wrap: nowrap !important; }
    .vue-component .flex-sm-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
          flex-wrap: wrap-reverse !important; }
    .vue-component .flex-sm-fill {
      -webkit-box-flex: 1 !important;
          -ms-flex: 1 1 auto !important;
              flex: 1 1 auto !important; }
    .vue-component .flex-sm-grow-0 {
      -webkit-box-flex: 0 !important;
          -ms-flex-positive: 0 !important;
              flex-grow: 0 !important; }
    .vue-component .flex-sm-grow-1 {
      -webkit-box-flex: 1 !important;
          -ms-flex-positive: 1 !important;
              flex-grow: 1 !important; }
    .vue-component .flex-sm-shrink-0 {
      -ms-flex-negative: 0 !important;
          flex-shrink: 0 !important; }
    .vue-component .flex-sm-shrink-1 {
      -ms-flex-negative: 1 !important;
          flex-shrink: 1 !important; }
    .vue-component .justify-content-sm-start {
      -webkit-box-pack: start !important;
          -ms-flex-pack: start !important;
              justify-content: flex-start !important; }
    .vue-component .justify-content-sm-end {
      -webkit-box-pack: end !important;
          -ms-flex-pack: end !important;
              justify-content: flex-end !important; }
    .vue-component .justify-content-sm-center {
      -webkit-box-pack: center !important;
          -ms-flex-pack: center !important;
              justify-content: center !important; }
    .vue-component .justify-content-sm-between {
      -webkit-box-pack: justify !important;
          -ms-flex-pack: justify !important;
              justify-content: space-between !important; }
    .vue-component .justify-content-sm-around {
      -ms-flex-pack: distribute !important;
          justify-content: space-around !important; }
    .vue-component .align-items-sm-start {
      -webkit-box-align: start !important;
          -ms-flex-align: start !important;
              align-items: flex-start !important; }
    .vue-component .align-items-sm-end {
      -webkit-box-align: end !important;
          -ms-flex-align: end !important;
              align-items: flex-end !important; }
    .vue-component .align-items-sm-center {
      -webkit-box-align: center !important;
          -ms-flex-align: center !important;
              align-items: center !important; }
    .vue-component .align-items-sm-baseline {
      -webkit-box-align: baseline !important;
          -ms-flex-align: baseline !important;
              align-items: baseline !important; }
    .vue-component .align-items-sm-stretch {
      -webkit-box-align: stretch !important;
          -ms-flex-align: stretch !important;
              align-items: stretch !important; }
    .vue-component .align-content-sm-start {
      -ms-flex-line-pack: start !important;
          align-content: flex-start !important; }
    .vue-component .align-content-sm-end {
      -ms-flex-line-pack: end !important;
          align-content: flex-end !important; }
    .vue-component .align-content-sm-center {
      -ms-flex-line-pack: center !important;
          align-content: center !important; }
    .vue-component .align-content-sm-between {
      -ms-flex-line-pack: justify !important;
          align-content: space-between !important; }
    .vue-component .align-content-sm-around {
      -ms-flex-line-pack: distribute !important;
          align-content: space-around !important; }
    .vue-component .align-content-sm-stretch {
      -ms-flex-line-pack: stretch !important;
          align-content: stretch !important; }
    .vue-component .align-self-sm-auto {
      -ms-flex-item-align: auto !important;
          align-self: auto !important; }
    .vue-component .align-self-sm-start {
      -ms-flex-item-align: start !important;
          align-self: flex-start !important; }
    .vue-component .align-self-sm-end {
      -ms-flex-item-align: end !important;
          align-self: flex-end !important; }
    .vue-component .align-self-sm-center {
      -ms-flex-item-align: center !important;
          align-self: center !important; }
    .vue-component .align-self-sm-baseline {
      -ms-flex-item-align: baseline !important;
          align-self: baseline !important; }
    .vue-component .align-self-sm-stretch {
      -ms-flex-item-align: stretch !important;
          align-self: stretch !important; } }
  @media (min-width: 768px) {
    .vue-component .flex-md-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
          -ms-flex-direction: row !important;
              flex-direction: row !important; }
    .vue-component .flex-md-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
          -ms-flex-direction: column !important;
              flex-direction: column !important; }
    .vue-component .flex-md-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
          -ms-flex-direction: row-reverse !important;
              flex-direction: row-reverse !important; }
    .vue-component .flex-md-column-reverse {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
          -ms-flex-direction: column-reverse !important;
              flex-direction: column-reverse !important; }
    .vue-component .flex-md-wrap {
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important; }
    .vue-component .flex-md-nowrap {
      -ms-flex-wrap: nowrap !important;
          flex-wrap: nowrap !important; }
    .vue-component .flex-md-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
          flex-wrap: wrap-reverse !important; }
    .vue-component .flex-md-fill {
      -webkit-box-flex: 1 !important;
          -ms-flex: 1 1 auto !important;
              flex: 1 1 auto !important; }
    .vue-component .flex-md-grow-0 {
      -webkit-box-flex: 0 !important;
          -ms-flex-positive: 0 !important;
              flex-grow: 0 !important; }
    .vue-component .flex-md-grow-1 {
      -webkit-box-flex: 1 !important;
          -ms-flex-positive: 1 !important;
              flex-grow: 1 !important; }
    .vue-component .flex-md-shrink-0 {
      -ms-flex-negative: 0 !important;
          flex-shrink: 0 !important; }
    .vue-component .flex-md-shrink-1 {
      -ms-flex-negative: 1 !important;
          flex-shrink: 1 !important; }
    .vue-component .justify-content-md-start {
      -webkit-box-pack: start !important;
          -ms-flex-pack: start !important;
              justify-content: flex-start !important; }
    .vue-component .justify-content-md-end {
      -webkit-box-pack: end !important;
          -ms-flex-pack: end !important;
              justify-content: flex-end !important; }
    .vue-component .justify-content-md-center {
      -webkit-box-pack: center !important;
          -ms-flex-pack: center !important;
              justify-content: center !important; }
    .vue-component .justify-content-md-between {
      -webkit-box-pack: justify !important;
          -ms-flex-pack: justify !important;
              justify-content: space-between !important; }
    .vue-component .justify-content-md-around {
      -ms-flex-pack: distribute !important;
          justify-content: space-around !important; }
    .vue-component .align-items-md-start {
      -webkit-box-align: start !important;
          -ms-flex-align: start !important;
              align-items: flex-start !important; }
    .vue-component .align-items-md-end {
      -webkit-box-align: end !important;
          -ms-flex-align: end !important;
              align-items: flex-end !important; }
    .vue-component .align-items-md-center {
      -webkit-box-align: center !important;
          -ms-flex-align: center !important;
              align-items: center !important; }
    .vue-component .align-items-md-baseline {
      -webkit-box-align: baseline !important;
          -ms-flex-align: baseline !important;
              align-items: baseline !important; }
    .vue-component .align-items-md-stretch {
      -webkit-box-align: stretch !important;
          -ms-flex-align: stretch !important;
              align-items: stretch !important; }
    .vue-component .align-content-md-start {
      -ms-flex-line-pack: start !important;
          align-content: flex-start !important; }
    .vue-component .align-content-md-end {
      -ms-flex-line-pack: end !important;
          align-content: flex-end !important; }
    .vue-component .align-content-md-center {
      -ms-flex-line-pack: center !important;
          align-content: center !important; }
    .vue-component .align-content-md-between {
      -ms-flex-line-pack: justify !important;
          align-content: space-between !important; }
    .vue-component .align-content-md-around {
      -ms-flex-line-pack: distribute !important;
          align-content: space-around !important; }
    .vue-component .align-content-md-stretch {
      -ms-flex-line-pack: stretch !important;
          align-content: stretch !important; }
    .vue-component .align-self-md-auto {
      -ms-flex-item-align: auto !important;
          align-self: auto !important; }
    .vue-component .align-self-md-start {
      -ms-flex-item-align: start !important;
          align-self: flex-start !important; }
    .vue-component .align-self-md-end {
      -ms-flex-item-align: end !important;
          align-self: flex-end !important; }
    .vue-component .align-self-md-center {
      -ms-flex-item-align: center !important;
          align-self: center !important; }
    .vue-component .align-self-md-baseline {
      -ms-flex-item-align: baseline !important;
          align-self: baseline !important; }
    .vue-component .align-self-md-stretch {
      -ms-flex-item-align: stretch !important;
          align-self: stretch !important; } }
  @media (min-width: 992px) {
    .vue-component .flex-lg-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
          -ms-flex-direction: row !important;
              flex-direction: row !important; }
    .vue-component .flex-lg-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
          -ms-flex-direction: column !important;
              flex-direction: column !important; }
    .vue-component .flex-lg-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
          -ms-flex-direction: row-reverse !important;
              flex-direction: row-reverse !important; }
    .vue-component .flex-lg-column-reverse {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
          -ms-flex-direction: column-reverse !important;
              flex-direction: column-reverse !important; }
    .vue-component .flex-lg-wrap {
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important; }
    .vue-component .flex-lg-nowrap {
      -ms-flex-wrap: nowrap !important;
          flex-wrap: nowrap !important; }
    .vue-component .flex-lg-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
          flex-wrap: wrap-reverse !important; }
    .vue-component .flex-lg-fill {
      -webkit-box-flex: 1 !important;
          -ms-flex: 1 1 auto !important;
              flex: 1 1 auto !important; }
    .vue-component .flex-lg-grow-0 {
      -webkit-box-flex: 0 !important;
          -ms-flex-positive: 0 !important;
              flex-grow: 0 !important; }
    .vue-component .flex-lg-grow-1 {
      -webkit-box-flex: 1 !important;
          -ms-flex-positive: 1 !important;
              flex-grow: 1 !important; }
    .vue-component .flex-lg-shrink-0 {
      -ms-flex-negative: 0 !important;
          flex-shrink: 0 !important; }
    .vue-component .flex-lg-shrink-1 {
      -ms-flex-negative: 1 !important;
          flex-shrink: 1 !important; }
    .vue-component .justify-content-lg-start {
      -webkit-box-pack: start !important;
          -ms-flex-pack: start !important;
              justify-content: flex-start !important; }
    .vue-component .justify-content-lg-end {
      -webkit-box-pack: end !important;
          -ms-flex-pack: end !important;
              justify-content: flex-end !important; }
    .vue-component .justify-content-lg-center {
      -webkit-box-pack: center !important;
          -ms-flex-pack: center !important;
              justify-content: center !important; }
    .vue-component .justify-content-lg-between {
      -webkit-box-pack: justify !important;
          -ms-flex-pack: justify !important;
              justify-content: space-between !important; }
    .vue-component .justify-content-lg-around {
      -ms-flex-pack: distribute !important;
          justify-content: space-around !important; }
    .vue-component .align-items-lg-start {
      -webkit-box-align: start !important;
          -ms-flex-align: start !important;
              align-items: flex-start !important; }
    .vue-component .align-items-lg-end {
      -webkit-box-align: end !important;
          -ms-flex-align: end !important;
              align-items: flex-end !important; }
    .vue-component .align-items-lg-center {
      -webkit-box-align: center !important;
          -ms-flex-align: center !important;
              align-items: center !important; }
    .vue-component .align-items-lg-baseline {
      -webkit-box-align: baseline !important;
          -ms-flex-align: baseline !important;
              align-items: baseline !important; }
    .vue-component .align-items-lg-stretch {
      -webkit-box-align: stretch !important;
          -ms-flex-align: stretch !important;
              align-items: stretch !important; }
    .vue-component .align-content-lg-start {
      -ms-flex-line-pack: start !important;
          align-content: flex-start !important; }
    .vue-component .align-content-lg-end {
      -ms-flex-line-pack: end !important;
          align-content: flex-end !important; }
    .vue-component .align-content-lg-center {
      -ms-flex-line-pack: center !important;
          align-content: center !important; }
    .vue-component .align-content-lg-between {
      -ms-flex-line-pack: justify !important;
          align-content: space-between !important; }
    .vue-component .align-content-lg-around {
      -ms-flex-line-pack: distribute !important;
          align-content: space-around !important; }
    .vue-component .align-content-lg-stretch {
      -ms-flex-line-pack: stretch !important;
          align-content: stretch !important; }
    .vue-component .align-self-lg-auto {
      -ms-flex-item-align: auto !important;
          align-self: auto !important; }
    .vue-component .align-self-lg-start {
      -ms-flex-item-align: start !important;
          align-self: flex-start !important; }
    .vue-component .align-self-lg-end {
      -ms-flex-item-align: end !important;
          align-self: flex-end !important; }
    .vue-component .align-self-lg-center {
      -ms-flex-item-align: center !important;
          align-self: center !important; }
    .vue-component .align-self-lg-baseline {
      -ms-flex-item-align: baseline !important;
          align-self: baseline !important; }
    .vue-component .align-self-lg-stretch {
      -ms-flex-item-align: stretch !important;
          align-self: stretch !important; } }
  @media (min-width: 1200px) {
    .vue-component .flex-xl-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
          -ms-flex-direction: row !important;
              flex-direction: row !important; }
    .vue-component .flex-xl-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
          -ms-flex-direction: column !important;
              flex-direction: column !important; }
    .vue-component .flex-xl-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
          -ms-flex-direction: row-reverse !important;
              flex-direction: row-reverse !important; }
    .vue-component .flex-xl-column-reverse {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
          -ms-flex-direction: column-reverse !important;
              flex-direction: column-reverse !important; }
    .vue-component .flex-xl-wrap {
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important; }
    .vue-component .flex-xl-nowrap {
      -ms-flex-wrap: nowrap !important;
          flex-wrap: nowrap !important; }
    .vue-component .flex-xl-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
          flex-wrap: wrap-reverse !important; }
    .vue-component .flex-xl-fill {
      -webkit-box-flex: 1 !important;
          -ms-flex: 1 1 auto !important;
              flex: 1 1 auto !important; }
    .vue-component .flex-xl-grow-0 {
      -webkit-box-flex: 0 !important;
          -ms-flex-positive: 0 !important;
              flex-grow: 0 !important; }
    .vue-component .flex-xl-grow-1 {
      -webkit-box-flex: 1 !important;
          -ms-flex-positive: 1 !important;
              flex-grow: 1 !important; }
    .vue-component .flex-xl-shrink-0 {
      -ms-flex-negative: 0 !important;
          flex-shrink: 0 !important; }
    .vue-component .flex-xl-shrink-1 {
      -ms-flex-negative: 1 !important;
          flex-shrink: 1 !important; }
    .vue-component .justify-content-xl-start {
      -webkit-box-pack: start !important;
          -ms-flex-pack: start !important;
              justify-content: flex-start !important; }
    .vue-component .justify-content-xl-end {
      -webkit-box-pack: end !important;
          -ms-flex-pack: end !important;
              justify-content: flex-end !important; }
    .vue-component .justify-content-xl-center {
      -webkit-box-pack: center !important;
          -ms-flex-pack: center !important;
              justify-content: center !important; }
    .vue-component .justify-content-xl-between {
      -webkit-box-pack: justify !important;
          -ms-flex-pack: justify !important;
              justify-content: space-between !important; }
    .vue-component .justify-content-xl-around {
      -ms-flex-pack: distribute !important;
          justify-content: space-around !important; }
    .vue-component .align-items-xl-start {
      -webkit-box-align: start !important;
          -ms-flex-align: start !important;
              align-items: flex-start !important; }
    .vue-component .align-items-xl-end {
      -webkit-box-align: end !important;
          -ms-flex-align: end !important;
              align-items: flex-end !important; }
    .vue-component .align-items-xl-center {
      -webkit-box-align: center !important;
          -ms-flex-align: center !important;
              align-items: center !important; }
    .vue-component .align-items-xl-baseline {
      -webkit-box-align: baseline !important;
          -ms-flex-align: baseline !important;
              align-items: baseline !important; }
    .vue-component .align-items-xl-stretch {
      -webkit-box-align: stretch !important;
          -ms-flex-align: stretch !important;
              align-items: stretch !important; }
    .vue-component .align-content-xl-start {
      -ms-flex-line-pack: start !important;
          align-content: flex-start !important; }
    .vue-component .align-content-xl-end {
      -ms-flex-line-pack: end !important;
          align-content: flex-end !important; }
    .vue-component .align-content-xl-center {
      -ms-flex-line-pack: center !important;
          align-content: center !important; }
    .vue-component .align-content-xl-between {
      -ms-flex-line-pack: justify !important;
          align-content: space-between !important; }
    .vue-component .align-content-xl-around {
      -ms-flex-line-pack: distribute !important;
          align-content: space-around !important; }
    .vue-component .align-content-xl-stretch {
      -ms-flex-line-pack: stretch !important;
          align-content: stretch !important; }
    .vue-component .align-self-xl-auto {
      -ms-flex-item-align: auto !important;
          align-self: auto !important; }
    .vue-component .align-self-xl-start {
      -ms-flex-item-align: start !important;
          align-self: flex-start !important; }
    .vue-component .align-self-xl-end {
      -ms-flex-item-align: end !important;
          align-self: flex-end !important; }
    .vue-component .align-self-xl-center {
      -ms-flex-item-align: center !important;
          align-self: center !important; }
    .vue-component .align-self-xl-baseline {
      -ms-flex-item-align: baseline !important;
          align-self: baseline !important; }
    .vue-component .align-self-xl-stretch {
      -ms-flex-item-align: stretch !important;
          align-self: stretch !important; } }
  .vue-component .float-left {
    float: left !important; }
  .vue-component .float-right {
    float: right !important; }
  .vue-component .float-none {
    float: none !important; }
  @media (min-width: 576px) {
    .vue-component .float-sm-left {
      float: left !important; }
    .vue-component .float-sm-right {
      float: right !important; }
    .vue-component .float-sm-none {
      float: none !important; } }
  @media (min-width: 768px) {
    .vue-component .float-md-left {
      float: left !important; }
    .vue-component .float-md-right {
      float: right !important; }
    .vue-component .float-md-none {
      float: none !important; } }
  @media (min-width: 992px) {
    .vue-component .float-lg-left {
      float: left !important; }
    .vue-component .float-lg-right {
      float: right !important; }
    .vue-component .float-lg-none {
      float: none !important; } }
  @media (min-width: 1200px) {
    .vue-component .float-xl-left {
      float: left !important; }
    .vue-component .float-xl-right {
      float: right !important; }
    .vue-component .float-xl-none {
      float: none !important; } }
  .vue-component .user-select-all {
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
        -ms-user-select: all !important;
            user-select: all !important; }
  .vue-component .user-select-auto {
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
        -ms-user-select: auto !important;
            user-select: auto !important; }
  .vue-component .user-select-none {
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
        -ms-user-select: none !important;
            user-select: none !important; }
  .vue-component .overflow-auto {
    overflow: auto !important; }
  .vue-component .overflow-hidden {
    overflow: hidden !important; }
  .vue-component .position-static {
    position: static !important; }
  .vue-component .position-relative {
    position: relative !important; }
  .vue-component .position-absolute {
    position: absolute !important; }
  .vue-component .position-fixed {
    position: fixed !important; }
  .vue-component .position-sticky {
    position: sticky !important; }
  .vue-component .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030; }
  .vue-component .fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030; }
  @supports (position: sticky) {
    .vue-component .sticky-top {
      position: sticky;
      top: 0;
      z-index: 1020; } }
  .vue-component .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0; }
  .vue-component .sr-only-focusable:active, .vue-component .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal; }
  .vue-component .shadow-sm {
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }
  .vue-component .shadow {
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
  .vue-component .shadow-lg {
    -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }
  .vue-component .shadow-none {
    -webkit-box-shadow: none !important;
            box-shadow: none !important; }
  .vue-component .w-25 {
    width: 25% !important; }
  .vue-component .w-50 {
    width: 50% !important; }
  .vue-component .w-75 {
    width: 75% !important; }
  .vue-component .w-100 {
    width: 100% !important; }
  .vue-component .w-auto {
    width: auto !important; }
  .vue-component .h-25 {
    height: 25% !important; }
  .vue-component .h-50 {
    height: 50% !important; }
  .vue-component .h-75 {
    height: 75% !important; }
  .vue-component .h-100 {
    height: 100% !important; }
  .vue-component .h-auto {
    height: auto !important; }
  .vue-component .mw-100 {
    max-width: 100% !important; }
  .vue-component .mh-100 {
    max-height: 100% !important; }
  .vue-component .min-vw-100 {
    min-width: 100vw !important; }
  .vue-component .min-vh-100 {
    min-height: 100vh !important; }
  .vue-component .vw-100 {
    width: 100vw !important; }
  .vue-component .vh-100 {
    height: 100vh !important; }
  .vue-component .m-0 {
    margin: 0 !important; }
  .vue-component .mt-0,
  .vue-component .my-0 {
    margin-top: 0 !important; }
  .vue-component .mr-0,
  .vue-component .mx-0 {
    margin-right: 0 !important; }
  .vue-component .mb-0,
  .vue-component .my-0 {
    margin-bottom: 0 !important; }
  .vue-component .ml-0,
  .vue-component .mx-0 {
    margin-left: 0 !important; }
  .vue-component .m-1 {
    margin: 0.25rem !important; }
  .vue-component .mt-1,
  .vue-component .my-1 {
    margin-top: 0.25rem !important; }
  .vue-component .mr-1,
  .vue-component .mx-1 {
    margin-right: 0.25rem !important; }
  .vue-component .mb-1,
  .vue-component .my-1 {
    margin-bottom: 0.25rem !important; }
  .vue-component .ml-1,
  .vue-component .mx-1 {
    margin-left: 0.25rem !important; }
  .vue-component .m-2 {
    margin: 0.5rem !important; }
  .vue-component .mt-2,
  .vue-component .my-2 {
    margin-top: 0.5rem !important; }
  .vue-component .mr-2,
  .vue-component .mx-2 {
    margin-right: 0.5rem !important; }
  .vue-component .mb-2,
  .vue-component .my-2 {
    margin-bottom: 0.5rem !important; }
  .vue-component .ml-2,
  .vue-component .mx-2 {
    margin-left: 0.5rem !important; }
  .vue-component .m-3 {
    margin: 1rem !important; }
  .vue-component .mt-3,
  .vue-component .my-3 {
    margin-top: 1rem !important; }
  .vue-component .mr-3,
  .vue-component .mx-3 {
    margin-right: 1rem !important; }
  .vue-component .mb-3,
  .vue-component .my-3 {
    margin-bottom: 1rem !important; }
  .vue-component .ml-3,
  .vue-component .mx-3 {
    margin-left: 1rem !important; }
  .vue-component .m-4 {
    margin: 1.5rem !important; }
  .vue-component .mt-4,
  .vue-component .my-4 {
    margin-top: 1.5rem !important; }
  .vue-component .mr-4,
  .vue-component .mx-4 {
    margin-right: 1.5rem !important; }
  .vue-component .mb-4,
  .vue-component .my-4 {
    margin-bottom: 1.5rem !important; }
  .vue-component .ml-4,
  .vue-component .mx-4 {
    margin-left: 1.5rem !important; }
  .vue-component .m-5 {
    margin: 3rem !important; }
  .vue-component .mt-5,
  .vue-component .my-5 {
    margin-top: 3rem !important; }
  .vue-component .mr-5,
  .vue-component .mx-5 {
    margin-right: 3rem !important; }
  .vue-component .mb-5,
  .vue-component .my-5 {
    margin-bottom: 3rem !important; }
  .vue-component .ml-5,
  .vue-component .mx-5 {
    margin-left: 3rem !important; }
  .vue-component .p-0 {
    padding: 0 !important; }
  .vue-component .pt-0,
  .vue-component .py-0 {
    padding-top: 0 !important; }
  .vue-component .pr-0,
  .vue-component .px-0 {
    padding-right: 0 !important; }
  .vue-component .pb-0,
  .vue-component .py-0 {
    padding-bottom: 0 !important; }
  .vue-component .pl-0,
  .vue-component .px-0 {
    padding-left: 0 !important; }
  .vue-component .p-1 {
    padding: 0.25rem !important; }
  .vue-component .pt-1,
  .vue-component .py-1 {
    padding-top: 0.25rem !important; }
  .vue-component .pr-1,
  .vue-component .px-1 {
    padding-right: 0.25rem !important; }
  .vue-component .pb-1,
  .vue-component .py-1 {
    padding-bottom: 0.25rem !important; }
  .vue-component .pl-1,
  .vue-component .px-1 {
    padding-left: 0.25rem !important; }
  .vue-component .p-2 {
    padding: 0.5rem !important; }
  .vue-component .pt-2,
  .vue-component .py-2 {
    padding-top: 0.5rem !important; }
  .vue-component .pr-2,
  .vue-component .px-2 {
    padding-right: 0.5rem !important; }
  .vue-component .pb-2,
  .vue-component .py-2 {
    padding-bottom: 0.5rem !important; }
  .vue-component .pl-2,
  .vue-component .px-2 {
    padding-left: 0.5rem !important; }
  .vue-component .p-3 {
    padding: 1rem !important; }
  .vue-component .pt-3,
  .vue-component .py-3 {
    padding-top: 1rem !important; }
  .vue-component .pr-3,
  .vue-component .px-3 {
    padding-right: 1rem !important; }
  .vue-component .pb-3,
  .vue-component .py-3 {
    padding-bottom: 1rem !important; }
  .vue-component .pl-3,
  .vue-component .px-3 {
    padding-left: 1rem !important; }
  .vue-component .p-4 {
    padding: 1.5rem !important; }
  .vue-component .pt-4,
  .vue-component .py-4 {
    padding-top: 1.5rem !important; }
  .vue-component .pr-4,
  .vue-component .px-4 {
    padding-right: 1.5rem !important; }
  .vue-component .pb-4,
  .vue-component .py-4 {
    padding-bottom: 1.5rem !important; }
  .vue-component .pl-4,
  .vue-component .px-4 {
    padding-left: 1.5rem !important; }
  .vue-component .p-5 {
    padding: 3rem !important; }
  .vue-component .pt-5,
  .vue-component .py-5 {
    padding-top: 3rem !important; }
  .vue-component .pr-5,
  .vue-component .px-5 {
    padding-right: 3rem !important; }
  .vue-component .pb-5,
  .vue-component .py-5 {
    padding-bottom: 3rem !important; }
  .vue-component .pl-5,
  .vue-component .px-5 {
    padding-left: 3rem !important; }
  .vue-component .m-n1 {
    margin: -0.25rem !important; }
  .vue-component .mt-n1,
  .vue-component .my-n1 {
    margin-top: -0.25rem !important; }
  .vue-component .mr-n1,
  .vue-component .mx-n1 {
    margin-right: -0.25rem !important; }
  .vue-component .mb-n1,
  .vue-component .my-n1 {
    margin-bottom: -0.25rem !important; }
  .vue-component .ml-n1,
  .vue-component .mx-n1 {
    margin-left: -0.25rem !important; }
  .vue-component .m-n2 {
    margin: -0.5rem !important; }
  .vue-component .mt-n2,
  .vue-component .my-n2 {
    margin-top: -0.5rem !important; }
  .vue-component .mr-n2,
  .vue-component .mx-n2 {
    margin-right: -0.5rem !important; }
  .vue-component .mb-n2,
  .vue-component .my-n2 {
    margin-bottom: -0.5rem !important; }
  .vue-component .ml-n2,
  .vue-component .mx-n2 {
    margin-left: -0.5rem !important; }
  .vue-component .m-n3 {
    margin: -1rem !important; }
  .vue-component .mt-n3,
  .vue-component .my-n3 {
    margin-top: -1rem !important; }
  .vue-component .mr-n3,
  .vue-component .mx-n3 {
    margin-right: -1rem !important; }
  .vue-component .mb-n3,
  .vue-component .my-n3 {
    margin-bottom: -1rem !important; }
  .vue-component .ml-n3,
  .vue-component .mx-n3 {
    margin-left: -1rem !important; }
  .vue-component .m-n4 {
    margin: -1.5rem !important; }
  .vue-component .mt-n4,
  .vue-component .my-n4 {
    margin-top: -1.5rem !important; }
  .vue-component .mr-n4,
  .vue-component .mx-n4 {
    margin-right: -1.5rem !important; }
  .vue-component .mb-n4,
  .vue-component .my-n4 {
    margin-bottom: -1.5rem !important; }
  .vue-component .ml-n4,
  .vue-component .mx-n4 {
    margin-left: -1.5rem !important; }
  .vue-component .m-n5 {
    margin: -3rem !important; }
  .vue-component .mt-n5,
  .vue-component .my-n5 {
    margin-top: -3rem !important; }
  .vue-component .mr-n5,
  .vue-component .mx-n5 {
    margin-right: -3rem !important; }
  .vue-component .mb-n5,
  .vue-component .my-n5 {
    margin-bottom: -3rem !important; }
  .vue-component .ml-n5,
  .vue-component .mx-n5 {
    margin-left: -3rem !important; }
  .vue-component .m-auto {
    margin: auto !important; }
  .vue-component .mt-auto,
  .vue-component .my-auto {
    margin-top: auto !important; }
  .vue-component .mr-auto,
  .vue-component .mx-auto {
    margin-right: auto !important; }
  .vue-component .mb-auto,
  .vue-component .my-auto {
    margin-bottom: auto !important; }
  .vue-component .ml-auto,
  .vue-component .mx-auto {
    margin-left: auto !important; }
  @media (min-width: 576px) {
    .vue-component .m-sm-0 {
      margin: 0 !important; }
    .vue-component .mt-sm-0,
    .vue-component .my-sm-0 {
      margin-top: 0 !important; }
    .vue-component .mr-sm-0,
    .vue-component .mx-sm-0 {
      margin-right: 0 !important; }
    .vue-component .mb-sm-0,
    .vue-component .my-sm-0 {
      margin-bottom: 0 !important; }
    .vue-component .ml-sm-0,
    .vue-component .mx-sm-0 {
      margin-left: 0 !important; }
    .vue-component .m-sm-1 {
      margin: 0.25rem !important; }
    .vue-component .mt-sm-1,
    .vue-component .my-sm-1 {
      margin-top: 0.25rem !important; }
    .vue-component .mr-sm-1,
    .vue-component .mx-sm-1 {
      margin-right: 0.25rem !important; }
    .vue-component .mb-sm-1,
    .vue-component .my-sm-1 {
      margin-bottom: 0.25rem !important; }
    .vue-component .ml-sm-1,
    .vue-component .mx-sm-1 {
      margin-left: 0.25rem !important; }
    .vue-component .m-sm-2 {
      margin: 0.5rem !important; }
    .vue-component .mt-sm-2,
    .vue-component .my-sm-2 {
      margin-top: 0.5rem !important; }
    .vue-component .mr-sm-2,
    .vue-component .mx-sm-2 {
      margin-right: 0.5rem !important; }
    .vue-component .mb-sm-2,
    .vue-component .my-sm-2 {
      margin-bottom: 0.5rem !important; }
    .vue-component .ml-sm-2,
    .vue-component .mx-sm-2 {
      margin-left: 0.5rem !important; }
    .vue-component .m-sm-3 {
      margin: 1rem !important; }
    .vue-component .mt-sm-3,
    .vue-component .my-sm-3 {
      margin-top: 1rem !important; }
    .vue-component .mr-sm-3,
    .vue-component .mx-sm-3 {
      margin-right: 1rem !important; }
    .vue-component .mb-sm-3,
    .vue-component .my-sm-3 {
      margin-bottom: 1rem !important; }
    .vue-component .ml-sm-3,
    .vue-component .mx-sm-3 {
      margin-left: 1rem !important; }
    .vue-component .m-sm-4 {
      margin: 1.5rem !important; }
    .vue-component .mt-sm-4,
    .vue-component .my-sm-4 {
      margin-top: 1.5rem !important; }
    .vue-component .mr-sm-4,
    .vue-component .mx-sm-4 {
      margin-right: 1.5rem !important; }
    .vue-component .mb-sm-4,
    .vue-component .my-sm-4 {
      margin-bottom: 1.5rem !important; }
    .vue-component .ml-sm-4,
    .vue-component .mx-sm-4 {
      margin-left: 1.5rem !important; }
    .vue-component .m-sm-5 {
      margin: 3rem !important; }
    .vue-component .mt-sm-5,
    .vue-component .my-sm-5 {
      margin-top: 3rem !important; }
    .vue-component .mr-sm-5,
    .vue-component .mx-sm-5 {
      margin-right: 3rem !important; }
    .vue-component .mb-sm-5,
    .vue-component .my-sm-5 {
      margin-bottom: 3rem !important; }
    .vue-component .ml-sm-5,
    .vue-component .mx-sm-5 {
      margin-left: 3rem !important; }
    .vue-component .p-sm-0 {
      padding: 0 !important; }
    .vue-component .pt-sm-0,
    .vue-component .py-sm-0 {
      padding-top: 0 !important; }
    .vue-component .pr-sm-0,
    .vue-component .px-sm-0 {
      padding-right: 0 !important; }
    .vue-component .pb-sm-0,
    .vue-component .py-sm-0 {
      padding-bottom: 0 !important; }
    .vue-component .pl-sm-0,
    .vue-component .px-sm-0 {
      padding-left: 0 !important; }
    .vue-component .p-sm-1 {
      padding: 0.25rem !important; }
    .vue-component .pt-sm-1,
    .vue-component .py-sm-1 {
      padding-top: 0.25rem !important; }
    .vue-component .pr-sm-1,
    .vue-component .px-sm-1 {
      padding-right: 0.25rem !important; }
    .vue-component .pb-sm-1,
    .vue-component .py-sm-1 {
      padding-bottom: 0.25rem !important; }
    .vue-component .pl-sm-1,
    .vue-component .px-sm-1 {
      padding-left: 0.25rem !important; }
    .vue-component .p-sm-2 {
      padding: 0.5rem !important; }
    .vue-component .pt-sm-2,
    .vue-component .py-sm-2 {
      padding-top: 0.5rem !important; }
    .vue-component .pr-sm-2,
    .vue-component .px-sm-2 {
      padding-right: 0.5rem !important; }
    .vue-component .pb-sm-2,
    .vue-component .py-sm-2 {
      padding-bottom: 0.5rem !important; }
    .vue-component .pl-sm-2,
    .vue-component .px-sm-2 {
      padding-left: 0.5rem !important; }
    .vue-component .p-sm-3 {
      padding: 1rem !important; }
    .vue-component .pt-sm-3,
    .vue-component .py-sm-3 {
      padding-top: 1rem !important; }
    .vue-component .pr-sm-3,
    .vue-component .px-sm-3 {
      padding-right: 1rem !important; }
    .vue-component .pb-sm-3,
    .vue-component .py-sm-3 {
      padding-bottom: 1rem !important; }
    .vue-component .pl-sm-3,
    .vue-component .px-sm-3 {
      padding-left: 1rem !important; }
    .vue-component .p-sm-4 {
      padding: 1.5rem !important; }
    .vue-component .pt-sm-4,
    .vue-component .py-sm-4 {
      padding-top: 1.5rem !important; }
    .vue-component .pr-sm-4,
    .vue-component .px-sm-4 {
      padding-right: 1.5rem !important; }
    .vue-component .pb-sm-4,
    .vue-component .py-sm-4 {
      padding-bottom: 1.5rem !important; }
    .vue-component .pl-sm-4,
    .vue-component .px-sm-4 {
      padding-left: 1.5rem !important; }
    .vue-component .p-sm-5 {
      padding: 3rem !important; }
    .vue-component .pt-sm-5,
    .vue-component .py-sm-5 {
      padding-top: 3rem !important; }
    .vue-component .pr-sm-5,
    .vue-component .px-sm-5 {
      padding-right: 3rem !important; }
    .vue-component .pb-sm-5,
    .vue-component .py-sm-5 {
      padding-bottom: 3rem !important; }
    .vue-component .pl-sm-5,
    .vue-component .px-sm-5 {
      padding-left: 3rem !important; }
    .vue-component .m-sm-n1 {
      margin: -0.25rem !important; }
    .vue-component .mt-sm-n1,
    .vue-component .my-sm-n1 {
      margin-top: -0.25rem !important; }
    .vue-component .mr-sm-n1,
    .vue-component .mx-sm-n1 {
      margin-right: -0.25rem !important; }
    .vue-component .mb-sm-n1,
    .vue-component .my-sm-n1 {
      margin-bottom: -0.25rem !important; }
    .vue-component .ml-sm-n1,
    .vue-component .mx-sm-n1 {
      margin-left: -0.25rem !important; }
    .vue-component .m-sm-n2 {
      margin: -0.5rem !important; }
    .vue-component .mt-sm-n2,
    .vue-component .my-sm-n2 {
      margin-top: -0.5rem !important; }
    .vue-component .mr-sm-n2,
    .vue-component .mx-sm-n2 {
      margin-right: -0.5rem !important; }
    .vue-component .mb-sm-n2,
    .vue-component .my-sm-n2 {
      margin-bottom: -0.5rem !important; }
    .vue-component .ml-sm-n2,
    .vue-component .mx-sm-n2 {
      margin-left: -0.5rem !important; }
    .vue-component .m-sm-n3 {
      margin: -1rem !important; }
    .vue-component .mt-sm-n3,
    .vue-component .my-sm-n3 {
      margin-top: -1rem !important; }
    .vue-component .mr-sm-n3,
    .vue-component .mx-sm-n3 {
      margin-right: -1rem !important; }
    .vue-component .mb-sm-n3,
    .vue-component .my-sm-n3 {
      margin-bottom: -1rem !important; }
    .vue-component .ml-sm-n3,
    .vue-component .mx-sm-n3 {
      margin-left: -1rem !important; }
    .vue-component .m-sm-n4 {
      margin: -1.5rem !important; }
    .vue-component .mt-sm-n4,
    .vue-component .my-sm-n4 {
      margin-top: -1.5rem !important; }
    .vue-component .mr-sm-n4,
    .vue-component .mx-sm-n4 {
      margin-right: -1.5rem !important; }
    .vue-component .mb-sm-n4,
    .vue-component .my-sm-n4 {
      margin-bottom: -1.5rem !important; }
    .vue-component .ml-sm-n4,
    .vue-component .mx-sm-n4 {
      margin-left: -1.5rem !important; }
    .vue-component .m-sm-n5 {
      margin: -3rem !important; }
    .vue-component .mt-sm-n5,
    .vue-component .my-sm-n5 {
      margin-top: -3rem !important; }
    .vue-component .mr-sm-n5,
    .vue-component .mx-sm-n5 {
      margin-right: -3rem !important; }
    .vue-component .mb-sm-n5,
    .vue-component .my-sm-n5 {
      margin-bottom: -3rem !important; }
    .vue-component .ml-sm-n5,
    .vue-component .mx-sm-n5 {
      margin-left: -3rem !important; }
    .vue-component .m-sm-auto {
      margin: auto !important; }
    .vue-component .mt-sm-auto,
    .vue-component .my-sm-auto {
      margin-top: auto !important; }
    .vue-component .mr-sm-auto,
    .vue-component .mx-sm-auto {
      margin-right: auto !important; }
    .vue-component .mb-sm-auto,
    .vue-component .my-sm-auto {
      margin-bottom: auto !important; }
    .vue-component .ml-sm-auto,
    .vue-component .mx-sm-auto {
      margin-left: auto !important; } }
  @media (min-width: 768px) {
    .vue-component .m-md-0 {
      margin: 0 !important; }
    .vue-component .mt-md-0,
    .vue-component .my-md-0 {
      margin-top: 0 !important; }
    .vue-component .mr-md-0,
    .vue-component .mx-md-0 {
      margin-right: 0 !important; }
    .vue-component .mb-md-0,
    .vue-component .my-md-0 {
      margin-bottom: 0 !important; }
    .vue-component .ml-md-0,
    .vue-component .mx-md-0 {
      margin-left: 0 !important; }
    .vue-component .m-md-1 {
      margin: 0.25rem !important; }
    .vue-component .mt-md-1,
    .vue-component .my-md-1 {
      margin-top: 0.25rem !important; }
    .vue-component .mr-md-1,
    .vue-component .mx-md-1 {
      margin-right: 0.25rem !important; }
    .vue-component .mb-md-1,
    .vue-component .my-md-1 {
      margin-bottom: 0.25rem !important; }
    .vue-component .ml-md-1,
    .vue-component .mx-md-1 {
      margin-left: 0.25rem !important; }
    .vue-component .m-md-2 {
      margin: 0.5rem !important; }
    .vue-component .mt-md-2,
    .vue-component .my-md-2 {
      margin-top: 0.5rem !important; }
    .vue-component .mr-md-2,
    .vue-component .mx-md-2 {
      margin-right: 0.5rem !important; }
    .vue-component .mb-md-2,
    .vue-component .my-md-2 {
      margin-bottom: 0.5rem !important; }
    .vue-component .ml-md-2,
    .vue-component .mx-md-2 {
      margin-left: 0.5rem !important; }
    .vue-component .m-md-3 {
      margin: 1rem !important; }
    .vue-component .mt-md-3,
    .vue-component .my-md-3 {
      margin-top: 1rem !important; }
    .vue-component .mr-md-3,
    .vue-component .mx-md-3 {
      margin-right: 1rem !important; }
    .vue-component .mb-md-3,
    .vue-component .my-md-3 {
      margin-bottom: 1rem !important; }
    .vue-component .ml-md-3,
    .vue-component .mx-md-3 {
      margin-left: 1rem !important; }
    .vue-component .m-md-4 {
      margin: 1.5rem !important; }
    .vue-component .mt-md-4,
    .vue-component .my-md-4 {
      margin-top: 1.5rem !important; }
    .vue-component .mr-md-4,
    .vue-component .mx-md-4 {
      margin-right: 1.5rem !important; }
    .vue-component .mb-md-4,
    .vue-component .my-md-4 {
      margin-bottom: 1.5rem !important; }
    .vue-component .ml-md-4,
    .vue-component .mx-md-4 {
      margin-left: 1.5rem !important; }
    .vue-component .m-md-5 {
      margin: 3rem !important; }
    .vue-component .mt-md-5,
    .vue-component .my-md-5 {
      margin-top: 3rem !important; }
    .vue-component .mr-md-5,
    .vue-component .mx-md-5 {
      margin-right: 3rem !important; }
    .vue-component .mb-md-5,
    .vue-component .my-md-5 {
      margin-bottom: 3rem !important; }
    .vue-component .ml-md-5,
    .vue-component .mx-md-5 {
      margin-left: 3rem !important; }
    .vue-component .p-md-0 {
      padding: 0 !important; }
    .vue-component .pt-md-0,
    .vue-component .py-md-0 {
      padding-top: 0 !important; }
    .vue-component .pr-md-0,
    .vue-component .px-md-0 {
      padding-right: 0 !important; }
    .vue-component .pb-md-0,
    .vue-component .py-md-0 {
      padding-bottom: 0 !important; }
    .vue-component .pl-md-0,
    .vue-component .px-md-0 {
      padding-left: 0 !important; }
    .vue-component .p-md-1 {
      padding: 0.25rem !important; }
    .vue-component .pt-md-1,
    .vue-component .py-md-1 {
      padding-top: 0.25rem !important; }
    .vue-component .pr-md-1,
    .vue-component .px-md-1 {
      padding-right: 0.25rem !important; }
    .vue-component .pb-md-1,
    .vue-component .py-md-1 {
      padding-bottom: 0.25rem !important; }
    .vue-component .pl-md-1,
    .vue-component .px-md-1 {
      padding-left: 0.25rem !important; }
    .vue-component .p-md-2 {
      padding: 0.5rem !important; }
    .vue-component .pt-md-2,
    .vue-component .py-md-2 {
      padding-top: 0.5rem !important; }
    .vue-component .pr-md-2,
    .vue-component .px-md-2 {
      padding-right: 0.5rem !important; }
    .vue-component .pb-md-2,
    .vue-component .py-md-2 {
      padding-bottom: 0.5rem !important; }
    .vue-component .pl-md-2,
    .vue-component .px-md-2 {
      padding-left: 0.5rem !important; }
    .vue-component .p-md-3 {
      padding: 1rem !important; }
    .vue-component .pt-md-3,
    .vue-component .py-md-3 {
      padding-top: 1rem !important; }
    .vue-component .pr-md-3,
    .vue-component .px-md-3 {
      padding-right: 1rem !important; }
    .vue-component .pb-md-3,
    .vue-component .py-md-3 {
      padding-bottom: 1rem !important; }
    .vue-component .pl-md-3,
    .vue-component .px-md-3 {
      padding-left: 1rem !important; }
    .vue-component .p-md-4 {
      padding: 1.5rem !important; }
    .vue-component .pt-md-4,
    .vue-component .py-md-4 {
      padding-top: 1.5rem !important; }
    .vue-component .pr-md-4,
    .vue-component .px-md-4 {
      padding-right: 1.5rem !important; }
    .vue-component .pb-md-4,
    .vue-component .py-md-4 {
      padding-bottom: 1.5rem !important; }
    .vue-component .pl-md-4,
    .vue-component .px-md-4 {
      padding-left: 1.5rem !important; }
    .vue-component .p-md-5 {
      padding: 3rem !important; }
    .vue-component .pt-md-5,
    .vue-component .py-md-5 {
      padding-top: 3rem !important; }
    .vue-component .pr-md-5,
    .vue-component .px-md-5 {
      padding-right: 3rem !important; }
    .vue-component .pb-md-5,
    .vue-component .py-md-5 {
      padding-bottom: 3rem !important; }
    .vue-component .pl-md-5,
    .vue-component .px-md-5 {
      padding-left: 3rem !important; }
    .vue-component .m-md-n1 {
      margin: -0.25rem !important; }
    .vue-component .mt-md-n1,
    .vue-component .my-md-n1 {
      margin-top: -0.25rem !important; }
    .vue-component .mr-md-n1,
    .vue-component .mx-md-n1 {
      margin-right: -0.25rem !important; }
    .vue-component .mb-md-n1,
    .vue-component .my-md-n1 {
      margin-bottom: -0.25rem !important; }
    .vue-component .ml-md-n1,
    .vue-component .mx-md-n1 {
      margin-left: -0.25rem !important; }
    .vue-component .m-md-n2 {
      margin: -0.5rem !important; }
    .vue-component .mt-md-n2,
    .vue-component .my-md-n2 {
      margin-top: -0.5rem !important; }
    .vue-component .mr-md-n2,
    .vue-component .mx-md-n2 {
      margin-right: -0.5rem !important; }
    .vue-component .mb-md-n2,
    .vue-component .my-md-n2 {
      margin-bottom: -0.5rem !important; }
    .vue-component .ml-md-n2,
    .vue-component .mx-md-n2 {
      margin-left: -0.5rem !important; }
    .vue-component .m-md-n3 {
      margin: -1rem !important; }
    .vue-component .mt-md-n3,
    .vue-component .my-md-n3 {
      margin-top: -1rem !important; }
    .vue-component .mr-md-n3,
    .vue-component .mx-md-n3 {
      margin-right: -1rem !important; }
    .vue-component .mb-md-n3,
    .vue-component .my-md-n3 {
      margin-bottom: -1rem !important; }
    .vue-component .ml-md-n3,
    .vue-component .mx-md-n3 {
      margin-left: -1rem !important; }
    .vue-component .m-md-n4 {
      margin: -1.5rem !important; }
    .vue-component .mt-md-n4,
    .vue-component .my-md-n4 {
      margin-top: -1.5rem !important; }
    .vue-component .mr-md-n4,
    .vue-component .mx-md-n4 {
      margin-right: -1.5rem !important; }
    .vue-component .mb-md-n4,
    .vue-component .my-md-n4 {
      margin-bottom: -1.5rem !important; }
    .vue-component .ml-md-n4,
    .vue-component .mx-md-n4 {
      margin-left: -1.5rem !important; }
    .vue-component .m-md-n5 {
      margin: -3rem !important; }
    .vue-component .mt-md-n5,
    .vue-component .my-md-n5 {
      margin-top: -3rem !important; }
    .vue-component .mr-md-n5,
    .vue-component .mx-md-n5 {
      margin-right: -3rem !important; }
    .vue-component .mb-md-n5,
    .vue-component .my-md-n5 {
      margin-bottom: -3rem !important; }
    .vue-component .ml-md-n5,
    .vue-component .mx-md-n5 {
      margin-left: -3rem !important; }
    .vue-component .m-md-auto {
      margin: auto !important; }
    .vue-component .mt-md-auto,
    .vue-component .my-md-auto {
      margin-top: auto !important; }
    .vue-component .mr-md-auto,
    .vue-component .mx-md-auto {
      margin-right: auto !important; }
    .vue-component .mb-md-auto,
    .vue-component .my-md-auto {
      margin-bottom: auto !important; }
    .vue-component .ml-md-auto,
    .vue-component .mx-md-auto {
      margin-left: auto !important; } }
  @media (min-width: 992px) {
    .vue-component .m-lg-0 {
      margin: 0 !important; }
    .vue-component .mt-lg-0,
    .vue-component .my-lg-0 {
      margin-top: 0 !important; }
    .vue-component .mr-lg-0,
    .vue-component .mx-lg-0 {
      margin-right: 0 !important; }
    .vue-component .mb-lg-0,
    .vue-component .my-lg-0 {
      margin-bottom: 0 !important; }
    .vue-component .ml-lg-0,
    .vue-component .mx-lg-0 {
      margin-left: 0 !important; }
    .vue-component .m-lg-1 {
      margin: 0.25rem !important; }
    .vue-component .mt-lg-1,
    .vue-component .my-lg-1 {
      margin-top: 0.25rem !important; }
    .vue-component .mr-lg-1,
    .vue-component .mx-lg-1 {
      margin-right: 0.25rem !important; }
    .vue-component .mb-lg-1,
    .vue-component .my-lg-1 {
      margin-bottom: 0.25rem !important; }
    .vue-component .ml-lg-1,
    .vue-component .mx-lg-1 {
      margin-left: 0.25rem !important; }
    .vue-component .m-lg-2 {
      margin: 0.5rem !important; }
    .vue-component .mt-lg-2,
    .vue-component .my-lg-2 {
      margin-top: 0.5rem !important; }
    .vue-component .mr-lg-2,
    .vue-component .mx-lg-2 {
      margin-right: 0.5rem !important; }
    .vue-component .mb-lg-2,
    .vue-component .my-lg-2 {
      margin-bottom: 0.5rem !important; }
    .vue-component .ml-lg-2,
    .vue-component .mx-lg-2 {
      margin-left: 0.5rem !important; }
    .vue-component .m-lg-3 {
      margin: 1rem !important; }
    .vue-component .mt-lg-3,
    .vue-component .my-lg-3 {
      margin-top: 1rem !important; }
    .vue-component .mr-lg-3,
    .vue-component .mx-lg-3 {
      margin-right: 1rem !important; }
    .vue-component .mb-lg-3,
    .vue-component .my-lg-3 {
      margin-bottom: 1rem !important; }
    .vue-component .ml-lg-3,
    .vue-component .mx-lg-3 {
      margin-left: 1rem !important; }
    .vue-component .m-lg-4 {
      margin: 1.5rem !important; }
    .vue-component .mt-lg-4,
    .vue-component .my-lg-4 {
      margin-top: 1.5rem !important; }
    .vue-component .mr-lg-4,
    .vue-component .mx-lg-4 {
      margin-right: 1.5rem !important; }
    .vue-component .mb-lg-4,
    .vue-component .my-lg-4 {
      margin-bottom: 1.5rem !important; }
    .vue-component .ml-lg-4,
    .vue-component .mx-lg-4 {
      margin-left: 1.5rem !important; }
    .vue-component .m-lg-5 {
      margin: 3rem !important; }
    .vue-component .mt-lg-5,
    .vue-component .my-lg-5 {
      margin-top: 3rem !important; }
    .vue-component .mr-lg-5,
    .vue-component .mx-lg-5 {
      margin-right: 3rem !important; }
    .vue-component .mb-lg-5,
    .vue-component .my-lg-5 {
      margin-bottom: 3rem !important; }
    .vue-component .ml-lg-5,
    .vue-component .mx-lg-5 {
      margin-left: 3rem !important; }
    .vue-component .p-lg-0 {
      padding: 0 !important; }
    .vue-component .pt-lg-0,
    .vue-component .py-lg-0 {
      padding-top: 0 !important; }
    .vue-component .pr-lg-0,
    .vue-component .px-lg-0 {
      padding-right: 0 !important; }
    .vue-component .pb-lg-0,
    .vue-component .py-lg-0 {
      padding-bottom: 0 !important; }
    .vue-component .pl-lg-0,
    .vue-component .px-lg-0 {
      padding-left: 0 !important; }
    .vue-component .p-lg-1 {
      padding: 0.25rem !important; }
    .vue-component .pt-lg-1,
    .vue-component .py-lg-1 {
      padding-top: 0.25rem !important; }
    .vue-component .pr-lg-1,
    .vue-component .px-lg-1 {
      padding-right: 0.25rem !important; }
    .vue-component .pb-lg-1,
    .vue-component .py-lg-1 {
      padding-bottom: 0.25rem !important; }
    .vue-component .pl-lg-1,
    .vue-component .px-lg-1 {
      padding-left: 0.25rem !important; }
    .vue-component .p-lg-2 {
      padding: 0.5rem !important; }
    .vue-component .pt-lg-2,
    .vue-component .py-lg-2 {
      padding-top: 0.5rem !important; }
    .vue-component .pr-lg-2,
    .vue-component .px-lg-2 {
      padding-right: 0.5rem !important; }
    .vue-component .pb-lg-2,
    .vue-component .py-lg-2 {
      padding-bottom: 0.5rem !important; }
    .vue-component .pl-lg-2,
    .vue-component .px-lg-2 {
      padding-left: 0.5rem !important; }
    .vue-component .p-lg-3 {
      padding: 1rem !important; }
    .vue-component .pt-lg-3,
    .vue-component .py-lg-3 {
      padding-top: 1rem !important; }
    .vue-component .pr-lg-3,
    .vue-component .px-lg-3 {
      padding-right: 1rem !important; }
    .vue-component .pb-lg-3,
    .vue-component .py-lg-3 {
      padding-bottom: 1rem !important; }
    .vue-component .pl-lg-3,
    .vue-component .px-lg-3 {
      padding-left: 1rem !important; }
    .vue-component .p-lg-4 {
      padding: 1.5rem !important; }
    .vue-component .pt-lg-4,
    .vue-component .py-lg-4 {
      padding-top: 1.5rem !important; }
    .vue-component .pr-lg-4,
    .vue-component .px-lg-4 {
      padding-right: 1.5rem !important; }
    .vue-component .pb-lg-4,
    .vue-component .py-lg-4 {
      padding-bottom: 1.5rem !important; }
    .vue-component .pl-lg-4,
    .vue-component .px-lg-4 {
      padding-left: 1.5rem !important; }
    .vue-component .p-lg-5 {
      padding: 3rem !important; }
    .vue-component .pt-lg-5,
    .vue-component .py-lg-5 {
      padding-top: 3rem !important; }
    .vue-component .pr-lg-5,
    .vue-component .px-lg-5 {
      padding-right: 3rem !important; }
    .vue-component .pb-lg-5,
    .vue-component .py-lg-5 {
      padding-bottom: 3rem !important; }
    .vue-component .pl-lg-5,
    .vue-component .px-lg-5 {
      padding-left: 3rem !important; }
    .vue-component .m-lg-n1 {
      margin: -0.25rem !important; }
    .vue-component .mt-lg-n1,
    .vue-component .my-lg-n1 {
      margin-top: -0.25rem !important; }
    .vue-component .mr-lg-n1,
    .vue-component .mx-lg-n1 {
      margin-right: -0.25rem !important; }
    .vue-component .mb-lg-n1,
    .vue-component .my-lg-n1 {
      margin-bottom: -0.25rem !important; }
    .vue-component .ml-lg-n1,
    .vue-component .mx-lg-n1 {
      margin-left: -0.25rem !important; }
    .vue-component .m-lg-n2 {
      margin: -0.5rem !important; }
    .vue-component .mt-lg-n2,
    .vue-component .my-lg-n2 {
      margin-top: -0.5rem !important; }
    .vue-component .mr-lg-n2,
    .vue-component .mx-lg-n2 {
      margin-right: -0.5rem !important; }
    .vue-component .mb-lg-n2,
    .vue-component .my-lg-n2 {
      margin-bottom: -0.5rem !important; }
    .vue-component .ml-lg-n2,
    .vue-component .mx-lg-n2 {
      margin-left: -0.5rem !important; }
    .vue-component .m-lg-n3 {
      margin: -1rem !important; }
    .vue-component .mt-lg-n3,
    .vue-component .my-lg-n3 {
      margin-top: -1rem !important; }
    .vue-component .mr-lg-n3,
    .vue-component .mx-lg-n3 {
      margin-right: -1rem !important; }
    .vue-component .mb-lg-n3,
    .vue-component .my-lg-n3 {
      margin-bottom: -1rem !important; }
    .vue-component .ml-lg-n3,
    .vue-component .mx-lg-n3 {
      margin-left: -1rem !important; }
    .vue-component .m-lg-n4 {
      margin: -1.5rem !important; }
    .vue-component .mt-lg-n4,
    .vue-component .my-lg-n4 {
      margin-top: -1.5rem !important; }
    .vue-component .mr-lg-n4,
    .vue-component .mx-lg-n4 {
      margin-right: -1.5rem !important; }
    .vue-component .mb-lg-n4,
    .vue-component .my-lg-n4 {
      margin-bottom: -1.5rem !important; }
    .vue-component .ml-lg-n4,
    .vue-component .mx-lg-n4 {
      margin-left: -1.5rem !important; }
    .vue-component .m-lg-n5 {
      margin: -3rem !important; }
    .vue-component .mt-lg-n5,
    .vue-component .my-lg-n5 {
      margin-top: -3rem !important; }
    .vue-component .mr-lg-n5,
    .vue-component .mx-lg-n5 {
      margin-right: -3rem !important; }
    .vue-component .mb-lg-n5,
    .vue-component .my-lg-n5 {
      margin-bottom: -3rem !important; }
    .vue-component .ml-lg-n5,
    .vue-component .mx-lg-n5 {
      margin-left: -3rem !important; }
    .vue-component .m-lg-auto {
      margin: auto !important; }
    .vue-component .mt-lg-auto,
    .vue-component .my-lg-auto {
      margin-top: auto !important; }
    .vue-component .mr-lg-auto,
    .vue-component .mx-lg-auto {
      margin-right: auto !important; }
    .vue-component .mb-lg-auto,
    .vue-component .my-lg-auto {
      margin-bottom: auto !important; }
    .vue-component .ml-lg-auto,
    .vue-component .mx-lg-auto {
      margin-left: auto !important; } }
  @media (min-width: 1200px) {
    .vue-component .m-xl-0 {
      margin: 0 !important; }
    .vue-component .mt-xl-0,
    .vue-component .my-xl-0 {
      margin-top: 0 !important; }
    .vue-component .mr-xl-0,
    .vue-component .mx-xl-0 {
      margin-right: 0 !important; }
    .vue-component .mb-xl-0,
    .vue-component .my-xl-0 {
      margin-bottom: 0 !important; }
    .vue-component .ml-xl-0,
    .vue-component .mx-xl-0 {
      margin-left: 0 !important; }
    .vue-component .m-xl-1 {
      margin: 0.25rem !important; }
    .vue-component .mt-xl-1,
    .vue-component .my-xl-1 {
      margin-top: 0.25rem !important; }
    .vue-component .mr-xl-1,
    .vue-component .mx-xl-1 {
      margin-right: 0.25rem !important; }
    .vue-component .mb-xl-1,
    .vue-component .my-xl-1 {
      margin-bottom: 0.25rem !important; }
    .vue-component .ml-xl-1,
    .vue-component .mx-xl-1 {
      margin-left: 0.25rem !important; }
    .vue-component .m-xl-2 {
      margin: 0.5rem !important; }
    .vue-component .mt-xl-2,
    .vue-component .my-xl-2 {
      margin-top: 0.5rem !important; }
    .vue-component .mr-xl-2,
    .vue-component .mx-xl-2 {
      margin-right: 0.5rem !important; }
    .vue-component .mb-xl-2,
    .vue-component .my-xl-2 {
      margin-bottom: 0.5rem !important; }
    .vue-component .ml-xl-2,
    .vue-component .mx-xl-2 {
      margin-left: 0.5rem !important; }
    .vue-component .m-xl-3 {
      margin: 1rem !important; }
    .vue-component .mt-xl-3,
    .vue-component .my-xl-3 {
      margin-top: 1rem !important; }
    .vue-component .mr-xl-3,
    .vue-component .mx-xl-3 {
      margin-right: 1rem !important; }
    .vue-component .mb-xl-3,
    .vue-component .my-xl-3 {
      margin-bottom: 1rem !important; }
    .vue-component .ml-xl-3,
    .vue-component .mx-xl-3 {
      margin-left: 1rem !important; }
    .vue-component .m-xl-4 {
      margin: 1.5rem !important; }
    .vue-component .mt-xl-4,
    .vue-component .my-xl-4 {
      margin-top: 1.5rem !important; }
    .vue-component .mr-xl-4,
    .vue-component .mx-xl-4 {
      margin-right: 1.5rem !important; }
    .vue-component .mb-xl-4,
    .vue-component .my-xl-4 {
      margin-bottom: 1.5rem !important; }
    .vue-component .ml-xl-4,
    .vue-component .mx-xl-4 {
      margin-left: 1.5rem !important; }
    .vue-component .m-xl-5 {
      margin: 3rem !important; }
    .vue-component .mt-xl-5,
    .vue-component .my-xl-5 {
      margin-top: 3rem !important; }
    .vue-component .mr-xl-5,
    .vue-component .mx-xl-5 {
      margin-right: 3rem !important; }
    .vue-component .mb-xl-5,
    .vue-component .my-xl-5 {
      margin-bottom: 3rem !important; }
    .vue-component .ml-xl-5,
    .vue-component .mx-xl-5 {
      margin-left: 3rem !important; }
    .vue-component .p-xl-0 {
      padding: 0 !important; }
    .vue-component .pt-xl-0,
    .vue-component .py-xl-0 {
      padding-top: 0 !important; }
    .vue-component .pr-xl-0,
    .vue-component .px-xl-0 {
      padding-right: 0 !important; }
    .vue-component .pb-xl-0,
    .vue-component .py-xl-0 {
      padding-bottom: 0 !important; }
    .vue-component .pl-xl-0,
    .vue-component .px-xl-0 {
      padding-left: 0 !important; }
    .vue-component .p-xl-1 {
      padding: 0.25rem !important; }
    .vue-component .pt-xl-1,
    .vue-component .py-xl-1 {
      padding-top: 0.25rem !important; }
    .vue-component .pr-xl-1,
    .vue-component .px-xl-1 {
      padding-right: 0.25rem !important; }
    .vue-component .pb-xl-1,
    .vue-component .py-xl-1 {
      padding-bottom: 0.25rem !important; }
    .vue-component .pl-xl-1,
    .vue-component .px-xl-1 {
      padding-left: 0.25rem !important; }
    .vue-component .p-xl-2 {
      padding: 0.5rem !important; }
    .vue-component .pt-xl-2,
    .vue-component .py-xl-2 {
      padding-top: 0.5rem !important; }
    .vue-component .pr-xl-2,
    .vue-component .px-xl-2 {
      padding-right: 0.5rem !important; }
    .vue-component .pb-xl-2,
    .vue-component .py-xl-2 {
      padding-bottom: 0.5rem !important; }
    .vue-component .pl-xl-2,
    .vue-component .px-xl-2 {
      padding-left: 0.5rem !important; }
    .vue-component .p-xl-3 {
      padding: 1rem !important; }
    .vue-component .pt-xl-3,
    .vue-component .py-xl-3 {
      padding-top: 1rem !important; }
    .vue-component .pr-xl-3,
    .vue-component .px-xl-3 {
      padding-right: 1rem !important; }
    .vue-component .pb-xl-3,
    .vue-component .py-xl-3 {
      padding-bottom: 1rem !important; }
    .vue-component .pl-xl-3,
    .vue-component .px-xl-3 {
      padding-left: 1rem !important; }
    .vue-component .p-xl-4 {
      padding: 1.5rem !important; }
    .vue-component .pt-xl-4,
    .vue-component .py-xl-4 {
      padding-top: 1.5rem !important; }
    .vue-component .pr-xl-4,
    .vue-component .px-xl-4 {
      padding-right: 1.5rem !important; }
    .vue-component .pb-xl-4,
    .vue-component .py-xl-4 {
      padding-bottom: 1.5rem !important; }
    .vue-component .pl-xl-4,
    .vue-component .px-xl-4 {
      padding-left: 1.5rem !important; }
    .vue-component .p-xl-5 {
      padding: 3rem !important; }
    .vue-component .pt-xl-5,
    .vue-component .py-xl-5 {
      padding-top: 3rem !important; }
    .vue-component .pr-xl-5,
    .vue-component .px-xl-5 {
      padding-right: 3rem !important; }
    .vue-component .pb-xl-5,
    .vue-component .py-xl-5 {
      padding-bottom: 3rem !important; }
    .vue-component .pl-xl-5,
    .vue-component .px-xl-5 {
      padding-left: 3rem !important; }
    .vue-component .m-xl-n1 {
      margin: -0.25rem !important; }
    .vue-component .mt-xl-n1,
    .vue-component .my-xl-n1 {
      margin-top: -0.25rem !important; }
    .vue-component .mr-xl-n1,
    .vue-component .mx-xl-n1 {
      margin-right: -0.25rem !important; }
    .vue-component .mb-xl-n1,
    .vue-component .my-xl-n1 {
      margin-bottom: -0.25rem !important; }
    .vue-component .ml-xl-n1,
    .vue-component .mx-xl-n1 {
      margin-left: -0.25rem !important; }
    .vue-component .m-xl-n2 {
      margin: -0.5rem !important; }
    .vue-component .mt-xl-n2,
    .vue-component .my-xl-n2 {
      margin-top: -0.5rem !important; }
    .vue-component .mr-xl-n2,
    .vue-component .mx-xl-n2 {
      margin-right: -0.5rem !important; }
    .vue-component .mb-xl-n2,
    .vue-component .my-xl-n2 {
      margin-bottom: -0.5rem !important; }
    .vue-component .ml-xl-n2,
    .vue-component .mx-xl-n2 {
      margin-left: -0.5rem !important; }
    .vue-component .m-xl-n3 {
      margin: -1rem !important; }
    .vue-component .mt-xl-n3,
    .vue-component .my-xl-n3 {
      margin-top: -1rem !important; }
    .vue-component .mr-xl-n3,
    .vue-component .mx-xl-n3 {
      margin-right: -1rem !important; }
    .vue-component .mb-xl-n3,
    .vue-component .my-xl-n3 {
      margin-bottom: -1rem !important; }
    .vue-component .ml-xl-n3,
    .vue-component .mx-xl-n3 {
      margin-left: -1rem !important; }
    .vue-component .m-xl-n4 {
      margin: -1.5rem !important; }
    .vue-component .mt-xl-n4,
    .vue-component .my-xl-n4 {
      margin-top: -1.5rem !important; }
    .vue-component .mr-xl-n4,
    .vue-component .mx-xl-n4 {
      margin-right: -1.5rem !important; }
    .vue-component .mb-xl-n4,
    .vue-component .my-xl-n4 {
      margin-bottom: -1.5rem !important; }
    .vue-component .ml-xl-n4,
    .vue-component .mx-xl-n4 {
      margin-left: -1.5rem !important; }
    .vue-component .m-xl-n5 {
      margin: -3rem !important; }
    .vue-component .mt-xl-n5,
    .vue-component .my-xl-n5 {
      margin-top: -3rem !important; }
    .vue-component .mr-xl-n5,
    .vue-component .mx-xl-n5 {
      margin-right: -3rem !important; }
    .vue-component .mb-xl-n5,
    .vue-component .my-xl-n5 {
      margin-bottom: -3rem !important; }
    .vue-component .ml-xl-n5,
    .vue-component .mx-xl-n5 {
      margin-left: -3rem !important; }
    .vue-component .m-xl-auto {
      margin: auto !important; }
    .vue-component .mt-xl-auto,
    .vue-component .my-xl-auto {
      margin-top: auto !important; }
    .vue-component .mr-xl-auto,
    .vue-component .mx-xl-auto {
      margin-right: auto !important; }
    .vue-component .mb-xl-auto,
    .vue-component .my-xl-auto {
      margin-bottom: auto !important; }
    .vue-component .ml-xl-auto,
    .vue-component .mx-xl-auto {
      margin-left: auto !important; } }
  .vue-component .stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0); }
  .vue-component .text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }
  .vue-component .text-justify {
    text-align: justify !important; }
  .vue-component .text-wrap {
    white-space: normal !important; }
  .vue-component .text-nowrap {
    white-space: nowrap !important; }
  .vue-component .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .vue-component .text-left {
    text-align: left !important; }
  .vue-component .text-right {
    text-align: right !important; }
  .vue-component .text-center {
    text-align: center !important; }
  @media (min-width: 576px) {
    .vue-component .text-sm-left {
      text-align: left !important; }
    .vue-component .text-sm-right {
      text-align: right !important; }
    .vue-component .text-sm-center {
      text-align: center !important; } }
  @media (min-width: 768px) {
    .vue-component .text-md-left {
      text-align: left !important; }
    .vue-component .text-md-right {
      text-align: right !important; }
    .vue-component .text-md-center {
      text-align: center !important; } }
  @media (min-width: 992px) {
    .vue-component .text-lg-left {
      text-align: left !important; }
    .vue-component .text-lg-right {
      text-align: right !important; }
    .vue-component .text-lg-center {
      text-align: center !important; } }
  @media (min-width: 1200px) {
    .vue-component .text-xl-left {
      text-align: left !important; }
    .vue-component .text-xl-right {
      text-align: right !important; }
    .vue-component .text-xl-center {
      text-align: center !important; } }
  .vue-component .text-lowercase {
    text-transform: lowercase !important; }
  .vue-component .text-uppercase {
    text-transform: uppercase !important; }
  .vue-component .text-capitalize {
    text-transform: capitalize !important; }
  .vue-component .font-weight-light {
    font-weight: 300 !important; }
  .vue-component .font-weight-lighter {
    font-weight: lighter !important; }
  .vue-component .font-weight-normal {
    font-weight: 400 !important; }
  .vue-component .font-weight-bold {
    font-weight: 700 !important; }
  .vue-component .font-weight-bolder {
    font-weight: bolder !important; }
  .vue-component .font-italic {
    font-style: italic !important; }
  .vue-component .text-white {
    color: #fff !important; }
  .vue-component .text-primary {
    color: #007bff !important; }
  .vue-component a.text-primary:hover, .vue-component a.text-primary:focus {
    color: #0056b3 !important; }
  .vue-component .text-secondary {
    color: #6c757d !important; }
  .vue-component a.text-secondary:hover, .vue-component a.text-secondary:focus {
    color: #494f54 !important; }
  .vue-component .text-success {
    color: #28a745 !important; }
  .vue-component a.text-success:hover, .vue-component a.text-success:focus {
    color: #19692c !important; }
  .vue-component .text-info {
    color: #17a2b8 !important; }
  .vue-component a.text-info:hover, .vue-component a.text-info:focus {
    color: #0f6674 !important; }
  .vue-component .text-warning {
    color: #ffc107 !important; }
  .vue-component a.text-warning:hover, .vue-component a.text-warning:focus {
    color: #ba8b00 !important; }
  .vue-component .text-danger {
    color: #dc3545 !important; }
  .vue-component a.text-danger:hover, .vue-component a.text-danger:focus {
    color: #a71d2a !important; }
  .vue-component .text-light {
    color: #f8f9fa !important; }
  .vue-component a.text-light:hover, .vue-component a.text-light:focus {
    color: #cbd3da !important; }
  .vue-component .text-dark {
    color: #343a40 !important; }
  .vue-component a.text-dark:hover, .vue-component a.text-dark:focus {
    color: #121416 !important; }
  .vue-component .text-body {
    color: #212529 !important; }
  .vue-component .text-muted {
    color: #6c757d !important; }
  .vue-component .text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important; }
  .vue-component .text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important; }
  .vue-component .text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0; }
  .vue-component .text-decoration-none {
    text-decoration: none !important; }
  .vue-component .text-break {
    word-break: break-word !important;
    overflow-wrap: break-word !important; }
  .vue-component .text-reset {
    color: inherit !important; }
  .vue-component .visible {
    visibility: visible !important; }
  .vue-component .invisible {
    visibility: hidden !important; }
  @media print {
    .vue-component *,
    .vue-component *::before,
    .vue-component *::after {
      text-shadow: none !important;
      -webkit-box-shadow: none !important;
              box-shadow: none !important; }
    .vue-component a:not(.btn) {
      text-decoration: underline; }
    .vue-component abbr[title]::after {
      content: " (" attr(title) ")"; }
    .vue-component pre {
      white-space: pre-wrap !important; }
    .vue-component pre,
    .vue-component blockquote {
      border: 1px solid #adb5bd;
      page-break-inside: avoid; }
    .vue-component thead {
      display: table-header-group; }
    .vue-component tr,
    .vue-component img {
      page-break-inside: avoid; }
    .vue-component p,
    .vue-component h2,
    .vue-component h3 {
      orphans: 3;
      widows: 3; }
    .vue-component h2,
    .vue-component h3 {
      page-break-after: avoid; }
    @page {
      .vue-component {
        size: a3; } }
    .vue-component body {
      min-width: 992px !important; }
    .vue-component .container {
      min-width: 992px !important; }
    .vue-component .navbar {
      display: none; }
    .vue-component .badge {
      border: 1px solid #000; }
    .vue-component .table {
      border-collapse: collapse !important; }
      .vue-component .table td,
      .vue-component .table th {
        background-color: #fff !important; }
    .vue-component .table-bordered th,
    .vue-component .table-bordered td {
      border: 1px solid #dee2e6 !important; }
    .vue-component .table-dark {
      color: inherit; }
      .vue-component .table-dark th,
      .vue-component .table-dark td,
      .vue-component .table-dark thead th,
      .vue-component .table-dark tbody + tbody {
        border-color: #dee2e6; }
    .vue-component .table .thead-dark th {
      color: inherit;
      border-color: #dee2e6; } }
  .vue-component .bv-no-focus-ring:focus {
    outline: none; }
  @media (max-width: 575.98px) {
    .vue-component .bv-d-xs-down-none {
      display: none !important; } }
  @media (max-width: 767.98px) {
    .vue-component .bv-d-sm-down-none {
      display: none !important; } }
  @media (max-width: 991.98px) {
    .vue-component .bv-d-md-down-none {
      display: none !important; } }
  @media (max-width: 1199.98px) {
    .vue-component .bv-d-lg-down-none {
      display: none !important; } }
  .vue-component .bv-d-xl-down-none {
    display: none !important; }
  .vue-component .form-control.focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
    .vue-component .form-control.focus.is-valid {
      border-color: #28a745;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
    .vue-component .form-control.focus.is-invalid {
      border-color: #dc3545;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  .vue-component .b-form-btn-label-control.form-control {
    background-image: none;
    padding: 0; }
    .input-group .vue-component .b-form-btn-label-control.form-control {
      padding: 0; }
    [dir="rtl"] .vue-component .b-form-btn-label-control.form-control, .vue-component .b-form-btn-label-control.form-control[dir="rtl"] {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
      [dir="rtl"] .vue-component .b-form-btn-label-control.form-control > label, .vue-component .b-form-btn-label-control.form-control[dir="rtl"] > label {
        text-align: right; }
    .vue-component .b-form-btn-label-control.form-control > .btn {
      line-height: 1;
      font-size: inherit;
      -webkit-box-shadow: none !important;
              box-shadow: none !important;
      border: 0; }
      .vue-component .b-form-btn-label-control.form-control > .btn:disabled {
        pointer-events: none; }
    .vue-component .b-form-btn-label-control.form-control.is-valid > .btn {
      color: #28a745; }
    .vue-component .b-form-btn-label-control.form-control.is-invalid > .btn {
      color: #dc3545; }
    .vue-component .b-form-btn-label-control.form-control > .dropdown-menu {
      padding: 0.5rem; }
    .vue-component .b-form-btn-label-control.form-control > label {
      outline: 0;
      padding-left: 0.25rem;
      margin: 0;
      border: 0;
      font-size: inherit;
      cursor: pointer;
      min-height: calc(calc(1.5em + 0.75rem + 2px) - 2px); }
      .vue-component .b-form-btn-label-control.form-control > label.form-control-sm {
        min-height: calc(calc(1.5em + 0.5rem + 2px) - 2px); }
      .vue-component .b-form-btn-label-control.form-control > label.form-control-lg {
        min-height: calc(calc(1.5em + 1rem + 2px) - 2px); }
      .input-group.input-group-sm .vue-component .b-form-btn-label-control.form-control > label {
        min-height: calc(calc(1.5em + 0.5rem + 2px) - 2px);
        padding-top: 0.25rem;
        padding-bottom: 0.25rem; }
      .input-group.input-group-lg .vue-component .b-form-btn-label-control.form-control > label {
        min-height: calc(calc(1.5em + 1rem + 2px) - 2px);
        padding-top: 0.5rem;
        padding-bottom: 0.5rem; }
    .vue-component .b-form-btn-label-control.form-control[aria-disabled="true"], .vue-component .b-form-btn-label-control.form-control[aria-readonly="true"] {
      background-color: #e9ecef;
      opacity: 1; }
    .vue-component .b-form-btn-label-control.form-control[aria-disabled="true"] {
      pointer-events: none; }
      .vue-component .b-form-btn-label-control.form-control[aria-disabled="true"] > label {
        cursor: default; }
  .vue-component .b-form-btn-label-control.btn-group > .dropdown-menu {
    padding: 0.5rem; }
  .vue-component .b-avatar {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    vertical-align: middle;
    font-size: inherit;
    font-weight: 400;
    line-height: 1;
    max-width: 100%;
    max-height: auto;
    text-align: center;
    overflow: visible;
    position: relative;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
    .vue-component .b-avatar:focus {
      outline: 0; }
    .vue-component .b-avatar.btn, .vue-component .b-avatar[href] {
      padding: 0;
      border: 0; }
      .vue-component .b-avatar.btn .b-avatar-img img, .vue-component .b-avatar[href] .b-avatar-img img {
        -webkit-transition: -webkit-transform 0.15s ease-in-out;
        transition: -webkit-transform 0.15s ease-in-out;
        transition: transform 0.15s ease-in-out;
        transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; }
      .vue-component .b-avatar.btn:not(:disabled):not(.disabled), .vue-component .b-avatar[href]:not(:disabled):not(.disabled) {
        cursor: pointer; }
        .vue-component .b-avatar.btn:not(:disabled):not(.disabled):hover .b-avatar-img img, .vue-component .b-avatar[href]:not(:disabled):not(.disabled):hover .b-avatar-img img {
          -webkit-transform: scale(1.15);
                  transform: scale(1.15); }
    .vue-component .b-avatar.disabled, .vue-component .b-avatar:disabled, .vue-component .b-avatar[disabled] {
      opacity: 0.65;
      pointer-events: none; }
    .vue-component .b-avatar .b-avatar-custom,
    .vue-component .b-avatar .b-avatar-text,
    .vue-component .b-avatar .b-avatar-img {
      border-radius: inherit;
      width: 100%;
      height: 100%;
      overflow: hidden;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .vue-component .b-avatar .b-avatar-text {
      text-transform: uppercase;
      white-space: nowrap; }
    .vue-component .b-avatar[href] {
      text-decoration: none; }
    .vue-component .b-avatar > .b-icon {
      width: 60%;
      height: auto;
      max-width: 100%; }
    .vue-component .b-avatar .b-avatar-img img {
      width: 100%;
      height: 100%;
      max-height: auto;
      border-radius: inherit; }
    .vue-component .b-avatar .b-avatar-badge {
      position: absolute;
      min-height: 1.5em;
      min-width: 1.5em;
      padding: 0.25em;
      line-height: 1;
      border-radius: 10em;
      font-size: 70%;
      font-weight: 700;
      z-index: 5; }
  .vue-component .b-avatar-group .b-avatar-group-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .vue-component .b-avatar-group .b-avatar {
    border: 1px solid #dee2e6; }
  .vue-component .b-avatar-group a.b-avatar:hover:not(.disabled):not(disabled),
  .vue-component .b-avatar-group .btn.b-avatar:hover:not(.disabled):not(disabled) {
    z-index: 3; }
  .vue-component .b-calendar {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex; }
    .vue-component .b-calendar .b-calendar-inner {
      min-width: 250px; }
    .vue-component .b-calendar .b-calendar-header,
    .vue-component .b-calendar .b-calendar-nav {
      margin-bottom: 0.25rem; }
    .vue-component .b-calendar .b-calendar-nav .btn {
      padding: 0.25rem; }
    .vue-component .b-calendar output {
      padding: 0.25rem;
      font-size: 80%; }
      .vue-component .b-calendar output.readonly {
        background-color: #e9ecef;
        opacity: 1; }
    .vue-component .b-calendar .b-calendar-footer {
      margin-top: 0.5rem; }
    .vue-component .b-calendar .b-calendar-grid {
      padding: 0;
      margin: 0;
      overflow: hidden; }
      .vue-component .b-calendar .b-calendar-grid .row {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap; }
    .vue-component .b-calendar .b-calendar-grid-caption {
      padding: 0.25rem; }
    .vue-component .b-calendar .b-calendar-grid-body .col[data-date] .btn {
      width: 32px;
      height: 32px;
      font-size: 14px;
      line-height: 1;
      margin: 3px auto;
      padding: 9px 0; }
    .vue-component .b-calendar .btn:disabled, .vue-component .b-calendar .btn.disabled, .vue-component .b-calendar .btn[aria-disabled="true"] {
      cursor: default;
      pointer-events: none; }
  .vue-component .card-img-left {
    border-top-left-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px); }
  .vue-component .card-img-right {
    border-top-right-radius: calc(0.25rem - 1px);
    border-bottom-right-radius: calc(0.25rem - 1px); }
  .vue-component .dropdown:not(.dropleft) .dropdown-toggle.dropdown-toggle-no-caret::after {
    display: none !important; }
  .vue-component .dropdown.dropleft .dropdown-toggle.dropdown-toggle-no-caret::before {
    display: none !important; }
  .vue-component .dropdown .dropdown-menu:focus {
    outline: none; }
  .vue-component .b-dropdown-form {
    display: inline-block;
    padding: 0.25rem 1.5rem;
    width: 100%;
    clear: both;
    font-weight: 400; }
    .vue-component .b-dropdown-form:focus {
      outline: 1px dotted !important;
      outline: 5px auto -webkit-focus-ring-color !important; }
    .vue-component .b-dropdown-form.disabled, .vue-component .b-dropdown-form:disabled {
      outline: 0 !important;
      color: #6c757d;
      pointer-events: none; }
  .vue-component .b-dropdown-text {
    display: inline-block;
    padding: 0.25rem 1.5rem;
    margin-bottom: 0;
    width: 100%;
    clear: both;
    font-weight: lighter; }
  .vue-component .custom-checkbox.b-custom-control-lg,
  .vue-component .input-group-lg .custom-checkbox {
    font-size: 1.25rem;
    line-height: 1.5;
    padding-left: 1.875rem; }
    .vue-component .custom-checkbox.b-custom-control-lg .custom-control-label::before,
    .vue-component .input-group-lg .custom-checkbox .custom-control-label::before {
      top: 0.3125rem;
      left: -1.875rem;
      width: 1.25rem;
      height: 1.25rem;
      border-radius: 0.3rem; }
    .vue-component .custom-checkbox.b-custom-control-lg .custom-control-label::after,
    .vue-component .input-group-lg .custom-checkbox .custom-control-label::after {
      top: 0.3125rem;
      left: -1.875rem;
      width: 1.25rem;
      height: 1.25rem;
      background-size: 50% 50%; }
  .vue-component .custom-checkbox.b-custom-control-sm,
  .vue-component .input-group-sm .custom-checkbox {
    font-size: 0.875rem;
    line-height: 1.5;
    padding-left: 1.3125rem; }
    .vue-component .custom-checkbox.b-custom-control-sm .custom-control-label::before,
    .vue-component .input-group-sm .custom-checkbox .custom-control-label::before {
      top: 0.21875rem;
      left: -1.3125rem;
      width: 0.875rem;
      height: 0.875rem;
      border-radius: 0.2rem; }
    .vue-component .custom-checkbox.b-custom-control-sm .custom-control-label::after,
    .vue-component .input-group-sm .custom-checkbox .custom-control-label::after {
      top: 0.21875rem;
      left: -1.3125rem;
      width: 0.875rem;
      height: 0.875rem;
      background-size: 50% 50%; }
  .vue-component .custom-switch.b-custom-control-lg,
  .vue-component .input-group-lg .custom-switch {
    padding-left: 2.8125rem; }
    .vue-component .custom-switch.b-custom-control-lg .custom-control-label,
    .vue-component .input-group-lg .custom-switch .custom-control-label {
      font-size: 1.25rem;
      line-height: 1.5; }
      .vue-component .custom-switch.b-custom-control-lg .custom-control-label::before,
      .vue-component .input-group-lg .custom-switch .custom-control-label::before {
        top: 0.3125rem;
        height: 1.25rem;
        left: -2.8125rem;
        width: 2.1875rem;
        border-radius: 0.625rem; }
      .vue-component .custom-switch.b-custom-control-lg .custom-control-label::after,
      .vue-component .input-group-lg .custom-switch .custom-control-label::after {
        top: calc( 0.3125rem + 2px);
        left: calc( -2.8125rem + 2px);
        width: calc( 1.25rem - 4px);
        height: calc( 1.25rem - 4px);
        border-radius: 0.625rem;
        background-size: 50% 50%; }
    .vue-component .custom-switch.b-custom-control-lg .custom-control-input:checked ~ .custom-control-label::after,
    .vue-component .input-group-lg .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
      -webkit-transform: translateX(0.9375rem);
              transform: translateX(0.9375rem); }
  .vue-component .custom-switch.b-custom-control-sm,
  .vue-component .input-group-sm .custom-switch {
    padding-left: 1.96875rem; }
    .vue-component .custom-switch.b-custom-control-sm .custom-control-label,
    .vue-component .input-group-sm .custom-switch .custom-control-label {
      font-size: 0.875rem;
      line-height: 1.5; }
      .vue-component .custom-switch.b-custom-control-sm .custom-control-label::before,
      .vue-component .input-group-sm .custom-switch .custom-control-label::before {
        top: 0.21875rem;
        left: -1.96875rem;
        width: 1.53125rem;
        height: 0.875rem;
        border-radius: 0.4375rem; }
      .vue-component .custom-switch.b-custom-control-sm .custom-control-label::after,
      .vue-component .input-group-sm .custom-switch .custom-control-label::after {
        top: calc( 0.21875rem + 2px);
        left: calc( -1.96875rem + 2px);
        width: calc( 0.875rem - 4px);
        height: calc( 0.875rem - 4px);
        border-radius: 0.4375rem;
        background-size: 50% 50%; }
    .vue-component .custom-switch.b-custom-control-sm .custom-control-input:checked ~ .custom-control-label::after,
    .vue-component .input-group-sm .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
      -webkit-transform: translateX(0.65625rem);
              transform: translateX(0.65625rem); }
  .vue-component .input-group > .input-group-prepend > .btn-group > .btn,
  .vue-component .input-group > .input-group-append:not(:last-child) > .btn-group > .btn,
  .vue-component .input-group > .input-group-append:last-child > .btn-group:not(:last-child):not(.dropdown-toggle) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .vue-component .input-group > .input-group-append > .btn-group > .btn,
  .vue-component .input-group > .input-group-prepend:not(:first-child) > .btn-group > .btn,
  .vue-component .input-group > .input-group-prepend:first-child > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .vue-component .b-custom-control-lg.custom-file,
  .vue-component .b-custom-control-lg .custom-file-input,
  .vue-component .b-custom-control-lg .custom-file-label,
  .vue-component .input-group-lg.custom-file,
  .vue-component .input-group-lg .custom-file-input,
  .vue-component .input-group-lg .custom-file-label {
    font-size: 1.25rem;
    height: calc(1.5em + 1rem + 2px); }
  .vue-component .b-custom-control-lg .custom-file-label,
  .vue-component .b-custom-control-lg .custom-file-label:after,
  .vue-component .input-group-lg .custom-file-label,
  .vue-component .input-group-lg .custom-file-label:after {
    padding: 0.5rem 1rem;
    line-height: 1.5; }
  .vue-component .b-custom-control-lg .custom-file-label,
  .vue-component .input-group-lg .custom-file-label {
    border-radius: 0.3rem; }
    .vue-component .b-custom-control-lg .custom-file-label::after,
    .vue-component .input-group-lg .custom-file-label::after {
      font-size: inherit;
      height: calc( 1.5em + 1rem);
      border-radius: 0 0.3rem 0.3rem 0; }
  .vue-component .b-custom-control-sm.custom-file,
  .vue-component .b-custom-control-sm .custom-file-input,
  .vue-component .b-custom-control-sm .custom-file-label,
  .vue-component .input-group-sm.custom-file,
  .vue-component .input-group-sm .custom-file-input,
  .vue-component .input-group-sm .custom-file-label {
    font-size: 0.875rem;
    height: calc(1.5em + 0.5rem + 2px); }
  .vue-component .b-custom-control-sm .custom-file-label,
  .vue-component .b-custom-control-sm .custom-file-label:after,
  .vue-component .input-group-sm .custom-file-label,
  .vue-component .input-group-sm .custom-file-label:after {
    padding: 0.25rem 0.5rem;
    line-height: 1.5; }
  .vue-component .b-custom-control-sm .custom-file-label,
  .vue-component .input-group-sm .custom-file-label {
    border-radius: 0.2rem; }
    .vue-component .b-custom-control-sm .custom-file-label::after,
    .vue-component .input-group-sm .custom-file-label::after {
      font-size: inherit;
      height: calc( 1.5em + 0.5rem);
      border-radius: 0 0.2rem 0.2rem 0; }
  .was-validated .vue-component .form-control:invalid,
  .was-validated .vue-component .form-control:valid, .vue-component .form-control.is-invalid, .vue-component .form-control.is-valid {
    background-position: right calc(0.375em + 0.1875rem) center; }
  .vue-component input[type="color"].form-control {
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.125rem 0.25rem; }
  .vue-component input[type="color"].form-control.form-control-sm,
  .vue-component .input-group-sm input[type="color"].form-control {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.125rem 0.25rem; }
  .vue-component input[type="color"].form-control.form-control-lg,
  .vue-component .input-group-lg input[type="color"].form-control {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.125rem 0.25rem; }
  .vue-component input[type="color"].form-control:disabled {
    background-color: #adb5bd;
    opacity: 0.65; }
  .vue-component .input-group > .custom-range {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0; }
    .vue-component .input-group > .custom-range + .form-control,
    .vue-component .input-group > .custom-range + .form-control-plaintext,
    .vue-component .input-group > .custom-range + .custom-select,
    .vue-component .input-group > .custom-range + .custom-range,
    .vue-component .input-group > .custom-range + .custom-file {
      margin-left: -1px; }
  .vue-component .input-group > .form-control + .custom-range,
  .vue-component .input-group > .form-control-plaintext + .custom-range,
  .vue-component .input-group > .custom-select + .custom-range,
  .vue-component .input-group > .custom-range + .custom-range,
  .vue-component .input-group > .custom-file + .custom-range {
    margin-left: -1px; }
  .vue-component .input-group > .custom-range:focus {
    z-index: 3; }
  .vue-component .input-group > .custom-range:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .vue-component .input-group > .custom-range:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .vue-component .input-group > .custom-range {
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0 0.75rem;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    height: calc(1.5em + 0.75rem + 2px);
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .input-group > .custom-range {
        -webkit-transition: none;
        transition: none; } }
    .vue-component .input-group > .custom-range:focus {
      color: #495057;
      background-color: #fff;
      border-color: #80bdff;
      outline: 0;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
    .vue-component .input-group > .custom-range:disabled, .vue-component .input-group > .custom-range[readonly] {
      background-color: #e9ecef; }
  .vue-component .input-group-lg > .custom-range {
    height: calc(1.5em + 1rem + 2px);
    padding: 0 1rem;
    border-radius: 0.3rem; }
  .vue-component .input-group-sm > .custom-range {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0 0.5rem;
    border-radius: 0.2rem; }
  .was-validated .vue-component .input-group .custom-range:valid, .vue-component .input-group .custom-range.is-valid {
    border-color: #28a745; }
    .was-validated .vue-component .input-group .custom-range:valid:focus, .vue-component .input-group .custom-range.is-valid:focus {
      border-color: #28a745;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  .was-validated .vue-component .custom-range:valid:focus::-webkit-slider-thumb, .vue-component .custom-range.is-valid:focus::-webkit-slider-thumb {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac;
            box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac; }
  .was-validated .vue-component .custom-range:valid:focus::-moz-range-thumb, .vue-component .custom-range.is-valid:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac; }
  .was-validated .vue-component .custom-range:valid:focus::-ms-thumb, .vue-component .custom-range.is-valid:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac; }
  .was-validated .vue-component .custom-range:valid::-webkit-slider-thumb, .vue-component .custom-range.is-valid::-webkit-slider-thumb {
    background-color: #28a745;
    background-image: none; }
    .was-validated .vue-component .custom-range:valid::-webkit-slider-thumb:active, .vue-component .custom-range.is-valid::-webkit-slider-thumb:active {
      background-color: #9be7ac;
      background-image: none; }
  .was-validated .vue-component .custom-range:valid::-webkit-slider-runnable-track, .vue-component .custom-range.is-valid::-webkit-slider-runnable-track {
    background-color: rgba(40, 167, 69, 0.35); }
  .was-validated .vue-component .custom-range:valid::-moz-range-thumb, .vue-component .custom-range.is-valid::-moz-range-thumb {
    background-color: #28a745;
    background-image: none; }
    .was-validated .vue-component .custom-range:valid::-moz-range-thumb:active, .vue-component .custom-range.is-valid::-moz-range-thumb:active {
      background-color: #9be7ac;
      background-image: none; }
  .was-validated .vue-component .custom-range:valid::-moz-range-track, .vue-component .custom-range.is-valid::-moz-range-track {
    background: rgba(40, 167, 69, 0.35); }
  .was-validated .vue-component .custom-range:valid ~ .valid-feedback,
  .was-validated .vue-component .custom-range:valid ~ .valid-tooltip, .vue-component .custom-range.is-valid ~ .valid-feedback,
  .vue-component .custom-range.is-valid ~ .valid-tooltip {
    display: block; }
  .was-validated .vue-component .custom-range:valid::-ms-thumb, .vue-component .custom-range.is-valid::-ms-thumb {
    background-color: #28a745;
    background-image: none; }
    .was-validated .vue-component .custom-range:valid::-ms-thumb:active, .vue-component .custom-range.is-valid::-ms-thumb:active {
      background-color: #9be7ac;
      background-image: none; }
  .was-validated .vue-component .custom-range:valid::-ms-track-lower, .vue-component .custom-range.is-valid::-ms-track-lower {
    background: rgba(40, 167, 69, 0.35); }
  .was-validated .vue-component .custom-range:valid::-ms-track-upper, .vue-component .custom-range.is-valid::-ms-track-upper {
    background: rgba(40, 167, 69, 0.35); }
  .was-validated .vue-component .input-group .custom-range:invalid, .vue-component .input-group .custom-range.is-invalid {
    border-color: #dc3545; }
    .was-validated .vue-component .input-group .custom-range:invalid:focus, .vue-component .input-group .custom-range.is-invalid:focus {
      border-color: #dc3545;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  .was-validated .vue-component .custom-range:invalid:focus::-webkit-slider-thumb, .vue-component .custom-range.is-invalid:focus::-webkit-slider-thumb {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1;
            box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1; }
  .was-validated .vue-component .custom-range:invalid:focus::-moz-range-thumb, .vue-component .custom-range.is-invalid:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1; }
  .was-validated .vue-component .custom-range:invalid:focus::-ms-thumb, .vue-component .custom-range.is-invalid:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1; }
  .was-validated .vue-component .custom-range:invalid::-webkit-slider-thumb, .vue-component .custom-range.is-invalid::-webkit-slider-thumb {
    background-color: #dc3545;
    background-image: none; }
    .was-validated .vue-component .custom-range:invalid::-webkit-slider-thumb:active, .vue-component .custom-range.is-invalid::-webkit-slider-thumb:active {
      background-color: #f6cdd1;
      background-image: none; }
  .was-validated .vue-component .custom-range:invalid::-webkit-slider-runnable-track, .vue-component .custom-range.is-invalid::-webkit-slider-runnable-track {
    background-color: rgba(220, 53, 69, 0.35); }
  .was-validated .vue-component .custom-range:invalid::-moz-range-thumb, .vue-component .custom-range.is-invalid::-moz-range-thumb {
    background-color: #dc3545;
    background-image: none; }
    .was-validated .vue-component .custom-range:invalid::-moz-range-thumb:active, .vue-component .custom-range.is-invalid::-moz-range-thumb:active {
      background-color: #f6cdd1;
      background-image: none; }
  .was-validated .vue-component .custom-range:invalid::-moz-range-track, .vue-component .custom-range.is-invalid::-moz-range-track {
    background: rgba(220, 53, 69, 0.35); }
  .was-validated .vue-component .custom-range:invalid ~ .invalid-feedback,
  .was-validated .vue-component .custom-range:invalid ~ .invalid-tooltip, .vue-component .custom-range.is-invalid ~ .invalid-feedback,
  .vue-component .custom-range.is-invalid ~ .invalid-tooltip {
    display: block; }
  .was-validated .vue-component .custom-range:invalid::-ms-thumb, .vue-component .custom-range.is-invalid::-ms-thumb {
    background-color: #dc3545;
    background-image: none; }
    .was-validated .vue-component .custom-range:invalid::-ms-thumb:active, .vue-component .custom-range.is-invalid::-ms-thumb:active {
      background-color: #f6cdd1;
      background-image: none; }
  .was-validated .vue-component .custom-range:invalid::-ms-track-lower, .vue-component .custom-range.is-invalid::-ms-track-lower {
    background: rgba(220, 53, 69, 0.35); }
  .was-validated .vue-component .custom-range:invalid::-ms-track-upper, .vue-component .custom-range.is-invalid::-ms-track-upper {
    background: rgba(220, 53, 69, 0.35); }
  .vue-component .custom-radio.b-custom-control-lg,
  .vue-component .input-group-lg .custom-radio {
    font-size: 1.25rem;
    line-height: 1.5;
    padding-left: 1.875rem; }
    .vue-component .custom-radio.b-custom-control-lg .custom-control-label::before,
    .vue-component .input-group-lg .custom-radio .custom-control-label::before {
      top: 0.3125rem;
      left: -1.875rem;
      width: 1.25rem;
      height: 1.25rem;
      border-radius: 50%; }
    .vue-component .custom-radio.b-custom-control-lg .custom-control-label::after,
    .vue-component .input-group-lg .custom-radio .custom-control-label::after {
      top: 0.3125rem;
      left: -1.875rem;
      width: 1.25rem;
      height: 1.25rem;
      background: no-repeat 50% / 50% 50%; }
  .vue-component .custom-radio.b-custom-control-sm,
  .vue-component .input-group-sm .custom-radio {
    font-size: 0.875rem;
    line-height: 1.5;
    padding-left: 1.3125rem; }
    .vue-component .custom-radio.b-custom-control-sm .custom-control-label::before,
    .vue-component .input-group-sm .custom-radio .custom-control-label::before {
      top: 0.21875rem;
      left: -1.3125rem;
      width: 0.875rem;
      height: 0.875rem;
      border-radius: 50%; }
    .vue-component .custom-radio.b-custom-control-sm .custom-control-label::after,
    .vue-component .input-group-sm .custom-radio .custom-control-label::after {
      top: 0.21875rem;
      left: -1.3125rem;
      width: 0.875rem;
      height: 0.875rem;
      background: no-repeat 50% / 50% 50%; }
  .vue-component .b-rating {
    text-align: center; }
    .vue-component .b-rating.d-inline-flex {
      width: auto; }
    .vue-component .b-rating .b-rating-star,
    .vue-component .b-rating .b-rating-value {
      padding: 0 0.25em; }
    .vue-component .b-rating .b-rating-value {
      min-width: 2.5em; }
    .vue-component .b-rating .b-rating-star {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      outline: 0; }
      .vue-component .b-rating .b-rating-star .b-rating-icon {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out; }
    .vue-component .b-rating.disabled, .vue-component .b-rating:disabled {
      background-color: #e9ecef;
      color: #6c757d; }
    .vue-component .b-rating:not(.disabled):not(.readonly) .b-rating-star {
      cursor: pointer; }
    .vue-component .b-rating:not(.disabled):not(.readonly):focus:not(:hover) .b-rating-star.focused .b-rating-icon,
    .vue-component .b-rating:not(.disabled):not(.readonly) .b-rating-star:hover .b-rating-icon {
      -webkit-transform: scale(1.5);
              transform: scale(1.5); }
    .vue-component .b-rating[dir="rtl"] .b-rating-star-half {
      -webkit-transform: scale(-1, 1);
              transform: scale(-1, 1); }
  .vue-component .b-form-spinbutton {
    text-align: center;
    overflow: hidden;
    background-image: none;
    padding: 0; }
    [dir="rtl"] .vue-component .b-form-spinbutton:not(.flex-column), .vue-component .b-form-spinbutton[dir="rtl"]:not(.flex-column) {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
    .vue-component .b-form-spinbutton output {
      font-size: inherit;
      outline: 0;
      border: 0;
      background-color: transparent;
      width: auto;
      margin: 0;
      padding: 0 0.25rem; }
      .vue-component .b-form-spinbutton output > div,
      .vue-component .b-form-spinbutton output > bdi {
        display: block;
        min-width: 2.25em;
        height: 1.5em; }
    .vue-component .b-form-spinbutton.flex-column {
      height: auto;
      width: auto; }
      .vue-component .b-form-spinbutton.flex-column output {
        margin: 0 0.25rem;
        padding: 0.25rem 0; }
    .vue-component .b-form-spinbutton:not(.d-inline-flex):not(.flex-column) {
      output-width: 100%; }
    .vue-component .b-form-spinbutton.d-inline-flex:not(.flex-column) {
      width: auto; }
    .vue-component .b-form-spinbutton .btn {
      line-height: 1;
      -webkit-box-shadow: none !important;
              box-shadow: none !important; }
      .vue-component .b-form-spinbutton .btn:disabled {
        pointer-events: none; }
      .vue-component .b-form-spinbutton .btn:hover:not(:disabled) > div > .b-icon {
        -webkit-transform: scale(1.25);
                transform: scale(1.25); }
    .vue-component .b-form-spinbutton.disabled, .vue-component .b-form-spinbutton.readonly {
      background-color: #e9ecef; }
    .vue-component .b-form-spinbutton.disabled {
      pointer-events: none; }
  .vue-component .b-form-tags.focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
    .vue-component .b-form-tags.focus.is-valid {
      border-color: #28a745;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
    .vue-component .b-form-tags.focus.is-invalid {
      border-color: #dc3545;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
              box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  .vue-component .b-form-tags.disabled {
    background-color: #e9ecef; }
  .vue-component .b-form-tag {
    font-size: 75%;
    font-weight: normal;
    line-height: 1.5; }
    .vue-component .b-form-tag.disabled {
      opacity: 0.75; }
    .vue-component .b-form-tag > button.b-form-tag-remove {
      color: inherit;
      font-size: 125%;
      line-height: 1;
      float: none; }
  .vue-component .form-control-sm .b-form-tag {
    line-height: 1.5; }
  .vue-component .form-control-lg .b-form-tag {
    line-height: 1.5; }
  .vue-component .modal-backdrop {
    opacity: 0.5; }
  .vue-component .b-pagination-pills .page-item .page-link {
    border-radius: 50rem !important;
    margin-left: 0.25rem;
    line-height: 1; }
  .vue-component .b-pagination-pills .page-item:first-child .page-link {
    margin-left: 0; }
  .vue-component .popover.b-popover {
    display: block;
    opacity: 1;
    outline: 0; }
    .vue-component .popover.b-popover.fade:not(.show) {
      opacity: 0; }
    .vue-component .popover.b-popover.show {
      opacity: 1; }
  .vue-component .b-popover-primary.popover {
    background-color: #cce5ff;
    border-color: #b8daff; }
  .vue-component .b-popover-primary.bs-popover-top > .arrow::before, .vue-component .b-popover-primary.bs-popover-auto[x-placement^="top"] > .arrow::before {
    border-top-color: #b8daff; }
  .vue-component .b-popover-primary.bs-popover-top > .arrow::after, .vue-component .b-popover-primary.bs-popover-auto[x-placement^="top"] > .arrow::after {
    border-top-color: #cce5ff; }
  .vue-component .b-popover-primary.bs-popover-right > .arrow::before, .vue-component .b-popover-primary.bs-popover-auto[x-placement^="right"] > .arrow::before {
    border-right-color: #b8daff; }
  .vue-component .b-popover-primary.bs-popover-right > .arrow::after, .vue-component .b-popover-primary.bs-popover-auto[x-placement^="right"] > .arrow::after {
    border-right-color: #cce5ff; }
  .vue-component .b-popover-primary.bs-popover-bottom > .arrow::before, .vue-component .b-popover-primary.bs-popover-auto[x-placement^="bottom"] > .arrow::before {
    border-bottom-color: #b8daff; }
  .vue-component .b-popover-primary.bs-popover-bottom > .arrow::after, .vue-component .b-popover-primary.bs-popover-auto[x-placement^="bottom"] > .arrow::after {
    border-bottom-color: #bdddff; }
  .vue-component .b-popover-primary.bs-popover-bottom .popover-header::before, .vue-component .b-popover-primary.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    border-bottom-color: #bdddff; }
  .vue-component .b-popover-primary.bs-popover-left > .arrow::before, .vue-component .b-popover-primary.bs-popover-auto[x-placement^="left"] > .arrow::before {
    border-left-color: #b8daff; }
  .vue-component .b-popover-primary.bs-popover-left > .arrow::after, .vue-component .b-popover-primary.bs-popover-auto[x-placement^="left"] > .arrow::after {
    border-left-color: #cce5ff; }
  .vue-component .b-popover-primary .popover-header {
    color: #212529;
    background-color: #bdddff;
    border-bottom-color: #a3d0ff; }
  .vue-component .b-popover-primary .popover-body {
    color: #004085; }
  .vue-component .b-popover-secondary.popover {
    background-color: #e2e3e5;
    border-color: #d6d8db; }
  .vue-component .b-popover-secondary.bs-popover-top > .arrow::before, .vue-component .b-popover-secondary.bs-popover-auto[x-placement^="top"] > .arrow::before {
    border-top-color: #d6d8db; }
  .vue-component .b-popover-secondary.bs-popover-top > .arrow::after, .vue-component .b-popover-secondary.bs-popover-auto[x-placement^="top"] > .arrow::after {
    border-top-color: #e2e3e5; }
  .vue-component .b-popover-secondary.bs-popover-right > .arrow::before, .vue-component .b-popover-secondary.bs-popover-auto[x-placement^="right"] > .arrow::before {
    border-right-color: #d6d8db; }
  .vue-component .b-popover-secondary.bs-popover-right > .arrow::after, .vue-component .b-popover-secondary.bs-popover-auto[x-placement^="right"] > .arrow::after {
    border-right-color: #e2e3e5; }
  .vue-component .b-popover-secondary.bs-popover-bottom > .arrow::before, .vue-component .b-popover-secondary.bs-popover-auto[x-placement^="bottom"] > .arrow::before {
    border-bottom-color: #d6d8db; }
  .vue-component .b-popover-secondary.bs-popover-bottom > .arrow::after, .vue-component .b-popover-secondary.bs-popover-auto[x-placement^="bottom"] > .arrow::after {
    border-bottom-color: #dadbde; }
  .vue-component .b-popover-secondary.bs-popover-bottom .popover-header::before, .vue-component .b-popover-secondary.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    border-bottom-color: #dadbde; }
  .vue-component .b-popover-secondary.bs-popover-left > .arrow::before, .vue-component .b-popover-secondary.bs-popover-auto[x-placement^="left"] > .arrow::before {
    border-left-color: #d6d8db; }
  .vue-component .b-popover-secondary.bs-popover-left > .arrow::after, .vue-component .b-popover-secondary.bs-popover-auto[x-placement^="left"] > .arrow::after {
    border-left-color: #e2e3e5; }
  .vue-component .b-popover-secondary .popover-header {
    color: #212529;
    background-color: #dadbde;
    border-bottom-color: #ccced2; }
  .vue-component .b-popover-secondary .popover-body {
    color: #383d41; }
  .vue-component .b-popover-success.popover {
    background-color: #d4edda;
    border-color: #c3e6cb; }
  .vue-component .b-popover-success.bs-popover-top > .arrow::before, .vue-component .b-popover-success.bs-popover-auto[x-placement^="top"] > .arrow::before {
    border-top-color: #c3e6cb; }
  .vue-component .b-popover-success.bs-popover-top > .arrow::after, .vue-component .b-popover-success.bs-popover-auto[x-placement^="top"] > .arrow::after {
    border-top-color: #d4edda; }
  .vue-component .b-popover-success.bs-popover-right > .arrow::before, .vue-component .b-popover-success.bs-popover-auto[x-placement^="right"] > .arrow::before {
    border-right-color: #c3e6cb; }
  .vue-component .b-popover-success.bs-popover-right > .arrow::after, .vue-component .b-popover-success.bs-popover-auto[x-placement^="right"] > .arrow::after {
    border-right-color: #d4edda; }
  .vue-component .b-popover-success.bs-popover-bottom > .arrow::before, .vue-component .b-popover-success.bs-popover-auto[x-placement^="bottom"] > .arrow::before {
    border-bottom-color: #c3e6cb; }
  .vue-component .b-popover-success.bs-popover-bottom > .arrow::after, .vue-component .b-popover-success.bs-popover-auto[x-placement^="bottom"] > .arrow::after {
    border-bottom-color: #c9e8d1; }
  .vue-component .b-popover-success.bs-popover-bottom .popover-header::before, .vue-component .b-popover-success.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    border-bottom-color: #c9e8d1; }
  .vue-component .b-popover-success.bs-popover-left > .arrow::before, .vue-component .b-popover-success.bs-popover-auto[x-placement^="left"] > .arrow::before {
    border-left-color: #c3e6cb; }
  .vue-component .b-popover-success.bs-popover-left > .arrow::after, .vue-component .b-popover-success.bs-popover-auto[x-placement^="left"] > .arrow::after {
    border-left-color: #d4edda; }
  .vue-component .b-popover-success .popover-header {
    color: #212529;
    background-color: #c9e8d1;
    border-bottom-color: #b7e1c1; }
  .vue-component .b-popover-success .popover-body {
    color: #155724; }
  .vue-component .b-popover-info.popover {
    background-color: #d1ecf1;
    border-color: #bee5eb; }
  .vue-component .b-popover-info.bs-popover-top > .arrow::before, .vue-component .b-popover-info.bs-popover-auto[x-placement^="top"] > .arrow::before {
    border-top-color: #bee5eb; }
  .vue-component .b-popover-info.bs-popover-top > .arrow::after, .vue-component .b-popover-info.bs-popover-auto[x-placement^="top"] > .arrow::after {
    border-top-color: #d1ecf1; }
  .vue-component .b-popover-info.bs-popover-right > .arrow::before, .vue-component .b-popover-info.bs-popover-auto[x-placement^="right"] > .arrow::before {
    border-right-color: #bee5eb; }
  .vue-component .b-popover-info.bs-popover-right > .arrow::after, .vue-component .b-popover-info.bs-popover-auto[x-placement^="right"] > .arrow::after {
    border-right-color: #d1ecf1; }
  .vue-component .b-popover-info.bs-popover-bottom > .arrow::before, .vue-component .b-popover-info.bs-popover-auto[x-placement^="bottom"] > .arrow::before {
    border-bottom-color: #bee5eb; }
  .vue-component .b-popover-info.bs-popover-bottom > .arrow::after, .vue-component .b-popover-info.bs-popover-auto[x-placement^="bottom"] > .arrow::after {
    border-bottom-color: #c5e7ed; }
  .vue-component .b-popover-info.bs-popover-bottom .popover-header::before, .vue-component .b-popover-info.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    border-bottom-color: #c5e7ed; }
  .vue-component .b-popover-info.bs-popover-left > .arrow::before, .vue-component .b-popover-info.bs-popover-auto[x-placement^="left"] > .arrow::before {
    border-left-color: #bee5eb; }
  .vue-component .b-popover-info.bs-popover-left > .arrow::after, .vue-component .b-popover-info.bs-popover-auto[x-placement^="left"] > .arrow::after {
    border-left-color: #d1ecf1; }
  .vue-component .b-popover-info .popover-header {
    color: #212529;
    background-color: #c5e7ed;
    border-bottom-color: #b2dfe7; }
  .vue-component .b-popover-info .popover-body {
    color: #0c5460; }
  .vue-component .b-popover-warning.popover {
    background-color: #fff3cd;
    border-color: #ffeeba; }
  .vue-component .b-popover-warning.bs-popover-top > .arrow::before, .vue-component .b-popover-warning.bs-popover-auto[x-placement^="top"] > .arrow::before {
    border-top-color: #ffeeba; }
  .vue-component .b-popover-warning.bs-popover-top > .arrow::after, .vue-component .b-popover-warning.bs-popover-auto[x-placement^="top"] > .arrow::after {
    border-top-color: #fff3cd; }
  .vue-component .b-popover-warning.bs-popover-right > .arrow::before, .vue-component .b-popover-warning.bs-popover-auto[x-placement^="right"] > .arrow::before {
    border-right-color: #ffeeba; }
  .vue-component .b-popover-warning.bs-popover-right > .arrow::after, .vue-component .b-popover-warning.bs-popover-auto[x-placement^="right"] > .arrow::after {
    border-right-color: #fff3cd; }
  .vue-component .b-popover-warning.bs-popover-bottom > .arrow::before, .vue-component .b-popover-warning.bs-popover-auto[x-placement^="bottom"] > .arrow::before {
    border-bottom-color: #ffeeba; }
  .vue-component .b-popover-warning.bs-popover-bottom > .arrow::after, .vue-component .b-popover-warning.bs-popover-auto[x-placement^="bottom"] > .arrow::after {
    border-bottom-color: #ffefbe; }
  .vue-component .b-popover-warning.bs-popover-bottom .popover-header::before, .vue-component .b-popover-warning.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    border-bottom-color: #ffefbe; }
  .vue-component .b-popover-warning.bs-popover-left > .arrow::before, .vue-component .b-popover-warning.bs-popover-auto[x-placement^="left"] > .arrow::before {
    border-left-color: #ffeeba; }
  .vue-component .b-popover-warning.bs-popover-left > .arrow::after, .vue-component .b-popover-warning.bs-popover-auto[x-placement^="left"] > .arrow::after {
    border-left-color: #fff3cd; }
  .vue-component .b-popover-warning .popover-header {
    color: #212529;
    background-color: #ffefbe;
    border-bottom-color: #ffe9a4; }
  .vue-component .b-popover-warning .popover-body {
    color: #856404; }
  .vue-component .b-popover-danger.popover {
    background-color: #f8d7da;
    border-color: #f5c6cb; }
  .vue-component .b-popover-danger.bs-popover-top > .arrow::before, .vue-component .b-popover-danger.bs-popover-auto[x-placement^="top"] > .arrow::before {
    border-top-color: #f5c6cb; }
  .vue-component .b-popover-danger.bs-popover-top > .arrow::after, .vue-component .b-popover-danger.bs-popover-auto[x-placement^="top"] > .arrow::after {
    border-top-color: #f8d7da; }
  .vue-component .b-popover-danger.bs-popover-right > .arrow::before, .vue-component .b-popover-danger.bs-popover-auto[x-placement^="right"] > .arrow::before {
    border-right-color: #f5c6cb; }
  .vue-component .b-popover-danger.bs-popover-right > .arrow::after, .vue-component .b-popover-danger.bs-popover-auto[x-placement^="right"] > .arrow::after {
    border-right-color: #f8d7da; }
  .vue-component .b-popover-danger.bs-popover-bottom > .arrow::before, .vue-component .b-popover-danger.bs-popover-auto[x-placement^="bottom"] > .arrow::before {
    border-bottom-color: #f5c6cb; }
  .vue-component .b-popover-danger.bs-popover-bottom > .arrow::after, .vue-component .b-popover-danger.bs-popover-auto[x-placement^="bottom"] > .arrow::after {
    border-bottom-color: #f6cace; }
  .vue-component .b-popover-danger.bs-popover-bottom .popover-header::before, .vue-component .b-popover-danger.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    border-bottom-color: #f6cace; }
  .vue-component .b-popover-danger.bs-popover-left > .arrow::before, .vue-component .b-popover-danger.bs-popover-auto[x-placement^="left"] > .arrow::before {
    border-left-color: #f5c6cb; }
  .vue-component .b-popover-danger.bs-popover-left > .arrow::after, .vue-component .b-popover-danger.bs-popover-auto[x-placement^="left"] > .arrow::after {
    border-left-color: #f8d7da; }
  .vue-component .b-popover-danger .popover-header {
    color: #212529;
    background-color: #f6cace;
    border-bottom-color: #f2b4ba; }
  .vue-component .b-popover-danger .popover-body {
    color: #721c24; }
  .vue-component .b-popover-light.popover {
    background-color: #fefefe;
    border-color: #fdfdfe; }
  .vue-component .b-popover-light.bs-popover-top > .arrow::before, .vue-component .b-popover-light.bs-popover-auto[x-placement^="top"] > .arrow::before {
    border-top-color: #fdfdfe; }
  .vue-component .b-popover-light.bs-popover-top > .arrow::after, .vue-component .b-popover-light.bs-popover-auto[x-placement^="top"] > .arrow::after {
    border-top-color: #fefefe; }
  .vue-component .b-popover-light.bs-popover-right > .arrow::before, .vue-component .b-popover-light.bs-popover-auto[x-placement^="right"] > .arrow::before {
    border-right-color: #fdfdfe; }
  .vue-component .b-popover-light.bs-popover-right > .arrow::after, .vue-component .b-popover-light.bs-popover-auto[x-placement^="right"] > .arrow::after {
    border-right-color: #fefefe; }
  .vue-component .b-popover-light.bs-popover-bottom > .arrow::before, .vue-component .b-popover-light.bs-popover-auto[x-placement^="bottom"] > .arrow::before {
    border-bottom-color: #fdfdfe; }
  .vue-component .b-popover-light.bs-popover-bottom > .arrow::after, .vue-component .b-popover-light.bs-popover-auto[x-placement^="bottom"] > .arrow::after {
    border-bottom-color: #f6f6f6; }
  .vue-component .b-popover-light.bs-popover-bottom .popover-header::before, .vue-component .b-popover-light.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    border-bottom-color: #f6f6f6; }
  .vue-component .b-popover-light.bs-popover-left > .arrow::before, .vue-component .b-popover-light.bs-popover-auto[x-placement^="left"] > .arrow::before {
    border-left-color: #fdfdfe; }
  .vue-component .b-popover-light.bs-popover-left > .arrow::after, .vue-component .b-popover-light.bs-popover-auto[x-placement^="left"] > .arrow::after {
    border-left-color: #fefefe; }
  .vue-component .b-popover-light .popover-header {
    color: #212529;
    background-color: #f6f6f6;
    border-bottom-color: #eaeaea; }
  .vue-component .b-popover-light .popover-body {
    color: #818182; }
  .vue-component .b-popover-dark.popover {
    background-color: #d6d8d9;
    border-color: #c6c8ca; }
  .vue-component .b-popover-dark.bs-popover-top > .arrow::before, .vue-component .b-popover-dark.bs-popover-auto[x-placement^="top"] > .arrow::before {
    border-top-color: #c6c8ca; }
  .vue-component .b-popover-dark.bs-popover-top > .arrow::after, .vue-component .b-popover-dark.bs-popover-auto[x-placement^="top"] > .arrow::after {
    border-top-color: #d6d8d9; }
  .vue-component .b-popover-dark.bs-popover-right > .arrow::before, .vue-component .b-popover-dark.bs-popover-auto[x-placement^="right"] > .arrow::before {
    border-right-color: #c6c8ca; }
  .vue-component .b-popover-dark.bs-popover-right > .arrow::after, .vue-component .b-popover-dark.bs-popover-auto[x-placement^="right"] > .arrow::after {
    border-right-color: #d6d8d9; }
  .vue-component .b-popover-dark.bs-popover-bottom > .arrow::before, .vue-component .b-popover-dark.bs-popover-auto[x-placement^="bottom"] > .arrow::before {
    border-bottom-color: #c6c8ca; }
  .vue-component .b-popover-dark.bs-popover-bottom > .arrow::after, .vue-component .b-popover-dark.bs-popover-auto[x-placement^="bottom"] > .arrow::after {
    border-bottom-color: #ced0d2; }
  .vue-component .b-popover-dark.bs-popover-bottom .popover-header::before, .vue-component .b-popover-dark.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    border-bottom-color: #ced0d2; }
  .vue-component .b-popover-dark.bs-popover-left > .arrow::before, .vue-component .b-popover-dark.bs-popover-auto[x-placement^="left"] > .arrow::before {
    border-left-color: #c6c8ca; }
  .vue-component .b-popover-dark.bs-popover-left > .arrow::after, .vue-component .b-popover-dark.bs-popover-auto[x-placement^="left"] > .arrow::after {
    border-left-color: #d6d8d9; }
  .vue-component .b-popover-dark .popover-header {
    color: #212529;
    background-color: #ced0d2;
    border-bottom-color: #c1c4c5; }
  .vue-component .b-popover-dark .popover-body {
    color: #1b1e21; }
  .vue-component .b-sidebar-outer {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    overflow: visible;
    z-index: calc(1030 + 5); }
  .vue-component .b-sidebar-backdrop {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    opacity: 0.6; }
  .vue-component .b-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed !important;
    top: 0;
    height: 100vh;
    width: 320px;
    max-width: 100% !important;
    height: 100vh !important;
    margin: 0 !important;
    outline: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
    .vue-component .b-sidebar.slide {
      -webkit-transition: -webkit-transform 0.3s ease-in-out;
      transition: -webkit-transform 0.3s ease-in-out;
      transition: transform 0.3s ease-in-out;
      transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
      @media (prefers-reduced-motion: reduce) {
        .vue-component .b-sidebar.slide {
          -webkit-transition: none;
          transition: none; } }
    .vue-component .b-sidebar:not(.b-sidebar-right) {
      left: 0;
      right: auto; }
      .vue-component .b-sidebar:not(.b-sidebar-right).slide:not(.show) {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%); }
      .vue-component .b-sidebar:not(.b-sidebar-right) > .b-sidebar-header .close {
        margin-left: auto; }
    .vue-component .b-sidebar.b-sidebar-right {
      left: auto;
      right: 0; }
      .vue-component .b-sidebar.b-sidebar-right.slide:not(.show) {
        -webkit-transform: translateX(100%);
                transform: translateX(100%); }
      .vue-component .b-sidebar.b-sidebar-right > .b-sidebar-header .close {
        margin-right: auto; }
    .vue-component .b-sidebar > .b-sidebar-header {
      font-size: 1.5rem;
      padding: 0.5rem 1rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-flex: 0;
          -ms-flex-positive: 0;
              flex-grow: 0;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      [dir="rtl"] .vue-component .b-sidebar > .b-sidebar-header {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse; }
      .vue-component .b-sidebar > .b-sidebar-header .close {
        float: none;
        font-size: 1.5rem; }
    .vue-component .b-sidebar > .b-sidebar-body {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      height: 100%;
      overflow-y: auto; }
    .vue-component .b-sidebar > .b-sidebar-footer {
      -webkit-box-flex: 0;
          -ms-flex-positive: 0;
              flex-grow: 0; }
  .vue-component .table.b-table.b-table-fixed {
    table-layout: fixed; }
  .vue-component .table.b-table.b-table-no-border-collapse {
    border-collapse: separate;
    border-spacing: 0; }
  .vue-component .table.b-table[aria-busy="true"] {
    opacity: 0.55; }
  .vue-component .table.b-table > tbody > tr.b-table-details > td {
    border-top: none !important; }
  .vue-component .table.b-table > caption {
    caption-side: bottom; }
  .vue-component .table.b-table.b-table-caption-top > caption {
    caption-side: top !important; }
  .vue-component .table.b-table > tbody > .table-active,
  .vue-component .table.b-table > tbody > .table-active > th,
  .vue-component .table.b-table > tbody > .table-active > td {
    background-color: rgba(0, 0, 0, 0.075); }
  .vue-component .table.b-table.table-hover > tbody > tr.table-active:hover td,
  .vue-component .table.b-table.table-hover > tbody > tr.table-active:hover th {
    color: #212529;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.075)), to(rgba(0, 0, 0, 0.075)));
    background-image: linear-gradient(rgba(0, 0, 0, 0.075), rgba(0, 0, 0, 0.075));
    background-repeat: no-repeat; }
  .vue-component .table.b-table > tbody > .bg-active,
  .vue-component .table.b-table > tbody > .bg-active > th,
  .vue-component .table.b-table > tbody > .bg-active > td {
    background-color: rgba(255, 255, 255, 0.075) !important; }
  .vue-component .table.b-table.table-hover.table-dark > tbody > tr.bg-active:hover td,
  .vue-component .table.b-table.table-hover.table-dark > tbody > tr.bg-active:hover th {
    color: #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.075)), to(rgba(255, 255, 255, 0.075)));
    background-image: linear-gradient(rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.075));
    background-repeat: no-repeat; }
  .vue-component .b-table-sticky-header,
  .vue-component .table-responsive,
  .vue-component [class*="table-responsive-"] {
    margin-bottom: 1rem; }
    .vue-component .b-table-sticky-header > .table,
    .vue-component .table-responsive > .table,
    .vue-component [class*="table-responsive-"] > .table {
      margin-bottom: 0; }
  .vue-component .b-table-sticky-header {
    overflow-y: auto;
    max-height: 300px; }
  @media print {
    .vue-component .b-table-sticky-header {
      overflow-y: visible !important;
      max-height: none !important; } }
  @supports (position: sticky) {
    .vue-component .b-table-sticky-header > .table.b-table > thead > tr > th {
      position: sticky;
      top: 0;
      z-index: 2; }
    .vue-component .b-table-sticky-header > .table.b-table > thead > tr > .b-table-sticky-column,
    .vue-component .b-table-sticky-header > .table.b-table > tbody > tr > .b-table-sticky-column,
    .vue-component .b-table-sticky-header > .table.b-table > tfoot > tr > .b-table-sticky-column,
    .vue-component .table-responsive > .table.b-table > thead > tr > .b-table-sticky-column,
    .vue-component .table-responsive > .table.b-table > tbody > tr > .b-table-sticky-column,
    .vue-component .table-responsive > .table.b-table > tfoot > tr > .b-table-sticky-column,
    .vue-component [class*="table-responsive-"] > .table.b-table > thead > tr > .b-table-sticky-column,
    .vue-component [class*="table-responsive-"] > .table.b-table > tbody > tr > .b-table-sticky-column,
    .vue-component [class*="table-responsive-"] > .table.b-table > tfoot > tr > .b-table-sticky-column {
      position: sticky;
      left: 0; }
    .vue-component .b-table-sticky-header > .table.b-table > thead > tr > .b-table-sticky-column,
    .vue-component .table-responsive > .table.b-table > thead > tr > .b-table-sticky-column,
    .vue-component [class*="table-responsive-"] > .table.b-table > thead > tr > .b-table-sticky-column {
      z-index: 5; }
    .vue-component .b-table-sticky-header > .table.b-table > tbody > tr > .b-table-sticky-column,
    .vue-component .b-table-sticky-header > .table.b-table > tfoot > tr > .b-table-sticky-column,
    .vue-component .table-responsive > .table.b-table > tbody > tr > .b-table-sticky-column,
    .vue-component .table-responsive > .table.b-table > tfoot > tr > .b-table-sticky-column,
    .vue-component [class*="table-responsive-"] > .table.b-table > tbody > tr > .b-table-sticky-column,
    .vue-component [class*="table-responsive-"] > .table.b-table > tfoot > tr > .b-table-sticky-column {
      z-index: 2; }
    .vue-component .table.b-table > thead > tr > .table-b-table-default,
    .vue-component .table.b-table > tbody > tr > .table-b-table-default,
    .vue-component .table.b-table > tfoot > tr > .table-b-table-default {
      color: #212529;
      background-color: #fff; }
    .vue-component .table.b-table.table-dark > thead > tr > .bg-b-table-default,
    .vue-component .table.b-table.table-dark > tbody > tr > .bg-b-table-default,
    .vue-component .table.b-table.table-dark > tfoot > tr > .bg-b-table-default {
      color: #fff;
      background-color: #343a40; }
    .vue-component .table.b-table.table-striped > tbody > tr:nth-of-type(odd) > .table-b-table-default {
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05)));
      background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
      background-repeat: no-repeat; }
    .vue-component .table.b-table.table-striped.table-dark > tbody > tr:nth-of-type(odd) > .bg-b-table-default {
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0.05)));
      background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
      background-repeat: no-repeat; }
    .vue-component .table.b-table.table-hover > tbody > tr:hover > .table-b-table-default {
      color: #212529;
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.075)), to(rgba(0, 0, 0, 0.075)));
      background-image: linear-gradient(rgba(0, 0, 0, 0.075), rgba(0, 0, 0, 0.075));
      background-repeat: no-repeat; }
    .vue-component .table.b-table.table-hover.table-dark > tbody > tr:hover > .bg-b-table-default {
      color: #fff;
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.075)), to(rgba(255, 255, 255, 0.075)));
      background-image: linear-gradient(rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.075));
      background-repeat: no-repeat; } }
  .vue-component .table.b-table > thead > tr > [aria-sort],
  .vue-component .table.b-table > tfoot > tr > [aria-sort] {
    cursor: pointer;
    background-image: none;
    background-repeat: no-repeat;
    background-size: 0.65em 1em; }
    .vue-component .table.b-table > thead > tr > [aria-sort]:not(.b-table-sort-icon-left),
    .vue-component .table.b-table > tfoot > tr > [aria-sort]:not(.b-table-sort-icon-left) {
      background-position: right calc(0.75rem / 2) center;
      padding-right: calc(0.75rem + 0.65em); }
    .vue-component .table.b-table > thead > tr > [aria-sort].b-table-sort-icon-left,
    .vue-component .table.b-table > tfoot > tr > [aria-sort].b-table-sort-icon-left {
      background-position: left calc(0.75rem / 2) center;
      padding-left: calc(0.75rem + 0.65em); }
  .vue-component .table.b-table > thead > tr > [aria-sort="none"],
  .vue-component .table.b-table > tfoot > tr > [aria-sort="none"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='black' opacity='.3' d='M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e"); }
  .vue-component .table.b-table > thead > tr > [aria-sort="ascending"],
  .vue-component .table.b-table > tfoot > tr > [aria-sort="ascending"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='black' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='black' opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e"); }
  .vue-component .table.b-table > thead > tr > [aria-sort="descending"],
  .vue-component .table.b-table > tfoot > tr > [aria-sort="descending"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='black' opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='black' d='M51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e"); }
  .vue-component .table.b-table.table-dark > thead > tr > [aria-sort="none"],
  .vue-component .table.b-table.table-dark > tfoot > tr > [aria-sort="none"],
  .vue-component .table.b-table > .thead-dark > tr > [aria-sort="none"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' opacity='.3' d='M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e"); }
  .vue-component .table.b-table.table-dark > thead > tr > [aria-sort="ascending"],
  .vue-component .table.b-table.table-dark > tfoot > tr > [aria-sort="ascending"],
  .vue-component .table.b-table > .thead-dark > tr > [aria-sort="ascending"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='white' opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e"); }
  .vue-component .table.b-table.table-dark > thead > tr > [aria-sort="descending"],
  .vue-component .table.b-table.table-dark > tfoot > tr > [aria-sort="descending"],
  .vue-component .table.b-table > .thead-dark > tr > [aria-sort="descending"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='white' d='M51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e"); }
  .vue-component .table.b-table > thead > tr > .table-dark[aria-sort="none"],
  .vue-component .table.b-table > tfoot > tr > .table-dark[aria-sort="none"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' opacity='.3' d='M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e"); }
  .vue-component .table.b-table > thead > tr > .table-dark[aria-sort="ascending"],
  .vue-component .table.b-table > tfoot > tr > .table-dark[aria-sort="ascending"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='white' opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e"); }
  .vue-component .table.b-table > thead > tr > .table-dark[aria-sort="descending"],
  .vue-component .table.b-table > tfoot > tr > .table-dark[aria-sort="descending"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='white' d='M51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e"); }
  .vue-component .table.b-table.table-sm > thead > tr > [aria-sort]:not(.b-table-sort-icon-left),
  .vue-component .table.b-table.table-sm > tfoot > tr > [aria-sort]:not(.b-table-sort-icon-left) {
    background-position: right calc(0.3rem / 2) center;
    padding-right: calc(0.3rem + 0.65em); }
  .vue-component .table.b-table.table-sm > thead > tr > [aria-sort].b-table-sort-icon-left,
  .vue-component .table.b-table.table-sm > tfoot > tr > [aria-sort].b-table-sort-icon-left {
    background-position: left calc(0.3rem / 2) center;
    padding-left: calc(0.3rem + 0.65em); }
  .vue-component .table.b-table.b-table-selectable:not(.b-table-selectable-no-click) > tbody > tr {
    cursor: pointer; }
  .vue-component .table.b-table.b-table-selectable:not(.b-table-selectable-no-click).b-table-selecting.b-table-select-range > tbody > tr {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  @media (max-width: 575.98px) {
    .vue-component .table.b-table.b-table-stacked-sm {
      display: block;
      width: 100%; }
      .vue-component .table.b-table.b-table-stacked-sm > caption,
      .vue-component .table.b-table.b-table-stacked-sm > tbody,
      .vue-component .table.b-table.b-table-stacked-sm > tbody > tr,
      .vue-component .table.b-table.b-table-stacked-sm > tbody > tr > td,
      .vue-component .table.b-table.b-table-stacked-sm > tbody > tr > th {
        display: block; }
      .vue-component .table.b-table.b-table-stacked-sm > thead,
      .vue-component .table.b-table.b-table-stacked-sm > tfoot {
        display: none; }
        .vue-component .table.b-table.b-table-stacked-sm > thead > tr.b-table-top-row,
        .vue-component .table.b-table.b-table-stacked-sm > thead > tr.b-table-bottom-row,
        .vue-component .table.b-table.b-table-stacked-sm > tfoot > tr.b-table-top-row,
        .vue-component .table.b-table.b-table-stacked-sm > tfoot > tr.b-table-bottom-row {
          display: none; }
      .vue-component .table.b-table.b-table-stacked-sm > caption {
        caption-side: top !important; }
      .vue-component .table.b-table.b-table-stacked-sm > tbody > tr > [data-label]::before {
        content: attr(data-label);
        width: 40%;
        float: left;
        text-align: right;
        overflow-wrap: break-word;
        font-weight: bold;
        font-style: normal;
        padding: 0 calc(1rem / 2) 0 0;
        margin: 0; }
      .vue-component .table.b-table.b-table-stacked-sm > tbody > tr > [data-label]::after {
        display: block;
        clear: both;
        content: ""; }
      .vue-component .table.b-table.b-table-stacked-sm > tbody > tr > [data-label] > div {
        display: inline-block;
        width: calc(100% - 40%);
        padding: 0 0 0 calc(1rem / 2);
        margin: 0; }
      .vue-component .table.b-table.b-table-stacked-sm > tbody > tr.top-row, .vue-component .table.b-table.b-table-stacked-sm > tbody > tr.bottom-row {
        display: none; }
      .vue-component .table.b-table.b-table-stacked-sm > tbody > tr > :first-child {
        border-top-width: 3px; }
      .vue-component .table.b-table.b-table-stacked-sm > tbody > tr > [rowspan] + td,
      .vue-component .table.b-table.b-table-stacked-sm > tbody > tr > [rowspan] + th {
        border-top-width: 3px; } }
  @media (max-width: 767.98px) {
    .vue-component .table.b-table.b-table-stacked-md {
      display: block;
      width: 100%; }
      .vue-component .table.b-table.b-table-stacked-md > caption,
      .vue-component .table.b-table.b-table-stacked-md > tbody,
      .vue-component .table.b-table.b-table-stacked-md > tbody > tr,
      .vue-component .table.b-table.b-table-stacked-md > tbody > tr > td,
      .vue-component .table.b-table.b-table-stacked-md > tbody > tr > th {
        display: block; }
      .vue-component .table.b-table.b-table-stacked-md > thead,
      .vue-component .table.b-table.b-table-stacked-md > tfoot {
        display: none; }
        .vue-component .table.b-table.b-table-stacked-md > thead > tr.b-table-top-row,
        .vue-component .table.b-table.b-table-stacked-md > thead > tr.b-table-bottom-row,
        .vue-component .table.b-table.b-table-stacked-md > tfoot > tr.b-table-top-row,
        .vue-component .table.b-table.b-table-stacked-md > tfoot > tr.b-table-bottom-row {
          display: none; }
      .vue-component .table.b-table.b-table-stacked-md > caption {
        caption-side: top !important; }
      .vue-component .table.b-table.b-table-stacked-md > tbody > tr > [data-label]::before {
        content: attr(data-label);
        width: 40%;
        float: left;
        text-align: right;
        overflow-wrap: break-word;
        font-weight: bold;
        font-style: normal;
        padding: 0 calc(1rem / 2) 0 0;
        margin: 0; }
      .vue-component .table.b-table.b-table-stacked-md > tbody > tr > [data-label]::after {
        display: block;
        clear: both;
        content: ""; }
      .vue-component .table.b-table.b-table-stacked-md > tbody > tr > [data-label] > div {
        display: inline-block;
        width: calc(100% - 40%);
        padding: 0 0 0 calc(1rem / 2);
        margin: 0; }
      .vue-component .table.b-table.b-table-stacked-md > tbody > tr.top-row, .vue-component .table.b-table.b-table-stacked-md > tbody > tr.bottom-row {
        display: none; }
      .vue-component .table.b-table.b-table-stacked-md > tbody > tr > :first-child {
        border-top-width: 3px; }
      .vue-component .table.b-table.b-table-stacked-md > tbody > tr > [rowspan] + td,
      .vue-component .table.b-table.b-table-stacked-md > tbody > tr > [rowspan] + th {
        border-top-width: 3px; } }
  @media (max-width: 991.98px) {
    .vue-component .table.b-table.b-table-stacked-lg {
      display: block;
      width: 100%; }
      .vue-component .table.b-table.b-table-stacked-lg > caption,
      .vue-component .table.b-table.b-table-stacked-lg > tbody,
      .vue-component .table.b-table.b-table-stacked-lg > tbody > tr,
      .vue-component .table.b-table.b-table-stacked-lg > tbody > tr > td,
      .vue-component .table.b-table.b-table-stacked-lg > tbody > tr > th {
        display: block; }
      .vue-component .table.b-table.b-table-stacked-lg > thead,
      .vue-component .table.b-table.b-table-stacked-lg > tfoot {
        display: none; }
        .vue-component .table.b-table.b-table-stacked-lg > thead > tr.b-table-top-row,
        .vue-component .table.b-table.b-table-stacked-lg > thead > tr.b-table-bottom-row,
        .vue-component .table.b-table.b-table-stacked-lg > tfoot > tr.b-table-top-row,
        .vue-component .table.b-table.b-table-stacked-lg > tfoot > tr.b-table-bottom-row {
          display: none; }
      .vue-component .table.b-table.b-table-stacked-lg > caption {
        caption-side: top !important; }
      .vue-component .table.b-table.b-table-stacked-lg > tbody > tr > [data-label]::before {
        content: attr(data-label);
        width: 40%;
        float: left;
        text-align: right;
        overflow-wrap: break-word;
        font-weight: bold;
        font-style: normal;
        padding: 0 calc(1rem / 2) 0 0;
        margin: 0; }
      .vue-component .table.b-table.b-table-stacked-lg > tbody > tr > [data-label]::after {
        display: block;
        clear: both;
        content: ""; }
      .vue-component .table.b-table.b-table-stacked-lg > tbody > tr > [data-label] > div {
        display: inline-block;
        width: calc(100% - 40%);
        padding: 0 0 0 calc(1rem / 2);
        margin: 0; }
      .vue-component .table.b-table.b-table-stacked-lg > tbody > tr.top-row, .vue-component .table.b-table.b-table-stacked-lg > tbody > tr.bottom-row {
        display: none; }
      .vue-component .table.b-table.b-table-stacked-lg > tbody > tr > :first-child {
        border-top-width: 3px; }
      .vue-component .table.b-table.b-table-stacked-lg > tbody > tr > [rowspan] + td,
      .vue-component .table.b-table.b-table-stacked-lg > tbody > tr > [rowspan] + th {
        border-top-width: 3px; } }
  @media (max-width: 1199.98px) {
    .vue-component .table.b-table.b-table-stacked-xl {
      display: block;
      width: 100%; }
      .vue-component .table.b-table.b-table-stacked-xl > caption,
      .vue-component .table.b-table.b-table-stacked-xl > tbody,
      .vue-component .table.b-table.b-table-stacked-xl > tbody > tr,
      .vue-component .table.b-table.b-table-stacked-xl > tbody > tr > td,
      .vue-component .table.b-table.b-table-stacked-xl > tbody > tr > th {
        display: block; }
      .vue-component .table.b-table.b-table-stacked-xl > thead,
      .vue-component .table.b-table.b-table-stacked-xl > tfoot {
        display: none; }
        .vue-component .table.b-table.b-table-stacked-xl > thead > tr.b-table-top-row,
        .vue-component .table.b-table.b-table-stacked-xl > thead > tr.b-table-bottom-row,
        .vue-component .table.b-table.b-table-stacked-xl > tfoot > tr.b-table-top-row,
        .vue-component .table.b-table.b-table-stacked-xl > tfoot > tr.b-table-bottom-row {
          display: none; }
      .vue-component .table.b-table.b-table-stacked-xl > caption {
        caption-side: top !important; }
      .vue-component .table.b-table.b-table-stacked-xl > tbody > tr > [data-label]::before {
        content: attr(data-label);
        width: 40%;
        float: left;
        text-align: right;
        overflow-wrap: break-word;
        font-weight: bold;
        font-style: normal;
        padding: 0 calc(1rem / 2) 0 0;
        margin: 0; }
      .vue-component .table.b-table.b-table-stacked-xl > tbody > tr > [data-label]::after {
        display: block;
        clear: both;
        content: ""; }
      .vue-component .table.b-table.b-table-stacked-xl > tbody > tr > [data-label] > div {
        display: inline-block;
        width: calc(100% - 40%);
        padding: 0 0 0 calc(1rem / 2);
        margin: 0; }
      .vue-component .table.b-table.b-table-stacked-xl > tbody > tr.top-row, .vue-component .table.b-table.b-table-stacked-xl > tbody > tr.bottom-row {
        display: none; }
      .vue-component .table.b-table.b-table-stacked-xl > tbody > tr > :first-child {
        border-top-width: 3px; }
      .vue-component .table.b-table.b-table-stacked-xl > tbody > tr > [rowspan] + td,
      .vue-component .table.b-table.b-table-stacked-xl > tbody > tr > [rowspan] + th {
        border-top-width: 3px; } }
  .vue-component .table.b-table.b-table-stacked {
    display: block;
    width: 100%; }
    .vue-component .table.b-table.b-table-stacked > caption,
    .vue-component .table.b-table.b-table-stacked > tbody,
    .vue-component .table.b-table.b-table-stacked > tbody > tr,
    .vue-component .table.b-table.b-table-stacked > tbody > tr > td,
    .vue-component .table.b-table.b-table-stacked > tbody > tr > th {
      display: block; }
    .vue-component .table.b-table.b-table-stacked > thead,
    .vue-component .table.b-table.b-table-stacked > tfoot {
      display: none; }
      .vue-component .table.b-table.b-table-stacked > thead > tr.b-table-top-row,
      .vue-component .table.b-table.b-table-stacked > thead > tr.b-table-bottom-row,
      .vue-component .table.b-table.b-table-stacked > tfoot > tr.b-table-top-row,
      .vue-component .table.b-table.b-table-stacked > tfoot > tr.b-table-bottom-row {
        display: none; }
    .vue-component .table.b-table.b-table-stacked > caption {
      caption-side: top !important; }
    .vue-component .table.b-table.b-table-stacked > tbody > tr > [data-label]::before {
      content: attr(data-label);
      width: 40%;
      float: left;
      text-align: right;
      overflow-wrap: break-word;
      font-weight: bold;
      font-style: normal;
      padding: 0 calc(1rem / 2) 0 0;
      margin: 0; }
    .vue-component .table.b-table.b-table-stacked > tbody > tr > [data-label]::after {
      display: block;
      clear: both;
      content: ""; }
    .vue-component .table.b-table.b-table-stacked > tbody > tr > [data-label] > div {
      display: inline-block;
      width: calc(100% - 40%);
      padding: 0 0 0 calc(1rem / 2);
      margin: 0; }
    .vue-component .table.b-table.b-table-stacked > tbody > tr.top-row, .vue-component .table.b-table.b-table-stacked > tbody > tr.bottom-row {
      display: none; }
    .vue-component .table.b-table.b-table-stacked > tbody > tr > :first-child {
      border-top-width: 3px; }
    .vue-component .table.b-table.b-table-stacked > tbody > tr > [rowspan] + td,
    .vue-component .table.b-table.b-table-stacked > tbody > tr > [rowspan] + th {
      border-top-width: 3px; }
  .vue-component .b-time {
    min-width: 150px; }
    .vue-component .b-time[aria-disabled="true"] output,
    .vue-component .b-time[aria-readonly="true"] output,
    .vue-component .b-time output.disabled {
      background-color: #e9ecef;
      opacity: 1; }
    .vue-component .b-time[aria-disabled="true"] output {
      pointer-events: none; }
    [dir="rtl"] .vue-component .b-time > .d-flex:not(.flex-column) {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
    .vue-component .b-time .b-time-header {
      margin-bottom: 0.5rem; }
      .vue-component .b-time .b-time-header output {
        padding: 0.25rem;
        font-size: 80%; }
    .vue-component .b-time .b-time-footer {
      margin-top: 0.5rem; }
    .vue-component .b-time .b-time-ampm {
      margin-left: 0.5rem; }
  .vue-component .b-toast {
    display: block;
    position: relative;
    max-width: 350px;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    background-clip: padding-box;
    z-index: 1;
    border-radius: 0.25rem; }
    .vue-component .b-toast .toast {
      background-color: rgba(255, 255, 255, 0.85); }
    .vue-component .b-toast:not(:last-child) {
      margin-bottom: 0.75rem; }
    .vue-component .b-toast.b-toast-solid .toast {
      background-color: white; }
    .vue-component .b-toast .toast {
      opacity: 1; }
      .vue-component .b-toast .toast.fade:not(.show) {
        opacity: 0; }
      .vue-component .b-toast .toast .toast-body {
        display: block; }
  .vue-component .b-toast-primary .toast {
    background-color: rgba(230, 242, 255, 0.85);
    border-color: rgba(184, 218, 255, 0.85);
    color: #004085; }
    .vue-component .b-toast-primary .toast .toast-header {
      color: #004085;
      background-color: rgba(204, 229, 255, 0.85);
      border-bottom-color: rgba(184, 218, 255, 0.85); }
  .vue-component .b-toast-primary.b-toast-solid .toast {
    background-color: #e6f2ff; }
  .vue-component .b-toast-secondary .toast {
    background-color: rgba(239, 240, 241, 0.85);
    border-color: rgba(214, 216, 219, 0.85);
    color: #383d41; }
    .vue-component .b-toast-secondary .toast .toast-header {
      color: #383d41;
      background-color: rgba(226, 227, 229, 0.85);
      border-bottom-color: rgba(214, 216, 219, 0.85); }
  .vue-component .b-toast-secondary.b-toast-solid .toast {
    background-color: #eff0f1; }
  .vue-component .b-toast-success .toast {
    background-color: rgba(230, 245, 233, 0.85);
    border-color: rgba(195, 230, 203, 0.85);
    color: #155724; }
    .vue-component .b-toast-success .toast .toast-header {
      color: #155724;
      background-color: rgba(212, 237, 218, 0.85);
      border-bottom-color: rgba(195, 230, 203, 0.85); }
  .vue-component .b-toast-success.b-toast-solid .toast {
    background-color: #e6f5e9; }
  .vue-component .b-toast-info .toast {
    background-color: rgba(229, 244, 247, 0.85);
    border-color: rgba(190, 229, 235, 0.85);
    color: #0c5460; }
    .vue-component .b-toast-info .toast .toast-header {
      color: #0c5460;
      background-color: rgba(209, 236, 241, 0.85);
      border-bottom-color: rgba(190, 229, 235, 0.85); }
  .vue-component .b-toast-info.b-toast-solid .toast {
    background-color: #e5f4f7; }
  .vue-component .b-toast-warning .toast {
    background-color: rgba(255, 249, 231, 0.85);
    border-color: rgba(255, 238, 186, 0.85);
    color: #856404; }
    .vue-component .b-toast-warning .toast .toast-header {
      color: #856404;
      background-color: rgba(255, 243, 205, 0.85);
      border-bottom-color: rgba(255, 238, 186, 0.85); }
  .vue-component .b-toast-warning.b-toast-solid .toast {
    background-color: #fff9e7; }
  .vue-component .b-toast-danger .toast {
    background-color: rgba(252, 237, 238, 0.85);
    border-color: rgba(245, 198, 203, 0.85);
    color: #721c24; }
    .vue-component .b-toast-danger .toast .toast-header {
      color: #721c24;
      background-color: rgba(248, 215, 218, 0.85);
      border-bottom-color: rgba(245, 198, 203, 0.85); }
  .vue-component .b-toast-danger.b-toast-solid .toast {
    background-color: #fcedee; }
  .vue-component .b-toast-light .toast {
    background-color: rgba(255, 255, 255, 0.85);
    border-color: rgba(253, 253, 254, 0.85);
    color: #818182; }
    .vue-component .b-toast-light .toast .toast-header {
      color: #818182;
      background-color: rgba(254, 254, 254, 0.85);
      border-bottom-color: rgba(253, 253, 254, 0.85); }
  .vue-component .b-toast-light.b-toast-solid .toast {
    background-color: white; }
  .vue-component .b-toast-dark .toast {
    background-color: rgba(227, 229, 229, 0.85);
    border-color: rgba(198, 200, 202, 0.85);
    color: #1b1e21; }
    .vue-component .b-toast-dark .toast .toast-header {
      color: #1b1e21;
      background-color: rgba(214, 216, 217, 0.85);
      border-bottom-color: rgba(198, 200, 202, 0.85); }
  .vue-component .b-toast-dark.b-toast-solid .toast {
    background-color: #e3e5e5; }
  .vue-component .b-toaster {
    z-index: 1100; }
    .vue-component .b-toaster .b-toaster-slot {
      position: relative;
      display: block; }
      .vue-component .b-toaster .b-toaster-slot:empty {
        display: none !important; }
  .vue-component .b-toaster.b-toaster-top-right, .vue-component .b-toaster.b-toaster-top-left, .vue-component .b-toaster.b-toaster-top-center, .vue-component .b-toaster.b-toaster-top-full, .vue-component .b-toaster.b-toaster-bottom-right, .vue-component .b-toaster.b-toaster-bottom-left, .vue-component .b-toaster.b-toaster-bottom-center, .vue-component .b-toaster.b-toaster-bottom-full {
    position: fixed;
    left: 0.5rem;
    right: 0.5rem;
    margin: 0;
    padding: 0;
    height: 0;
    overflow: visible; }
    .vue-component .b-toaster.b-toaster-top-right .b-toaster-slot, .vue-component .b-toaster.b-toaster-top-left .b-toaster-slot, .vue-component .b-toaster.b-toaster-top-center .b-toaster-slot, .vue-component .b-toaster.b-toaster-top-full .b-toaster-slot, .vue-component .b-toaster.b-toaster-bottom-right .b-toaster-slot, .vue-component .b-toaster.b-toaster-bottom-left .b-toaster-slot, .vue-component .b-toaster.b-toaster-bottom-center .b-toaster-slot, .vue-component .b-toaster.b-toaster-bottom-full .b-toaster-slot {
      position: absolute;
      max-width: 350px;
      width: 100%;
      /* IE 11 fix */
      left: 0;
      right: 0;
      padding: 0;
      margin: 0; }
  .vue-component .b-toaster.b-toaster-top-full .b-toaster-slot, .vue-component .b-toaster.b-toaster-bottom-full .b-toaster-slot {
    width: 100%;
    max-width: 100%; }
    .vue-component .b-toaster.b-toaster-top-full .b-toaster-slot .b-toast,
    .vue-component .b-toaster.b-toaster-top-full .b-toaster-slot .toast, .vue-component .b-toaster.b-toaster-bottom-full .b-toaster-slot .b-toast,
    .vue-component .b-toaster.b-toaster-bottom-full .b-toaster-slot .toast {
      width: 100%;
      max-width: 100%; }
  .vue-component .b-toaster.b-toaster-top-right, .vue-component .b-toaster.b-toaster-top-left, .vue-component .b-toaster.b-toaster-top-center, .vue-component .b-toaster.b-toaster-top-full {
    top: 0; }
    .vue-component .b-toaster.b-toaster-top-right .b-toaster-slot, .vue-component .b-toaster.b-toaster-top-left .b-toaster-slot, .vue-component .b-toaster.b-toaster-top-center .b-toaster-slot, .vue-component .b-toaster.b-toaster-top-full .b-toaster-slot {
      top: 0.5rem; }
  .vue-component .b-toaster.b-toaster-bottom-right, .vue-component .b-toaster.b-toaster-bottom-left, .vue-component .b-toaster.b-toaster-bottom-center, .vue-component .b-toaster.b-toaster-bottom-full {
    bottom: 0; }
    .vue-component .b-toaster.b-toaster-bottom-right .b-toaster-slot, .vue-component .b-toaster.b-toaster-bottom-left .b-toaster-slot, .vue-component .b-toaster.b-toaster-bottom-center .b-toaster-slot, .vue-component .b-toaster.b-toaster-bottom-full .b-toaster-slot {
      bottom: 0.5rem; }
  .vue-component .b-toaster.b-toaster-top-right .b-toaster-slot, .vue-component .b-toaster.b-toaster-bottom-right .b-toaster-slot, .vue-component .b-toaster.b-toaster-top-center .b-toaster-slot, .vue-component .b-toaster.b-toaster-bottom-center .b-toaster-slot {
    margin-left: auto; }
  .vue-component .b-toaster.b-toaster-top-left .b-toaster-slot, .vue-component .b-toaster.b-toaster-bottom-left .b-toaster-slot, .vue-component .b-toaster.b-toaster-top-center .b-toaster-slot, .vue-component .b-toaster.b-toaster-bottom-center .b-toaster-slot {
    margin-right: auto; }
  .vue-component .b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active, .vue-component .b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active, .vue-component .b-toaster.b-toaster-top-right .b-toast.b-toaster-move, .vue-component .b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active, .vue-component .b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active, .vue-component .b-toaster.b-toaster-top-left .b-toast.b-toaster-move, .vue-component .b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active, .vue-component .b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active, .vue-component .b-toaster.b-toaster-bottom-right .b-toast.b-toaster-move, .vue-component .b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active, .vue-component .b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active, .vue-component .b-toaster.b-toaster-bottom-left .b-toast.b-toaster-move {
    -webkit-transition: -webkit-transform 0.175s;
    transition: -webkit-transform 0.175s;
    transition: transform 0.175s;
    transition: transform 0.175s, -webkit-transform 0.175s; }
  .vue-component .b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-to .toast.fade, .vue-component .b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active .toast.fade, .vue-component .b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-to .toast.fade, .vue-component .b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active .toast.fade, .vue-component .b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-to .toast.fade, .vue-component .b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active .toast.fade, .vue-component .b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-to .toast.fade, .vue-component .b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active .toast.fade {
    -webkit-transition-delay: 0.175s;
            transition-delay: 0.175s; }
  .vue-component .b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active, .vue-component .b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active, .vue-component .b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active, .vue-component .b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active {
    position: absolute;
    -webkit-transition-delay: 0.175s;
            transition-delay: 0.175s; }
    .vue-component .b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active .toast.fade, .vue-component .b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active .toast.fade, .vue-component .b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active .toast.fade, .vue-component .b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active .toast.fade {
      -webkit-transition-delay: 0s;
              transition-delay: 0s; }
  .vue-component .tooltip.b-tooltip {
    display: block;
    opacity: 0.9;
    outline: 0; }
    .vue-component .tooltip.b-tooltip.fade:not(.show) {
      opacity: 0; }
    .vue-component .tooltip.b-tooltip.show {
      opacity: 0.9; }
    .vue-component .tooltip.b-tooltip.noninteractive {
      pointer-events: none; }
    .vue-component .tooltip.b-tooltip .arrow {
      margin: 0 0.25rem; }
    .vue-component .tooltip.b-tooltip.bs-tooltip-right .arrow, .vue-component .tooltip.b-tooltip.bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip.bs-tooltip-left .arrow, .vue-component .tooltip.b-tooltip.bs-tooltip-auto[x-placement^="left"] .arrow {
      margin: 0.25rem 0; }
  .vue-component .tooltip.b-tooltip-primary.bs-tooltip-top .arrow::before, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #007bff; }
  .vue-component .tooltip.b-tooltip-primary.bs-tooltip-right .arrow::before, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    border-right-color: #007bff; }
  .vue-component .tooltip.b-tooltip-primary.bs-tooltip-bottom .arrow::before, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: #007bff; }
  .vue-component .tooltip.b-tooltip-primary.bs-tooltip-left .arrow::before, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    border-left-color: #007bff; }
  .vue-component .tooltip.b-tooltip-primary .tooltip-inner {
    color: #fff;
    background-color: #007bff; }
  .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-top .arrow::before, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #6c757d; }
  .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-right .arrow::before, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    border-right-color: #6c757d; }
  .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-bottom .arrow::before, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: #6c757d; }
  .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-left .arrow::before, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    border-left-color: #6c757d; }
  .vue-component .tooltip.b-tooltip-secondary .tooltip-inner {
    color: #fff;
    background-color: #6c757d; }
  .vue-component .tooltip.b-tooltip-success.bs-tooltip-top .arrow::before, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #28a745; }
  .vue-component .tooltip.b-tooltip-success.bs-tooltip-right .arrow::before, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    border-right-color: #28a745; }
  .vue-component .tooltip.b-tooltip-success.bs-tooltip-bottom .arrow::before, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: #28a745; }
  .vue-component .tooltip.b-tooltip-success.bs-tooltip-left .arrow::before, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    border-left-color: #28a745; }
  .vue-component .tooltip.b-tooltip-success .tooltip-inner {
    color: #fff;
    background-color: #28a745; }
  .vue-component .tooltip.b-tooltip-info.bs-tooltip-top .arrow::before, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #17a2b8; }
  .vue-component .tooltip.b-tooltip-info.bs-tooltip-right .arrow::before, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    border-right-color: #17a2b8; }
  .vue-component .tooltip.b-tooltip-info.bs-tooltip-bottom .arrow::before, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: #17a2b8; }
  .vue-component .tooltip.b-tooltip-info.bs-tooltip-left .arrow::before, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    border-left-color: #17a2b8; }
  .vue-component .tooltip.b-tooltip-info .tooltip-inner {
    color: #fff;
    background-color: #17a2b8; }
  .vue-component .tooltip.b-tooltip-warning.bs-tooltip-top .arrow::before, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #ffc107; }
  .vue-component .tooltip.b-tooltip-warning.bs-tooltip-right .arrow::before, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    border-right-color: #ffc107; }
  .vue-component .tooltip.b-tooltip-warning.bs-tooltip-bottom .arrow::before, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: #ffc107; }
  .vue-component .tooltip.b-tooltip-warning.bs-tooltip-left .arrow::before, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    border-left-color: #ffc107; }
  .vue-component .tooltip.b-tooltip-warning .tooltip-inner {
    color: #212529;
    background-color: #ffc107; }
  .vue-component .tooltip.b-tooltip-danger.bs-tooltip-top .arrow::before, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #dc3545; }
  .vue-component .tooltip.b-tooltip-danger.bs-tooltip-right .arrow::before, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    border-right-color: #dc3545; }
  .vue-component .tooltip.b-tooltip-danger.bs-tooltip-bottom .arrow::before, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: #dc3545; }
  .vue-component .tooltip.b-tooltip-danger.bs-tooltip-left .arrow::before, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    border-left-color: #dc3545; }
  .vue-component .tooltip.b-tooltip-danger .tooltip-inner {
    color: #fff;
    background-color: #dc3545; }
  .vue-component .tooltip.b-tooltip-light.bs-tooltip-top .arrow::before, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #f8f9fa; }
  .vue-component .tooltip.b-tooltip-light.bs-tooltip-right .arrow::before, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    border-right-color: #f8f9fa; }
  .vue-component .tooltip.b-tooltip-light.bs-tooltip-bottom .arrow::before, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: #f8f9fa; }
  .vue-component .tooltip.b-tooltip-light.bs-tooltip-left .arrow::before, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    border-left-color: #f8f9fa; }
  .vue-component .tooltip.b-tooltip-light .tooltip-inner {
    color: #212529;
    background-color: #f8f9fa; }
  .vue-component .tooltip.b-tooltip-dark.bs-tooltip-top .arrow::before, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #343a40; }
  .vue-component .tooltip.b-tooltip-dark.bs-tooltip-right .arrow::before, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    border-right-color: #343a40; }
  .vue-component .tooltip.b-tooltip-dark.bs-tooltip-bottom .arrow::before, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: #343a40; }
  .vue-component .tooltip.b-tooltip-dark.bs-tooltip-left .arrow::before, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    border-left-color: #343a40; }
  .vue-component .tooltip.b-tooltip-dark .tooltip-inner {
    color: #fff;
    background-color: #343a40; }
  .vue-component .b-icon.bi {
    display: inline-block;
    overflow: visible;
    vertical-align: -0.15em; }
  .vue-component .b-icon.b-icon-animation-cylon,
  .vue-component .b-icon.b-iconstack .b-icon-animation-cylon > g {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-animation: 0.75s infinite ease-in-out alternate b-icon-animation-cylon;
            animation: 0.75s infinite ease-in-out alternate b-icon-animation-cylon; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .b-icon.b-icon-animation-cylon,
      .vue-component .b-icon.b-iconstack .b-icon-animation-cylon > g {
        -webkit-animation: none;
                animation: none; } }
  .vue-component .b-icon.b-icon-animation-cylon-vertical,
  .vue-component .b-icon.b-iconstack .b-icon-animation-cylon-vertical > g {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-animation: 0.75s infinite ease-in-out alternate b-icon-animation-cylon-vertical;
            animation: 0.75s infinite ease-in-out alternate b-icon-animation-cylon-vertical; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .b-icon.b-icon-animation-cylon-vertical,
      .vue-component .b-icon.b-iconstack .b-icon-animation-cylon-vertical > g {
        -webkit-animation: none;
                animation: none; } }
  .vue-component .b-icon.b-icon-animation-fade,
  .vue-component .b-icon.b-iconstack .b-icon-animation-fade > g {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-animation: 0.75s infinite ease-in-out alternate b-icon-animation-fade;
            animation: 0.75s infinite ease-in-out alternate b-icon-animation-fade; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .b-icon.b-icon-animation-fade,
      .vue-component .b-icon.b-iconstack .b-icon-animation-fade > g {
        -webkit-animation: none;
                animation: none; } }
  .vue-component .b-icon.b-icon-animation-spin,
  .vue-component .b-icon.b-iconstack .b-icon-animation-spin > g {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-animation: 2s infinite linear normal b-icon-animation-spin;
            animation: 2s infinite linear normal b-icon-animation-spin; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .b-icon.b-icon-animation-spin,
      .vue-component .b-icon.b-iconstack .b-icon-animation-spin > g {
        -webkit-animation: none;
                animation: none; } }
  .vue-component .b-icon.b-icon-animation-spin-reverse,
  .vue-component .b-icon.b-iconstack .b-icon-animation-spin-reverse > g {
    -webkit-transform-origin: center;
            transform-origin: center;
    animation: 2s infinite linear reverse b-icon-animation-spin; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .b-icon.b-icon-animation-spin-reverse,
      .vue-component .b-icon.b-iconstack .b-icon-animation-spin-reverse > g {
        -webkit-animation: none;
                animation: none; } }
  .vue-component .b-icon.b-icon-animation-spin-pulse,
  .vue-component .b-icon.b-iconstack .b-icon-animation-spin-pulse > g {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-animation: 1s infinite steps(8) normal b-icon-animation-spin;
            animation: 1s infinite steps(8) normal b-icon-animation-spin; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .b-icon.b-icon-animation-spin-pulse,
      .vue-component .b-icon.b-iconstack .b-icon-animation-spin-pulse > g {
        -webkit-animation: none;
                animation: none; } }
  .vue-component .b-icon.b-icon-animation-spin-reverse-pulse,
  .vue-component .b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse > g {
    -webkit-transform-origin: center;
            transform-origin: center;
    animation: 1s infinite steps(8) reverse b-icon-animation-spin; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .b-icon.b-icon-animation-spin-reverse-pulse,
      .vue-component .b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse > g {
        -webkit-animation: none;
                animation: none; } }
  .vue-component .b-icon.b-icon-animation-throb,
  .vue-component .b-icon.b-iconstack .b-icon-animation-throb > g {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-animation: 0.75s infinite ease-in-out alternate b-icon-animation-throb;
            animation: 0.75s infinite ease-in-out alternate b-icon-animation-throb; }
    @media (prefers-reduced-motion: reduce) {
      .vue-component .b-icon.b-icon-animation-throb,
      .vue-component .b-icon.b-iconstack .b-icon-animation-throb > g {
        -webkit-animation: none;
                animation: none; } }

@-webkit-keyframes b-icon-animation-cylon {
  0% {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%); }
  100% {
    -webkit-transform: translateX(25%);
            transform: translateX(25%); } }

@keyframes b-icon-animation-cylon {
  0% {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%); }
  100% {
    -webkit-transform: translateX(25%);
            transform: translateX(25%); } }

@-webkit-keyframes b-icon-animation-cylon-vertical {
  0% {
    -webkit-transform: translateY(25%);
            transform: translateY(25%); }
  100% {
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%); } }

@keyframes b-icon-animation-cylon-vertical {
  0% {
    -webkit-transform: translateY(25%);
            transform: translateY(25%); }
  100% {
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%); } }

@-webkit-keyframes b-icon-animation-fade {
  0% {
    opacity: 0.1; }
  100% {
    opacity: 1; } }

@keyframes b-icon-animation-fade {
  0% {
    opacity: 0.1; }
  100% {
    opacity: 1; } }

@-webkit-keyframes b-icon-animation-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg); } }

@keyframes b-icon-animation-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg); } }

@-webkit-keyframes b-icon-animation-throb {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(0.5);
            transform: scale(0.5); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes b-icon-animation-throb {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(0.5);
            transform: scale(0.5); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }
  .vue-component .btn .b-icon.bi,
  .vue-component .nav-link .b-icon.bi,
  .vue-component .dropdown-toggle .b-icon.bi,
  .vue-component .dropdown-item .b-icon.bi,
  .vue-component .input-group-text .b-icon.bi {
    font-size: 125%;
    vertical-align: text-bottom; }

.tooltip {
  opacity: 1 !important; }
  .tooltip .arrow {
    opacity: 1 !important; }
  .tooltip .tooltip-inner {
    max-width: 320px; }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,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-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: .875rem;
  word-wrap: break-word;
  opacity: 0; }
  .tooltip .arrow {
    position: absolute;
    display: block;
    width: .8rem;
    height: .4rem; }
    .tooltip .arrow:before {
      content: '';
      position: absolute;
      border-color: transparent;
      border-style: solid; }

.tooltip.show {
  opacity: .9; }

.bs-tooltip-auto[x-placement^=top] {
  padding: .4rem 0; }
  .bs-tooltip-auto[x-placement^=top] .arrow {
    bottom: 0; }
    .bs-tooltip-auto[x-placement^=top] .arrow:before {
      border-top-color: #000; }

.bs-tooltip-top, .vue-component .bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="top"], .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="top"] {
  padding: .4rem 0; }
  .bs-tooltip-top .arrow, .vue-component .bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="top"] .arrow, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="top"] .arrow {
    bottom: 0; }
    .bs-tooltip-top .arrow:before, .vue-component .bs-tooltip-auto[x-placement^="top"] .arrow:before, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="top"] .arrow:before, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="top"] .arrow:before, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="top"] .arrow:before, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="top"] .arrow:before, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="top"] .arrow:before, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="top"] .arrow:before, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="top"] .arrow:before, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="top"] .arrow:before {
      border-top-color: #000; }

.bs-tooltip-auto[x-placement^=right] {
  padding: 0 .4rem; }
  .bs-tooltip-auto[x-placement^=right] .arrow {
    left: 0;
    width: .4rem;
    height: .8rem; }
    .bs-tooltip-auto[x-placement^=right] .arrow:before {
      right: 0;
      border-width: .4rem .4rem .4rem 0;
      border-right-color: #000; }

.bs-tooltip-right, .vue-component .bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="right"], .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="right"] {
  padding: 0 .4rem; }
  .bs-tooltip-right .arrow, .vue-component .bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="right"] .arrow, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="right"] .arrow {
    left: 0;
    width: .4rem;
    height: .8rem; }
    .bs-tooltip-right .arrow:before, .vue-component .bs-tooltip-auto[x-placement^="right"] .arrow:before, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="right"] .arrow:before, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="right"] .arrow:before, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="right"] .arrow:before, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="right"] .arrow:before, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="right"] .arrow:before, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="right"] .arrow:before, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="right"] .arrow:before, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="right"] .arrow:before {
      right: 0;
      border-width: .4rem .4rem .4rem 0;
      border-right-color: #000; }

.bs-tooltip-auto[x-placement^=bottom] {
  padding: .4rem 0; }
  .bs-tooltip-auto[x-placement^=bottom] .arrow {
    top: 0; }
    .bs-tooltip-auto[x-placement^=bottom] .arrow:before {
      bottom: 0;
      border-width: 0 .4rem .4rem;
      border-bottom-color: #000; }

.bs-tooltip-bottom, .vue-component .bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="bottom"], .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="bottom"] {
  padding: .4rem 0; }
  .bs-tooltip-bottom .arrow, .vue-component .bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="bottom"] .arrow, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="bottom"] .arrow {
    top: 0; }
    .bs-tooltip-bottom .arrow:before, .vue-component .bs-tooltip-auto[x-placement^="bottom"] .arrow:before, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="bottom"] .arrow:before, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="bottom"] .arrow:before, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="bottom"] .arrow:before, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="bottom"] .arrow:before, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="bottom"] .arrow:before, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="bottom"] .arrow:before, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="bottom"] .arrow:before, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="bottom"] .arrow:before {
      bottom: 0;
      border-width: 0 .4rem .4rem;
      border-bottom-color: #000; }

.bs-tooltip-auto[x-placement^=left] {
  padding: 0 .4rem; }
  .bs-tooltip-auto[x-placement^=left] .arrow {
    right: 0;
    width: .4rem;
    height: .8rem; }
    .bs-tooltip-auto[x-placement^=left] .arrow:before {
      left: 0;
      border-width: .4rem 0 .4rem .4rem;
      border-left-color: #000; }

.bs-tooltip-left, .vue-component .bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="left"], .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="left"] {
  padding: 0 .4rem; }
  .bs-tooltip-left .arrow, .vue-component .bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="left"] .arrow, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="left"] .arrow {
    right: 0;
    width: .4rem;
    height: .8rem; }
    .bs-tooltip-left .arrow:before, .vue-component .bs-tooltip-auto[x-placement^="left"] .arrow:before, .vue-component .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="left"] .arrow:before, .vue-component .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="left"] .arrow:before, .vue-component .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="left"] .arrow:before, .vue-component .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="left"] .arrow:before, .vue-component .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="left"] .arrow:before, .vue-component .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="left"] .arrow:before, .vue-component .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="left"] .arrow:before, .vue-component .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="left"] .arrow:before {
      left: 0;
      border-width: .4rem 0 .4rem .4rem;
      border-left-color: #000; }

.tooltip-inner {
  max-width: 200px;
  padding: .25rem .5rem;
  color: #fff;
  text-align: center;
  background-color: var(--base-color-text) !important;
  border-radius: .25rem; }
.loader-container[data-v-03326c2c] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.animation-all-linear[data-v-2686ace7] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-2686ace7] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-2686ace7] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.files-dropdown-file[data-v-2686ace7] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFFFFF;
  border: solid 1px #62B9F1;
  border-radius: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  min-height: 39px;
  opacity: 1;
  position: relative;
  -webkit-transition: all 1s;
  transition: all 1s;
  width: 370px;
  -webkit-user-select: none;
}
.files-dropdown-file.draggable[data-v-2686ace7]:not(.error) {
    cursor: move;
}
.files-dropdown-file.draggable.error[data-v-2686ace7] {
    cursor: default;
}
.files-dropdown-file.dragging[data-v-2686ace7] {
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
            box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.files-dropdown-file.dragging .file-button[data-v-2686ace7] {
      display: none;
}
.files-dropdown-file .file-button[data-v-2686ace7] {
    cursor: pointer;
    color: var(--base-color-primary);
    display: inline-block;
    font-size: 20px;
}
.files-dropdown-file .file-button.icon-eye[data-v-2686ace7] {
      margin-right: 5px;
}
.files-dropdown-file[data-v-2686ace7]:hover {
    border-width: 2px;
}
.files-dropdown-file.highlighted[data-v-2686ace7] {
    background-color: #FAF7E4;
}
.files-dropdown-file.error[data-v-2686ace7] {
    border-color: #ff0202;
}
.files-dropdown-file.error .failed-file[data-v-2686ace7] {
      color: #ff0202;
      margin-right: 3px;
}
.files-dropdown-file.virused[data-v-2686ace7] {
    border-color: #ff0202;
}
.files-dropdown-file.virused .failed-file[data-v-2686ace7] {
      color: #ff0202;
      margin-right: 3px;
}
.files-dropdown-file.uploaded[data-v-2686ace7] {
    overflow: hidden;
}
.files-dropdown-file.uploaded .upload_status[data-v-2686ace7] {
      background-color: #62B9F1;
      width: 50%;
}
.files-dropdown-file.scanning[data-v-2686ace7] {
    overflow: hidden;
    border-color: #69C0AF;
}
.files-dropdown-file.scanning .upload_status[data-v-2686ace7] {
      background-color: #69C0AF;
      width: 75%;
}
.files-dropdown-file.highlighted .upload_status[data-v-2686ace7] {
    width: 100%;
}
.files-dropdown-file.removed[data-v-2686ace7] {
    opacity: 0;
}
.files-dropdown-file .upload_status[data-v-2686ace7] {
    bottom: 0;
    height: 3px;
    position: absolute;
    width: 0%;
    -webkit-transition: all 1s;
    transition: all 1s;
}
.files-dropdown-file-icon[data-v-2686ace7] {
  border-right: 1px solid #e5e6e8;
  height: 29px;
  text-align: center;
  width: 35px;
}
.files-dropdown-file-icon .icon[data-v-2686ace7] {
    line-height: 29px;
    cursor: default;
    color: var(--base-color-primary);
    position: relative;
    top: -2px;
}
.files-dropdown-file-icon .icon.icon-drag[data-v-2686ace7] {
      cursor: pointer;
      font-size: 20px;
}
.files-dropdown-file-icon .icon.icon-notification-circle[data-v-2686ace7] {
      color: #ff0202;
}
.file-name[data-v-2686ace7] {
  position: relative;
  top: -2px;
}
.files-dropdown-file-title[data-v-2686ace7] {
  font-size: 14px;
  padding-left: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 65px);
}
.files-dropdown-file-delete-icon[data-v-2686ace7] {
  cursor: pointer;
  height: 35px;
  line-height: 32px;
  text-align: center;
  width: 30px;
}
.files-dropdown-file-delete-icon[data-v-2686ace7]:before {
    color: #3da4f3;
}
.files-dropdown-file-container[data-v-7b860adc] {
  opacity: 0.999;
  position: relative;
}
.animation-all-linear[data-v-51f5dcde] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-51f5dcde] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-51f5dcde] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.files-dropdown-container[data-v-51f5dcde] {
  background: #FFFFFF;
  color: var(--base-color-text);
  width: 100%;
  padding: 2rem 0;
  -webkit-box-shadow: 0px 0px 5px #888;
          box-shadow: 0px 0px 5px #888;
  z-index: 100;
}
.files-dropdown-container[data-v-51f5dcde]:before {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    content: '';
    display: block;
    height: 0px;
    left: 348px;
    position: absolute;
    top: -10px;
    width: 0px;
}
.files-dropdown-container.has-reports[data-v-51f5dcde]:before {
    margin-left: 6px;
    left: 430px;
}
.files-dropdown-container .btn-bnw[data-v-51f5dcde] {
    color: #353e4c;
}
.files-dropdown-container .btn-bnw[data-v-51f5dcde]:hover {
      color: #353e4c;
}
.files-dropdown-header[data-v-51f5dcde] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--base-color-border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 1.5rem;
}
.files-dropdown-header .btn[data-v-51f5dcde] {
    margin: 0;
}
.files-dropdown-title[data-v-51f5dcde] {
  font-size: 20px;
  margin: 0;
}
.files-dropdown-number[data-v-51f5dcde],
.files-dropdown-info[data-v-51f5dcde] {
  font-size: 16px;
}
.files-dropdown-info.error[data-v-51f5dcde] {
  color: #ff0202;
}
.files-dropdown-content[data-v-51f5dcde] {
  margin-top: 2rem;
}
.files-dropdown-empty[data-v-51f5dcde] {
  text-align: center;
}
.files-dropdown-files[data-v-51f5dcde] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.files-dropdown-files .file-item[data-v-51f5dcde] {
    margin: 0 5px;
    display: inline-block;
}
.btn[data-v-51f5dcde] {
  font-size: 16px;
  line-height: 14px;
  font-weight: normal;
}
.file-item[data-v-51f5dcde] {
  display: inline-block;
}
.files-enter-active[data-v-51f5dcde], .files-leave-active[data-v-51f5dcde] {
  -webkit-transition: all 1s;
  transition: all 1s;
}
.files-enter[data-v-51f5dcde], .files-leave-to[data-v-51f5dcde] {
  opacity: 0;
}
.animation-all-linear[data-v-59948f22] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-59948f22] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-59948f22] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.bulk-dropdown-button-container[data-v-59948f22] {
  margin-left: 10px;
  position: relative;
}
.bulk-dropdown-button-container[data-v-59948f22]:before {
    content: '';
    position: absolute;
    top: -8px;
    left: -10px;
    width: 38px;
    height: 35px;
    background-color: var(--base-color-primary-lighten);
    opacity: 0;
    border-radius: 16px;
}
.bulk-dropdown-button-container[data-v-59948f22]:hover:before {
    opacity: 1;
}
.bulk-dropdown-button-container[data-v-59948f22]:focus:before {
    opacity: 1;
}
.bulk-dropdown-button-container[data-v-59948f22]:active:before {
    opacity: 1;
}
.bulk-dropdown-button[data-v-59948f22] {
  background: url(assets/open_folder.svg?) no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  height: 20px;
  position: relative;
  width: 20px;
  z-index: 1;
}
.bulk-dropdown-counter[data-v-59948f22] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--base-color-red);
  border-radius: 10px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 10px;
  position: absolute;
  left: 22px;
  top: -5px;
  min-width: 17px;
  text-align: center;
  padding: 2px;
}
.app-header--support .bulk-dropdown-button-container:before {
  background-color: var(--base-color-purple-lighten);
}
.app-header--enterprise .bulk-dropdown-button-container:before {
  background-color: var(--base-color-secondary-lighten);
}
.table-overlay[data-v-40f3d0c8] {
  width: 100%;
  position: absolute;
  top: 0px;
  z-index: 10;
}
.table-overlay .top-overlay[data-v-40f3d0c8] {
    height: 42px;
}
.table-overlay .row-overlay[data-v-40f3d0c8] {
    height: 40px;
    background-color: #faf7e4;
    background-color: rgba(250, 247, 228, 0.9);
    opacity: 0;
    line-height: 41px;
    color: #4e5560;
    font-weight: bold;
}
.table-overlay .row-overlay.dragover[data-v-40f3d0c8] {
      opacity: 1;
      font-size: 18px;
}
.table-overlay .row-overlay.undroppable[data-v-40f3d0c8] {
      background: #f0f0f0 !important;
      background: rgba(240, 240, 240, 0.9);
}
.table-overlay .row-overlay.readonly[data-v-40f3d0c8] {
      background: #f0f0f0 !important;
      background: rgba(240, 240, 240, 0.9);
      opacity: 1;
      font-size: 14px;
}
.table-overlay .row-overlay .title[data-v-40f3d0c8] {
      margin-left: 100px;
      display: inline-block;
}
.table-overlay .row-overlay .global[data-v-40f3d0c8] {
      width: 14px;
      height: 14px;
      display: inline-block;
}
.table-overlay .row-overlay .icon-globe[data-v-40f3d0c8]::before {
      content: '';
      width: 14px;
      height: 14px;
      background: url(assets/globe_gray.svg?) no-repeat;
      background-size: cover;
      position: relative;
      top: 1px;
      left: -5px;
      display: inline-block;
}
.table-overlay .row-overlay .readonly[data-v-40f3d0c8] {
      display: inline-block;
      white-space: nowrap;
      color: #4e5560;
      float: right;
      font-size: 12px;
      font-weight: 600;
      margin-right: 20px;
}
.table-overlay .row-overlay .readonly .icon-eye[data-v-40f3d0c8] {
        display: inline-block;
        margin-right: 7px;
        opacity: 1;
}
.custom-select[data-v-1c913066] {
  height: 35px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  padding-left: 10px;
  cursor: pointer;
  border: 1px solid  #3d94f3;
}
.app-select[data-v-1c913066] {
  display: inline-block;
  position: relative;
}
.app-select[data-v-1c913066]:after {
    width: 15px;
    content: "\E93D";
    font-family: 'Linearicons';
    position: absolute;
    transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    top: 50%;
    right: 5px;
    pointer-events: none;
    color: var(--base-color-primary);
    font-size: 13px;
    background: #FFFFFF;
}
.document-allow[data-v-136121f7] {
  display: inline-block;
  position: relative;
}
.vue-tooltip.bs-tooltip-top .arrow:before {
  border-width: .4rem .4rem 0 !important;
  border-top-color: rgba(53, 62, 78, 0.9) !important;
}
.vue-tooltip.bs-tooltip-bottom .arrow:before {
  border-bottom-color: rgba(53, 62, 78, 0.9) !important;
}
.vue-tooltip .tooltip-inner {
  text-align: left;
  padding: 10px;
  background: var(--base-color-text);
}
.vue-tooltip ul {
  padding-left: 17px;
  text-align: left;
  margin-bottom: 0px;
}
.vue-tooltip .extra b {
  display: inline-block;
  margin-left: 1px;
  margin-right: 5px;
}
.vue-tooltip a {
  display: inline-block;
  margin-left: 1px;
  margin-top: 5px;
  cursor: pointer;
}
.animation-all-linear[data-v-55a65844] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-55a65844] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-55a65844] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.dashboard-widget .widget-header[data-v-55a65844] {
  margin-bottom: 25px;
}
.numbers[data-v-55a65844] {
  position: relative;
}
.numbers a[data-v-55a65844]:focus {
    text-decoration: none;
}
.numbers a:focus span[data-v-55a65844] {
      text-decoration: none;
}
.numbers .number[data-v-55a65844] {
    width: 12.5%;
    height: 75px;
    text-align: center;
    float: left;
    position: relative;
    opacity: 0.6;
    cursor: not-allowed;
}
.numbers .number[data-v-55a65844]:before {
      content: ' ';
      display: inline-block;
      width: 3px;
      height: 50px;
      background-color: #949DAB;
      position: absolute;
      bottom: 0px;
      left: 50%;
}
.numbers .number.expired[data-v-55a65844]:before {
      background-color: #F93E3E;
}
.numbers .number.due[data-v-55a65844]:before {
      background-color: #F5A623;
}
.numbers .number.valid[data-v-55a65844]:before {
      background-color: #008002;
}
.numbers .number span[data-v-55a65844] {
      width: 52px;
      height: 23px;
      display: inline-block;
      background-color: var(--base-color-primary);
      color: #FFFFFF;
      line-height: 23px;
      border-radius: 9px;
      font-size: 18px;
      font-weight: 600;
}
.numbers .number.active[data-v-55a65844] {
      opacity: 1;
      cursor: default;
}
.numbers .today[data-v-55a65844] {
    position: absolute;
    left: 37.5%;
    top: 21px;
    text-align: center;
    margin-left: -50px;
}
.numbers .today .text[data-v-55a65844] {
      width: 100px;
      font-weight: 600;
      color: #435b7d;
}
.numbers .today .border[data-v-55a65844] {
      width: 2px;
      height: 35px;
      background-color: #949cab;
      display: inline-block;
}
.status-bar[data-v-55a65844] {
  border-radius: 19px;
  overflow: hidden;
}
.status-bar .has-file[data-v-55a65844] {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 5px;
    left: 17px;
    background: green;
    border-radius: 100%;
    z-index: 10;
    border: 2px solid #FFFFFF;
    padding: 0px;
}
.status-bar > div[data-v-55a65844] {
    width: 12.5%;
    height: 46px;
    float: left;
    background-color: #949DAB;
    text-align: center;
}
.status-bar > div.expired[data-v-55a65844] {
      background-color: #F93E3E;
}
.status-bar > div.due[data-v-55a65844] {
      background-color: #F5A623;
}
.status-bar > div.due > span[data-v-55a65844] {
        width: auto;
        border-radius: 15px;
        padding-left: 5px;
        padding-right: 5px;
        line-height: 32px;
}
.status-bar > div.due > span span[data-v-55a65844] {
          display: inline-block;
          margin-left: 5px;
          font-size: 18px;
          font-weight: bold;
          position: relative;
          top: -2px;
          color: var(--base-color-secondary);
}
.status-bar > div.valid[data-v-55a65844] {
      background-color: #008002;
}
.status-bar > div.flagged[data-v-55a65844] {
      background-color: #353e4e;
}
.status-bar > div.flagged span[data-v-55a65844]:before {
        top: 0px;
}
.status-bar > div > span[data-v-55a65844] {
      width: 35px;
      height: 35px;
      font-size: 21px;
      background-color: #FFFFFF;
      line-height: 35px;
      border-radius: 100%;
      position: relative;
      display: inline-block;
      margin-top: 5px;
}
.status-bar > div > span[data-v-55a65844]:before {
        position: relative;
        top: -2px;
        display: inline-block;
}
.days[data-v-55a65844] {
  position: relative;
  overflow: hidden;
  margin-top: 9px;
  display: none;
}
.days div[data-v-55a65844] {
    width: 12.5%;
    float: left;
    color: #435b7d;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    position: relative;
}
.days div span[data-v-55a65844] {
      padding-left: 5px;
      padding-right: 5px;
      background-color: #FFFFFF;
}
.days div.title[data-v-55a65844] {
      width: 25%;
      text-align: left;
      font-size: 18px;
}
.days div.title span[data-v-55a65844] {
        padding-left: 17px;
        padding-right: 5px;
        background-color: #FFFFFF;
}
.days .border[data-v-55a65844] {
    width: 100%;
    height: 1px;
    background-color: #979797;
    position: absolute;
    top: 15px;
    left: 0px;
}
.multiselect__tag .multiselect__close-button[data-v-489723dd]:focus, .multiselect__tag .multiselect__close-button[data-v-489723dd]:hover {
  background: transparent;
  color: #FFFFFF;
  outline: none;
}
.multiselect__tag .multiselect__close-button[data-v-489723dd]:focus:after, .multiselect__tag .multiselect__close-button[data-v-489723dd]:hover:after {
    color: #FFFFFF;
}
.multiselect__tag[data-v-489723dd] {
  height: 30px;
  overflow: hidden;
  background-color: #FFFFFF;
  border: 1px solid var(--base-color-primary);
  padding: 0px;
  color: var(--base-text-color);
  font-size: 14px;
  white-space: nowrap;
  margin-right: 2px;
  line-height: 20px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.multiselect__tag .multiselect-text[data-v-489723dd] {
    padding: 5px;
    line-height: 17px;
}
.multiselect__tag .multiselect-button[data-v-489723dd] {
    padding: 2px;
    background-color: var(--base-color-primary);
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.multiselect__tag .tag-name[data-v-489723dd] {
    position: relative;
    top: -1px;
}
.multiselect__tag .global[data-v-489723dd] {
    margin-left: 0px;
    margin-right: 7px;
    margin-bottom: 2px;
}
.multiselect__tag .multiselect__close-button[data-v-489723dd] {
    color: #FFFFFF;
    background-color: var(--base-color-primary);
    font-size: 12px;
    cursor: pointer;
    display: inline-block;
}
.multiselect__tag .multiselect__single[data-v-489723dd] {
    font-size: 14px;
    line-height: 14px;
}
.vue-tooltip.multiselect-extra-tooltip .multiselect__tag.multiselect-extra-tooltip-tag {
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.21);
  border: none;
  padding: 3px;
  font-size: 14px;
  color: #FFFFFF;
  border-radius: 2px;
  line-height: 16px;
  margin: 3px;
}
.vue-tooltip.multiselect-extra-tooltip .multiselect__tag.multiselect-extra-tooltip-tag .multiselect__close-button {
    color: #FFFFFF;
}
.vue-tooltip.multiselect-extra-tooltip .tooltip-inner {
  padding: 2px;
  padding-top: 5px;
  background: var(--base-color-text);
}
fieldset[disabled] .multiselect{pointer-events:none}.multiselect__spinner{position:absolute;right:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.multiselect__spinner:after,.multiselect__spinner:before{position:absolute;content:"";top:50%;left:50%;margin:-8px 0 0 -8px;width:16px;height:16px;border-radius:100%;border:2px solid transparent;border-top-color:#41b883;box-shadow:0 0 0 1px transparent}.multiselect__spinner:before{animation:spinning 2.4s cubic-bezier(.41,.26,.2,.62);animation-iteration-count:infinite}.multiselect__spinner:after{animation:spinning 2.4s cubic-bezier(.51,.09,.21,.8);animation-iteration-count:infinite}.multiselect__loading-enter-active,.multiselect__loading-leave-active{transition:opacity .4s ease-in-out;opacity:1}.multiselect__loading-enter,.multiselect__loading-leave-active{opacity:0}.multiselect,.multiselect__input,.multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.multiselect{box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:left;color:#35495e}.multiselect *{box-sizing:border-box}.multiselect:focus{outline:none}.multiselect--disabled{background:#ededed;pointer-events:none;opacity:.6}.multiselect--active{z-index:50}.multiselect--active:not(.multiselect--above) .multiselect__current,.multiselect--active:not(.multiselect--above) .multiselect__input,.multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-left-radius:0;border-bottom-right-radius:0}.multiselect--active .multiselect__select{transform:rotate(180deg)}.multiselect--above.multiselect--active .multiselect__current,.multiselect--above.multiselect--active .multiselect__input,.multiselect--above.multiselect--active .multiselect__tags{border-top-left-radius:0;border-top-right-radius:0}.multiselect__input,.multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 0 0 5px;width:100%;transition:border .1s ease;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.multiselect__input:-ms-input-placeholder{color:#35495e}.multiselect__input::placeholder{color:#35495e}.multiselect__tag~.multiselect__input,.multiselect__tag~.multiselect__single{width:auto}.multiselect__input:hover,.multiselect__single:hover{border-color:#cfcfcf}.multiselect__input:focus,.multiselect__single:focus{border-color:#a8a8a8;outline:none}.multiselect__single{padding-left:5px;margin-bottom:8px}.multiselect__tags-wrap{display:inline}.multiselect__tags{min-height:40px;display:block;padding:8px 40px 0 8px;border-radius:5px;border:1px solid #e8e8e8;background:#fff;font-size:14px}.multiselect__tag{position:relative;display:inline-block;padding:4px 26px 4px 10px;border-radius:5px;margin-right:10px;color:#fff;line-height:1;background:#41b883;margin-bottom:5px;white-space:nowrap;overflow:hidden;max-width:100%;text-overflow:ellipsis}.multiselect__tag-icon{cursor:pointer;margin-left:7px;position:absolute;right:0;top:0;bottom:0;font-weight:700;font-style:normal;width:22px;text-align:center;line-height:22px;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\D7";color:#266d4d;font-size:14px}.multiselect__tag-icon:focus,.multiselect__tag-icon:hover{background:#369a6e}.multiselect__tag-icon:focus:after,.multiselect__tag-icon:hover:after{color:#fff}.multiselect__current{min-height:40px;overflow:hidden;padding:8px 30px 0 12px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.multiselect__current,.multiselect__select{line-height:16px;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.multiselect__select{position:absolute;width:40px;height:38px;right:1px;top:1px;padding:4px 8px;text-align:center;transition:transform .2s ease}.multiselect__select:before{position:relative;right:0;top:65%;color:#999;margin-top:4px;border-color:#999 transparent transparent;border-style:solid;border-width:5px 5px 0;content:""}.multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.multiselect--active .multiselect__placeholder{display:none}.multiselect__content-wrapper{position:absolute;display:block;background:#fff;width:100%;max-height:240px;overflow:auto;border:1px solid #e8e8e8;border-top:none;border-bottom-left-radius:5px;border-bottom-right-radius:5px;z-index:50;-webkit-overflow-scrolling:touch}.multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.multiselect__content::webkit-scrollbar{display:none}.multiselect__element{display:block}.multiselect__option{display:block;padding:12px;min-height:40px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap}.multiselect__option:after{top:0;right:0;position:absolute;line-height:40px;padding-right:12px;padding-left:20px;font-size:13px}.multiselect__option--highlight{background:#41b883;outline:none;color:#fff}.multiselect__option--highlight:after{content:attr(data-select);background:#41b883;color:#fff}.multiselect__option--selected{background:#f3f3f3;color:#35495e;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#ff6a6a;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#ff6a6a;content:attr(data-deselect);color:#fff}.multiselect--disabled .multiselect__current,.multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.multiselect__option--group{background:#ededed;color:#35495e}.multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.multiselect__option--group-selected.multiselect__option--highlight{background:#ff6a6a;color:#fff}.multiselect__option--group-selected.multiselect__option--highlight:after{background:#ff6a6a;content:attr(data-deselect);color:#fff}.multiselect-enter-active,.multiselect-leave-active{transition:all .15s ease}.multiselect-enter,.multiselect-leave-active{opacity:0}.multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}[dir=rtl] .multiselect{text-align:right}[dir=rtl] .multiselect__select{right:auto;left:1px}[dir=rtl] .multiselect__tags{padding:8px 8px 0 40px}[dir=rtl] .multiselect__content{text-align:right}[dir=rtl] .multiselect__option:after{right:auto;left:0}[dir=rtl] .multiselect__clear{right:auto;left:12px}[dir=rtl] .multiselect__spinner{right:auto;left:1px}@keyframes spinning{0%{transform:rotate(0)}to{transform:rotate(2turn)}}.app-multiselect[data-v-3d2b9481] .not-found {
  font-size: 14px;
}
.app-multiselect[data-v-3d2b9481] .multiselect {
  min-height: 35px;
  max-height: 35px;
}
.app-multiselect[data-v-3d2b9481] .multiselect__input {
  background: url(assets/search.svg?) no-repeat;
  background-size: 13px 14px;
  background-position-x: calc(100% - 5px);
  background-position-y: center;
  height: 30px;
  padding-left: 10px;
  padding-right: 35px;
  border-radius: var(--base-spacing-input-border-radius);
  font-size: 14px;
}
.app-multiselect[data-v-3d2b9481] .multiselect__placeholder {
  line-height: 22px;
  color: #353e4e;
  margin-top: 2px;
  margin-bottom: 5px;
  font-size: 14px;
  margin-left: 5px;
}
.app-multiselect[data-v-3d2b9481] .multiselect__element {
  height: 32px;
}
.app-multiselect[data-v-3d2b9481] .multiselect__tags {
  padding-top: 2px;
  padding-left: 2px;
  min-height: 35px;
  height: 35px;
  max-height: 35px;
  border-radius: var(--base-spacing-input-border-radius);
  padding-right: 22px;
  border: 1px solid var(--base-color-border);
}
.app-multiselect[data-v-3d2b9481] .multiselect--active .multiselect__tag ~ .multiselect__input {
  width: calc(100% + 10px) !important;
  margin-left: 5px;
}
.app-multiselect[data-v-3d2b9481] .multiselect--active .multiselect__tags {
  height: auto;
}
.app-multiselect[data-v-3d2b9481] .multiselect--active .multiselect__select {
  -webkit-transform: none;
          transform: none;
}
.app-multiselect[data-v-3d2b9481] .multiselect--active .multiselect__input {
  border: 1px solid var(--base-color-secondary-lighten2);
}
.app-multiselect[data-v-3d2b9481] .multiselect--active .multiselect__input:focus {
    border-color: var(--base-color-primary);
}
.app-multiselect[data-v-3d2b9481] .multiselect__select {
  height: 35px;
}
.app-multiselect[data-v-3d2b9481] .multiselect__select:before {
    content: "\E93D";
    font-family: 'Linearicons';
    position: absolute;
    transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    top: 5px;
    right: 4px;
    pointer-events: none;
    font-size: 13px;
    color: var(--base-color-primary);
    border: none;
}
.app-multiselect[data-v-3d2b9481] .multiselect__option {
  height: 30px;
  padding: 0px;
  min-height: 30px;
  font-size: 14px;
  line-height: 30px;
  padding-left: 9px;
  padding-right: 9px;
}
.app-multiselect[data-v-3d2b9481] .multiselect__option.select-all {
    font-weight: bold;
}
.app-multiselect[data-v-3d2b9481] .multiselect__option.select-all:hover {
      background-color: var(--base-color-primary-lighten3);
      color: var(--base-color-text);
}
.app-multiselect[data-v-3d2b9481] .multiselect__option.select-all.multiselect__option--selected {
      font-weight: bold;
      background-color: var(--base-color-primary-lighten3);
}
.app-multiselect[data-v-3d2b9481] .multiselect__option:after {
    display: none;
}
.app-multiselect[data-v-3d2b9481] .multiselect__option.multiselect__option--selected {
    font-weight: normal;
    background-color: var(--base-color-primary-lighten3);
}
.app-multiselect[data-v-3d2b9481] .multiselect__option--highlight {
  background-color: transparent;
  color: var(--base-color-text);
}
.app-multiselect[data-v-3d2b9481] .multiselect__option--highlight.multiselect__option--selected {
    background: var(--base-color-primary-lighten3);
    color: var(--base-color-text);
}
.app-multiselect[data-v-3d2b9481] .multiselect__option--highlight:hover {
    color: var(--base-color-text);
    background-color: var(--base-color-primary-lighten3);
}
.app-multiselect[data-v-3d2b9481] .multiselect-all {
  height: 35px;
  line-height: 35px;
}
.app-multiselect[data-v-3d2b9481] .multiselect__content-wrapper {
  border-radius: 2px;
  border: 1px solid var(--base-color-border);
}
.app-multiselect.has-tags[data-v-3d2b9481] .multiselect__content-wrapper {
  margin-top: 30px;
}
.app-multiselect.has-tags[data-v-3d2b9481] .multiselect__input {
  position: absolute;
  left: 0px;
  margin-top: -3px;
  background: #FFFFFF;
  border-radius: 0px;
}
.app-multiselect.has-tags[data-v-3d2b9481] .multiselect--above .multiselect__content-wrapper {
  margin-bottom: 30px;
}
.app-multiselect.has-tags[data-v-3d2b9481] .multiselect--above .multiselect__input {
  position: absolute;
  left: 0px;
  top: -20px;
  margin-top: -9px;
  background: #FFFFFF;
  border-radius: 0px;
}
span.icon[data-v-3d2b9481] {
  padding-left: 5px;
}
.option-name[data-v-3d2b9481] {
  display: inline-block;
  margin-left: 5px;
}
.option-input[data-v-3d2b9481] {
  position: relative;
  top: 1px;
  margin-right: 2px;
  display: inline-block;
}
.multiselect__tag .multiselect__close-button[data-v-0a84a2a9]:focus, .multiselect__tag .multiselect__close-button[data-v-0a84a2a9]:hover {
  background: transparent;
  color: var(--base-color-primary);
  outline: none;
}
.multiselect__tag .multiselect__close-button[data-v-0a84a2a9]:focus:after, .multiselect__tag .multiselect__close-button[data-v-0a84a2a9]:hover:after {
    color: var(--base-color-primary);
}
.multiselect__tag[data-v-0a84a2a9] {
  height: 30px;
  overflow: hidden;
  background-color: #FFFFFF;
  border: 1px solid var(--base-color-primary);
  padding: 0px;
  color: var(--base-text-color);
  font-size: 14px;
  white-space: nowrap;
  margin-right: 2px;
  line-height: 20px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.multiselect__tag .multiselect-text[data-v-0a84a2a9] {
    padding: 5px;
    line-height: 17px;
}
.multiselect__tag .multiselect-button[data-v-0a84a2a9] {
    padding: 2px;
    background-color: var(--base-color-primary);
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.multiselect__tag .tag-name[data-v-0a84a2a9] {
    position: relative;
    top: -1px;
}
.multiselect__tag .global[data-v-0a84a2a9] {
    margin-left: 0px;
    margin-right: 7px;
    margin-bottom: 2px;
}
.multiselect__tag .multiselect__close-button[data-v-0a84a2a9] {
    color: #FFFFFF;
    background-color: var(--base-color-primary);
    font-size: 12px;
    cursor: pointer;
    display: inline-block;
}
.multiselect__tag .multiselect__single[data-v-0a84a2a9] {
    font-size: 14px;
    line-height: 14px;
}
.app-multiselect[data-v-bc90e5da] .not-found {
  font-size: 14px;
}
.app-multiselect[data-v-bc90e5da] .multiselect {
  min-height: 35px;
  max-height: 35px;
}
.app-multiselect[data-v-bc90e5da] .multiselect__input {
  background: url(assets/search.svg?) no-repeat;
  background-size: 13px 14px;
  background-position-x: calc(100% - 5px);
  background-position-y: center;
  height: 30px;
  padding-left: 10px;
  padding-right: 35px;
  border-radius: var(--base-spacing-input-border-radius);
  font-size: 14px;
}
.app-multiselect[data-v-bc90e5da] .multiselect__placeholder {
  line-height: 22px;
  color: #353e4e;
  margin-top: 2px;
  margin-bottom: 5px;
  font-size: 14px;
  margin-left: 5px;
}
.app-multiselect[data-v-bc90e5da] .multiselect__tags {
  padding-top: 2px;
  padding-left: 2px;
  min-height: 35px;
  height: 35px;
  max-height: 35px;
  padding-right: 22px;
}
.app-multiselect[data-v-bc90e5da] .multiselect--active .multiselect__tag ~ .multiselect__input {
  width: calc(100% + 10px) !important;
  margin-left: 5px;
}
.app-multiselect[data-v-bc90e5da] .multiselect--active .multiselect__tags {
  height: auto;
}
.app-multiselect[data-v-bc90e5da] .multiselect--active .multiselect__select {
  -webkit-transform: none;
          transform: none;
}
.app-multiselect[data-v-bc90e5da] .multiselect--active .multiselect__input {
  border: 1px solid var(--base-color-secondary-lighten2);
}
.app-multiselect[data-v-bc90e5da] .multiselect--active .multiselect__input:focus {
    border-color: var(--base-color-primary);
}
.app-multiselect[data-v-bc90e5da] .multiselect__select {
  height: 35px;
}
.app-multiselect[data-v-bc90e5da] .multiselect__select:before {
    content: "\E93D";
    font-family: 'Linearicons';
    position: absolute;
    transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    top: 5px;
    right: 4px;
    pointer-events: none;
    font-size: 13px;
    color: var(--base-color-primary);
    border: none;
}
.app-multiselect[data-v-bc90e5da] .multiselect__option {
  height: 30px;
  padding: 0px;
  min-height: 30px;
  font-size: 14px;
  line-height: 30px;
  padding-left: 9px;
  padding-right: 9px;
}
.app-multiselect[data-v-bc90e5da] .multiselect__option.select-all {
    font-weight: bold;
}
.app-multiselect[data-v-bc90e5da] .multiselect__option.select-all:hover {
      background-color: var(--base-color-primary-lighten3);
      color: var(--base-color-text);
}
.app-multiselect[data-v-bc90e5da] .multiselect__option.select-all.multiselect__option--selected {
      font-weight: bold;
      background-color: var(--base-color-primary-lighten3);
}
.app-multiselect[data-v-bc90e5da] .multiselect__option:after {
    display: none;
}
.app-multiselect[data-v-bc90e5da] .multiselect__option.multiselect__option--selected {
    font-weight: normal;
    background-color: var(--base-color-primary-lighten3);
}
.app-multiselect[data-v-bc90e5da] .multiselect__option--highlight {
  background-color: transparent;
  color: var(--base-color-text);
}
.app-multiselect[data-v-bc90e5da] .multiselect__option--highlight.multiselect__option--selected {
    background: var(--base-color-primary-lighten3);
    color: var(--base-color-text);
}
.app-multiselect[data-v-bc90e5da] .multiselect__option--highlight:hover {
    color: var(--base-color-text);
    background-color: var(--base-color-primary-lighten3);
}
.app-multiselect[data-v-bc90e5da] .multiselect-all {
  height: 35px;
  line-height: 35px;
}
span.user-icon[data-v-bc90e5da] {
  width: 20px;
  display: inline-block;
  position: relative;
  top: -8px;
}
span.user-icon.has-icon[data-v-bc90e5da] {
    width: 15px;
    height: 15px;
    overflow: hidden;
    border-radius: 100%;
    line-height: 0;
    margin-right: 5px;
}
span.user-icon.has-icon img[data-v-bc90e5da] {
      width: 100%;
      height: auto;
}
.user-name[data-v-bc90e5da] {
  width: 50%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-status[data-v-bc90e5da] {
  width: 15%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.user-email[data-v-bc90e5da] {
  width: calc(35% - 20px);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.option[data-v-bc90e5da] {
  width: 100%;
  overflow: hidden;
}
.option-input[data-v-bc90e5da] {
  position: relative;
  top: 1px;
  margin-right: 2px;
  display: inline-block;
}
[data-v-bc90e5da] .multiselect__single {
  font-size: 14px;
  line-height: 14px;
  position: relative;
  top: 6px;
}
.animation-all-linear[data-v-b24825c6] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-b24825c6] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-b24825c6] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.tooltip-body[data-v-b24825c6] {
  text-align: left;
}
ul[data-v-b24825c6] {
  padding-left: 12px;
  margin-bottom: 10px;
}
ul li[data-v-b24825c6] {
    margin: 0px;
    font-weight: normal;
}
.task-manager-item[data-v-20852230] {
  padding: 13px;
  border-top: 1px solid var(--base-color-secondary-lighten2);
}
.task-manager-item .document-name a[data-v-20852230] {
    cursor: pointer;
}
.task-manager-item .document-controls[data-v-20852230] {
    text-align: right;
}
.task-manager-item .document-controls a[data-v-20852230] {
      cursor: pointer;
}
.task-manager-item .document-controls a.done[data-v-20852230] {
        opacity: 0.5;
}
.task-manager-item .document-controls a.disabled[data-v-20852230] {
        opacity: 0.5;
        cursor: not-allowed;
}
.task-manager-item .document-controls a.disabled[data-v-20852230]:hover {
          text-decoration: none;
}
.task-manager-item .document-controls .border[data-v-20852230] {
      display: inline-block;
      margin-left: 10px;
      margin-right: 10px;
}
.task-manager-item .document-controls .icon[data-v-20852230] {
      display: inline-block;
      margin-right: 5px;
}
.task-manager[data-v-2426f3da] {
  width: 100%;
  padding: 23px;
  border-radius: 17px;
  border: solid 1px #D7E1E9;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  height: 570px;
  max-height: 580px;
  margin-top: 10px;
  position: relative;
}
.task-manager .task-manager-content[data-v-2426f3da] {
    height: 460px;
    overflow-y: auto;
    overflow-x: hidden;
}
.task-manager .task-manager-accordion-title[data-v-2426f3da] {
    padding: 13px;
    background-color: var(--base-color-secondary-lighten3);
    color: #3da4f3;
    font-weight: 500;
}
.task-manager .task-manager-accordion-title .icon[data-v-2426f3da] {
      font-size: 19px;
      display: inline-block;
      margin-right: 7px;
      margin-left: 7px;
}
.task-manager .task-manager-accordion-title .icon.icon-eye[data-v-2426f3da] {
        color: var(--base-color-text);
}
.task-manager .task-manager-accordion-title .icon.icon-file-empty2[data-v-2426f3da] {
        color: var(--base-color-text);
}
.task-manager .task-manager-accordion-title .icon.icon-flag[data-v-2426f3da] {
        font-weight: bold;
        position: relative;
        top: 2px;
}
.task-manager .task-manager-accordion-title span.icon-dropdown[data-v-2426f3da]:before {
      content: "\E937";
      color: var(--base-color-text);
      position: relative;
      top: -2px;
}
.task-manager .task-manager-accordion-title.not-collapsed span.icon-dropdown[data-v-2426f3da]:before {
      content: "\E93A";
}
.task-manager-top[data-v-2426f3da] {
  margin-bottom: 30px;
}
.task-manager-top > *[data-v-2426f3da] {
    display: inline-block;
}
.task-manager-top h2[data-v-2426f3da] {
    margin: 0px;
    font-size: 22px;
    font-weight: 600;
    color: #3b3e53;
}
.task-manager-top .task-manager-controls[data-v-2426f3da] {
    float: right;
    position: relative;
    z-index: 10;
}
.task-manager-top .task-manager-controls a[data-v-2426f3da] {
      cursor: pointer;
}
.accordion .card[data-v-2426f3da] {
  margin-bottom: 15px;
}
.empty-tasks[data-v-2426f3da] {
  text-align: center;
}
.empty-tasks h2[data-v-2426f3da] {
    margin-top: 35px;
    margin-bottom: 25px;
    font-size: 22px;
}
.empty-tasks .task-manager-icon[data-v-2426f3da] {
    margin-top: 100px;
}
.empty-tasks .task-manager-icon .icon-check[data-v-2426f3da] {
      font-size: 55px;
      color: var(--base-color-green);
}
[data-v-2426f3da] .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
}
.task-manager-bottom[data-v-2426f3da] {
  width: 100%;
  height: 45px;
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.task-manager-bottom .gradient[data-v-2426f3da] {
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(white), to(rgba(255, 255, 255, 0.5)));
    background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.user-profile-widget[data-v-20ff4229] {
  width: 100%;
  padding: 23px;
  border-radius: 17px;
  border: solid 1px #D7E1E9;
  background-color: #FFFFFF;
  margin: 10px 0;
  height: 275px;
  max-height: 275px;
}
.user-profile-widget .user-profile-content[data-v-20ff4229] {
    text-align: center;
}
.user-profile-widget .user-profile-content img.avatar[data-v-20ff4229] {
      width: 182px;
      height: auto;
      border-radius: 100%;
      overflow: hidden;
}
.user-profile-widget .user-profile-content .icon[data-v-20ff4229] {
      width: 182px;
      height: 182px;
      font-size: 215px;
      color: var(--base-color-primary);
      background-color: var(--base-color-primary-lighten3);
      border-radius: 100%;
      overflow: hidden;
      display: inline-block;
}
.user-profile-widget .user-profile-content .icon[data-v-20ff4229]:before {
        position: relative;
        top: 5px;
        left: -16px;
}
.user-profile-top[data-v-20ff4229] {
  margin-bottom: 20px;
}
.user-profile-top > *[data-v-20ff4229] {
    display: inline-block;
}
.user-profile-top h2[data-v-20ff4229] {
    margin: 0px;
    font-size: 22px;
    font-weight: 600;
    color: #3b3e53;
}
.user-profile-top .user-profile-controls[data-v-20ff4229] {
    float: right;
    position: relative;
    z-index: 10;
}
.user-profile-top .user-profile-controls a[data-v-20ff4229] {
      cursor: pointer;
      font-size: 17px;
}
.app-multiselect[data-v-4259e3d9] .not-found {
  font-size: 14px;
}
.app-multiselect[data-v-4259e3d9] .multiselect {
  min-height: 35px;
  max-height: 35px;
}
.app-multiselect[data-v-4259e3d9] .multiselect__input {
  background: url(assets/search.svg?) no-repeat;
  background-size: 13px 14px;
  background-position-x: calc(100% - 5px);
  background-position-y: center;
  height: 30px;
  padding-left: 10px;
  padding-right: 35px;
  border-radius: var(--base-spacing-input-border-radius);
  font-size: 14px;
}
.app-multiselect[data-v-4259e3d9] .multiselect__content-wrapper {
  max-height: 775px !important;
  border-radius: 2px;
  overflow: visible;
}
.app-multiselect[data-v-4259e3d9] .multiselect__placeholder {
  line-height: 22px;
  color: #353e4e;
  margin-top: 2px;
  margin-bottom: 5px;
  font-size: 14px;
  margin-left: 5px;
}
.app-multiselect[data-v-4259e3d9] .multiselect__tags {
  padding-top: 2px;
  padding-left: 2px;
  min-height: 35px;
  height: 35px;
  max-height: 35px;
  padding-right: 22px;
}
.app-multiselect[data-v-4259e3d9] .multiselect--active .multiselect__tag ~ .multiselect__input {
  width: calc(100% + 10px) !important;
  margin-left: 5px;
}
.app-multiselect[data-v-4259e3d9] .multiselect--active .multiselect__tags {
  height: auto;
}
.app-multiselect[data-v-4259e3d9] .multiselect--active .multiselect__select {
  -webkit-transform: none;
          transform: none;
}
.app-multiselect[data-v-4259e3d9] .multiselect--active .multiselect__input {
  border: 1px solid var(--base-color-secondary-lighten2);
}
.app-multiselect[data-v-4259e3d9] .multiselect--active .multiselect__input:focus {
    border-color: var(--base-color-primary);
}
.app-multiselect[data-v-4259e3d9] .multiselect__select {
  height: 35px;
}
.app-multiselect[data-v-4259e3d9] .multiselect__select:before {
    content: "\E93D";
    font-family: 'Linearicons';
    position: absolute;
    transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    top: 5px;
    right: 4px;
    pointer-events: none;
    font-size: 13px;
    color: var(--base-color-primary);
    border: none;
}
.app-multiselect[data-v-4259e3d9] .multiselect__option {
  height: 30px;
  padding: 0px;
  min-height: 30px;
  font-size: 14px;
  line-height: 30px;
  padding-left: 9px;
  padding-right: 9px;
}
.app-multiselect[data-v-4259e3d9] .multiselect__option.select-all {
    font-weight: bold;
}
.app-multiselect[data-v-4259e3d9] .multiselect__option.select-all:hover {
      background-color: var(--base-color-primary-lighten3);
      color: var(--base-color-text);
}
.app-multiselect[data-v-4259e3d9] .multiselect__option.select-all.multiselect__option--selected {
      font-weight: bold;
      background-color: var(--base-color-primary-lighten3);
}
.app-multiselect[data-v-4259e3d9] .multiselect__option:after {
    display: none;
}
.app-multiselect[data-v-4259e3d9] .multiselect__option.multiselect__option--selected {
    font-weight: normal;
    background-color: var(--base-color-primary-lighten3);
}
.app-multiselect[data-v-4259e3d9] .multiselect__option--highlight {
  background-color: transparent;
  color: var(--base-color-text);
}
.app-multiselect[data-v-4259e3d9] .multiselect__option--highlight.multiselect__option--selected {
    background: var(--base-color-primary-lighten3);
    color: var(--base-color-text);
}
.app-multiselect[data-v-4259e3d9] .multiselect__option--highlight:hover {
    color: var(--base-color-text);
    background-color: var(--base-color-primary-lighten3);
}
.app-multiselect[data-v-4259e3d9] .multiselect-all {
  height: 35px;
  line-height: 35px;
}
.option-name[data-v-4259e3d9] {
  display: inline-block;
  margin-left: 5px;
}
.option-input-select-all[data-v-4259e3d9] input {
  pointer-events: none;
}
.option-input-select-all[data-v-4259e3d9] label {
  pointer-events: none;
}
.option-input[data-v-4259e3d9] input {
  position: relative;
  top: 1px;
  margin-right: 5px;
  display: inline-block;
  pointer-events: none;
}
.option-input[data-v-4259e3d9] label {
  font-weight: normal;
  pointer-events: none;
}
.animation-all-linear[data-v-69f63d47] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-69f63d47] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-69f63d47] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.datepicker-dropdown[data-v-69f63d47] {
  max-width: 265px;
  position: absolute;
  z-index: 100;
}
.datepicker-dropdown[data-v-69f63d47] .vdp-datepicker__calendar {
    width: 100%;
}
.datepicker-dropdown[data-v-69f63d47] .vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day {
    background-color: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 50%;
    height: 36px;
    line-height: 35px;
    width: 36px;
}
.datepicker-dropdown[data-v-69f63d47] .vdp-datepicker__calendar .cell:not(.blank):not(.disabled):hover {
    border-color: #3da4f3;
}
.datepicker-dropdown[data-v-69f63d47] .vdp-datepicker__calendar .cell:not(.blank):not(.disabled).selected {
    background-color: #3da4f3;
    border-color: #3da4f3;
    color: #FFFFFF;
}
.tooltip-text p[data-v-32741d73] {
  color: #FFFFFF;
}
.info-icon[data-v-32741d73] {
  display: inline-block;
  margin-left: 2px;
}
[data-v-0bbf1ab4] .btn {
  margin-top: 0px;
}
[data-v-0bbf1ab4] .dropdown-menu {
  outline: none;
}
[data-v-0bbf1ab4] .btn.dropdown-toggle {
  background: #FFFFFF;
  color: #000000;
  height: 24px;
  line-height: 21px;
  font-weight: normal;
  padding-left: 5px;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-right: 5px;
  border-radius: 4px;
}
[data-v-0bbf1ab4] .btn.dropdown-toggle:focus {
    border-radius: 4px;
}
[data-v-0bbf1ab4] .btn.dropdown-toggle .dropdown-icon {
    margin-left: 0px;
}
[data-v-0bbf1ab4] .btn.dropdown-toggle .icon-holder {
    width: 21px;
    display: inline-block;
}
[data-v-0bbf1ab4] .btn.dropdown-toggle .select-icon {
    margin-left: 5px;
}
[data-v-0bbf1ab4] .dropdown-item {
  padding-left: 10px;
  padding-right: 10px;
}
[data-v-0bbf1ab4] .dropdown-item:hover {
    background: var(--base-color-primary-lighten3);
}
[data-v-0bbf1ab4] .dropdown-item.active {
    background: var(--base-color-primary-lighten3);
}
[data-v-0bbf1ab4] .dropdown-item:focus {
    text-decoration: none;
}
[data-v-0bbf1ab4] .dropdown-item:focus span {
      text-decoration: none;
}
[data-v-0bbf1ab4] .dropdown-item .dropdown-icon {
    margin-right: 5px;
}
[data-v-0bbf1ab4] .dropdown-item .dropdown-icon:active {
      text-decoration: none;
}
table tr[data-v-1f3dca30] th.sortable .icon.icon-up, table tr[data-v-1f3dca30] th.sortable .icon.icon-down {
  display: inline-block;
  font-family: "Glyphicons Halflings" !important;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.app-table[data-v-1f3dca30] {
  margin-top: 15px;
  max-height: 500px;
  overflow: auto;
}
table[data-v-1f3dca30] {
  width: 100%;
}
table.title[data-v-1f3dca30] {
    position: sticky;
    top: 0px;
    z-index: 10;
}
table.data-table tr[data-v-1f3dca30] {
    height: 40px;
}
table tr[data-v-1f3dca30] th {
    background: var(--base-color-secondary);
    padding: 8px;
    text-decoration: none;
    text-align: left;
    padding-left: 10px !important;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    min-height: 40px;
}
table tr[data-v-1f3dca30] th.sortable {
      cursor: pointer;
      text-decoration: underline;
      -webkit-user-select: none;
}
table tr[data-v-1f3dca30] th.sortable .icon {
        width: 18px;
        height: 18px;
        display: inline-block;
        background-color: #FFFFFF;
        border: none;
        font-size: 12px;
        color: var(--base-color-primary);
        border-radius: 2px;
        margin-left: 5px;
        text-align: center;
        line-height: 17px;
        position: relative;
        top: 1px;
}
table tr[data-v-1f3dca30] th.sortable .icon.icon-up:before {
          content: "\E260";
}
table tr[data-v-1f3dca30] th.sortable .icon.icon-down:before {
          content: "\E259";
}
table tr[data-v-1f3dca30] td {
    padding: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    background: #FFFFFF;
    border-bottom: 1px solid #f1f4f9;
    text-align: left;
}
.btn[data-v-121e7dd6] {
  width: 40px;
  height: 40px;
  line-height: 45px;
  text-align: center;
  padding: 0px;
  background: #FFFFFF;
  border: 1px solid var(--base-color-border-light);
  font-size: 20px;
  margin-top: 0px;
  color: #3da4f3;
}
.btn[data-v-121e7dd6]:focus {
    border: 1px solid var(--base-color-border-light);
    color: #3da4f3;
}
.btn[data-v-121e7dd6]:active {
    border: 1px solid var(--base-color-border-light);
    color: #3da4f3;
}
.btn[data-v-121e7dd6]:hover {
    border: 1px solid var(--base-color-border-light);
    color: #3da4f3;
}
.bulk-switch-mfa[data-v-121e7dd6] {
  color: #319E88;
}
.loader[data-v-be3098ba] {
  min-height: 300px;
}
.loader .loader-container[data-v-be3098ba] {
    margin-top: 75px;
}
.loader .app-page-subtitle[data-v-be3098ba] {
  border-bottom: 1px solid var(--base-color-border);
}
.profile-table[data-v-be3098ba] {
  position: relative;
}
[data-v-be3098ba] .b-dropdown {
  float: right;
  margin-top: -40px;
  margin-right: -10px;
}
[data-v-be3098ba] .b-dropdown .dropdown-toggle {
    font-weight: normal;
}
[data-v-be3098ba] .primary .panel-button {
  color: #FFFFFF;
  background: #3da4f3;
  margin-right: 5px;
}
[data-v-be3098ba] .primary .panel-button:hover {
    color: #FFFFFF;
}
[data-v-be3098ba] .panel-button.btn {
  width: 35px;
  height: 35px;
}
[data-v-be3098ba] .panel-button.btn span.icon {
    position: relative;
    top: -7px;
    font-size: 17px;
}
[data-v-be3098ba] .app-table {
  max-height: none;
  overflow: visible;
  border-top: 1px solid #f1f4f9;
}
[data-v-be3098ba] table tr td {
  padding: 15px;
  padding-top: 3px;
  padding-bottom: 3px;
}
[data-v-be3098ba] table.title {
  display: none;
}
[data-v-be3098ba] .account-title {
  width: 550px;
}
[data-v-be3098ba] .account-type {
  width: 170px;
}
[data-v-be3098ba] .account-plan {
  width: 155px;
}
[data-v-be3098ba] .account-role {
  width: 120px;
}
[data-v-be3098ba] .account-actions {
  width: 150px;
  text-align: right;
  padding-right: 5px;
}
.accept-all-popup[data-v-be3098ba] {
  width: 225px;
}
.accept-all-popup .title[data-v-be3098ba] {
    border-bottom: 1px solid #dae5e9;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
}
.accept-all-popup .title h2[data-v-be3098ba] {
      margin: 0px;
      font-size: 18px;
}
.accept-all-popup .buttons[data-v-be3098ba] {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
}
.accept-all-popup .buttons button[data-v-be3098ba] {
      padding-top: 6px;
      padding-bottom: 6px;
      padding-left: 20px;
      padding-right: 20px;
      font-size: 14px;
      font-weight: 400;
      margin-top: 5px;
      margin-bottom: 15px;
}
.pdf-page[data-v-e493b592] {
  max-width: 1000px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}
.loader[data-v-e493b592] {
  position: fixed;
  top: 10px;
  left: 0px;
  width: 100%;
  height: calc(100vh - 10px);
  background-color: #F1F4F9;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.app-modal__header .title {
  font-weight: 500;
}
.app-modal__footer-text {
  width: 285px;
  position: absolute;
  left: 150px;
}
.animation-all-linear[data-v-7cbd1425] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-7cbd1425] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-7cbd1425] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.document-name[data-v-7cbd1425] {
  font-size: 16px;
  display: inline-block;
  margin-left: 7px;
}
.errors[data-v-7cbd1425] {
  margin-top: 15px;
}
.errors .error[data-v-7cbd1425] {
    color: #f44963;
    margin-top: 5px;
}
.form-field[data-v-7cbd1425] label {
  font-weight: bold;
  display: block;
}
.form-field[data-v-7cbd1425] label a {
    float: right;
    cursor: pointer;
}
.form-field[data-v-7cbd1425] .not-applicable {
  position: absolute;
  bottom: 12px;
  right: 12px;
}
.form-field[data-v-7cbd1425] .not-applicable input {
    position: relative;
    top: 2px;
    left: -5px;
}
.form-field[data-v-7cbd1425] .not-applicable label {
    font-weight: normal;
    display: inline-block;
}
.form-field[data-v-7cbd1425] input.error {
  border: 1px solid #FF0000;
}
.form-field[data-v-7cbd1425] {
  position: relative;
}
.form-field.with_more_space[data-v-7cbd1425] {
    margin-bottom: 17px;
}
.type_of_side[data-v-7cbd1425] {
  color: #353e4c;
  font-size: 18px;
  font-weight: 600;
  line-height: 34px;
  margin-top: 0;
}
.file_name[data-v-7cbd1425] {
  margin-bottom: 20px;
}
.file_name label[data-v-7cbd1425] {
    color: #353e4c;
    margin-bottom: 12px;
}
.left-side-checkbox input[data-v-7cbd1425]:after {
  border-radius: 3px;
  content: '';
  display: block;
  height: 13px;
  position: absolute;
  top: 0;
  width: 13px;
}
.animation-all-linear[data-v-8acbc1c8] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-8acbc1c8] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-8acbc1c8] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.accounts-table[data-v-8acbc1c8] {
  margin-top: 15px;
  max-height: 500px;
  overflow: auto;
}
table[data-v-8acbc1c8] {
  width: 100%;
}
table.title[data-v-8acbc1c8] {
    position: sticky;
    top: 0px;
}
table tr th[data-v-8acbc1c8] {
    background: var(--base-color-secondary);
    padding: 10px;
    text-decoration: none;
}
table tr td[data-v-8acbc1c8] {
    padding: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    background: #FFFFFF;
    border-bottom: 1px solid #f1f4f9;
}
.status-column[data-v-8acbc1c8] {
  width: 155px;
}
.choosen_status[data-v-8acbc1c8] {
  font-weight: 600;
}
.document-status[data-v-8acbc1c8] {
  float: right;
  width: 130px;
}
.document-status > div[data-v-8acbc1c8] {
    width: 22px;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    opacity: 1;
    text-align: center;
}
.document-status > div.empty[data-v-8acbc1c8] {
      opacity: 0.2;
}
.document-status > div.placeholders[data-v-8acbc1c8] {
      color: #949cab;
      margin-left: 0px;
}
.document-status > div.red[data-v-8acbc1c8] {
      color: red;
}
.document-status > div.yellow[data-v-8acbc1c8] {
      color: orange;
}
.document-status > div.green[data-v-8acbc1c8] {
      color: green;
      margin-right: 0px;
}
.document-status > div .documents[data-v-8acbc1c8] {
      margin-top: 1px;
}
a[data-v-8acbc1c8] {
  cursor: pointer;
}
.animation-all-linear[data-v-2af94a57] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-2af94a57] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-2af94a57] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.users-table[data-v-2af94a57] {
  margin-top: 15px;
  max-height: 500px;
  overflow: auto;
}
table[data-v-2af94a57] {
  width: 100%;
}
table.title[data-v-2af94a57] {
    position: sticky;
    top: 0px;
}
table tr th[data-v-2af94a57] {
    background: var(--base-color-secondary);
    padding: 10px;
    text-decoration: none;
    text-align: left;
    padding-left: 10px !important;
}
table tr td[data-v-2af94a57] {
    padding: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    background: #FFFFFF;
    border-bottom: 1px solid #f1f4f9;
    text-align: left;
}
table tr .role-column[data-v-2af94a57] {
    width: 105px;
}
table tr .login-column[data-v-2af94a57] {
    width: 105px;
}
table tr .status-column[data-v-2af94a57] {
    width: 135px;
}
.status-column[data-v-2af94a57] {
  width: 155px;
}
a[data-v-2af94a57] {
  cursor: pointer;
}
.animation-all-linear[data-v-a1228202] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-a1228202] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-a1228202] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.users-table[data-v-a1228202] {
  margin-top: 15px;
  max-height: 500px;
  overflow: auto;
}
table[data-v-a1228202] {
  width: 100%;
}
table.title[data-v-a1228202] {
    position: sticky;
    top: 0px;
}
table tr th[data-v-a1228202] {
    background: var(--base-color-secondary);
    padding: 10px;
    text-decoration: none;
    text-align: left;
    padding-left: 10px !important;
}
table tr td[data-v-a1228202] {
    padding: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    background: #FFFFFF;
    border-bottom: 1px solid #f1f4f9;
    text-align: left;
}
table tr .name-column.invited[data-v-a1228202] {
    color: #9d9d9e;
}
table tr .email-column[data-v-a1228202] {
    width: 250px;
}
table tr .permission-column[data-v-a1228202] {
    width: 80px;
}
.status-column[data-v-a1228202] {
  width: 155px;
}
a[data-v-a1228202] {
  cursor: pointer;
}
.animation-all-linear[data-v-79902c58] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-79902c58] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-79902c58] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.tags-table[data-v-79902c58] {
  margin-top: 15px;
  max-height: 500px;
  overflow: auto;
}
table[data-v-79902c58] {
  width: 100%;
}
table.title[data-v-79902c58] {
    position: sticky;
    top: 0px;
}
table tr th[data-v-79902c58] {
    background: var(--base-color-secondary);
    padding: 10px;
    text-decoration: none;
    text-align: left;
    padding-left: 10px !important;
}
table tr td[data-v-79902c58] {
    padding: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    background: #FFFFFF;
    border-bottom: 1px solid #f1f4f9;
    text-align: left;
}
table tr .name-column.invited[data-v-79902c58] {
    color: #9d9d9e;
}
.status-column[data-v-79902c58] {
  width: 155px;
}
a[data-v-79902c58] {
  cursor: pointer;
}
.animation-all-linear[data-v-56eddd95] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-56eddd95] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-56eddd95] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.accounts-table[data-v-56eddd95] {
  margin-top: 15px;
  max-height: 500px;
  overflow: auto;
}
table[data-v-56eddd95] {
  width: 100%;
}
table.title[data-v-56eddd95] {
    position: sticky;
    top: 0px;
}
table tr th[data-v-56eddd95] {
    background: var(--base-color-secondary);
    padding: 10px;
    text-decoration: none;
    text-align: left;
    padding-left: 10px !important;
}
table tr td[data-v-56eddd95] {
    padding: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    background: #FFFFFF;
    border-bottom: 1px solid #f1f4f9;
    text-align: left;
}
table tr .name-column.invited[data-v-56eddd95] {
    color: #9d9d9e;
}
.status-column[data-v-56eddd95] {
  width: 155px;
}
a[data-v-56eddd95] {
  cursor: pointer;
}
.animation-all-linear[data-v-745fc11e] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-745fc11e] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-745fc11e] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.document-name[data-v-745fc11e] {
  font-size: 16px;
  display: inline-block;
  margin-left: 7px;
}
.errors[data-v-745fc11e] {
  margin-top: 15px;
}
.errors .error[data-v-745fc11e] {
    color: #f44963;
    margin-top: 5px;
}
.form-field[data-v-745fc11e] label {
  font-weight: bold;
  display: block;
}
.form-field[data-v-745fc11e] label a {
    float: right;
    cursor: pointer;
}
.form-field[data-v-745fc11e] .not-applicable {
  position: absolute;
  bottom: 12px;
  right: 12px;
}
.form-field[data-v-745fc11e] .not-applicable input {
    position: relative;
    top: 2px;
    left: -5px;
}
.form-field[data-v-745fc11e] .not-applicable label {
    font-weight: normal;
    display: inline-block;
}
.form-field[data-v-745fc11e] input.error {
  border: 1px solid #FF0000;
}
.form-field[data-v-745fc11e] {
  position: relative;
}
.form-field.with_more_space[data-v-745fc11e] {
    margin-bottom: 17px;
}
.type_of_side[data-v-745fc11e] {
  color: #353e4c;
  font-size: 18px;
  font-weight: 600;
  line-height: 34px;
  margin-top: 0;
}
.file_name[data-v-745fc11e] {
  margin-bottom: 20px;
}
.file_name label[data-v-745fc11e] {
    color: #353e4c;
    margin-bottom: 12px;
}
.left-side-checkbox input[data-v-745fc11e]:after {
  border-radius: 3px;
  content: '';
  display: block;
  height: 13px;
  position: absolute;
  top: 0;
  width: 13px;
}
.app-modal__header .title {
  font-weight: 500;
}
.step-bar {
  height: 4px;
  background-color: #D8D2DA;
}
.step-bar .step-bar-visible {
    height: 100%;
    width: 0%;
    background-color: #3da4f3;
}
.app-modal__footer-text {
  z-index: 1;
}
.buttons {
  z-index: 100;
  position: relative;
}
[data-v-7b6a24a4] select {
  width: 100%;
}
a[data-v-7b6a24a4] {
  cursor: pointer;
}
.italic[data-v-7b6a24a4] {
  font-style: italic;
}
.user-accounts[data-v-7b6a24a4] {
  margin-bottom: 15px;
  font-size: 14px;
}
.user-documents[data-v-7b6a24a4] {
  margin-top: 15px;
  margin-bottom: 15px;
}
.scheduled .scheduled-title[data-v-7b6a24a4] {
  font-weight: bold;
}
.finish .note[data-v-7b6a24a4] {
  margin-bottom: 15px;
  display: block;
}
.finish ul[data-v-7b6a24a4] {
  margin-top: 15px;
  padding-left: 15px;
}
[data-v-bd053a6a] select {
  width: 100%;
}
a[data-v-bd053a6a] {
  cursor: pointer;
}
.popup-label[data-v-bd053a6a] {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--base-color-text);
}
.permission-select *[data-v-bd053a6a] {
  cursor: pointer;
}
.form-holder[data-v-bd053a6a] {
  padding: 7px;
  background-color: #FFFFFF;
  border-radius: 4px;
  border: solid 1px #D0DAE3;
  margin-bottom: 15px;
}
.form-holder[data-v-bd053a6a] input {
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: 1px;
}
.document-permissions .icon[data-v-bd053a6a] {
  font-size: 19px;
  display: inline-block;
  margin-left: 7px;
  margin-right: 7px;
}
.document-permissions .icon.icon-pencil5[data-v-bd053a6a] {
    font-size: 15px;
}
.document-permissions .edit-access-documents .document-access-title[data-v-bd053a6a] {
  margin-top: 35px;
}
.document-permissions .document-access-title[data-v-bd053a6a] {
  font-size: 17px;
  margin-bottom: 15px;
  font-weight: bold;
}
.document-permissions .custom-control[data-v-bd053a6a] {
  display: inline-block;
}
.document-permissions .custom-control + .custom-control[data-v-bd053a6a] {
    margin-left: 25px;
}
.document-permissions .custom-control[data-v-bd053a6a] label {
    cursor: pointer;
}
.document-accounts .document-accounts-title[data-v-bd053a6a] {
  font-size: 16px;
  font-weight: bold;
}
.document-accounts .scheduled-share > div[data-v-bd053a6a] {
  margin-top: 15px;
  margin-bottom: 15px;
}
.document-accounts .scheduled-share-error[data-v-bd053a6a] {
  color: #f44963;
}
.document-accounts .account[data-v-bd053a6a] {
  background: #FFFFFF;
  padding: 15px;
  border-bottom: 1px solid var(--base-color-secondary-lighten3);
  cursor: pointer;
}
.document-accounts .account.all-accounts[data-v-bd053a6a] {
    margin-top: 20px;
}
.document-accounts .account.selected[data-v-bd053a6a] {
    background-color: #FAF7E4;
}
.document-accounts .account input[data-v-bd053a6a] {
    margin-right: 10px;
    position: relative;
    top: 1px;
    pointer-events: none;
}
.document-accounts .document-accounts-select[data-v-bd053a6a] {
  max-height: 250px;
  overflow: auto;
  margin-top: 0px;
}
.scheduled .scheduled-title[data-v-bd053a6a] {
  font-size: 16px;
  font-weight: bold;
}
.italic[data-v-bd053a6a] {
  font-style: italic;
}
span.error[data-v-bd053a6a] {
  color: #f44963;
}
.popover.vue-delete-popover {
  overflow: visible;
  display: block;
  opacity: 1;
  max-width: 350px;
}
.popover.vue-delete-popover .arrow {
    width: 20px;
    height: 10px;
    margin: 6px 0;
    position: absolute;
    display: block;
    right: -18px;
    color: transparent;
    margin-top: -7px;
}
.popover.vue-delete-popover .arrow:before {
      right: 0;
      border-color: transparent;
      border-left-color: rgba(0, 0, 0, 0.25);
      border-width: 10px 0 10px 10px;
      position: absolute;
      display: block;
      content: "";
      border-style: solid;
}
.popover.vue-delete-popover .arrow:after {
      position: absolute;
      display: block;
      content: "";
      border-color: transparent;
      border-style: solid;
      right: 1px;
      border-width: 10px 0 10px 10px;
      border-left-color: #fff;
}
.popover-holder[data-v-6acadc12] {
  width: 250px;
}
.title[data-v-6acadc12] {
  font-size: 16px;
  font-weight: normal;
  color: #353e4e;
  padding: 15px;
  border-bottom: 1px solid var(--base-color-text-lighten3);
}
.actions[data-v-6acadc12] {
  padding: 15px;
  margin-top: -10px;
}
.actions button[data-v-6acadc12] {
    display: inline-block;
}
.actions button.btn-outline[data-v-6acadc12] {
      background: none;
      border: 1px solid #e4e5e8;
}
.actions button.delete-btn[data-v-6acadc12] {
      float: right;
}
.animation-all-linear[data-v-9bd5ca62] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-9bd5ca62] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-9bd5ca62] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.groups[data-v-9bd5ca62] {
  max-height: 320px;
  background: #FFFFFF;
  overflow: auto;
}
.groups .empty[data-v-9bd5ca62] {
    padding: 15px;
}
.groups .group[data-v-9bd5ca62] {
    padding: 15px;
    border-top: 1px solid var(--base-color-border);
    cursor: pointer;
}
.groups .group input[data-v-9bd5ca62] {
      display: inline-block;
      margin-right: 10px;
      position: relative;
      top: 2px;
      cursor: pointer;
}
.groups .group label[data-v-9bd5ca62] {
      cursor: pointer;
}
.groups .group.selected[data-v-9bd5ca62] {
      background-color: #FAF7E4;
}
.table-title[data-v-9bd5ca62] {
  color: var(--base-color-secondary);
  font-weight: bold;
  font-size: 14px;
}
.filter[data-v-9bd5ca62] {
  margin-bottom: 25px;
}
.filter > *[data-v-9bd5ca62] {
    display: inline-block;
}
.filter input[data-v-9bd5ca62] {
    width: 450px;
}
.filter button[data-v-9bd5ca62] {
    float: right;
    margin-top: 0px;
    color: #4e5560;
    background: #FFFFFF;
    display: inline-block;
    font-weight: 400;
    font-size: 1.2em;
    padding: 9px 20px;
    outline: none;
    border: #DDDEE0 solid 1px;
    border-radius: 80px;
    cursor: pointer;
}
.add-group[data-v-9bd5ca62] {
  margin-bottom: 25px;
}
.add-group > *[data-v-9bd5ca62] {
    display: inline-block;
}
.add-group input[data-v-9bd5ca62] {
    width: 400px;
}
.add-group .button-holder[data-v-9bd5ca62] {
    float: right;
}
.add-group .button-holder button[data-v-9bd5ca62] {
      margin-top: 0px;
      line-height: 10px;
}
.groups-table[data-v-9bd5ca62] {
  margin-top: 15px;
  max-height: 500px;
  overflow: auto;
  position: relative;
}
.groups-table table.title[data-v-9bd5ca62] {
    z-index: 100;
}
.groups-table .vue-delete-popover[data-v-9bd5ca62] {
    z-index: 0;
}
.groups-table .empty[data-v-9bd5ca62] {
    padding: 15px;
    text-align: center;
    background-color: #FFFFFF;
}
table[data-v-9bd5ca62] {
  width: 100%;
}
table.title[data-v-9bd5ca62] {
    position: sticky;
    top: 0px;
}
table tr th[data-v-9bd5ca62] {
    background: var(--base-color-secondary);
    padding: 10px;
    text-decoration: none;
    text-align: left;
    padding-left: 10px !important;
}
table tr td[data-v-9bd5ca62] {
    padding: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    background: #FFFFFF;
    border-bottom: 1px solid #f1f4f9;
    text-align: left;
}
table tr .users-column[data-v-9bd5ca62] {
    width: 75px;
    text-align: center;
}
table tr .users-column > span[data-v-9bd5ca62] {
      border-bottom: 1px dotted;
}
table tr .users-column > span.empty[data-v-9bd5ca62] {
        border: none;
        color: #aeb2b5;
        background: none;
}
table tr .delete-column[data-v-9bd5ca62] {
    width: 75px;
    text-align: center;
}
table tr .delete-column .delete-group[data-v-9bd5ca62] {
      color: #3da4f3;
      font-size: 19px;
      cursor: pointer;
      top: -2px;
      position: relative;
}
table tr .select-column[data-v-9bd5ca62] {
    width: 50px;
}
table tr.group-row.highlight td[data-v-9bd5ca62] {
    background: #faf7e4;
}
span.user[data-v-9bd5ca62] {
  margin-bottom: 5px;
  display: inline-block;
}
span.user span.item-text[data-v-9bd5ca62] {
    font-size: 12px;
    line-height: 1.33;
    font-weight: normal;
    color: #FFFFFF;
    display: inline-block;
}
span.user + span.user span.item-text[data-v-9bd5ca62] {
    margin-left: 7px;
}
span.user span.label[data-v-9bd5ca62] {
    font-size: 12px;
    font-weight: 600;
    line-height: 10px;
    color: #FFFFFF;
    padding: 5px;
    border-radius: 10px;
    background-color: var(--base-color-secondary-lighten);
    display: inline-block;
    margin-left: 5px;
    margin-right: 1px;
    text-transform: uppercase;
}
.account-title[data-v-160852ea] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 235px;
}
.account-title.switchable[data-v-160852ea] {
    color: #3da4f3;
}
a[data-v-160852ea] {
  cursor: pointer;
}
span[data-v-160852ea] {
  font-weight: 500;
}
.accounts-table[data-v-8cd6274e] {
  margin-top: 15px;
  max-height: 500px;
}
table[data-v-8cd6274e] {
  width: 100%;
}
table.title[data-v-8cd6274e] {
    position: sticky;
    top: 0px;
}
table tr th[data-v-8cd6274e] {
    background: var(--base-color-secondary);
    padding: 10px;
    text-decoration: none;
}
table tr td[data-v-8cd6274e] {
    padding: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    background: #FFFFFF;
    border-bottom: 1px solid #f1f4f9;
}
.status-column[data-v-8cd6274e] {
  width: 155px;
}
.status-icon[data-v-8cd6274e] {
  background: #FFFFFF;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 1px;
  height: 16px;
}
.status-icon.icon-file-empty2[data-v-8cd6274e] {
    color: #949eab;
}
.choosen_status[data-v-8cd6274e] {
  font-weight: 600;
}
[data-v-8cd6274e] .account-type {
  width: 100px;
}
[data-v-8cd6274e] .account-role {
  width: 75px;
}
.document-status[data-v-8cd6274e] {
  float: right;
  width: 130px;
}
.document-status > div[data-v-8cd6274e] {
    width: 22px;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    opacity: 1;
    text-align: center;
}
.document-status > div.empty[data-v-8cd6274e] {
      opacity: 0.2;
}
.document-status > div.placeholders[data-v-8cd6274e] {
      color: #949eab;
      margin-left: 0px;
}
.document-status > div.red[data-v-8cd6274e] {
      color: red;
}
.document-status > div.yellow[data-v-8cd6274e] {
      color: orange;
}
.document-status > div.green[data-v-8cd6274e] {
      color: green;
      margin-right: 0px;
}
.document-status > div .documents[data-v-8cd6274e] {
      margin-top: 1px;
}
a[data-v-8cd6274e] {
  cursor: pointer;
}
.animation-all-linear[data-v-490a9224] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-490a9224] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-490a9224] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.deleted-enter-active[data-v-490a9224], .deleted-leave-active[data-v-490a9224] {
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}
.deleted-enter[data-v-490a9224], .deleted-leave-to[data-v-490a9224] {
  opacity: 0;
}
.table-title[data-v-490a9224] {
  color: var(--base-color-secondary);
  font-weight: bold;
  font-size: 14px;
}
.groups-table[data-v-490a9224] {
  margin-top: 15px;
  max-height: 500px;
  overflow: auto;
}
table[data-v-490a9224] {
  width: 100%;
}
table.title[data-v-490a9224] {
    position: sticky;
    top: 0px;
}
table tr th[data-v-490a9224] {
    background: var(--base-color-secondary);
    padding: 10px;
    text-decoration: none;
    text-align: left;
    padding-left: 10px !important;
}
table tr td[data-v-490a9224] {
    padding: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    background: #FFFFFF;
    border-bottom: 1px solid #f1f4f9;
    text-align: left;
}
table tr .delete-column[data-v-490a9224] {
    width: 75px;
    text-align: center;
}
table tr .delete-column .delete-group[data-v-490a9224] {
      color: #3da4f3;
      font-size: 19px;
      cursor: pointer;
      top: -2px;
      position: relative;
}
.tags[data-v-aa1d3e3a] {
  max-height: 320px;
  background: #FFFFFF;
  overflow: auto;
}
.tags .empty[data-v-aa1d3e3a] {
    padding: 15px;
}
.tags .tag[data-v-aa1d3e3a] {
    padding: 15px;
    border-top: 1px solid var(--base-color-border);
    cursor: pointer;
}
.tags .tag input[data-v-aa1d3e3a] {
      display: inline-block;
      margin-right: 10px;
      position: relative;
      top: 2px;
      cursor: pointer;
}
.tags .tag label[data-v-aa1d3e3a] {
      cursor: pointer;
}
.tags .tag.selected[data-v-aa1d3e3a] {
      background-color: #FAF7E4;
}
.table-title[data-v-aa1d3e3a] {
  color: var(--base-color-secondary);
  font-weight: bold;
  font-size: 14px;
}
.filter[data-v-aa1d3e3a] {
  margin-bottom: 25px;
}
.filter > *[data-v-aa1d3e3a] {
    display: inline-block;
}
.filter input[data-v-aa1d3e3a] {
    width: 450px;
}
.filter button[data-v-aa1d3e3a] {
    float: right;
    margin-top: 0px;
    color: #4e5560;
    background: #FFFFFF;
    display: inline-block;
    font-weight: 400;
    font-size: 1.2em;
    padding: 9px 20px;
    outline: none;
    border: #DDDEE0 solid 1px;
    border-radius: 80px;
    cursor: pointer;
}
a.add-tag[data-v-aa1d3e3a] {
  cursor: pointer;
}
.tags[data-v-4839694f] {
  max-height: 320px;
  background: #FFFFFF;
  overflow: auto;
}
.tags .empty[data-v-4839694f] {
    padding: 15px;
}
.tags .tag[data-v-4839694f] {
    padding: 15px;
    border-top: 1px solid var(--base-color-border);
    cursor: pointer;
}
.tags .tag input[data-v-4839694f] {
      display: inline-block;
      margin-right: 10px;
      position: relative;
      top: 2px;
      cursor: pointer;
}
.tags .tag label[data-v-4839694f] {
      cursor: pointer;
}
.tags .tag.selected[data-v-4839694f] {
      background-color: #FAF7E4;
}
.table-title[data-v-4839694f] {
  color: var(--base-color-secondary);
  font-weight: bold;
  font-size: 14px;
}
.filter[data-v-4839694f] {
  margin-bottom: 25px;
}
.filter > *[data-v-4839694f] {
    display: inline-block;
}
.filter input[data-v-4839694f] {
    width: 450px;
}
.filter button[data-v-4839694f] {
    float: right;
    margin-top: 0px;
    color: #4e5560;
    background: #FFFFFF;
    display: inline-block;
    font-weight: 400;
    font-size: 1.2em;
    padding: 9px 20px;
    outline: none;
    border: #DDDEE0 solid 1px;
    border-radius: 80px;
    cursor: pointer;
}
a.add-tag[data-v-4839694f] {
  cursor: pointer;
}
.accounts-list[data-v-3ae30568] {
  max-height: 320px;
  background: #FFFFFF;
  overflow: auto;
  border-radius: 4px;
  margin-top: 15px;
}
.accounts-list .account[data-v-3ae30568] {
    font-weight: 500;
}
.accounts-list .account[data-v-3ae30568]:last-child {
      border-bottom: none;
}
.animation-all-linear[data-v-66e8086a] {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s;
}
.center-vertical-absolute[data-v-66e8086a] {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
}
.center-horizontal-absolute[data-v-66e8086a] {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
}
.drop-upload-wrapper {
  width: calc(100% + 30px);
  height: calc(100% + 50px);
  position: absolute;
  left: -15px;
  top: -23px;
  border: 15px solid #b9e3fd;
  z-index: 100;
  visibility: hidden; }
  .drop-upload-wrapper.show-dragover {
    visibility: visible; }
  .drop-upload-wrapper .drop-upload-dropzone {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    border: 2px dashed var(--base-color-primary);
    opacity: 0.7;
    background: rgba(186, 227, 253, 0.7);
    position: absolute; }
  .drop-upload-wrapper .dropzone-content {
    width: 100%;
    position: absolute;
    top: 50%;
    margin-top: -95px; }
  .drop-upload-wrapper .upload-box-icon {
    text-align: center;
    margin-bottom: 20px; }
  .drop-upload-wrapper .dropzone-text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    color: var(--base-color-text); }

.show-dragover .drop-upload-wrapper {
  visibility: visible; }
.widget[data-v-eea9923e] {
  width: 100%;
  padding: 23px;
  border-radius: 17px;
  border: solid 1px #62b9f1;
  background-color: #FFFFFF;
  margin-bottom: 20px;
}
.widget-top[data-v-eea9923e] {
  margin-bottom: 30px;
}
.widget-top > *[data-v-eea9923e] {
    display: inline-block;
}
.widget-top h2[data-v-eea9923e] {
    margin: 0px;
    font-size: 22px;
    font-weight: 600;
    color: #3b3e53;
}
.widget-top .widget-controls[data-v-eea9923e] {
    float: right;
    position: relative;
    z-index: 10;
}
.widget-top .widget-controls > button[data-v-eea9923e] {
      width: 32px;
      height: 32px;
      font-size: 19px;
      line-height: 0px;
      display: inline-block;
      border-radius: 100%;
      color: #FFFFFF;
      background: #3da4f3;
      border: 1px solid #3da4f3;
      text-align: center;
      text-indent: 1px;
}
.widget-top .widget-controls > button[data-v-eea9923e]:focus {
        background: var(--base-color-primary-lighten);
}
.widget-top .widget-controls > button[data-v-eea9923e]:hover {
        background: var(--base-color-primary-lighten);
}
.user-icon[data-v-6d3f8d67] {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #69B9AF;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  display: inline-block;
}
.user-icon.wide[data-v-6d3f8d67] {
    width: 67px;
    height: 67px;
    font-size: 37px;
    line-height: 70px;
}
.user-icon.wide .name[data-v-6d3f8d67] {
      display: inline-block;
}
.user-icon img[data-v-6d3f8d67] {
    width: 100%;
    vertical-align: top;
}
.user-icon .avatar[data-v-6d3f8d67] {
    display: inline-block;
}
.logged-in-title[data-v-24e73159] {
  margin-top: -50px;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: normal;
  color: #3b3e53;
}
.logged-in-users[data-v-24e73159] {
  margin-left: -15px;
}
.logged-in-users[data-v-24e73159] .user-icon {
    margin-left: 10px;
}
.numbers[data-v-24e73159] {
  margin-top: 7px;
  color: #3b3e53;
}
.number[data-v-24e73159] {
  font-size: 30px;
  font-weight: 600;
  color: var(--base-color-secondary);
  position: relative;
  top: 5px;
}
.text[data-v-24e73159] {
  font-size: 18px;
  font-weight: 600;
}
.role[data-v-24e73159] {
  color: #FFFFFF;
  text-transform: uppercase;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.21);
  display: inline-block;
  margin-left: 5px;
  background-color: #4e5560;
  font-size: 10px;
  font-weight: 500;
  line-height: 11px;
  padding: 1px 4px;
}
.document-status[data-v-64fb5099] {
  width: 130px;
  height: 30px;
  text-align: right;
  overflow: hidden;
  position: relative;
}
.document-status > div[data-v-64fb5099] {
    width: 22px;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    opacity: 1;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}
.document-status > div.empty[data-v-64fb5099] {
      opacity: 0.2;
      cursor: initial;
}
.document-status > div.placeholders[data-v-64fb5099] {
      color: #949eab;
      margin-left: 0px;
}
.document-status > div.red[data-v-64fb5099] {
      color: red;
}
.document-status > div.yellow[data-v-64fb5099] {
      color: orange;
}
.document-status > div.green[data-v-64fb5099] {
      color: green;
      margin-right: 0px;
}
.document-status > div .documents[data-v-64fb5099] {
      margin-top: 1px;
}
.document-status > div .documents.clickable[data-v-64fb5099] {
        color: #3da4f3;
        cursor: pointer;
}
.documents-widget[data-v-6579c05e] {
  height: 450px;
}
.global[data-v-6579c05e] {
  display: inline-block;
  margin-left: 7px;
}
[data-v-6579c05e] .loader-container {
  margin-top: 100px;
}
[data-v-6579c05e] .document-name {
  width: 280px;
}
[data-v-6579c05e] td.document-accounts {
  text-align: center;
}
[data-v-6579c05e] .document-statuses {
  width: 135px;
}
[data-v-6579c05e] .app-table {
  height: 280px;
}
.filters[data-v-6579c05e] {
  height: 35px;
}
.filters .filter[data-v-6579c05e] {
    display: inline-block;
}
.filters .filter.filter-tags[data-v-6579c05e] {
      width: 300px;
}
.filters .filter.filter-reset[data-v-6579c05e] {
      line-height: 35px;
      margin-left: 20px;
      vertical-align: top;
}
.filters .filter.filter-reset a[data-v-6579c05e] {
        cursor: pointer;
}
.icon-tag[data-v-6579c05e] {
  margin-left: 10px;
  display: inline-block;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.numbers[data-v-12c2a16c] {
  margin-top: 7px;
  margin-bottom: 30px;
  color: #3b3e53;
}
.number[data-v-12c2a16c] {
  font-size: 30px;
  font-weight: 600;
  color: var(--base-color-secondary);
  position: relative;
  top: 5px;
}
.text[data-v-12c2a16c] {
  font-size: 18px;
  font-weight: 600;
}
.documents-activity-widget[data-v-570334a6] {
  height: 450px;
}
.global[data-v-570334a6] {
  display: inline-block;
  margin-left: 7px;
}
[data-v-570334a6] .document-name {
  width: 230px;
}
[data-v-570334a6] .loader-container {
  margin-top: 100px;
}
[data-v-570334a6] .document-account {
  width: 135px;
}
[data-v-570334a6] .app-table {
  height: 280px;
}
[data-v-570334a6] .datepicker-dropdown {
  width: 255px;
}
.filters[data-v-570334a6] {
  height: 35px;
}
.filters .filter[data-v-570334a6] {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    vertical-align: top;
}
.filters .filter.filter-activity[data-v-570334a6] {
      width: 200px;
      margin-left: 0px;
}
.filters .filter.filter-date[data-v-570334a6] {
      width: 105px;
}
.filters .filter.filter-date input[data-v-570334a6] {
        height: 35px;
        font-size: 14px;
}
.filters .filter.filter-arrow[data-v-570334a6] {
      text-align: center;
      line-height: 35px;
}
.filters .filter.filter-reset[data-v-570334a6] {
      width: 35px;
      margin-right: 0px;
      line-height: 35px;
      float: right;
      vertical-align: middle;
}
.filters .filter.filter-reset a[data-v-570334a6] {
        cursor: pointer;
}
.vue-modal .app-modal__header .title {
  font-weight: 500;
}
.vue-modal .modal-body {
  padding: 0px;
}
.accounts-table[data-v-6a77ecfa] {
  margin-top: 15px;
  max-height: 500px;
}
[data-v-6a77ecfa] .document-statuses {
  width: 135px;
}
table[data-v-6a77ecfa] {
  width: 100%;
}
table.title[data-v-6a77ecfa] {
    position: sticky;
    top: 0px;
}
table tr th[data-v-6a77ecfa] {
    background: var(--base-color-secondary);
    padding: 10px;
    text-decoration: none;
}
table tr td[data-v-6a77ecfa] {
    padding: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    background: #FFFFFF;
    border-bottom: 1px solid #f1f4f9;
}
.status-icon[data-v-6a77ecfa] {
  background: #FFFFFF;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 1px;
  height: 16px;
}
.status-icon.icon-file-empty2[data-v-6a77ecfa] {
    color: #949eab;
}
.status-column[data-v-6a77ecfa] {
  width: 155px;
}
.choosen_status[data-v-6a77ecfa] {
  font-weight: 600;
}
.document-status[data-v-6a77ecfa] {
  float: right;
  width: 130px;
}
.document-status > div[data-v-6a77ecfa] {
    width: 22px;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    opacity: 1;
    text-align: center;
}
.document-status > div.empty[data-v-6a77ecfa] {
      opacity: 0.2;
}
.document-status > div.placeholders[data-v-6a77ecfa] {
      color: #949eab;
      margin-left: 0px;
}
.document-status > div.red[data-v-6a77ecfa] {
      color: red;
}
.document-status > div.yellow[data-v-6a77ecfa] {
      color: orange;
}
.document-status > div.green[data-v-6a77ecfa] {
      color: green;
      margin-right: 0px;
}
.document-status > div .documents[data-v-6a77ecfa] {
      margin-top: 1px;
}
a[data-v-6a77ecfa] {
  cursor: pointer;
}
.accounts-table[data-v-16f3c9ae] {
  margin-top: 15px;
  max-height: 500px;
}
table[data-v-16f3c9ae] {
  width: 100%;
}
table.title[data-v-16f3c9ae] {
    position: sticky;
    top: 0px;
}
table tr th[data-v-16f3c9ae] {
    background: var(--base-color-secondary);
    padding: 10px;
    text-decoration: none;
}
table tr td[data-v-16f3c9ae] {
    padding: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    background: #FFFFFF;
    border-bottom: 1px solid #f1f4f9;
}
.status-column[data-v-16f3c9ae] {
  width: 155px;
}
.status-icon[data-v-16f3c9ae] {
  background: #FFFFFF;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 1px;
  height: 16px;
}
.status-icon.icon-file-empty2[data-v-16f3c9ae] {
    color: #949eab;
}
.choosen_status[data-v-16f3c9ae] {
  font-weight: 600;
}
[data-v-16f3c9ae] .document-statuses {
  width: 135px;
}
.document-status[data-v-16f3c9ae] {
  float: right;
  width: 130px;
}
.document-status > div[data-v-16f3c9ae] {
    width: 22px;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    opacity: 1;
    text-align: center;
}
.document-status > div.empty[data-v-16f3c9ae] {
      opacity: 0.2;
}
.document-status > div.placeholders[data-v-16f3c9ae] {
      color: #949eab;
      margin-left: 0px;
}
.document-status > div.red[data-v-16f3c9ae] {
      color: red;
}
.document-status > div.yellow[data-v-16f3c9ae] {
      color: orange;
}
.document-status > div.green[data-v-16f3c9ae] {
      color: green;
      margin-right: 0px;
}
.document-status > div .documents[data-v-16f3c9ae] {
      margin-top: 1px;
}
a[data-v-16f3c9ae] {
  cursor: pointer;
}
.accounts-widget .data-row > div[data-v-297d4d1f] {
  width: 25%;
}
.accounts-widget .data-row > div.accounts[data-v-297d4d1f] {
    width: 25%;
}
.dashboard-widget[data-v-297d4d1f] {
  height: auto;
}
.accounts[data-v-297d4d1f] {
  height: 125px;
  border-right: solid 1px #979797;
}
.accounts-number[data-v-297d4d1f] {
  font-size: 105px;
  font-weight: 300;
  line-height: 125px;
  color: var(--base-color-secondary);
  text-align: center;
}
.subscription[data-v-297d4d1f] {
  text-align: center;
  border-right: solid 1px #979797;
  display: block;
  padding-top: 13px;
  padding-bottom: 13px;
}
.subscription.professional[data-v-297d4d1f] {
    border-right: none;
}
.subscription .subscription-name[data-v-297d4d1f] {
    font-size: 20px;
    font-weight: bold;
    color: #3b3e53;
}
.subscription .subscription-name span + span[data-v-297d4d1f] {
      font-weight: normal;
}
.subscription .subscription-accounts[data-v-297d4d1f] {
    font-size: 50px;
    font-weight: 600;
    color: var(--base-color-secondary);
}
.tag[data-v-1fb1229c] {
  font-size: 14px;
  line-height: 16px;
  margin: 4px;
  border-radius: 10px;
  background: var(--base-color-secondary-lighten);
  padding: 4px 6px;
  white-space: nowrap;
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.accounts-tag-widget[data-v-22734b08] {
  height: 450px;
}
.global[data-v-22734b08] {
  display: inline-block;
  margin-left: 7px;
}
[data-v-22734b08] .loader-container {
  margin-top: 100px;
}
[data-v-22734b08] .account-name-field {
  width: 280px;
}
[data-v-22734b08] td.account-accounts {
  text-align: center;
}
[data-v-22734b08] .account-statuses {
  width: 135px;
}
[data-v-22734b08] .app-table {
  height: 280px;
}
.filters[data-v-22734b08] {
  height: 35px;
}
.filters .filter[data-v-22734b08] {
    display: inline-block;
}
.filters .filter.filter-tags[data-v-22734b08] {
      width: 300px;
}
.filters .filter.filter-reset[data-v-22734b08] {
      line-height: 35px;
      margin-left: 20px;
      vertical-align: top;
}
.filters .filter.filter-reset a[data-v-22734b08] {
        cursor: pointer;
}
.icon-tag.flip[data-v-22734b08] {
  margin-left: 10px;
  display: inline-block;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.account-tags .icon-tag[data-v-22734b08]:before {
  width: 12px;
  height: 12px;
}
.account-tags .tags[data-v-22734b08] {
  text-decoration: underline;
  display: inline-block;
  margin-left: 5px;
  cursor: pointer;
}
.accounts-activity-widget[data-v-27dcee30] {
  height: 450px;
}
.global[data-v-27dcee30] {
  display: inline-block;
  margin-left: 7px;
}
[data-v-27dcee30] .account-name-field {
  width: 230px;
}
[data-v-27dcee30] .loader-container {
  margin-top: 100px;
}
[data-v-27dcee30] .account-date {
  width: 135px;
}
[data-v-27dcee30] .app-table {
  height: 280px;
}
[data-v-27dcee30] .datepicker-dropdown {
  width: 255px;
}
.filters[data-v-27dcee30] {
  height: 35px;
}
.filters .filter[data-v-27dcee30] {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    vertical-align: top;
}
.filters .filter.filter-activity[data-v-27dcee30] {
      width: 200px;
      margin-left: 0px;
}
.filters .filter.filter-date[data-v-27dcee30] {
      width: 105px;
}
.filters .filter.filter-date input[data-v-27dcee30] {
        height: 35px;
        font-size: 14px;
}
.filters .filter.filter-arrow[data-v-27dcee30] {
      text-align: center;
      line-height: 35px;
}
.filters .filter.filter-reset[data-v-27dcee30] {
      width: 35px;
      margin-right: 0px;
      line-height: 35px;
      float: right;
      vertical-align: middle;
}
.filters .filter.filter-reset a[data-v-27dcee30] {
        cursor: pointer;
}
.reports-page[data-v-62f302d0] {
  border-top: solid 1px #d1dae2;
}
h1[data-v-62f302d0] {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 600;
  color: #3b3e53;
}
button[data-v-62f302d0] {
  background: #3da4f3;
  border: 1px solid #3da4f3;
  border-radius: 100%;
  color: #FFFFFF;
  display: inline-block;
  font-size: 19px;
  height: 40px;
  line-height: 0px;
  margin-left: 15px;
  text-align: center;
  width: 40px;
}
button[data-v-62f302d0]:focus {
    outline: 1px solid #3da4f3;
}
.account-manager-filters[data-v-2890b350] {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 15px;
  border-radius: 4px;
}
.filters[data-v-2890b350] {
  margin-right: -5px;
  margin-left: -5px;
}
.filter[data-v-2890b350] {
  padding: 0 5px;
}
.filter input[data-v-2890b350] {
  border: 1px solid var(--base-color-secondary-lighten2);
  border-radius: 4px;
}
.filter input[data-v-2890b350]:focus {
    border-color: var(--base-color-primary);
}
.buttons[data-v-2890b350] {
  text-align: right;
}
.buttons .reset[data-v-2890b350] {
    background: #FFFFFF;
    border: 1px solid var(--base-color-primary);
    display: inline-block;
    margin-right: 5px;
    color: var(--base-color-primary);
}
.buttons .reset[data-v-2890b350]:hover {
      background-color: var(--base-color-primary-lighten3);
}
.buttons .btn[data-v-2890b350] {
    padding: 5px 15px;
    font-weight: normal;
    position: relative;
    top: 10px;
}
h2[data-v-3ad93953] {
  margin-top: 0px;
  margin-bottom: 0px;
}
header[data-v-3ad93953] {
  padding: 16px;
  border-bottom: 1px solid var(--base-color-border-light);
  margin-bottom: 10px;
  position: relative;
}
.buttons[data-v-3ad93953] {
  text-align: right;
}
.app-page[data-v-35054d4c] {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 5px;
  border: 1px solid var(--base-color-text-lighten3);
  display: block;
  margin-bottom: 15px;
  min-height: 500px;
}
.app-page[data-v-35054d4c] {
    color: #353e4e;
}
.app-page-header[data-v-35054d4c] {
  min-height: 70px;
}
.app-page-data[data-v-35054d4c] {
  padding: 16px 30px;
}
.app-page-loader-holder[data-v-35054d4c] {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(241, 244, 249, 0.6);
  z-index: 1500;
}
[data-v-35054d4c] .loader-container {
  height: 100%;
}
h3[data-v-c300c25a] {
  line-height: 50px;
  font-size: 25px;
  font-weight: 500;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--base-color-border-light);
  margin-top: 0px;
}
.subscriptions[data-v-c300c25a] {
  font-size: 16px;
}
.account-manager-documents[data-v-07c2cc64] {
  white-space: nowrap;
}
.account-manager-documents.full[data-v-07c2cc64] {
    color: #f44963;
}
.account-suspended[data-v-431237f8] {
  display: inline-block;
  margin-left: 5px;
  color: #f44963;
}
[data-v-516382ce] .custom-control-input {
  color: #FFFFFF;
  cursor: pointer;
}
.account-gear[data-v-a74e00e8] {
  text-align: right;
}
[data-v-a74e00e8] button.btn.dropdown-toggle {
  padding: 0px;
  font-size: 18px;
  margin: 0px;
  color: #3da4f3;
  height: 24px;
  line-height: 21px;
}
[data-v-a74e00e8] button.btn.dropdown-toggle:focus {
    border: none;
    text-decoration: none;
}
[data-v-a74e00e8] ul.dropdown-menu {
  border: 1px solid var(--base-color-border-light);
  -webkit-box-shadow: 0px 0px 1px 0px var(--base-color-border-light);
          box-shadow: 0px 0px 1px 0px var(--base-color-border-light);
}
[data-v-a74e00e8] ul.dropdown-menu:focus-visible {
    border: 1px solid var(--base-color-border-light);
    outline: none;
}
[data-v-a74e00e8] ul.dropdown-menu:before {
    content: '';
    display: block;
    position: absolute;
    right: 13px;
    bottom: 100%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: var(--base-color-border-light);
}
[data-v-a74e00e8] ul.dropdown-menu:after {
    content: '';
    display: block;
    position: absolute;
    right: 14px;
    bottom: 100%;
    width: 0;
    height: 0;
    border: 9px solid transparent;
    border-bottom-color: white;
}
[data-v-a74e00e8] ul.dropdown-menu[x-placement="top-start"]:before {
    top: 100%;
    border-top-color: var(--base-color-border-light);
    border-bottom: none;
}
[data-v-a74e00e8] ul.dropdown-menu[x-placement="top-start"]:after {
    top: 100%;
    border-top-color: white;
    border-bottom: none;
}
.delete[data-v-a74e00e8] {
  width: 250px;
}
.delete .title[data-v-a74e00e8] {
    border-bottom: 1px solid #dae5e9;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
}
.delete .title h2[data-v-a74e00e8] {
      margin: 0px;
      font-size: 18px;
}
.delete .buttons[data-v-a74e00e8] {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
}
.delete .buttons button[data-v-a74e00e8] {
      padding-top: 6px;
      padding-bottom: 6px;
      padding-left: 10px;
      padding-right: 10px;
      font-size: 14px;
      font-weight: 400;
      margin-top: 5px;
      margin-bottom: 15px;
}
.icon-meatball[data-v-0d55ccce] {
  width: 35px;
  height: 25px;
  -webkit-transform: scale(0.65);
          transform: scale(0.65);
  fill: #3da4f3;
}
.account-manager-table-gear[data-v-1b1d4a48] {
  height: 33px;
}
[data-v-1b1d4a48] li.menu-item a.dropdown-item {
  color: #3da4f3;
  padding-left: 10px;
}
[data-v-1b1d4a48] li.menu-item a.dropdown-item i {
    margin-right: 10px;
}
[data-v-1b1d4a48] li.menu-item a.dropdown-item i.icon-tag-brand::before {
      width: 15px;
      height: 15px;
}
[data-v-1b1d4a48] li.menu-item.danger a.dropdown-item {
  color: #f44963;
  font-weight: 500;
}
.text-avatar[data-v-af44770e] {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  font-size: 10px;
  line-height: 20px;
  background-color: #69B0AF;
  color: #FFFFFF;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  display: inline-block;
}
img[data-v-af44770e] {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  cursor: pointer;
}
.account-users > div[data-v-56b0ef9d] {
  display: inline-block;
}
.account-users > div > div[data-v-56b0ef9d] {
    font-weight: normal;
    text-align: center;
    margin-left: 2px;
    margin-right: 3px;
}
.account-users > div.registered-users[data-v-56b0ef9d] {
    color: green;
}
.account-users > div.invited-users[data-v-56b0ef9d] {
    color: orange;
}
.app-table-pagination[data-v-5f5b1b23] {
  background: #E8F3FB;
  padding: 10px;
}
[data-v-5f5b1b23] .pagination {
  margin: 0px;
}
[data-v-5f5b1b23] .page-item {
  margin-right: 3px;
}
[data-v-5f5b1b23] .page-item.prev {
    display: none;
}
[data-v-5f5b1b23] .page-item.next {
    display: none;
}
[data-v-5f5b1b23] .page-item .page-link {
    background-color: #FFFFFF;
    color: #3da4f3;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 500;
    width: 35px;
    height: 35px;
    border: solid 1px var(--base-color-secondary-lighten2);
    display: inline-block;
    text-align: center;
    padding: 0px;
    line-height: 35px;
}
[data-v-5f5b1b23] .page-item span.page-link {
    float: none;
    color: var(--base-color-text);
}
[data-v-5f5b1b23] .page-item.active button {
    color: var(--base-color-text);
}
.page-select[data-v-5f5b1b23] {
  width: 100px;
  height: 35px;
  position: relative;
  display: inline-block;
  top: -1px;
}
.page-select .page-select-button[data-v-5f5b1b23] {
    width: 100px;
    height: 35px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 4px;
    line-height: 35px;
    padding-left: 5px;
    background: #FFFFFF;
    border: solid 1px var(--base-color-secondary-lighten2);
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-align: left;
}
.page-select .page-select-button span[data-v-5f5b1b23] {
      float: right;
      position: relative;
      top: 7px;
      right: 3px;
}
.page-select select[data-v-5f5b1b23] {
    width: 100px;
    height: 35px;
    opacity: 0;
    position: relative;
    cursor: pointer;
}
span.text[data-v-5f5b1b23] {
  display: inline-block;
  margin-left: 5px;
}
.pagination-holder[data-v-5f5b1b23] {
  text-align: right;
}
h3[data-v-40c66af0] {
  line-height: 50px;
  font-size: 25px;
  font-weight: 500;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--base-color-border-light);
  margin-top: 0px;
}
.subscriptions[data-v-40c66af0] {
  font-size: 16px;
}
[data-v-40c66af0] .app-table {
  max-height: none;
  padding-bottom: 150px !important;
}
[data-v-40c66af0] .app-table-pagination {
  margin-top: -150px !important;
}
.vue-tooltip.users .tooltip-section {
  height: 60px;
}
.vue-tooltip.users .tooltip-section .tooltip-link {
    text-align: right;
}
.vue-tooltip.users .tooltip-section .tootlip-header {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: normal;
}
.vue-tooltip.users .tooltip-section .tootlip-header span {
      vertical-align: middle;
}
.vue-tooltip.users .tooltip-section .tootlip-header .tooltip-icon {
      font-size: 20px;
      margin-right: 5px;
}
.vue-tooltip.users .tooltip-section .tootlip-header .tooltip-icon.users-icon {
        font-size: 13px;
        position: relative;
        top: 0px;
        font-weight: normal;
}
.vue-tooltip.users .tooltip-section .tootlip-header .tooltip-icon.users-icon.icon-users-registered {
          font-size: 12px;
          top: -1px;
}
.vue-tooltip.users .tooltip-section .tooltip-arrow {
    border-top-color: #353e4c;
    opacity: 0.9;
}
.vue-tooltip.users .tooltip-section .tooltip-section {
    display: block;
    margin-bottom: 10px;
    text-align: left;
}
.vue-tooltip.users .tooltip-section .tooltip-section .tooltip-header,
    .vue-tooltip.users .tooltip-section .tooltip-section .tooltip-body {
      display: block;
}
.vue-tooltip.users .tooltip-section .tooltip-section:last-child {
      margin-bottom: 0;
}
.vue-tooltip.users .tooltip-section .tooltip-inner {
    background-color: var(--base-color-text);
    font-weight: 500;
    max-width: inherit;
    opacity: 0.9;
    padding: 11px 14px;
}
.vue-tooltip.users .tooltip-section .label {
    border-radius: 10px;
    background: var(--base-color-secondary-lighten);
    font-size: 10px;
    font-weight: 500;
    line-height: 10px;
    margin-left: 4px;
    padding: 4px 6px;
    text-transform: uppercase;
}
.account-manager-table .tags-holder .icon-tag:before {
  width: 15px;
  height: 15px;
}
.account-manager-table .tags-holder .tags {
  text-decoration: underline;
  font-size: 14px;
  margin-left: 5px;
}
.account-manager-table .app-table th {
  white-space: nowrap;
}
.account-manager-table .app-table .account-select {
  width: 35px;
}
.account-manager-table .app-table .account-title {
  width: 235px;
}
.account-manager-table .app-table .account-id {
  width: 92px;
}
.account-manager-table .app-table .account-plan {
  width: 68px;
}
.account-manager-table .app-table .account-owner {
  width: 60px;
}
.account-manager-table .app-table .account-users {
  width: 100px;
}
.account-manager-table .app-table .account-tags {
  width: 92px;
}
.account-manager-table .app-table .account-documents {
  width: 92px;
}
.account-manager-table .app-table .document-statuses {
  width: 150px;
}
.account-manager-table .app-table .account-mfa {
  width: 50px;
  text-align: center;
}
.account-manager-table .app-table .account-login {
  width: 125px;
}
.account-manager-table .app-table .account-gear {
  width: 50px;
  text-align: right;
}
.account-manager-table .app-table .document-status {
  width: 95px;
  text-align: left;
}
.account-manager-table .app-table .document-status > div {
    margin-left: 0px;
    margin-right: 0px;
}
.account-manager-table .app-table .document-status > div.placeholders {
      margin-left: 0px;
}
.account-manager-table .app-table tr td.account-owner {
  width: auto;
  text-align: center;
}
.account-manager-table .app-table tr.suspended td {
  background-color: var(--base-color-text-lighten3) !important;
}
.account-manager-table .app-table tr.suspended.selected td {
  background-color: var(--base-color-text-lighten3) !important;
}
.account-manager-table .app-table tr.selected td {
  background-color: var(--base-color-primary-lighten3) !important;
}
.account-manager-table .app-table td {
  padding-top: 2px;
}
.mfa-tooltip-container {
  display: inline-block;
  position: relative;
  margin-left: 5px;
  width: 12px;
  height: 12px;
  top: 0px;
  background-color: #FFFFFF;
  border-radius: 50%;
}
.mfa-tooltip-container .info-icon {
    display: inline-block;
    position: absolute;
    top: -2px;
    left: -1px;
    z-index: 1;
}
.app-page-bulk-panel[data-v-54e70064] {
  background: #E7EBF1;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 10000;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-transition: border-radius 0.15s, right 0.15s, -webkit-box-shadow 0.15s;
  transition: border-radius 0.15s, right 0.15s, -webkit-box-shadow 0.15s;
  transition: border-radius 0.15s, box-shadow 0.15s, right 0.15s;
  transition: border-radius 0.15s, box-shadow 0.15s, right 0.15s, -webkit-box-shadow 0.15s;
}
.app-page-bulk-panel.docked[data-v-54e70064] {
    height: 100%;
    -webkit-transform: translate(0px, 0px) !important;
            transform: translate(0px, 0px) !important;
    border-bottom-left-radius: 35px;
    border-top-left-radius: 35px;
    padding-left: 30px;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.panel-select span[data-v-54e70064] {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  display: inline-block;
  color: #FFFFFF;
  border-radius: 100%;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
  margin-right: 5px;
}
.panel-select span.selected-some[data-v-54e70064] {
    background-color: #3da4f3;
}
.panel-select span.selected-all[data-v-54e70064] {
    background-color: #69B0AF;
}
.panel-message[data-v-54e70064] {
  font-weight: bold;
}
.buttons .merge-button[data-v-052e715c] {
  margin-right: 15px;
}
.buttons .panel[data-v-052e715c] {
  position: relative;
}
.buttons button[data-v-052e715c] {
  margin-top: 0px;
}
[data-v-052e715c] .app-table {
  padding-bottom: 65px;
}
[data-v-052e715c] .app-table + .app-table-pagination {
  margin-top: -65px;
}
[data-v-052e715c] .app-page-bulk-panel.docked {
  right: 125px;
}
[data-v-052e715c] .panel-button {
  margin-left: 10px;
}
span.icon.icon-tag-brand[data-v-052e715c] {
  position: relative;
  top: -2px;
}
span.icon.icon-lock[data-v-052e715c] {
  color: #f44963;
  position: relative;
  top: -4px;
}
span.icon.icon-reactivate[data-v-052e715c] {
  position: relative;
  top: -1px;
}
span.icon.icon-bulk-delete[data-v-052e715c] {
  color: #f44963;
}
.bulk-switch-mfa .icon-mfa[data-v-052e715c] {
  position: relative;
  top: -4px;
  right: -2px;
}
[data-v-6e734067] .custom-control-input {
  color: #FFFFFF;
  cursor: pointer;
}
.text-avatar[data-v-3efde33e] {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  font-size: 10px;
  line-height: 20px;
  background-color: #69B0AF;
  color: #FFFFFF;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  display: inline-block;
}
img[data-v-3efde33e] {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  cursor: pointer;
}
.account-users > div[data-v-6d315960] {
  display: inline-block;
}
.account-users > div > div[data-v-6d315960] {
    font-weight: normal;
    text-align: center;
    margin-left: 2px;
    margin-right: 3px;
}
.account-users > div.registered-users[data-v-6d315960] {
    color: green;
}
.account-users > div.invited-users[data-v-6d315960] {
    color: orange;
}
.account-manager-documents.full[data-v-10d15d3a] {
  color: #f44963;
}
.document-manager-date.expired[data-v-9fcf6c1a] {
  color: #f44963;
}
.document-manager-table-gear[data-v-71b6efa6] {
  height: 33px;
}
[data-v-71b6efa6] li.menu-item a.dropdown-item {
  color: #3da4f3;
  padding-left: 10px;
}
[data-v-71b6efa6] li.menu-item a.dropdown-item i {
    margin-right: 10px;
}
[data-v-71b6efa6] li.menu-item a.dropdown-item i.icon-tag-brand::before {
      width: 15px;
      height: 15px;
}
[data-v-71b6efa6] li.menu-item.danger a.dropdown-item {
  color: #f44963;
  font-weight: 500;
}
.document-title[data-v-2036b4ea] {
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 235px;
  position: relative;
  overflow: hidden;
}
.document-title .global[data-v-2036b4ea] {
    padding-right: 7px;
    margin-left: -15px;
}
.document-title .document-name--global[data-v-2036b4ea]::before {
    position: absolute;
    content: '';
    background: url(assets/globe.svg?) no-repeat;
    background-size: contain;
    top: 2px;
    font-size: inherit;
    left: -20px;
    width: 14px;
    height: 14px;
}
.document-title .document-name--global.unpermissioned[data-v-2036b4ea]::before {
    background: url(assets/globe_gray.svg?) no-repeat;
    background-size: contain;
}
.document-title.viewable[data-v-2036b4ea] {
    color: #3da4f3;
}
a[data-v-2036b4ea] {
  cursor: pointer;
}
.loader[data-v-4813f64a] {
  padding: 350px;
}
.table-holder[data-v-4813f64a] {
  position: relative;
}
h3[data-v-4813f64a] {
  line-height: 50px;
  font-size: 25px;
  font-weight: 500;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--base-color-border-light);
  margin-top: 0px;
}
.subscriptions[data-v-4813f64a] {
  font-size: 16px;
}
[data-v-4813f64a] .app-table {
  max-height: none;
  padding-bottom: 250px !important;
}
[data-v-4813f64a] .app-table-pagination {
  margin-top: -250px;
}
.vue-tooltip.users .tooltip-section {
  height: 60px;
}
.vue-tooltip.users .tooltip-section .tooltip-link {
    text-align: right;
}
.vue-tooltip.users .tooltip-section .tootlip-header {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: normal;
}
.vue-tooltip.users .tooltip-section .tootlip-header span {
      vertical-align: middle;
}
.vue-tooltip.users .tooltip-section .tootlip-header .tooltip-icon {
      font-size: 20px;
      margin-right: 5px;
}
.vue-tooltip.users .tooltip-section .tootlip-header .tooltip-icon.users-icon {
        font-size: 13px;
        position: relative;
        top: 0px;
        font-weight: normal;
}
.vue-tooltip.users .tooltip-section .tootlip-header .tooltip-icon.users-icon.icon-users-registered {
          font-size: 12px;
          top: -1px;
}
.vue-tooltip.users .tooltip-section .tooltip-arrow {
    border-top-color: var(--base-color-text);
    opacity: 0.9;
}
.vue-tooltip.users .tooltip-section .tooltip-section {
    display: block;
    margin-bottom: 10px;
    text-align: left;
}
.vue-tooltip.users .tooltip-section .tooltip-section .tooltip-header,
    .vue-tooltip.users .tooltip-section .tooltip-section .tooltip-body {
      display: block;
}
.vue-tooltip.users .tooltip-section .tooltip-section:last-child {
      margin-bottom: 0;
}
.vue-tooltip.users .tooltip-section .tooltip-inner {
    background-color: var(--base-color-text);
    font-weight: 500;
    max-width: inherit;
    opacity: 0.9;
    padding: 11px 14px;
}
.vue-tooltip.users .tooltip-section .label {
    border-radius: 10px;
    background: var(--base-color-secondary-lighten);
    font-size: 10px;
    font-weight: 500;
    line-height: 10px;
    margin-left: 4px;
    padding: 4px 6px;
    text-transform: uppercase;
}
.document-manager-table .tags-holder {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.document-manager-table .tags-holder.empty {
    cursor: auto;
}
.document-manager-table .tags-holder .icon-tag:before {
    width: 15px;
    height: 15px;
}
.document-manager-table .tags-holder .tags {
    text-decoration: none;
    font-size: 14px;
    margin-left: 5px;
}
.document-manager-table .tags-holder .tags.clickable {
      color: #3da4f3;
      font-weight: 500;
}
.document-manager-table .tags-holder .tags.clickable:hover {
        text-decoration: underline;
}
.document-manager-table .app-table th {
  height: 40px !important;
  white-space: nowrap;
}
.document-manager-table .app-table tr:hover div.hover-bg {
  display: block;
}
.document-manager-table .app-table td {
  height: 40px !important;
  padding-top: 3px;
  padding-bottom: 3px;
  position: relative;
}
.document-manager-table .app-table td div.hover-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: var(--base-color-primary-lighten2);
    opacity: 0.35;
    cursor: pointer;
    display: none;
}
.document-manager-table .app-table td td {
    height: 40px !important;
}
.document-manager-table .app-table .document-select {
  width: 45px;
  white-space: nowrap;
}
.document-manager-table .app-table .document-select .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
.document-manager-table .app-table .document-select .flex .flag {
      font-size: 17px;
      position: relative;
      left: 12px;
      top: 2px;
}
.document-manager-table .app-table td.document-status {
  width: 35px;
  text-align: left;
}
.document-manager-table .app-table td.document-status span.icon {
    font-size: 20px;
}
.document-manager-table .app-table .document-select {
  width: 35px;
}
.document-manager-table .app-table .document-title {
  width: 235px;
}
.document-manager-table .app-table .document-title.viewable {
    position: relative;
}
.document-manager-table .app-table .document-title .global {
    position: absolute;
    left: -15px;
}
.document-manager-table .app-table .document-id {
  width: 92px;
}
.document-manager-table .app-table .document-plan {
  width: 68px;
}
.document-manager-table .app-table .document-users {
  width: 100px;
}
.document-manager-table .app-table .document-users .users {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    position: relative;
}
.document-manager-table .app-table .document-users .users.user {
      cursor: default;
}
.document-manager-table .app-table .document-users .users.user > span {
        color: initial;
        font-weight: normal;
}
.document-manager-table .app-table .document-users .users.user > span:hover {
          text-decoration: none;
}
.document-manager-table .app-table .document-users .users .document-manager-owner {
      padding-right: 5px;
}
.document-manager-table .app-table .document-users .users > span {
      color: #3da4f3;
      font-weight: 500;
}
.document-manager-table .app-table .document-users .users > span:hover {
        text-decoration: underline;
}
.document-manager-table .app-table .document-tags {
  width: 92px;
}
.document-manager-table .app-table .document-accounts {
  width: 92px;
  text-align: center;
}
.document-manager-table .app-table .document-accounts .accounts.clickable {
    color: #3da4f3;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.document-manager-table .app-table .document-accounts .accounts.clickable:hover {
      text-decoration: underline;
}
.document-manager-table .app-table .document-login {
  width: 125px;
}
.document-manager-table .app-table .document-gear {
  width: 50px;
  text-align: right;
  padding-top: 0px;
  padding-bottom: 0px;
}
.document-manager-table .app-table tr td.account-owner {
  width: auto;
  text-align: center;
}
.document-manager-table .app-table tr.unpermissioned td {
  background-color: var(--base-color-text-lighten3) !important;
}
.document-manager-table .app-table tr.unpermissioned td div.document-title {
    pointer-events: none;
}
.document-manager-table .app-table tr.unpermissioned td.document-users .users > span {
    color: #4e5560;
    font-weight: normal;
    text-decoration: none;
}
.document-manager-table .app-table tr.unpermissioned td.document-accounts .accounts.clickable {
    color: #4e5560;
    font-weight: normal;
    text-decoration: none;
}
.document-manager-table .app-table tr.unpermissioned td .tags.clickable {
    color: #4e5560;
    font-weight: normal;
    text-decoration: none;
}
.document-manager-table .app-table tr.unpermissioned.selected td {
  background-color: var(--base-color-text-lighten3) !important;
}
.document-manager-table .app-table tr.selected td {
  background-color: var(--base-color-primary-lighten4) !important;
}
.document-manager-table .app-table .document-valid {
  white-space: nowrap;
}
.document-manager-table .app-table .document-due {
  white-space: nowrap;
}
.document-manager-filters[data-v-7721fe49] {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 15px;
  border-radius: var(--base-spacing-input-border-radius);
}
.filters[data-v-7721fe49] {
  margin-right: -5px;
  margin-left: -5px;
}
.filter input[data-v-7721fe49] {
  border: 1px solid var(--base-color-secondary-lighten2);
  border-radius: 4px;
}
.filter input[data-v-7721fe49]:focus {
    border-color: var(--base-color-primary);
}
.filter[data-v-7721fe49] {
  padding: 0 5px;
}
.buttons[data-v-7721fe49] {
  text-align: right;
  padding: 0 5px;
}
.buttons .reset[data-v-7721fe49] {
    background: #FFFFFF;
    border: 1px solid var(--base-color-primary);
    display: inline-block;
    margin-right: 5px;
    color: var(--base-color-primary);
}
.buttons .reset[data-v-7721fe49]:hover {
      background-color: var(--base-color-primary-lighten3);
}
.buttons .btn[data-v-7721fe49] {
    padding: 5px 15px;
    font-weight: normal;
    position: relative;
    top: 10px;
}
.document-manager-info[data-v-1a621254] {
  background-color: #E8F3FB;
  padding: 15px;
  font-size: 16px;
}
.document-manager-info .right[data-v-1a621254] {
    text-align: right;
}
[data-v-5a38fa7e] .app-page-header header {
  border-bottom: none;
  margin-bottom: 0px;
}
.buttons .merge-button[data-v-5a38fa7e] {
  margin-right: 15px;
}
.buttons .panel[data-v-5a38fa7e] {
  position: relative;
}
.buttons button[data-v-5a38fa7e] {
  margin-top: 0px;
}
[data-v-5a38fa7e] .app-table {
  padding-bottom: 0px;
  margin-top: 0px;
}
[data-v-5a38fa7e] .app-table + .app-table-pagination {
  margin-top: -65px;
}
[data-v-5a38fa7e] .app-page-bulk-panel.docked {
  right: 75px;
}
[data-v-5a38fa7e] .panel-button {
  margin-left: 10px;
}
span.icon.icon-cloud-download[data-v-5a38fa7e] {
  position: relative;
  top: -2px;
}
span.icon.icon-templates[data-v-5a38fa7e] {
  position: relative;
  top: -2px;
}
span.icon.icon-trash2[data-v-5a38fa7e] {
  color: #f44963;
  position: relative;
  top: -2px;
}
app-header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1000; }

.app-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 55px;
  width: 100%;
  padding: 10px 20px;
  background-color: #55A9DF;
  color: #55A9DF; }
  .app-header--enterprise {
    background-color: var(--base-color-secondary);
    color: var(--base-color-secondary); }
  .app-header--support {
    background-color: #9f5abd;
    color: #9f5abd; }
  .app-header:after {
    content: "";
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    opacity: 0.13;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    position: absolute;
    bottom: 0;
    top: -15px;
    right: calc(50% - 45px);
    left: calc(50% - 45px);
    z-index: 0;
    background-image: url(assets/brand.svg?);
    background-repeat: no-repeat;
    height: 64px; }
  .app-header__right {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .app-header__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }

.app-header__breadcrumbs {
  padding: 0 30px;
  background: #ffffff;
  border-bottom: 1px solid var(--base-color-border); }
.app-menu-item, .app-menu-item:active, .app-menu-item:focus, .app-menu-item:visited {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 16px;
  font-family: SourceSansPro;
  font-size: 18px;
  font-weight: normal;
  color: #ffffff;
  text-decoration: none;
  padding: 5px 10px;
  margin-right: 10px; }

.app-menu-item:hover {
  opacity: 1;
  color: #ffffff;
  text-decoration: none;
  background: var(--base-color-primary-lighten); }

.app-header--support .app-menu-item:hover {
  background: var(--base-color-purple-lighten);
  color: #ffffff; }

.app-header--enterprise .app-menu-item:hover {
  background: var(--base-color-secondary-lighten);
  color: #ffffff; }

.app-menu-item--active, .app-menu-item--active:active, .app-menu-item--active:focus, .app-menu-item--active:visited {
  opacity: 1;
  background: #ffffff;
  color: inherit; }

.app-menu-item--active:hover {
  color: inherit;
  text-decoration: none;
  background: #ffffff; }
app-menu {
  position: relative;
  z-index: 1; }

.app-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.ie10 app-menu {
  display: inline-block; }

.ie10 .app-menu {
  display: inline-block; }
app-user-menu {
  position: relative;
  z-index: 1;
  display: block;
  padding: 11px 10px;
  color: #4e5560;
  font-size: 16px; }

app-popover-button.active button {
  background-color: var(--base-color-primary-lighten);
  color: #FFFFFF; }
  app-popover-button.active button:hover {
    background-color: var(--base-color-primary-lighten);
    color: #FFFFFF; }

.app-header--support .app-user-menu:before {
  border: 3.5px solid var(--base-color-purple-lighten); }

.app-header--enterprise .app-user-menu:before {
  border: 3.5px solid var(--base-color-secondary-lighten); }

.app-user-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.22);
  width: 32px;
  height: 32px;
  border-radius: 100%;
  color: white;
  padding: 0;
  overflow: hidden;
  position: relative; }
  .app-user-menu:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 3.5px solid var(--base-color-primary);
    opacity: 0;
    -webkit-transition: opacity 0.15s;
    transition: opacity 0.15s;
    border-radius: 100%; }
  .app-user-menu:hover:before {
    opacity: 1; }
  .app-user-menu:focus:before {
    opacity: 1; }
  .app-user-menu:active:before {
    opacity: 1; }
  .app-user-menu__avatar {
    width: 100%;
    height: 100%; }

.ie10 app-user-menu {
  display: inline-block;
  top: -3px; }
bottom-buttons-panel {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--base-color-secondary);
  height: 60px;
  width: 100%; }
  bottom-buttons-panel .bottom-buttons-panel {
    padding: 10px 15px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    max-width: 1140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #fff;
    font-size: 16px; }

.ie bottom-buttons-panel .bottom-buttons-panel {
  display: block;
  margin-top: 5px; }
  .ie bottom-buttons-panel .bottom-buttons-panel .panel-message {
    display: inline-block;
    margin-top: 3px; }

.ie bottom-buttons-panel .tmr-button-group {
  float: right; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

buttons-panel {
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: #E7EBF1;
  z-index: 1000000; }
  buttons-panel.animation {
    -webkit-transition: border-radius 0.15s, right 0.15s, -webkit-box-shadow 0.15s;
    transition: border-radius 0.15s, right 0.15s, -webkit-box-shadow 0.15s;
    transition: border-radius 0.15s, box-shadow 0.15s, right 0.15s;
    transition: border-radius 0.15s, box-shadow 0.15s, right 0.15s, -webkit-box-shadow 0.15s; }
  buttons-panel .buttons-panel {
    padding: 13px;
    color: #3B3E53;
    font-weight: bold; }
    buttons-panel .buttons-panel > .buttons {
      opacity: 0; }
  .settings-area buttons-panel .buttons-panel {
    padding: 14px; }
  buttons-panel.docked {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-bottom-left-radius: 35px;
    border-top-left-radius: 35px;
    padding-left: 15px;
    right: 80px; }
    buttons-panel.docked.no-spacing {
      right: 0px; }
    buttons-panel.docked.with-flag {
      right: 130px; }
  buttons-panel.scrolling {
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25); }
  buttons-panel .panel-text {
    position: relative;
    top: -3px; }
  buttons-panel .buttons {
    display: inline-block; }
  .my-account buttons-panel.docked {
    right: 0px; }
  account-manager buttons-panel.docked {
    right: 135px; }
  .account-notifications-page buttons-panel {
    top: -89px;
    right: -15px; }
  .profile-notifications-page buttons-panel {
    top: -89px;
    right: -15px; }
  buttons-panel .panel-select span {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: #3da4f3;
    border-radius: 100%;
    color: #FFFFFF;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    margin-right: 5px; }
    buttons-panel .panel-select span.selected-all {
      background-color: #69C0AF; }
.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

panel-button {
  margin-left: 7px;
  position: relative; }
  panel-button button {
    width: 39px;
    height: 39px;
    line-height: 25px;
    color: #3da4f3;
    border-radius: 100%;
    border: 1px solid var(--base-color-primary);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: #FFFFFF;
    font-size: 18px; }
    panel-button button.btn-green {
      border-color: var(--base-color-green);
      background-color: var(--base-color-green);
      color: #FFFFFF; }
    panel-button button.btn-red {
      border-color: var(--base-color-red);
      background-color: var(--base-color-red);
      color: #FFFFFF; }
  panel-button + panel-button {
    margin-left: 5px; }
  panel-button.alert-button button {
    color: var(--base-color-red);
    border-color: var(--base-color-red); }
  panel-button.alert-button button {
    color: var(--base-color-red);
    border-color: var(--base-color-red); }
  panel-button.free-button button {
    position: relative;
    top: 2px;
    line-height: 25px; }
  panel-button.free-button.flag-button {
    overflow: hidden; }
  panel-button.free-button.flag-button.active button {
    background: #F04764; }
    panel-button.free-button.flag-button.active button span:before {
      color: #FFFFFF; }
  panel-button.free-button.flag-button button {
    height: 40px;
    font-size: 21px;
    overflow: hidden;
    top: 2px;
    left: -5px; }
  panel-button.primary button {
    color: #FFFFFF;
    background-color: var(--base-color-primary); }
    panel-button.primary button[disabled] {
      opacity: 0.65;
      cursor: default; }
.tmr-dropdown {
  margin-bottom: 14px; }
  .tmr-dropdown.no-margin {
    margin-bottom: 0; }
  .tmr-dropdown .tmr-dropdown--invalid .ui-select-toggle.form-control {
    border: #F04864 1px solid !important; }
  .tmr-dropdown a.ui-select-choices-row-inner {
    overflow: hidden;
    text-overflow: ellipsis; }
  .tmr-dropdown .ui-select-toggle.form-control {
    font-size: 16px;
    height: 42px;
    line-height: 42px; }
    .tmr-dropdown .ui-select-toggle.form-control:focus, .tmr-dropdown .ui-select-toggle.form-control:active, .tmr-dropdown .ui-select-toggle.form-control:active:focus {
      background-color: inherit;
      border-color: var(--base-color-border);
      -webkit-box-shadow: none;
              box-shadow: none; }
    .tmr-dropdown .ui-select-toggle.form-control[disabled]:hover, .tmr-dropdown .ui-select-toggle.form-control[disabled]:focus, .tmr-dropdown .ui-select-toggle.form-control[disabled]:active, .tmr-dropdown .ui-select-toggle.form-control[disabled]:active:focus {
      background-color: var(--base-color-text-lighten4);
      border-color: var(--base-color-border); }
    .tmr-dropdown .ui-select-toggle.form-control .ui-select-match-text {
      line-height: 42px;
      overflow: hidden;
      text-overflow: ellipsis;
      width: 100%; }
  .tmr-dropdown--small .ui-select-toggle.form-control {
    font-size: 14px;
    height: 35px;
    line-height: 35px; }
    .tmr-dropdown--small .ui-select-toggle.form-control .ui-select-match-text {
      line-height: 35px; }
.support-icon {
  position: fixed;
  z-index: 1;
  right: 0;
  bottom: 100px;
  background: #ffffff;
  padding: 5px;
  padding-right: 15px;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px; }
  .support-icon__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #9b59b9;
    color: #ffffff;
    text-align: right;
    font-weight: bold;
    border-radius: 50px;
    border: none;
    outline: none;
    width: 25px;
    height: 25px; }
@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, 100% {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, 100% {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

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

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}/*!
 * ui-select
 * http://github.com/angular-ui/ui-select
 * Version: 0.18.1 - 2016-07-10T00:30:49.466Z
 * License: MIT
 */


/* Style when highlighting a search. */
.ui-select-highlight {
  font-weight: bold;
}

.ui-select-offscreen {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}


.ui-select-choices-row:hover {
  background-color: #f5f5f5;
}

/* Select2 theme */

/* Mark invalid Select2 */
.ng-dirty.ng-invalid > a.select2-choice {
    border-color: #D44950;
}

.select2-result-single {
  padding-left: 0;
}

.select2-locked > .select2-search-choice-close{
  display:none;
}

.select-locked > .ui-select-match-close{
    display:none;
}

body > .select2-container.open {
  z-index: 9999; /* The z-index Select2 applies to the select2-drop */
}

/* Handle up direction Select2 */
.ui-select-container[theme="select2"].direction-up .ui-select-match,
.ui-select-container.select2.direction-up .ui-select-match {
    border-radius: 4px; /* FIXME hardcoded value :-/ */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown,
.ui-select-container.select2.direction-up .ui-select-dropdown {
    border-radius: 4px; /* FIXME hardcoded value :-/ */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    border-top-width: 1px;  /* FIXME hardcoded value :-/ */
    border-top-style: solid;

    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);

    margin-top: -4px; /* FIXME hardcoded value :-/ */
}
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown .select2-search,
.ui-select-container.select2.direction-up .ui-select-dropdown .select2-search {
    margin-top: 4px; /* FIXME hardcoded value :-/ */
}
.ui-select-container[theme="select2"].direction-up.select2-dropdown-open .ui-select-match,
.ui-select-container.select2.direction-up.select2-dropdown-open .ui-select-match {
    border-bottom-color: #5897fb;
}

/* Selectize theme */

/* Helper class to show styles when focus */
.selectize-input.selectize-focus{
  border-color: #007FBB !important;
}

/* Fix input width for Selectize theme */
.selectize-control > .selectize-input > input {
  width: 100%;
}

/* Fix dropdown width for Selectize theme */
.selectize-control > .selectize-dropdown {
  width: 100%;
}

/* Mark invalid Selectize */
.ng-dirty.ng-invalid > div.selectize-input {
    border-color: #D44950;
}

/* Handle up direction Selectize */
.ui-select-container[theme="selectize"].direction-up .ui-select-dropdown {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);

    margin-top: -2px; /* FIXME hardcoded value :-/ */
}

/* Bootstrap theme */

/* Helper class to show styles when focus */
.btn-default-focus {
  color: #333;
  background-color: #EBEBEB;
  border-color: #ADADAD;
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.ui-select-bootstrap .ui-select-toggle {
  position: relative;
}

.ui-select-bootstrap .ui-select-toggle > .caret {
  position: absolute;
  height: 10px;
  top: 50%;
  right: 10px;
  margin-top: -2px;
}

/* Fix Bootstrap dropdown position when inside a input-group */
.input-group > .ui-select-bootstrap.dropdown {
  /* Instead of relative */
  position: static;
}

.input-group > .ui-select-bootstrap > input.ui-select-search.form-control {
  border-radius: 4px; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .ui-select-bootstrap > input.ui-select-search.form-control.direction-up {
  border-radius: 4px !important; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.ui-select-bootstrap > .ui-select-match > .btn{
  /* Instead of center because of .btn */
  text-align: left !important;
}

.ui-select-bootstrap > .ui-select-match > .caret {
  position: absolute;
  top: 45%;
  right: 15px;
}

/* See Scrollable Menu with Bootstrap 3 http://stackoverflow.com/questions/19227496 */
.ui-select-bootstrap > .ui-select-choices ,.ui-select-bootstrap > .ui-select-no-choice {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
  margin-top: -1px;
}

body > .ui-select-bootstrap.open {
  z-index: 1000; /* Standard Bootstrap dropdown z-index */
}

.ui-select-multiple.ui-select-bootstrap {
  height: auto;
  padding: 3px 3px 0 3px;
}

.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
  background-color: transparent !important; /* To prevent double background when disabled */
  border: none;
  outline: none;
  height: 1.666666em;
  margin-bottom: 3px;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
  font-size: 1.6em;
  line-height: 0.75;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match-item {
  outline: 0;
  margin: 0 3px 3px 0;
}

.ui-select-multiple .ui-select-match-item {
  position: relative;
}

.ui-select-multiple .ui-select-match-item.dropping .ui-select-match-close {
  pointer-events: none;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-before:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  margin-right: 2px;
  border-left: 1px solid #428bca;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-after:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  margin-left: 2px;
  border-right: 1px solid #428bca;
}

.ui-select-bootstrap .ui-select-choices-row>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.ui-select-bootstrap .ui-select-choices-row>a:hover, .ui-select-bootstrap .ui-select-choices-row>a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}

.ui-select-bootstrap .ui-select-choices-row.active>a {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #428bca;
}

.ui-select-bootstrap .ui-select-choices-row.disabled>a,
.ui-select-bootstrap .ui-select-choices-row.active.disabled>a {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
}

/* fix hide/show angular animation */
.ui-select-match.ng-hide-add,
.ui-select-search.ng-hide-add {
    display: none !important;
}

/* Mark invalid Bootstrap */
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
    border-color: #D44950;
}

/* Handle up direction Bootstrap */
.ui-select-container[theme="bootstrap"].direction-up .ui-select-dropdown {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
}
tags-input {
  display: block;
}
tags-input *, tags-input *:before, tags-input *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
tags-input .host {
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
  height: 100%;
}
tags-input .host:active {
  outline: none;
}

tags-input .tags {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  padding: 1px;
  overflow: hidden;
  word-wrap: break-word;
  cursor: text;
  background-color: #fff;
  border: 1px solid darkgray;
  box-shadow: 1px 1px 1px 0 lightgray inset;
  height: 100%;
}
tags-input .tags.focused {
  outline: none;
  -webkit-box-shadow: 0 0 3px 1px rgba(5, 139, 242, 0.6);
  -moz-box-shadow: 0 0 3px 1px rgba(5, 139, 242, 0.6);
  box-shadow: 0 0 3px 1px rgba(5, 139, 242, 0.6);
}
tags-input .tags .tag-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
tags-input .tags .tag-item {
  margin: 2px;
  padding: 0 5px;
  display: inline-block;
  float: left;
  font: 14px "Helvetica Neue", Helvetica, Arial, sans-serif;
  height: 26px;
  line-height: 25px;
  border: 1px solid #acacac;
  border-radius: 3px;
  background: -webkit-linear-gradient(top, #f0f9ff 0%, #cbebff 47%, #a1dbff 100%);
  background: linear-gradient(to bottom, #f0f9ff 0%, #cbebff 47%, #a1dbff 100%);
}
tags-input .tags .tag-item.selected {
  background: -webkit-linear-gradient(top, #febbbb 0%, #fe9090 45%, #ff5c5c 100%);
  background: linear-gradient(to bottom, #febbbb 0%, #fe9090 45%, #ff5c5c 100%);
}
tags-input .tags .tag-item .remove-button {
  margin: 0 0 0 5px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  vertical-align: middle;
  font: bold 16px Arial, sans-serif;
  color: #585858;
}
tags-input .tags .tag-item .remove-button:active {
  color: #ff0000;
}
tags-input .tags .input {
  border: 0;
  outline: none;
  margin: 2px;
  padding: 0;
  padding-left: 5px;
  float: left;
  height: 26px;
  font: 14px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
tags-input .tags .input.invalid-tag {
  color: #ff0000;
}
tags-input .tags .input::-ms-clear {
  display: none;
}
tags-input.ng-invalid .tags {
  -webkit-box-shadow: 0 0 3px 1px rgba(255, 0, 0, 0.6);
  -moz-box-shadow: 0 0 3px 1px rgba(255, 0, 0, 0.6);
  box-shadow: 0 0 3px 1px rgba(255, 0, 0, 0.6);
}
tags-input[disabled] .host:focus {
  outline: none;
}
tags-input[disabled] .tags {
  background-color: #eee;
  cursor: default;
}
tags-input[disabled] .tags .tag-item {
  opacity: 0.65;
  background: -webkit-linear-gradient(top, #f0f9ff 0%, rgba(203, 235, 255, 0.75) 47%, rgba(161, 219, 255, 0.62) 100%);
  background: linear-gradient(to bottom, #f0f9ff 0%, rgba(203, 235, 255, 0.75) 47%, rgba(161, 219, 255, 0.62) 100%);
}
tags-input[disabled] .tags .tag-item .remove-button {
  cursor: default;
}
tags-input[disabled] .tags .tag-item .remove-button:active {
  color: #585858;
}
tags-input[disabled] .tags .input {
  background-color: #eee;
  cursor: default;
}

tags-input .autocomplete {
  margin-top: 5px;
  position: absolute;
  padding: 5px 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
tags-input .autocomplete .suggestion-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  max-height: 280px;
  overflow-y: auto;
  position: relative;
}
tags-input .autocomplete .suggestion-item {
  padding: 5px 10px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font: 16px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  background-color: #fff;
}
tags-input .autocomplete .suggestion-item.selected {
  color: #fff;
  background-color: #0097cf;
}
tags-input .autocomplete .suggestion-item.selected em {
  color: #fff;
  background-color: #0097cf;
}
tags-input .autocomplete .suggestion-item em {
  font: normal bold 16px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  background-color: #fff;
}
/**
 * @license angular-bootstrap-datetimepicker
 * Copyright 2016 Knight Rider Consulting, Inc. http://www.knightrider.com
 * License: MIT
 */
.datetimepicker {
  border-radius: 4px;
  direction: ltr;
  display: block;
  margin-top: 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 320px;
}
.datetimepicker > div {
  display: none;
}
.datetimepicker .hour,
.datetimepicker .minute {
  height: 34px;
  line-height: 34px;
  margin: 0;
  width: 25%;
}
.datetimepicker .table {
  margin: 0;
}
.datetimepicker .table td,
.datetimepicker .table th {
  border: 0;
  border-radius: 4px;
  height: 20px;
  text-align: center;
}
.datetimepicker .minute:hover,
.datetimepicker .hour:hover,
.datetimepicker .day:hover,
.datetimepicker .switch:hover,
.datetimepicker .left:hover,
.datetimepicker .right:hover {
  background: #eee;
  cursor: pointer;
}
.datetimepicker .disabled,
.datetimepicker .disabled:hover {
  background: none;
  color: #ebebeb;
  cursor: default;
}
.datetimepicker .active,
.datetimepicker .active:hover,
.datetimepicker .active.disabled,
.datetimepicker .active.disabled:hover {
  background-color: #04c;
  background-image: linear-gradient(to bottom, #08c, #04c);
  background-repeat: repeat-x;
  border-color: #04c #04c #002a80;
  color: #fff;
  -webkit-filter: progid:dximagetransform.microsoft.gradient(startColorstr='#08c', endColorstr='#04c', GradientType=0);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#08c', endColorstr='#04c', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datetimepicker .current,
.datetimepicker .current:hover,
.datetimepicker .current.disabled,
.datetimepicker .current.disabled:hover {
  background-color: #e5e5e5;
}
.datetimepicker .active:hover,
.datetimepicker .active:hover:hover,
.datetimepicker .active.disabled:hover,
.datetimepicker .active.disabled:hover:hover,
.datetimepicker .active:active,
.datetimepicker .active:hover:active,
.datetimepicker .active.disabled:active,
.datetimepicker .active.disabled:hover:active,
.datetimepicker .active.active,
.datetimepicker .active:hover.active,
.datetimepicker .active.disabled.active,
.datetimepicker .active.disabled:hover.active,
.datetimepicker .active.disabled,
.datetimepicker .active:hover.disabled,
.datetimepicker .active.disabled.disabled,
.datetimepicker .active.disabled:hover.disabled,
.datetimepicker td.active[disabled],
.datetimepicker td.active:hover[disabled],
.datetimepicker td.active.disabled[disabled],
.datetimepicker td.active.disabled:hover[disabled],
.datetimepicker span.active[disabled],
.datetimepicker span.active:hover[disabled],
.datetimepicker span.active.disabled[disabled],
.datetimepicker span.active.disabled:hover[disabled] {
  background-color: #04c;
}
.datetimepicker span {
  border-radius: 4px;
  cursor: pointer;
  display: block;
  float: left;
  height: 54px;
  line-height: 54px;
  margin: 1%;
  width: 23%;
}
.datetimepicker span:hover {
  background: #eee;
}
.datetimepicker .past,
.datetimepicker .future {
  color: #999;
}
@charset "UTF-8";
:root {
  --base-color-text: #353e4c;
  --base-color-text-lighten: #717781;
  --base-color-text-lighten2: #aeb2b7;
  --base-color-text-lighten3: #eaebed;
  --base-color-text-lighten4: #f5f5f6;
  --base-color-secondary: #435b7d;
  --base-color-secondary-lighten: #7b8ca4;
  --base-color-secondary-lighten2: #b4bdcb;
  --base-color-secondary-lighten3: #eceef2;
  --base-color-secondary-lighten4: #f5f7f8;
  --base-color-primary: #3da4f3;
  --base-color-primary-lighten: #77bff6;
  --base-color-primary-lighten2: #b1dbfa;
  --base-color-primary-lighten3: #ebf5fd;
  --base-color-primary-lighten4: #f5fafe;
  --base-color-purple: #ab53e3;
  --base-color-purple-lighten: #c486eb;
  --base-color-purple-lighten2: #ddbaf4;
  --base-color-purple-lighten3: #f6edfc;
  --base-color-green: #319e88;
  --base-color-green-lighten: #6ebbab;
  --base-color-green-lighten1: #e0f1ed;
  --base-color-orange-color: #ff9f39;
  --base-color-orange-lighten: #ffbb74;
  --base-color-orange-lighten2: #fff1e2;
  --base-color-red: #f44963;
  --base-color-red-lighten: #f77f91;
  --base-color-red-lighten2: #fcd1d8;
  --base-color-border: #b4bdcb;
  --base-color-border-light: #eaebed; }

:root {
  --base-spacing-input-border-radius: 4px; }

table.app-table tr.base-table-header {
  max-height: 40px !important;
  height: 40px !important; }
  table.app-table tr.base-table-header tbody {
    display: block; }
  table.app-table tr.base-table-header thead {
    display: block; }
  table.app-table tr.base-table-header th {
    max-height: 40px !important;
    height: 40px !important;
    padding: 8px;
    overflow-y: hidden;
    padding-right: 23px; }
    table.app-table tr.base-table-header th.sorted {
      padding-right: 0px; }

table.app-table tr:not(.base-table-header) {
  max-height: 40px !important;
  height: 40px !important; }
  table.app-table tr:not(.base-table-header) tbody {
    display: block; }
  table.app-table tr:not(.base-table-header) thead {
    display: block; }
  table.app-table tr:not(.base-table-header) td {
    max-height: 40px !important;
    height: 40px !important; }

h1 {
  line-height: 1.4; }

h2 {
  line-height: 1.4; }

h3 {
  line-height: 1.4; }

h4 {
  line-height: 1.4; }

h5 {
  line-height: 1.4; }

p {
  line-height: 1.4; }

.dropdown-menu.show > li > a:hover {
  background-color: var(--base-color-primary-lighten3); }

input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.1em solid var(--base-color-text-lighten2);
  border-radius: 50%;
  -webkit-transform: translate(0.35em, 0.075em);
          transform: translate(0.35em, 0.075em); }
  input[type="radio"]:checked {
    border: 0.43em solid var(--base-color-primary); }
  input[type="radio"]:focus {
    outline: none !important;
    border-radius: 50%;
    border-color: var(--base-color-primary); }

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #FFFFFF;
  width: 1em;
  height: 1em;
  border-radius: 3px;
  border: 0.1em solid var(--base-color-text-lighten2);
  -webkit-transform: translate(0.15em, 0.075em);
          transform: translate(0.15em, 0.075em);
  color: #FFFFFF;
  text-align: center;
  line-height: 1em;
  margin-right: 10px; }
  input[type="checkbox"]:checked:before {
    content: "\EE20";
    font-family: 'Linearicons';
    font-size: 0.85em;
    position: relative;
    top: -0.259em;
    left: 0em;
    font-weight: 900; }
  input[type="checkbox"]:indeterminate:before {
    content: "" !important;
    width: 85%;
    height: 0px;
    display: inline-block;
    border: 0.1em solid #FFFFFF;
    position: relative;
    font-weight: bold;
    top: -0.48em;
    left: 0.035em; }
  input[type="checkbox"]:indeterminate {
    background-color: var(--base-color-primary);
    border-color: var(--base-color-primary); }
  input[type="checkbox"]:checked {
    background-color: var(--base-color-primary);
    border-color: var(--base-color-primary); }
  input[type="checkbox"]:disabled {
    border: 0.1em solid var(--base-color-text-lighten2);
    background-color: var(--base-color-text-lighten2); }
  input[type="checkbox"]:focus {
    outline: none !important;
    border-radius: 3px;
    border: 0.1em solid var(--base-color-primary); }

/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

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

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important; }
  .label {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

@font-face {
  font-family: "Glyphicons Halflings";
  src: url(assets/glyphicons-halflings-regular.eot?);
  src: url(assets/glyphicons-halflings-regular.eot??#iefix) format("embedded-opentype"), url(assets/glyphicons-halflings-regular.woff2?) format("woff2"), url(assets/glyphicons-halflings-regular.woff?) format("woff"), url(assets/glyphicons-halflings-regular.ttf?) format("truetype"), url(assets/glyphicons-halflings-regular.svg?#glyphicons_halflingsregular) format("svg"); }

.glyphicon, .ng-table th.sortable.sort-asc .sort-indicator:after, .ng-table th.sortable.sort-desc .sort-indicator:after {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.glyphicon-asterisk:before {
  content: "*"; }

.glyphicon-plus:before {
  content: "+"; }

.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20AC"; }

.glyphicon-minus:before {
  content: "\2212"; }

.glyphicon-cloud:before {
  content: "\2601"; }

.glyphicon-envelope:before {
  content: "\2709"; }

.glyphicon-pencil:before {
  content: "\270F"; }

.glyphicon-glass:before {
  content: "\E001"; }

.glyphicon-music:before {
  content: "\E002"; }

.glyphicon-search:before {
  content: "\E003"; }

.glyphicon-heart:before {
  content: "\E005"; }

.glyphicon-star:before {
  content: "\E006"; }

.glyphicon-star-empty:before {
  content: "\E007"; }

.glyphicon-user:before {
  content: "\E008"; }

.glyphicon-film:before {
  content: "\E009"; }

.glyphicon-th-large:before {
  content: "\E010"; }

.glyphicon-th:before {
  content: "\E011"; }

.glyphicon-th-list:before {
  content: "\E012"; }

.glyphicon-ok:before {
  content: "\E013"; }

.glyphicon-remove:before {
  content: "\E014"; }

.glyphicon-zoom-in:before {
  content: "\E015"; }

.glyphicon-zoom-out:before {
  content: "\E016"; }

.glyphicon-off:before {
  content: "\E017"; }

.glyphicon-signal:before {
  content: "\E018"; }

.glyphicon-cog:before {
  content: "\E019"; }

.glyphicon-trash:before {
  content: "\E020"; }

.glyphicon-home:before {
  content: "\E021"; }

.glyphicon-file:before {
  content: "\E022"; }

.glyphicon-time:before {
  content: "\E023"; }

.glyphicon-road:before {
  content: "\E024"; }

.glyphicon-download-alt:before {
  content: "\E025"; }

.glyphicon-download:before {
  content: "\E026"; }

.glyphicon-upload:before {
  content: "\E027"; }

.glyphicon-inbox:before {
  content: "\E028"; }

.glyphicon-play-circle:before {
  content: "\E029"; }

.glyphicon-repeat:before {
  content: "\E030"; }

.glyphicon-refresh:before {
  content: "\E031"; }

.glyphicon-list-alt:before {
  content: "\E032"; }

.glyphicon-lock:before {
  content: "\E033"; }

.glyphicon-flag:before {
  content: "\E034"; }

.glyphicon-headphones:before {
  content: "\E035"; }

.glyphicon-volume-off:before {
  content: "\E036"; }

.glyphicon-volume-down:before {
  content: "\E037"; }

.glyphicon-volume-up:before {
  content: "\E038"; }

.glyphicon-qrcode:before {
  content: "\E039"; }

.glyphicon-barcode:before {
  content: "\E040"; }

.glyphicon-tag:before {
  content: "\E041"; }

.glyphicon-tags:before {
  content: "\E042"; }

.glyphicon-book:before {
  content: "\E043"; }

.glyphicon-bookmark:before {
  content: "\E044"; }

.glyphicon-print:before {
  content: "\E045"; }

.glyphicon-camera:before {
  content: "\E046"; }

.glyphicon-font:before {
  content: "\E047"; }

.glyphicon-bold:before {
  content: "\E048"; }

.glyphicon-italic:before {
  content: "\E049"; }

.glyphicon-text-height:before {
  content: "\E050"; }

.glyphicon-text-width:before {
  content: "\E051"; }

.glyphicon-align-left:before {
  content: "\E052"; }

.glyphicon-align-center:before {
  content: "\E053"; }

.glyphicon-align-right:before {
  content: "\E054"; }

.glyphicon-align-justify:before {
  content: "\E055"; }

.glyphicon-list:before {
  content: "\E056"; }

.glyphicon-indent-left:before {
  content: "\E057"; }

.glyphicon-indent-right:before {
  content: "\E058"; }

.glyphicon-facetime-video:before {
  content: "\E059"; }

.glyphicon-picture:before {
  content: "\E060"; }

.glyphicon-map-marker:before {
  content: "\E062"; }

.glyphicon-adjust:before {
  content: "\E063"; }

.glyphicon-tint:before {
  content: "\E064"; }

.glyphicon-edit:before {
  content: "\E065"; }

.glyphicon-share:before {
  content: "\E066"; }

.glyphicon-check:before {
  content: "\E067"; }

.glyphicon-move:before {
  content: "\E068"; }

.glyphicon-step-backward:before {
  content: "\E069"; }

.glyphicon-fast-backward:before {
  content: "\E070"; }

.glyphicon-backward:before {
  content: "\E071"; }

.glyphicon-play:before {
  content: "\E072"; }

.glyphicon-pause:before {
  content: "\E073"; }

.glyphicon-stop:before {
  content: "\E074"; }

.glyphicon-forward:before {
  content: "\E075"; }

.glyphicon-fast-forward:before {
  content: "\E076"; }

.glyphicon-step-forward:before {
  content: "\E077"; }

.glyphicon-eject:before {
  content: "\E078"; }

.glyphicon-chevron-left:before {
  content: "\E079"; }

.glyphicon-chevron-right:before {
  content: "\E080"; }

.glyphicon-plus-sign:before {
  content: "\E081"; }

.glyphicon-minus-sign:before {
  content: "\E082"; }

.glyphicon-remove-sign:before {
  content: "\E083"; }

.glyphicon-ok-sign:before {
  content: "\E084"; }

.glyphicon-question-sign:before {
  content: "\E085"; }

.glyphicon-info-sign:before {
  content: "\E086"; }

.glyphicon-screenshot:before {
  content: "\E087"; }

.glyphicon-remove-circle:before {
  content: "\E088"; }

.glyphicon-ok-circle:before {
  content: "\E089"; }

.glyphicon-ban-circle:before {
  content: "\E090"; }

.glyphicon-arrow-left:before {
  content: "\E091"; }

.glyphicon-arrow-right:before {
  content: "\E092"; }

.glyphicon-arrow-up:before {
  content: "\E093"; }

.glyphicon-arrow-down:before {
  content: "\E094"; }

.glyphicon-share-alt:before {
  content: "\E095"; }

.glyphicon-resize-full:before {
  content: "\E096"; }

.glyphicon-resize-small:before {
  content: "\E097"; }

.glyphicon-exclamation-sign:before {
  content: "\E101"; }

.glyphicon-gift:before {
  content: "\E102"; }

.glyphicon-leaf:before {
  content: "\E103"; }

.glyphicon-fire:before {
  content: "\E104"; }

.glyphicon-eye-open:before {
  content: "\E105"; }

.glyphicon-eye-close:before {
  content: "\E106"; }

.glyphicon-warning-sign:before {
  content: "\E107"; }

.glyphicon-plane:before {
  content: "\E108"; }

.glyphicon-calendar:before {
  content: "\E109"; }

.glyphicon-random:before {
  content: "\E110"; }

.glyphicon-comment:before {
  content: "\E111"; }

.glyphicon-magnet:before {
  content: "\E112"; }

.glyphicon-chevron-up:before {
  content: "\E113"; }

.glyphicon-chevron-down:before {
  content: "\E114"; }

.glyphicon-retweet:before {
  content: "\E115"; }

.glyphicon-shopping-cart:before {
  content: "\E116"; }

.glyphicon-folder-close:before {
  content: "\E117"; }

.glyphicon-folder-open:before {
  content: "\E118"; }

.glyphicon-resize-vertical:before {
  content: "\E119"; }

.glyphicon-resize-horizontal:before {
  content: "\E120"; }

.glyphicon-hdd:before {
  content: "\E121"; }

.glyphicon-bullhorn:before {
  content: "\E122"; }

.glyphicon-bell:before {
  content: "\E123"; }

.glyphicon-certificate:before {
  content: "\E124"; }

.glyphicon-thumbs-up:before {
  content: "\E125"; }

.glyphicon-thumbs-down:before {
  content: "\E126"; }

.glyphicon-hand-right:before {
  content: "\E127"; }

.glyphicon-hand-left:before {
  content: "\E128"; }

.glyphicon-hand-up:before {
  content: "\E129"; }

.glyphicon-hand-down:before {
  content: "\E130"; }

.glyphicon-circle-arrow-right:before {
  content: "\E131"; }

.glyphicon-circle-arrow-left:before {
  content: "\E132"; }

.glyphicon-circle-arrow-up:before {
  content: "\E133"; }

.glyphicon-circle-arrow-down:before {
  content: "\E134"; }

.glyphicon-globe:before {
  content: "\E135"; }

.glyphicon-wrench:before {
  content: "\E136"; }

.glyphicon-tasks:before {
  content: "\E137"; }

.glyphicon-filter:before {
  content: "\E138"; }

.glyphicon-briefcase:before {
  content: "\E139"; }

.glyphicon-fullscreen:before {
  content: "\E140"; }

.glyphicon-dashboard:before {
  content: "\E141"; }

.glyphicon-paperclip:before {
  content: "\E142"; }

.glyphicon-heart-empty:before {
  content: "\E143"; }

.glyphicon-link:before {
  content: "\E144"; }

.glyphicon-phone:before {
  content: "\E145"; }

.glyphicon-pushpin:before {
  content: "\E146"; }

.glyphicon-usd:before {
  content: "\E148"; }

.glyphicon-gbp:before {
  content: "\E149"; }

.glyphicon-sort:before {
  content: "\E150"; }

.glyphicon-sort-by-alphabet:before {
  content: "\E151"; }

.glyphicon-sort-by-alphabet-alt:before {
  content: "\E152"; }

.glyphicon-sort-by-order:before {
  content: "\E153"; }

.glyphicon-sort-by-order-alt:before {
  content: "\E154"; }

.glyphicon-sort-by-attributes:before {
  content: "\E155"; }

.glyphicon-sort-by-attributes-alt:before {
  content: "\E156"; }

.glyphicon-unchecked:before {
  content: "\E157"; }

.glyphicon-expand:before {
  content: "\E158"; }

.glyphicon-collapse-down:before {
  content: "\E159"; }

.glyphicon-collapse-up:before {
  content: "\E160"; }

.glyphicon-log-in:before {
  content: "\E161"; }

.glyphicon-flash:before {
  content: "\E162"; }

.glyphicon-log-out:before {
  content: "\E163"; }

.glyphicon-new-window:before {
  content: "\E164"; }

.glyphicon-record:before {
  content: "\E165"; }

.glyphicon-save:before {
  content: "\E166"; }

.glyphicon-open:before {
  content: "\E167"; }

.glyphicon-saved:before {
  content: "\E168"; }

.glyphicon-import:before {
  content: "\E169"; }

.glyphicon-export:before {
  content: "\E170"; }

.glyphicon-send:before {
  content: "\E171"; }

.glyphicon-floppy-disk:before {
  content: "\E172"; }

.glyphicon-floppy-saved:before {
  content: "\E173"; }

.glyphicon-floppy-remove:before {
  content: "\E174"; }

.glyphicon-floppy-save:before {
  content: "\E175"; }

.glyphicon-floppy-open:before {
  content: "\E176"; }

.glyphicon-credit-card:before {
  content: "\E177"; }

.glyphicon-transfer:before {
  content: "\E178"; }

.glyphicon-cutlery:before {
  content: "\E179"; }

.glyphicon-header:before {
  content: "\E180"; }

.glyphicon-compressed:before {
  content: "\E181"; }

.glyphicon-earphone:before {
  content: "\E182"; }

.glyphicon-phone-alt:before {
  content: "\E183"; }

.glyphicon-tower:before {
  content: "\E184"; }

.glyphicon-stats:before {
  content: "\E185"; }

.glyphicon-sd-video:before {
  content: "\E186"; }

.glyphicon-hd-video:before {
  content: "\E187"; }

.glyphicon-subtitles:before {
  content: "\E188"; }

.glyphicon-sound-stereo:before {
  content: "\E189"; }

.glyphicon-sound-dolby:before {
  content: "\E190"; }

.glyphicon-sound-5-1:before {
  content: "\E191"; }

.glyphicon-sound-6-1:before {
  content: "\E192"; }

.glyphicon-sound-7-1:before {
  content: "\E193"; }

.glyphicon-copyright-mark:before {
  content: "\E194"; }

.glyphicon-registration-mark:before {
  content: "\E195"; }

.glyphicon-cloud-download:before {
  content: "\E197"; }

.glyphicon-cloud-upload:before {
  content: "\E198"; }

.glyphicon-tree-conifer:before {
  content: "\E199"; }

.glyphicon-tree-deciduous:before {
  content: "\E200"; }

.glyphicon-cd:before {
  content: "\E201"; }

.glyphicon-save-file:before {
  content: "\E202"; }

.glyphicon-open-file:before {
  content: "\E203"; }

.glyphicon-level-up:before {
  content: "\E204"; }

.glyphicon-copy:before {
  content: "\E205"; }

.glyphicon-paste:before {
  content: "\E206"; }

.glyphicon-alert:before {
  content: "\E209"; }

.glyphicon-equalizer:before {
  content: "\E210"; }

.glyphicon-king:before {
  content: "\E211"; }

.glyphicon-queen:before {
  content: "\E212"; }

.glyphicon-pawn:before {
  content: "\E213"; }

.glyphicon-bishop:before {
  content: "\E214"; }

.glyphicon-knight:before {
  content: "\E215"; }

.glyphicon-baby-formula:before {
  content: "\E216"; }

.glyphicon-tent:before {
  content: "\26FA"; }

.glyphicon-blackboard:before {
  content: "\E218"; }

.glyphicon-bed:before {
  content: "\E219"; }

.glyphicon-apple:before {
  content: "\F8FF"; }

.glyphicon-erase:before {
  content: "\E221"; }

.glyphicon-hourglass:before {
  content: "\231B"; }

.glyphicon-lamp:before {
  content: "\E223"; }

.glyphicon-duplicate:before {
  content: "\E224"; }

.glyphicon-piggy-bank:before {
  content: "\E225"; }

.glyphicon-scissors:before {
  content: "\E226"; }

.glyphicon-bitcoin:before {
  content: "\E227"; }

.glyphicon-btc:before {
  content: "\E227"; }

.glyphicon-xbt:before {
  content: "\E227"; }

.glyphicon-yen:before {
  content: "\A5"; }

.glyphicon-jpy:before {
  content: "\A5"; }

.glyphicon-ruble:before {
  content: "\20BD"; }

.glyphicon-rub:before {
  content: "\20BD"; }

.glyphicon-scale:before {
  content: "\E230"; }

.glyphicon-ice-lolly:before {
  content: "\E231"; }

.glyphicon-ice-lolly-tasted:before {
  content: "\E232"; }

.glyphicon-education:before {
  content: "\E233"; }

.glyphicon-option-horizontal:before {
  content: "\E234"; }

.glyphicon-option-vertical:before {
  content: "\E235"; }

.glyphicon-menu-hamburger:before {
  content: "\E236"; }

.glyphicon-modal-window:before {
  content: "\E237"; }

.glyphicon-oil:before {
  content: "\E238"; }

.glyphicon-grain:before {
  content: "\E239"; }

.glyphicon-sunglasses:before {
  content: "\E240"; }

.glyphicon-text-size:before {
  content: "\E241"; }

.glyphicon-text-color:before {
  content: "\E242"; }

.glyphicon-text-background:before {
  content: "\E243"; }

.glyphicon-object-align-top:before {
  content: "\E244"; }

.glyphicon-object-align-bottom:before {
  content: "\E245"; }

.glyphicon-object-align-horizontal:before {
  content: "\E246"; }

.glyphicon-object-align-left:before {
  content: "\E247"; }

.glyphicon-object-align-vertical:before {
  content: "\E248"; }

.glyphicon-object-align-right:before {
  content: "\E249"; }

.glyphicon-triangle-right:before {
  content: "\E250"; }

.glyphicon-triangle-left:before {
  content: "\E251"; }

.glyphicon-triangle-bottom:before {
  content: "\E252"; }

.glyphicon-triangle-top:before {
  content: "\E253"; }

.glyphicon-console:before {
  content: "\E254"; }

.glyphicon-superscript:before {
  content: "\E255"; }

.glyphicon-subscript:before {
  content: "\E256"; }

.glyphicon-menu-left:before {
  content: "\E257"; }

.glyphicon-menu-right:before {
  content: "\E258"; }

.glyphicon-menu-down:before {
  content: "\E259"; }

.glyphicon-menu-up:before {
  content: "\E260"; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #333333;
  background-color: #fff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #337ab7;
  text-decoration: none; }
  a:hover, a:focus {
    color: #23527c;
    text-decoration: underline; }
  a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee; }

.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; }

[role="button"] {
  cursor: pointer; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }
  h1 small,
  h1 .small, h2 small,
  h2 .small, h3 small,
  h3 .small, h4 small,
  h4 .small, h5 small,
  h5 .small, h6 small,
  h6 .small,
  .h1 small,
  .h1 .small, .h2 small,
  .h2 .small, .h3 small,
  .h3 .small, .h4 small,
  .h4 .small, .h5 small,
  .h5 .small, .h6 small,
  .h6 .small {
    font-weight: 400;
    line-height: 1;
    color: #777777; }

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px; }
  h1 small,
  h1 .small, .h1 small,
  .h1 .small,
  h2 small,
  h2 .small, .h2 small,
  .h2 .small,
  h3 small,
  h3 .small, .h3 small,
  .h3 .small {
    font-size: 65%; }

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px; }
  h4 small,
  h4 .small, .h4 small,
  .h4 .small,
  h5 small,
  h5 .small, .h5 small,
  .h5 .small,
  h6 small,
  h6 .small, .h6 small,
  .h6 .small {
    font-size: 75%; }

h1, .h1 {
  font-size: 36px; }

h2, .h2 {
  font-size: 30px; }

h3, .h3 {
  font-size: 24px; }

h4, .h4 {
  font-size: 18px; }

h5, .h5 {
  font-size: 14px; }

h6, .h6 {
  font-size: 12px; }

p {
  margin: 0 0 10px; }

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4; }
  @media (min-width: 200px) {
    .lead {
      font-size: 21px; } }

small,
.small {
  font-size: 85%; }

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

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

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

.text-justify {
  text-align: justify; }

.text-nowrap {
  white-space: nowrap; }

.text-lowercase {
  text-transform: lowercase; }

.text-uppercase, .initialism {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

.text-muted {
  color: #777777; }

.text-primary {
  color: #337ab7; }

a.text-primary:hover,
a.text-primary:focus {
  color: #286090; }

.text-success {
  color: #3c763d; }

a.text-success:hover,
a.text-success:focus {
  color: #2b542c; }

.text-info {
  color: #31708f; }

a.text-info:hover,
a.text-info:focus {
  color: #245269; }

.text-warning {
  color: #8a6d3b; }

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c; }

.text-danger {
  color: #a94442; }

a.text-danger:hover,
a.text-danger:focus {
  color: #843534; }

.bg-primary {
  color: #fff; }

.bg-primary {
  background-color: #337ab7; }

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090; }

.bg-success {
  background-color: #dff0d8; }

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3; }

.bg-info {
  background-color: #d9edf7; }

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee; }

.bg-warning {
  background-color: #fcf8e3; }

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5; }

.bg-danger {
  background-color: #f2dede; }

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9; }

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px; }
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin-bottom: 0; }

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

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px; }
  .list-inline > li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px; }

dl {
  margin-top: 0;
  margin-bottom: 20px; }

dt,
dd {
  line-height: 1.42857; }

dt {
  font-weight: 700; }

dd {
  margin-left: 0; }

.dl-horizontal dd:before, .dl-horizontal dd:after {
  display: table;
  content: " "; }

.dl-horizontal dd:after {
  clear: both; }

@media (min-width: 200px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; } }

abbr[title],
abbr[data-original-title] {
  cursor: help; }

.initialism {
  font-size: 90%; }

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee; }
  blockquote p:last-child,
  blockquote ul:last-child,
  blockquote ol:last-child {
    margin-bottom: 0; }
  blockquote footer,
  blockquote small,
  blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.42857;
    color: #777777; }
    blockquote footer:before,
    blockquote small:before,
    blockquote .small:before {
      content: "\2014   \A0"; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eeeeee;
  border-left: 0; }
  .blockquote-reverse footer:before,
  .blockquote-reverse small:before,
  .blockquote-reverse .small:before,
  blockquote.pull-right footer:before,
  blockquote.pull-right small:before,
  blockquote.pull-right .small:before {
    content: ""; }
  .blockquote-reverse footer:after,
  .blockquote-reverse small:after,
  .blockquote-reverse .small:after,
  blockquote.pull-right footer:after,
  blockquote.pull-right small:after,
  blockquote.pull-right .small:after {
    content: "\A0   \2014"; }

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857; }

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px; }

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
    -webkit-box-shadow: none;
            box-shadow: none; }

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857;
  color: #333333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px; }
  pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0; }

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

.container {
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto; }
  .container:before, .container:after {
    display: table;
    content: " "; }
  .container:after {
    clear: both; }
  @media (min-width: 200px) {
    .container {
      width: 740px; } }
  @media (min-width: 300px) {
    .container {
      width: 960px; } }
  @media (min-width: 400px) {
    .container {
      width: 1140px; } }

.container-fluid {
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto; }
  .container-fluid:before, .container-fluid:after {
    display: table;
    content: " "; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-right: -10px;
  margin-left: -10px; }
  .row:before, .row:after {
    display: table;
    content: " "; }
  .row:after {
    clear: both; }

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

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

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-1 {
  width: 8.33333%; }

.col-xs-2 {
  width: 16.66667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.33333%; }

.col-xs-5 {
  width: 41.66667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.33333%; }

.col-xs-8 {
  width: 66.66667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.33333%; }

.col-xs-11 {
  width: 91.66667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.33333%; }

.col-xs-pull-2 {
  right: 16.66667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.33333%; }

.col-xs-pull-5 {
  right: 41.66667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.33333%; }

.col-xs-pull-8 {
  right: 66.66667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.33333%; }

.col-xs-pull-11 {
  right: 91.66667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.33333%; }

.col-xs-push-2 {
  left: 16.66667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.33333%; }

.col-xs-push-5 {
  left: 41.66667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.33333%; }

.col-xs-push-8 {
  left: 66.66667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.33333%; }

.col-xs-push-11 {
  left: 91.66667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

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

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

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

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

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

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

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

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

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

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

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

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 200px) {
  .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 {
    float: left; }
  .col-sm-1 {
    width: 8.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.33333%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 66.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.33333%; }
  .col-sm-pull-2 {
    right: 16.66667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.33333%; }
  .col-sm-pull-5 {
    right: 41.66667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.33333%; }
  .col-sm-pull-8 {
    right: 66.66667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.33333%; }
  .col-sm-pull-11 {
    right: 91.66667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.33333%; }
  .col-sm-push-2 {
    left: 16.66667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.33333%; }
  .col-sm-push-5 {
    left: 41.66667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.33333%; }
  .col-sm-push-8 {
    left: 66.66667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.33333%; }
  .col-sm-push-11 {
    left: 91.66667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 300px) {
  .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 {
    float: left; }
  .col-md-1 {
    width: 8.33333%; }
  .col-md-2 {
    width: 16.66667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.33333%; }
  .col-md-5 {
    width: 41.66667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.33333%; }
  .col-md-8 {
    width: 66.66667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.33333%; }
  .col-md-11 {
    width: 91.66667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.33333%; }
  .col-md-pull-2 {
    right: 16.66667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.33333%; }
  .col-md-pull-5 {
    right: 41.66667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.33333%; }
  .col-md-pull-8 {
    right: 66.66667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.33333%; }
  .col-md-pull-11 {
    right: 91.66667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.33333%; }
  .col-md-push-2 {
    left: 16.66667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.33333%; }
  .col-md-push-5 {
    left: 41.66667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.33333%; }
  .col-md-push-8 {
    left: 66.66667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.33333%; }
  .col-md-push-11 {
    left: 91.66667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    margin-left: 91.66667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 400px) {
  .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 {
    float: left; }
  .col-lg-1 {
    width: 8.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.33333%; }
  .col-lg-pull-2 {
    right: 16.66667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.33333%; }
  .col-lg-pull-5 {
    right: 41.66667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.33333%; }
  .col-lg-pull-8 {
    right: 66.66667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.33333%; }
  .col-lg-pull-11 {
    right: 91.66667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.33333%; }
  .col-lg-push-2 {
    left: 16.66667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.33333%; }
  .col-lg-push-5 {
    left: 41.66667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.33333%; }
  .col-lg-push-8 {
    left: 66.66667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.33333%; }
  .col-lg-push-11 {
    left: 91.66667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

table {
  background-color: transparent; }
  table col[class*="col-"] {
    position: static;
    display: table-column;
    float: none; }
  table td[class*="col-"],
  table th[class*="col-"] {
    position: static;
    display: table-cell;
    float: none; }

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }
  .table > thead > tr > th,
  .table > thead > tr > td,
  .table > tbody > tr > th,
  .table > tbody > tr > td,
  .table > tfoot > tr > th,
  .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857;
    vertical-align: top;
    border-top: 1px solid #ddd; }
  .table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd; }
  .table > caption + thead > tr:first-child > th,
  .table > caption + thead > tr:first-child > td,
  .table > colgroup + thead > tr:first-child > th,
  .table > colgroup + thead > tr:first-child > td,
  .table > thead:first-child > tr:first-child > th,
  .table > thead:first-child > tr:first-child > td {
    border-top: 0; }
  .table > tbody + tbody {
    border-top: 2px solid #ddd; }
  .table .table {
    background-color: #fff; }

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td,
  .table-bordered > tbody > tr > th,
  .table-bordered > tbody > tr > td,
  .table-bordered > tfoot > tr > th,
  .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td {
    border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5; }

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8; }

.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8; }

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

.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7; }

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

.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3; }

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

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede; }

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

.table-responsive {
  min-height: .01%;
  overflow-x: auto; }
  @media screen and (max-width: 199px) {
    .table-responsive {
      width: 100%;
      margin-bottom: 15px;
      overflow-y: hidden;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      border: 1px solid #ddd; }
      .table-responsive > .table {
        margin-bottom: 0; }
        .table-responsive > .table > thead > tr > th,
        .table-responsive > .table > thead > tr > td,
        .table-responsive > .table > tbody > tr > th,
        .table-responsive > .table > tbody > tr > td,
        .table-responsive > .table > tfoot > tr > th,
        .table-responsive > .table > tfoot > tr > td {
          white-space: nowrap; }
      .table-responsive > .table-bordered {
        border: 0; }
        .table-responsive > .table-bordered > thead > tr > th:first-child,
        .table-responsive > .table-bordered > thead > tr > td:first-child,
        .table-responsive > .table-bordered > tbody > tr > th:first-child,
        .table-responsive > .table-bordered > tbody > tr > td:first-child,
        .table-responsive > .table-bordered > tfoot > tr > th:first-child,
        .table-responsive > .table-bordered > tfoot > tr > td:first-child {
          border-left: 0; }
        .table-responsive > .table-bordered > thead > tr > th:last-child,
        .table-responsive > .table-bordered > thead > tr > td:last-child,
        .table-responsive > .table-bordered > tbody > tr > th:last-child,
        .table-responsive > .table-bordered > tbody > tr > td:last-child,
        .table-responsive > .table-bordered > tfoot > tr > th:last-child,
        .table-responsive > .table-bordered > tfoot > tr > td:last-child {
          border-right: 0; }
        .table-responsive > .table-bordered > tbody > tr:last-child > th,
        .table-responsive > .table-bordered > tbody > tr:last-child > td,
        .table-responsive > .table-bordered > tfoot > tr:last-child > th,
        .table-responsive > .table-bordered > tfoot > tr:last-child > td {
          border-bottom: 0; } }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700; }

input[type="search"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; }

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }
  input[type="radio"][disabled], input[type="radio"].disabled,
  fieldset[disabled] input[type="radio"],
  input[type="checkbox"][disabled],
  input[type="checkbox"].disabled,
  fieldset[disabled]
  input[type="checkbox"] {
    cursor: not-allowed; }

input[type="file"] {
  display: block; }

input[type="range"] {
  display: block;
  width: 100%; }

select[multiple],
select[size] {
  height: auto; }

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555; }

.form-control, tags-input .tags {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s; }
  .form-control:focus, tags-input .tags:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
  .form-control::-moz-placeholder, tags-input .tags::-moz-placeholder {
    color: #999;
    opacity: 1; }
  .form-control:-ms-input-placeholder, tags-input .tags:-ms-input-placeholder {
    color: #999; }
  .form-control::-webkit-input-placeholder, tags-input .tags::-webkit-input-placeholder {
    color: #999; }
  .form-control::-ms-expand, tags-input .tags::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control[disabled], tags-input .tags[disabled], .form-control[readonly], tags-input .tags[readonly],
  fieldset[disabled] .form-control,
  fieldset[disabled] tags-input .tags,
  tags-input fieldset[disabled] .tags {
    background-color: #eeeeee;
    opacity: 1; }
  .form-control[disabled], tags-input .tags[disabled],
  fieldset[disabled] .form-control,
  fieldset[disabled] tags-input .tags,
  tags-input fieldset[disabled] .tags {
    cursor: not-allowed; }

textarea.form-control, tags-input textarea.tags {
  height: auto; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control, tags-input input.tags[type="date"],
  input[type="time"].form-control,
  tags-input input.tags[type="time"],
  input[type="datetime-local"].form-control,
  tags-input input.tags[type="datetime-local"],
  input[type="month"].form-control,
  tags-input input.tags[type="month"] {
    line-height: 34px; }
  input[type="date"].input-sm, .input-group-sm > input.form-control[type="date"], tags-input .input-group-sm > input.tags[type="date"],
  .input-group-sm > input.input-group-addon[type="date"],
  .input-group-sm > .input-group-btn > input.btn[type="date"],
  .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm > input.form-control[type="time"],
  tags-input .input-group-sm > input.tags[type="time"],
  .input-group-sm > input.input-group-addon[type="time"],
  .input-group-sm > .input-group-btn > input.btn[type="time"],
  .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm > input.form-control[type="datetime-local"],
  tags-input .input-group-sm > input.tags[type="datetime-local"],
  .input-group-sm > input.input-group-addon[type="datetime-local"],
  .input-group-sm > .input-group-btn > input.btn[type="datetime-local"],
  .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm > input.form-control[type="month"],
  tags-input .input-group-sm > input.tags[type="month"],
  .input-group-sm > input.input-group-addon[type="month"],
  .input-group-sm > .input-group-btn > input.btn[type="month"],
  .input-group-sm
  input[type="month"] {
    line-height: 30px; }
  input[type="date"].input-lg, .input-group-lg > input.form-control[type="date"], tags-input .input-group-lg > input.tags[type="date"],
  .input-group-lg > input.input-group-addon[type="date"],
  .input-group-lg > .input-group-btn > input.btn[type="date"],
  .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg > input.form-control[type="time"],
  tags-input .input-group-lg > input.tags[type="time"],
  .input-group-lg > input.input-group-addon[type="time"],
  .input-group-lg > .input-group-btn > input.btn[type="time"],
  .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg > input.form-control[type="datetime-local"],
  tags-input .input-group-lg > input.tags[type="datetime-local"],
  .input-group-lg > input.input-group-addon[type="datetime-local"],
  .input-group-lg > .input-group-btn > input.btn[type="datetime-local"],
  .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg > input.form-control[type="month"],
  tags-input .input-group-lg > input.tags[type="month"],
  .input-group-lg > input.input-group-addon[type="month"],
  .input-group-lg > .input-group-btn > input.btn[type="month"],
  .input-group-lg
  input[type="month"] {
    line-height: 46px; } }

.form-group {
  margin-bottom: 15px; }

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }
  .radio.disabled label,
  fieldset[disabled] .radio label,
  .checkbox.disabled label,
  fieldset[disabled]
  .checkbox label {
    cursor: not-allowed; }
  .radio label,
  .checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px; }

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer; }
  .radio-inline.disabled,
  fieldset[disabled] .radio-inline,
  .checkbox-inline.disabled,
  fieldset[disabled]
  .checkbox-inline {
    cursor: not-allowed; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0; }
  .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, tags-input .input-group-lg > .form-control-static.tags,
  .input-group-lg > .form-control-static.input-group-addon,
  .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, tags-input .input-group-sm > .form-control-static.tags,
  .input-group-sm > .form-control-static.input-group-addon,
  .input-group-sm > .input-group-btn > .form-control-static.btn {
    padding-right: 0;
    padding-left: 0; }

.input-sm, .input-group-sm > .form-control, tags-input .input-group-sm > .tags,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-sm, .input-group-sm > select.form-control, tags-input .input-group-sm > select.tags,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px; }

textarea.input-sm, .input-group-sm > textarea.form-control, tags-input .input-group-sm > textarea.tags,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select.form-control[multiple],
tags-input .input-group-sm > select.tags[multiple],
.input-group-sm > select.input-group-addon[multiple],
.input-group-sm > .input-group-btn > select.btn[multiple] {
  height: auto; }

.form-group-sm .form-control, .form-group-sm tags-input .tags, tags-input .form-group-sm .tags {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.form-group-sm select.form-control, .form-group-sm tags-input select.tags, tags-input .form-group-sm select.tags {
  height: 30px;
  line-height: 30px; }

.form-group-sm textarea.form-control, .form-group-sm tags-input textarea.tags, tags-input .form-group-sm textarea.tags,
.form-group-sm select[multiple].form-control,
.form-group-sm tags-input select.tags[multiple],
tags-input .form-group-sm select.tags[multiple] {
  height: auto; }

.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5; }

.input-lg, .input-group-lg > .form-control, tags-input .input-group-lg > .tags,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

select.input-lg, .input-group-lg > select.form-control, tags-input .input-group-lg > select.tags,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 46px;
  line-height: 46px; }

textarea.input-lg, .input-group-lg > textarea.form-control, tags-input .input-group-lg > textarea.tags,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select.form-control[multiple],
tags-input .input-group-lg > select.tags[multiple],
.input-group-lg > select.input-group-addon[multiple],
.input-group-lg > .input-group-btn > select.btn[multiple] {
  height: auto; }

.form-group-lg .form-control, .form-group-lg tags-input .tags, tags-input .form-group-lg .tags {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

.form-group-lg select.form-control, .form-group-lg tags-input select.tags, tags-input .form-group-lg select.tags {
  height: 46px;
  line-height: 46px; }

.form-group-lg textarea.form-control, .form-group-lg tags-input textarea.tags, tags-input .form-group-lg textarea.tags,
.form-group-lg select[multiple].form-control,
.form-group-lg tags-input select.tags[multiple],
tags-input .form-group-lg select.tags[multiple] {
  height: auto; }

.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.33333; }

.has-feedback {
  position: relative; }
  .has-feedback .form-control, .has-feedback tags-input .tags, tags-input .has-feedback .tags {
    padding-right: 42.5px; }

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none; }

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, tags-input .input-group-lg > .tags + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback,
.form-group-lg tags-input .tags + .form-control-feedback,
tags-input .form-group-lg .tags + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px; }

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, tags-input .input-group-sm > .tags + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback,
.form-group-sm tags-input .tags + .form-control-feedback,
tags-input .form-group-sm .tags + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d; }

.has-success .form-control, .has-success tags-input .tags, tags-input .has-success .tags {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-success .form-control:focus, .has-success tags-input .tags:focus, tags-input .has-success .tags:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }

.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d; }

.has-success .form-control-feedback {
  color: #3c763d; }

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b; }

.has-warning .form-control, .has-warning tags-input .tags, tags-input .has-warning .tags {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-warning .form-control:focus, .has-warning tags-input .tags:focus, tags-input .has-warning .tags:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }

.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b; }

.has-warning .form-control-feedback {
  color: #8a6d3b; }

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442; }

.has-error .form-control, .has-error tags-input .tags, tags-input .has-error .tags {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-error .form-control:focus, .has-error tags-input .tags:focus, tags-input .has-error .tags:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }

.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442; }

.has-error .form-control-feedback {
  color: #a94442; }

.has-feedback label ~ .form-control-feedback {
  top: 25px; }

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373; }

@media (min-width: 200px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control, .form-inline tags-input .tags, tags-input .form-inline .tags {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .form-control-static {
    display: inline-block; }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control,
    .form-inline .input-group tags-input .tags,
    tags-input .form-inline .input-group .tags {
      width: auto; }
  .form-inline .input-group > .form-control, .form-inline tags-input .input-group > .tags, tags-input .form-inline .input-group > .tags {
    width: 100%; }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
    .form-inline .radio label,
    .form-inline .checkbox label {
      padding-left: 0; }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0; }

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px; }

.form-horizontal .form-group {
  margin-right: -10px;
  margin-left: -10px; }
  .form-horizontal .form-group:before, .form-horizontal .form-group:after {
    display: table;
    content: " "; }
  .form-horizontal .form-group:after {
    clear: both; }

@media (min-width: 200px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right; } }

.form-horizontal .has-feedback .form-control-feedback {
  right: 10px; }

@media (min-width: 200px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px; } }

@media (min-width: 200px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px; } }

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:hover, .btn:focus, .btn.focus {
    color: #333;
    text-decoration: none; }
  .btn:active, .btn.active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn.disabled, .btn[disabled],
  fieldset[disabled] .btn {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    opacity: 0.65;
    -webkit-box-shadow: none;
    box-shadow: none; }

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

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }
  .btn-default:focus, .btn-default.focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c; }
  .btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    background-image: none;
    border-color: #adadad; }
    .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus,
    .open > .btn-default.dropdown-toggle:hover,
    .open > .btn-default.dropdown-toggle:focus,
    .open > .btn-default.dropdown-toggle.focus {
      color: #333;
      background-color: #d4d4d4;
      border-color: #8c8c8c; }
  .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .btn-default.focus {
    background-color: #fff;
    border-color: #ccc; }
  .btn-default .badge {
    color: #fff;
    background-color: #333; }

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40; }
  .btn-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #286090;
    background-image: none;
    border-color: #204d74; }
    .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
    .open > .btn-primary.dropdown-toggle:hover,
    .open > .btn-primary.dropdown-toggle:focus,
    .open > .btn-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #204d74;
      border-color: #122b40; }
  .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .btn-primary.focus {
    background-color: #337ab7;
    border-color: #2e6da4; }
  .btn-primary .badge {
    color: #337ab7;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625; }
  .btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    background-image: none;
    border-color: #398439; }
    .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
    .open > .btn-success.dropdown-toggle:hover,
    .open > .btn-success.dropdown-toggle:focus,
    .open > .btn-success.dropdown-toggle.focus {
      color: #fff;
      background-color: #398439;
      border-color: #255625; }
  .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:focus,
  fieldset[disabled] .btn-success.focus {
    background-color: #5cb85c;
    border-color: #4cae4c; }
  .btn-success .badge {
    color: #5cb85c;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85; }
  .btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    background-image: none;
    border-color: #269abc; }
    .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
    .open > .btn-info.dropdown-toggle:hover,
    .open > .btn-info.dropdown-toggle:focus,
    .open > .btn-info.dropdown-toggle.focus {
      color: #fff;
      background-color: #269abc;
      border-color: #1b6d85; }
  .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:focus,
  fieldset[disabled] .btn-info.focus {
    background-color: #5bc0de;
    border-color: #46b8da; }
  .btn-info .badge {
    color: #5bc0de;
    background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d; }
  .btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    background-image: none;
    border-color: #d58512; }
    .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
    .open > .btn-warning.dropdown-toggle:hover,
    .open > .btn-warning.dropdown-toggle:focus,
    .open > .btn-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #d58512;
      border-color: #985f0d; }
  .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning:focus,
  fieldset[disabled] .btn-warning.focus {
    background-color: #f0ad4e;
    border-color: #eea236; }
  .btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19; }
  .btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    background-image: none;
    border-color: #ac2925; }
    .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
    .open > .btn-danger.dropdown-toggle:hover,
    .open > .btn-danger.dropdown-toggle:focus,
    .open > .btn-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #ac2925;
      border-color: #761c19; }
  .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger.focus {
    background-color: #d9534f;
    border-color: #d43f3a; }
  .btn-danger .badge {
    color: #d9534f;
    background-color: #fff; }

.btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
  fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover, .btn-link:focus {
    color: #23527c;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link[disabled]:hover, .btn-link[disabled]:focus,
  fieldset[disabled] .btn-link:hover,
  fieldset[disabled] .btn-link:focus {
    color: #777777;
    text-decoration: none; }

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

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

.btn-block + .btn-block {
  margin-top: 5px; }

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

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }
  .fade.in {
    opacity: 1; }

.collapse {
  display: none; }
  .collapse.in {
    display: block; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); }
  .dropdown-menu.pull-right {
    right: 0;
    left: auto; }
  .dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857;
    color: #333333;
    white-space: nowrap; }
    .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
      color: #262626;
      text-decoration: none;
      background-color: #f5f5f5; }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0; }

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777; }

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

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

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

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857;
  color: #777777;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990; }

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

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

@media (min-width: 200px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .btn-group > .btn,
  .btn-group-vertical > .btn {
    position: relative;
    float: left; }
    .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
    .btn-group-vertical > .btn:hover,
    .btn-group-vertical > .btn:focus,
    .btn-group-vertical > .btn:active,
    .btn-group-vertical > .btn.active {
      z-index: 2; }

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

.btn-toolbar {
  margin-left: -5px; }
  .btn-toolbar:before, .btn-toolbar:after {
    display: table;
    content: " "; }
  .btn-toolbar:after {
    clear: both; }
  .btn-toolbar .btn,
  .btn-toolbar .btn-group,
  .btn-toolbar .input-group {
    float: left; }
  .btn-toolbar > .btn,
  .btn-toolbar > .btn-group,
  .btn-toolbar > .input-group {
    margin-left: 5px; }

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

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

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

.btn-group > .btn-group {
  float: left; }

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

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

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

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px; }

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px; }

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none; }

.btn .caret {
  margin-left: 0; }

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px; }

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  display: table;
  content: " "; }

.btn-group-vertical > .btn-group:after {
  clear: both; }

.btn-group-vertical > .btn-group > .btn {
  float: none; }

.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(:first-child):not(:last-child) {
  border-radius: 0; }

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

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

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

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

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

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
  .btn-group-justified > .btn,
  .btn-group-justified > .btn-group {
    display: table-cell;
    float: none;
    width: 1%; }
  .btn-group-justified > .btn-group .btn {
    width: 100%; }
  .btn-group-justified > .btn-group .dropdown-menu {
    left: auto; }

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

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group[class*="col-"] {
    float: none;
    padding-right: 0;
    padding-left: 0; }
  .input-group .form-control, .input-group tags-input .tags, tags-input .input-group .tags {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0; }
    .input-group .form-control:focus, .input-group tags-input .tags:focus, tags-input .input-group .tags:focus {
      z-index: 3; }

.input-group-addon,
.input-group-btn, .input-group .form-control, .input-group tags-input .tags, tags-input .input-group .tags {
  display: table-cell; }
  .input-group-addon:not(:first-child):not(:last-child),
  .input-group-btn:not(:first-child):not(:last-child),
  .input-group .form-control:not(:first-child):not(:last-child),
  .input-group tags-input .tags:not(:first-child):not(:last-child),
  tags-input .input-group .tags:not(:first-child):not(:last-child) {
    border-radius: 0; }

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px; }
  .input-group-addon.input-sm, tags-input .input-group-sm > .input-group-addon.tags,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px; }
  .input-group-addon.input-lg, tags-input .input-group-lg > .input-group-addon.tags,
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px; }
  .input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

.input-group .form-control:first-child, .input-group tags-input .tags:first-child, tags-input .input-group .tags:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child, .input-group tags-input .tags:last-child, tags-input .input-group .tags:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }
  .input-group-btn > .btn {
    position: relative; }
    .input-group-btn > .btn + .btn {
      margin-left: -1px; }
    .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
      z-index: 2; }
  .input-group-btn:first-child > .btn,
  .input-group-btn:first-child > .btn-group {
    margin-right: -1px; }
  .input-group-btn:last-child > .btn,
  .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px; }

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .nav:before, .nav:after {
    display: table;
    content: " "; }
  .nav:after {
    clear: both; }
  .nav > li {
    position: relative;
    display: block; }
    .nav > li > a {
      position: relative;
      display: block;
      padding: 10px 15px; }
      .nav > li > a:hover, .nav > li > a:focus {
        text-decoration: none;
        background-color: #eeeeee; }
    .nav > li.disabled > a {
      color: #777777; }
      .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
        color: #777777;
        text-decoration: none;
        cursor: not-allowed;
        background-color: transparent; }
  .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #eeeeee;
    border-color: #337ab7; }
  .nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .nav > li > a > img {
    max-width: none; }

.nav-tabs {
  border-bottom: 1px solid #ddd; }
  .nav-tabs > li {
    float: left;
    margin-bottom: -1px; }
    .nav-tabs > li > a {
      margin-right: 2px;
      line-height: 1.42857;
      border: 1px solid transparent;
      border-radius: 4px 4px 0 0; }
      .nav-tabs > li > a:hover {
        border-color: #eeeeee #eeeeee #ddd; }
    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
      color: #555555;
      cursor: default;
      background-color: #fff;
      border: 1px solid #ddd;
      border-bottom-color: transparent; }

.nav-pills > li {
  float: left; }
  .nav-pills > li > a {
    border-radius: 4px; }
  .nav-pills > li + li {
    margin-left: 2px; }
  .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #337ab7; }

.nav-stacked > li {
  float: none; }
  .nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0; }

.nav-justified, .nav-tabs.nav-justified {
  width: 100%; }
  .nav-justified > li, .nav-tabs.nav-justified > li {
    float: none; }
    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
      margin-bottom: 5px;
      text-align: center; }
  .nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto; }
  @media (min-width: 200px) {
    .nav-justified > li, .nav-tabs.nav-justified > li {
      display: table-cell;
      width: 1%; }
      .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
        margin-bottom: 0; } }

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0; }
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px; }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd; }
  @media (min-width: 200px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
      border-bottom: 1px solid #ddd;
      border-radius: 4px 4px 0 0; }
    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus,
    .nav-tabs.nav-justified > .active > a:focus {
      border-bottom-color: #fff; } }

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

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

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

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent; }
  .navbar:before, .navbar:after {
    display: table;
    content: " "; }
  .navbar:after {
    clear: both; }
  @media (min-width: 200px) {
    .navbar {
      border-radius: 4px; } }

.navbar-header:before, .navbar-header:after {
  display: table;
  content: " "; }

.navbar-header:after {
  clear: both; }

@media (min-width: 200px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  padding-right: 10px;
  padding-left: 10px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }
  .navbar-collapse:before, .navbar-collapse:after {
    display: table;
    content: " "; }
  .navbar-collapse:after {
    clear: both; }
  .navbar-collapse.in {
    overflow-y: auto; }
  @media (min-width: 200px) {
    .navbar-collapse {
      width: auto;
      border-top: 0;
      -webkit-box-shadow: none;
              box-shadow: none; }
      .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important; }
      .navbar-collapse.in {
        overflow-y: visible; }
      .navbar-fixed-top .navbar-collapse,
      .navbar-static-top .navbar-collapse,
      .navbar-fixed-bottom .navbar-collapse {
        padding-right: 0;
        padding-left: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 340px; }
    @media (max-device-width: 100px) and (orientation: landscape) {
      .navbar-fixed-top .navbar-collapse,
      .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px; } }
  @media (min-width: 200px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
      border-radius: 0; } }

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -10px;
  margin-left: -10px; }
  @media (min-width: 200px) {
    .container > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-header,
    .container-fluid > .navbar-collapse {
      margin-right: 0;
      margin-left: 0; } }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }
  @media (min-width: 200px) {
    .navbar-static-top {
      border-radius: 0; } }

.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 10px;
  font-size: 18px;
  line-height: 20px; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }
  .navbar-brand > img {
    display: block; }
  @media (min-width: 200px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
      margin-left: -10px; } }

.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-right: 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }
  .navbar-toggle:focus {
    outline: 0; }
  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px; }
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px; }
  @media (min-width: 200px) {
    .navbar-toggle {
      display: none; } }

.navbar-nav {
  margin: 7.5px -10px; }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px; }
  @media (max-width: 199px) {
    .navbar-nav .open .dropdown-menu {
      position: static;
      float: none;
      width: auto;
      margin-top: 0;
      background-color: transparent;
      border: 0;
      -webkit-box-shadow: none;
              box-shadow: none; }
      .navbar-nav .open .dropdown-menu > li > a,
      .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px; }
      .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px; }
        .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
          background-image: none; } }
  @media (min-width: 200px) {
    .navbar-nav {
      float: left;
      margin: 0; }
      .navbar-nav > li {
        float: left; }
        .navbar-nav > li > a {
          padding-top: 15px;
          padding-bottom: 15px; } }

.navbar-form {
  padding: 10px 10px;
  margin-right: -10px;
  margin-left: -10px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px; }
  @media (min-width: 200px) {
    .navbar-form .form-group {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .form-control, .navbar-form tags-input .tags, tags-input .navbar-form .tags {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    .navbar-form .form-control-static {
      display: inline-block; }
    .navbar-form .input-group {
      display: inline-table;
      vertical-align: middle; }
      .navbar-form .input-group .input-group-addon,
      .navbar-form .input-group .input-group-btn,
      .navbar-form .input-group .form-control,
      .navbar-form .input-group tags-input .tags,
      tags-input .navbar-form .input-group .tags {
        width: auto; }
    .navbar-form .input-group > .form-control, .navbar-form tags-input .input-group > .tags, tags-input .navbar-form .input-group > .tags {
      width: 100%; }
    .navbar-form .control-label {
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .radio,
    .navbar-form .checkbox {
      display: inline-block;
      margin-top: 0;
      margin-bottom: 0;
      vertical-align: middle; }
      .navbar-form .radio label,
      .navbar-form .checkbox label {
        padding-left: 0; }
    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
      position: relative;
      margin-left: 0; }
    .navbar-form .has-feedback .form-control-feedback {
      top: 0; } }
  @media (max-width: 199px) {
    .navbar-form .form-group {
      margin-bottom: 5px; }
      .navbar-form .form-group:last-child {
        margin-bottom: 0; } }
  @media (min-width: 200px) {
    .navbar-form {
      width: auto;
      padding-top: 0;
      padding-bottom: 0;
      margin-right: 0;
      margin-left: 0;
      border: 0;
      -webkit-box-shadow: none;
      box-shadow: none; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px; }
  .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
    margin-top: 10px;
    margin-bottom: 10px; }
  .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
    margin-top: 14px;
    margin-bottom: 14px; }

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px; }
  @media (min-width: 200px) {
    .navbar-text {
      float: left;
      margin-right: 10px;
      margin-left: 10px; } }

@media (min-width: 200px) {
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important;
    margin-right: -10px; }
    .navbar-right ~ .navbar-right {
      margin-right: 0; } }

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7; }
  .navbar-default .navbar-brand {
    color: #777; }
    .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
      color: #5e5e5e;
      background-color: transparent; }
  .navbar-default .navbar-text {
    color: #777; }
  .navbar-default .navbar-nav > li > a {
    color: #777; }
    .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
      color: #333;
      background-color: transparent; }
  .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #e7e7e7; }
  .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent; }
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    color: #555;
    background-color: #e7e7e7; }
  @media (max-width: 199px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
      color: #777; }
      .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: transparent; }
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #555;
      background-color: #e7e7e7; }
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #ccc;
      background-color: transparent; } }
  .navbar-default .navbar-toggle {
    border-color: #ddd; }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
      background-color: #ddd; }
    .navbar-default .navbar-toggle .icon-bar {
      background-color: #888; }
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border-color: #e7e7e7; }
  .navbar-default .navbar-link {
    color: #777; }
    .navbar-default .navbar-link:hover {
      color: #333; }
  .navbar-default .btn-link {
    color: #777; }
    .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
      color: #333; }
    .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-default .btn-link:hover,
    fieldset[disabled] .navbar-default .btn-link:focus {
      color: #ccc; }

.navbar-inverse {
  background-color: #222;
  border-color: #090909; }
  .navbar-inverse .navbar-brand {
    color: #5AADBB; }
    .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-text {
    color: #9d9d9d; }
  .navbar-inverse .navbar-nav > li > a {
    color: #5AADBB; }
    .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #090909; }
  .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent; }
  .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    color: #fff;
    background-color: #090909; }
  @media (max-width: 199px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
      border-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
      background-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
      color: #5AADBB; }
      .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        background-color: transparent; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #fff;
      background-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #444;
      background-color: transparent; } }
  .navbar-inverse .navbar-toggle {
    border-color: #333; }
    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
      background-color: #333; }
    .navbar-inverse .navbar-toggle .icon-bar {
      background-color: #fff; }
  .navbar-inverse .navbar-collapse,
  .navbar-inverse .navbar-form {
    border-color: #101010; }
  .navbar-inverse .navbar-link {
    color: #5AADBB; }
    .navbar-inverse .navbar-link:hover {
      color: #fff; }
  .navbar-inverse .btn-link {
    color: #5AADBB; }
    .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
      color: #fff; }
    .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-inverse .btn-link:hover,
    fieldset[disabled] .navbar-inverse .btn-link:focus {
      color: #444; }

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px; }
  .breadcrumb > li {
    display: inline-block; }
    .breadcrumb > li + li:before {
      padding: 0 5px;
      color: #ccc;
      content: "/\A0"; }
  .breadcrumb > .active {
    color: #777777; }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px; }
  .pagination > li {
    display: inline; }
    .pagination > li > a,
    .pagination > li > span {
      position: relative;
      float: left;
      padding: 6px 12px;
      margin-left: -1px;
      line-height: 1.42857;
      color: #337ab7;
      text-decoration: none;
      background-color: #fff;
      border: 1px solid #ddd; }
      .pagination > li > a:hover, .pagination > li > a:focus,
      .pagination > li > span:hover,
      .pagination > li > span:focus {
        z-index: 2;
        color: #23527c;
        background-color: #eeeeee;
        border-color: #ddd; }
    .pagination > li:first-child > a,
    .pagination > li:first-child > span {
      margin-left: 0;
      border-top-left-radius: 4px;
      border-bottom-left-radius: 4px; }
    .pagination > li:last-child > a,
    .pagination > li:last-child > span {
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px; }
  .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
  .pagination > .active > span,
  .pagination > .active > span:hover,
  .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7; }
  .pagination > .disabled > span,
  .pagination > .disabled > span:hover,
  .pagination > .disabled > span:focus,
  .pagination > .disabled > a,
  .pagination > .disabled > a:hover,
  .pagination > .disabled > a:focus {
    color: #777777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd; }

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333; }

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px; }

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px; }

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5; }

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px; }

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px; }

.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none; }
  .pager:before, .pager:after {
    display: table;
    content: " "; }
  .pager:after {
    clear: both; }
  .pager li {
    display: inline; }
    .pager li > a,
    .pager li > span {
      display: inline-block;
      padding: 5px 14px;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 15px; }
    .pager li > a:hover,
    .pager li > a:focus {
      text-decoration: none;
      background-color: #eeeeee; }
  .pager .next > a,
  .pager .next > span {
    float: right; }
  .pager .previous > a,
  .pager .previous > span {
    float: left; }
  .pager .disabled > a,
  .pager .disabled > a:hover,
  .pager .disabled > a:focus,
  .pager .disabled > span {
    color: #777777;
    cursor: not-allowed;
    background-color: #fff; }

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }
  .label:empty {
    display: none; }
  .btn .label {
    position: relative;
    top: -1px; }

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.label-default {
  background-color: #777777; }
  .label-default[href]:hover, .label-default[href]:focus {
    background-color: #5e5e5e; }

.label-primary {
  background-color: #337ab7; }
  .label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #286090; }

.label-success {
  background-color: #5cb85c; }
  .label-success[href]:hover, .label-success[href]:focus {
    background-color: #449d44; }

.label-info {
  background-color: #5bc0de; }
  .label-info[href]:hover, .label-info[href]:focus {
    background-color: #31b0d5; }

.label-warning {
  background-color: #f0ad4e; }
  .label-warning[href]:hover, .label-warning[href]:focus {
    background-color: #ec971f; }

.label-danger {
  background-color: #d9534f; }
  .label-danger[href]:hover, .label-danger[href]:focus {
    background-color: #c9302c; }

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777777;
  border-radius: 10px; }
  .badge:empty {
    display: none; }
  .btn .badge {
    position: relative;
    top: -1px; }
  .btn-xs .badge, .btn-group-xs > .btn .badge,
  .btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px; }
  .list-group-item.active > .badge,
  .nav-pills > .active > a > .badge {
    color: #337ab7;
    background-color: #fff; }
  .list-group-item > .badge {
    float: right; }
  .list-group-item > .badge + .badge {
    margin-right: 5px; }
  .nav-pills > li > a > .badge {
    margin-left: 3px; }

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee; }
  .jumbotron h1,
  .jumbotron .h1 {
    color: inherit; }
  .jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200; }
  .jumbotron > hr {
    border-top-color: #d5d5d5; }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 6px; }
  .jumbotron .container {
    max-width: 100%; }
  @media screen and (min-width: 200px) {
    .jumbotron {
      padding-top: 48px;
      padding-bottom: 48px; }
      .container .jumbotron,
      .container-fluid .jumbotron {
        padding-right: 60px;
        padding-left: 60px; }
      .jumbotron h1,
      .jumbotron .h1 {
        font-size: 63px; } }

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out; }
  .thumbnail > img,
  .thumbnail a > img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-right: auto;
    margin-left: auto; }
  .thumbnail .caption {
    padding: 9px;
    color: #333333; }

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7; }

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px; }
  .alert h4 {
    margin-top: 0;
    color: inherit; }
  .alert .alert-link {
    font-weight: bold; }
  .alert > p,
  .alert > ul {
    margin-bottom: 0; }
  .alert > p + p {
    margin-top: 5px; }

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px; }
  .alert-dismissable .close,
  .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit; }

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6; }
  .alert-success hr {
    border-top-color: #c9e2b3; }
  .alert-success .alert-link {
    color: #2b542c; }

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1; }
  .alert-info hr {
    border-top-color: #a6e1ec; }
  .alert-info .alert-link {
    color: #245269; }

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc; }
  .alert-warning hr {
    border-top-color: #f7e1b5; }
  .alert-warning .alert-link {
    color: #66512c; }

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1; }
  .alert-danger hr {
    border-top-color: #e4b9c0; }
  .alert-danger .alert-link {
    color: #843534; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease; }

.progress-striped .progress-bar,
.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: 40px 40px; }

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite; }

.progress-bar-success {
  background-color: #5cb85c; }
  .progress-striped .progress-bar-success {
    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); }

.progress-bar-info {
  background-color: #5bc0de; }
  .progress-striped .progress-bar-info {
    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); }

.progress-bar-warning {
  background-color: #f0ad4e; }
  .progress-striped .progress-bar-warning {
    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); }

.progress-bar-danger {
  background-color: #d9534f; }
  .progress-striped .progress-bar-danger {
    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); }

.media {
  margin-top: 15px; }
  .media:first-child {
    margin-top: 0; }

.media,
.media-body {
  overflow: hidden;
  zoom: 1; }

.media-body {
  width: 10000px; }

.media-object {
  display: block; }
  .media-object.img-thumbnail {
    max-width: none; }

.media-right,
.media > .pull-right {
  padding-left: 10px; }

.media-left,
.media > .pull-left {
  padding-right: 10px; }

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

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

.list-group {
  padding-left: 0;
  margin-bottom: 20px; }

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }
  .list-group-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }
  .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
    color: #777777;
    cursor: not-allowed;
    background-color: #eeeeee; }
    .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
      color: inherit; }
    .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
      color: #777777; }
  .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7; }
    .list-group-item.active .list-group-item-heading,
    .list-group-item.active .list-group-item-heading > small,
    .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
    .list-group-item.active:hover .list-group-item-heading > small,
    .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
    .list-group-item.active:focus .list-group-item-heading > small,
    .list-group-item.active:focus .list-group-item-heading > .small {
      color: inherit; }
    .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
      color: #c7ddef; }

a.list-group-item,
button.list-group-item {
  color: #555; }
  a.list-group-item .list-group-item-heading,
  button.list-group-item .list-group-item-heading {
    color: #333; }
  a.list-group-item:hover, a.list-group-item:focus,
  button.list-group-item:hover,
  button.list-group-item:focus {
    color: #555;
    text-decoration: none;
    background-color: #f5f5f5; }

button.list-group-item {
  width: 100%;
  text-align: left; }

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8; }

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d; }
  a.list-group-item-success .list-group-item-heading,
  button.list-group-item-success .list-group-item-heading {
    color: inherit; }
  a.list-group-item-success:hover, a.list-group-item-success:focus,
  button.list-group-item-success:hover,
  button.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6; }
  a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
  button.list-group-item-success.active,
  button.list-group-item-success.active:hover,
  button.list-group-item-success.active:focus {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d; }

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f; }
  a.list-group-item-info .list-group-item-heading,
  button.list-group-item-info .list-group-item-heading {
    color: inherit; }
  a.list-group-item-info:hover, a.list-group-item-info:focus,
  button.list-group-item-info:hover,
  button.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3; }
  a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
  button.list-group-item-info.active,
  button.list-group-item-info.active:hover,
  button.list-group-item-info.active:focus {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f; }

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b; }
  a.list-group-item-warning .list-group-item-heading,
  button.list-group-item-warning .list-group-item-heading {
    color: inherit; }
  a.list-group-item-warning:hover, a.list-group-item-warning:focus,
  button.list-group-item-warning:hover,
  button.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc; }
  a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
  button.list-group-item-warning.active,
  button.list-group-item-warning.active:hover,
  button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b; }

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede; }

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442; }
  a.list-group-item-danger .list-group-item-heading,
  button.list-group-item-danger .list-group-item-heading {
    color: inherit; }
  a.list-group-item-danger:hover, a.list-group-item-danger:focus,
  button.list-group-item-danger:hover,
  button.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc; }
  a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
  button.list-group-item-danger.active,
  button.list-group-item-danger.active:hover,
  button.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442; }

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3; }

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-body {
  padding: 10px; }
  .panel-body:before, .panel-body:after {
    display: table;
    content: " "; }
  .panel-body:after {
    clear: both; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }
  .panel-heading > .dropdown .dropdown-toggle {
    color: inherit; }

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit; }
  .panel-title > a,
  .panel-title > small,
  .panel-title > .small,
  .panel-title > small > a,
  .panel-title > .small > a {
    color: inherit; }

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0; }
  .panel > .list-group .list-group-item,
  .panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0; }
  .panel > .list-group:first-child .list-group-item:first-child,
  .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }
  .panel > .list-group:last-child .list-group-item:last-child,
  .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

.list-group + .panel-footer {
  border-top-width: 0; }

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0; }
  .panel > .table caption,
  .panel > .table-responsive > .table caption,
  .panel > .panel-collapse > .table caption {
    padding-right: 10px;
    padding-left: 10px; }

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }
  .panel > .table:first-child > thead:first-child > tr:first-child,
  .panel > .table:first-child > tbody:first-child > tr:first-child,
  .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }
    .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
    .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
      border-top-left-radius: 3px; }
    .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
      border-top-right-radius: 3px; }

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }
  .panel > .table:last-child > tbody:last-child > tr:last-child,
  .panel > .table:last-child > tfoot:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
      border-bottom-left-radius: 3px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
      border-bottom-right-radius: 3px; }

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd; }

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0; }

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0; }
  .panel > .table-bordered > thead > tr > th:first-child,
  .panel > .table-bordered > thead > tr > td:first-child,
  .panel > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-bordered > tfoot > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0; }
  .panel > .table-bordered > thead > tr > th:last-child,
  .panel > .table-bordered > thead > tr > td:last-child,
  .panel > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-bordered > tfoot > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  .panel > .table-bordered > thead > tr:first-child > td,
  .panel > .table-bordered > thead > tr:first-child > th,
  .panel > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-bordered > tbody > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0; }
  .panel > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-bordered > tfoot > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0; }

.panel > .table-responsive {
  margin-bottom: 0;
  border: 0; }

.panel-group {
  margin-bottom: 20px; }
  .panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px; }
    .panel-group .panel + .panel {
      margin-top: 5px; }
  .panel-group .panel-heading {
    border-bottom: 0; }
    .panel-group .panel-heading + .panel-collapse > .panel-body,
    .panel-group .panel-heading + .panel-collapse > .list-group {
      border-top: 1px solid #ddd; }
  .panel-group .panel-footer {
    border-top: 0; }
    .panel-group .panel-footer + .panel-collapse .panel-body {
      border-bottom: 1px solid #ddd; }

.panel-default {
  border-color: #ddd; }
  .panel-default > .panel-heading {
    color: #333333;
    background-color: #f5f5f5;
    border-color: #ddd; }
    .panel-default > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ddd; }
    .panel-default > .panel-heading .badge {
      color: #f5f5f5;
      background-color: #333333; }
  .panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd; }

.panel-primary {
  border-color: #337ab7; }
  .panel-primary > .panel-heading {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7; }
    .panel-primary > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #337ab7; }
    .panel-primary > .panel-heading .badge {
      color: #337ab7;
      background-color: #fff; }
  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #337ab7; }

.panel-success {
  border-color: #d6e9c6; }
  .panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6; }
    .panel-success > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #d6e9c6; }
    .panel-success > .panel-heading .badge {
      color: #dff0d8;
      background-color: #3c763d; }
  .panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6; }

.panel-info {
  border-color: #bce8f1; }
  .panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1; }
    .panel-info > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #bce8f1; }
    .panel-info > .panel-heading .badge {
      color: #d9edf7;
      background-color: #31708f; }
  .panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1; }

.panel-warning {
  border-color: #faebcc; }
  .panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc; }
    .panel-warning > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #faebcc; }
    .panel-warning > .panel-heading .badge {
      color: #fcf8e3;
      background-color: #8a6d3b; }
  .panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc; }

.panel-danger {
  border-color: #ebccd1; }
  .panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1; }
    .panel-danger > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ebccd1; }
    .panel-danger > .panel-heading .badge {
      color: #f2dede;
      background-color: #a94442; }
  .panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }
  .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-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
  .well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15); }

.well-lg {
  padding: 24px;
  border-radius: 6px; }

.well-sm {
  padding: 9px;
  border-radius: 3px; }

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2; }
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: 0.5; }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
  .modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
  .modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0; }
  .modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: 0.5; }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }
  .modal-header:before, .modal-header:after {
    display: table;
    content: " "; }
  .modal-header:after {
    clear: both; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.42857; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }
  .modal-footer:before, .modal-footer:after {
    display: table;
    content: " "; }
  .modal-footer:after {
    clear: both; }
  .modal-footer .btn + .btn {
    margin-bottom: 0;
    margin-left: 5px; }
  .modal-footer .btn-group .btn + .btn {
    margin-left: -1px; }
  .modal-footer .btn-block + .btn-block {
    margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 200px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .modal-sm {
    width: 300px; } }

@media (min-width: 300px) {
  .modal-lg {
    width: 900px; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 12px;
  filter: alpha(opacity=0);
  opacity: 0; }
  .tooltip.in {
    filter: alpha(opacity=90);
    opacity: 0.9; }
  .tooltip.top {
    padding: 5px 0;
    margin-top: -3px; }
  .tooltip.right {
    padding: 0 5px;
    margin-left: 3px; }
  .tooltip.bottom {
    padding: 5px 0;
    margin-top: 3px; }
  .tooltip.left {
    padding: 0 5px;
    margin-left: -3px; }
  .tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000; }
  .tooltip.top-left .tooltip-arrow {
    right: 5px;
    bottom: 0;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000; }
  .tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000; }
  .tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000; }
  .tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000; }
  .tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000; }
  .tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000; }
  .tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px; }

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

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
  .popover.top {
    margin-top: -10px; }
  .popover.right {
    margin-left: 10px; }
  .popover.bottom {
    margin-top: 10px; }
  .popover.left {
    margin-left: -10px; }
  .popover > .arrow {
    border-width: 11px; }
    .popover > .arrow, .popover > .arrow:after {
      position: absolute;
      display: block;
      width: 0;
      height: 0;
      border-color: transparent;
      border-style: solid; }
    .popover > .arrow:after {
      content: "";
      border-width: 10px; }
  .popover.top > .arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999999;
    border-top-color: rgba(0, 0, 0, 0.25);
    border-bottom-width: 0; }
    .popover.top > .arrow:after {
      bottom: 1px;
      margin-left: -10px;
      content: " ";
      border-top-color: #fff;
      border-bottom-width: 0; }
  .popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: #999999;
    border-right-color: rgba(0, 0, 0, 0.25);
    border-left-width: 0; }
    .popover.right > .arrow:after {
      bottom: -10px;
      left: 1px;
      content: " ";
      border-right-color: #fff;
      border-left-width: 0; }
  .popover.bottom > .arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999999;
    border-bottom-color: rgba(0, 0, 0, 0.25); }
    .popover.bottom > .arrow:after {
      top: 1px;
      margin-left: -10px;
      content: " ";
      border-top-width: 0;
      border-bottom-color: #fff; }
  .popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999999;
    border-left-color: rgba(0, 0, 0, 0.25); }
    .popover.left > .arrow:after {
      right: 1px;
      bottom: -10px;
      content: " ";
      border-right-width: 0;
      border-left-color: #fff; }

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0; }

.popover-content {
  padding: 9px 14px; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .carousel-inner > .item {
    position: relative;
    display: none;
    -webkit-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        transition: -webkit-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px; }
        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: 0.5; }
  .carousel-control.left {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x; }
  .carousel-control.right {
    right: 0;
    left: auto;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x; }
  .carousel-control:hover, .carousel-control:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    filter: alpha(opacity=90);
    opacity: 0.9; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    font-family: serif;
    line-height: 1; }
  .carousel-control .icon-prev:before {
    content: "\2039"; }
  .carousel-control .icon-next:before {
    content: "\203A"; }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px; }
  .carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 200px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.clearfix:before, .resource-item-wrapper .heading-wrapper:before, .dashboard-widget .widget-header:before, .clearfix:after, .resource-item-wrapper .heading-wrapper:after, .dashboard-widget .widget-header:after {
  display: table;
  content: " "; }

.clearfix:after, .resource-item-wrapper .heading-wrapper:after, .dashboard-widget .widget-header:after {
  clear: both; }

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }

.visible-xs {
  display: none !important; }

.visible-sm {
  display: none !important; }

.visible-md {
  display: none !important; }

.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 199px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table !important; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 199px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 199px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 199px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 200px) and (max-width: 299px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table !important; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 200px) and (max-width: 299px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 200px) and (max-width: 299px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 200px) and (max-width: 299px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 300px) and (max-width: 399px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table !important; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 300px) and (max-width: 399px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 300px) and (max-width: 399px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 300px) and (max-width: 399px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 400px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table !important; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 400px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 400px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 400px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 199px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 200px) and (max-width: 299px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 300px) and (max-width: 399px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 400px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table !important; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute, .myNavbar, .tmr-loader-inline, #inside-right-controls {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.report-tooltip {
  background-color: #2b303c;
  text-align: center;
  color: white;
  border: none;
  padding: 8px;
  position: relative; }

#tail1 {
  position: absolute;
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
  bottom: -12px;
  width: 0;
  height: 0;
  border-color: rgba(43, 48, 60, 0.8) transparent transparent transparent;
  border-width: 7px;
  border-style: solid; }

#tail2 {
  position: absolute;
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%;
  bottom: -12px;
  width: 0;
  height: 0;
  border-color: rgba(43, 48, 60, 0.8) transparent transparent transparent;
  border-width: 7px;
  border-style: solid; }

.tooltip.in {
  opacity: 1; }

.tooltip.tooltip-purple {
  opacity: 0.95; }
  .tooltip.tooltip-purple .tooltip-inner {
    background-color: #9B58B9;
    font-weight: 500;
    line-height: 16px;
    padding: 6px 10px; }
  .tooltip.tooltip-purple .tooltip-arrow {
    border-top-color: #9B58B9; }
  .tooltip.tooltip-purple.bottom .tooltip-arrow {
    border-bottom-color: #9B58B9; }

.trimmed-text + .tooltip .tooltip-inner,
.tooltip-trimmed-text.tooltip .tooltip-inner {
  word-wrap: break-word; }

.info-icon {
  color: #9B58B9; }

.scale-75 {
  -webkit-transform: scale(0.75);
          transform: scale(0.75); }

.icon-info-with-circle {
  position: relative;
  left: -2px; }

.popover-content {
  padding: 0;
  line-height: 35px;
  border: none;
  border-radius: 4px; }

.popover {
  border: 1px #b4bdcb solid;
  border-radius: 4px;
  padding: 0; }

.popover.top > .arrow {
  left: 50%;
  margin-left: -7px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: #b4bdcb;
  bottom: -7px; }

.popover.bottom > .arrow {
  left: 75%;
  margin-left: -7px;
  margin-left: auto;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: #b4bdcb;
  top: -7px; }

.popover > .arrow {
  border-width: 7px;
  z-index: -1; }

.popover.left > .arrow {
  top: 50%;
  right: -8px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #b4bdcb; }

.app-popover {
  padding: 6px 12px;
  min-width: 220px; }

a.popover-a {
  color: #353e4c;
  width: 100%;
  display: block;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap; }
  a.popover-a.disabled {
    opacity: 0.5; }

a.popover-a:hover {
  text-decoration: underline;
  color: #3da4f3; }
  a.popover-a:hover.disabled {
    color: #353e4c;
    cursor: not-allowed; }

a:focus {
  color: #3da4f3;
  text-decoration: underline;
  border: none;
  outline: none; }

a:focus * {
  text-decoration: underline; }

.app-popover-title {
  background-color: white;
  margin: 0;
  padding: 3px 15px;
  font-size: 15px;
  font-weight: 500;
  color: #353e4c; }

.app-popover-title.large-popover {
  width: 250px; }

.popover .password-modal-area {
  padding: 0px 15px 3px; }

.popover-footer-buttons {
  padding: 5px 15px; }

.popover-footer-buttons button {
  margin-right: 6px !important;
  margin-top: 0 !important; }

.ng-isolate-scope.bottom.fade.popover.in {
  margin-left: -70px; }

.tooltip.tooltip-lighter {
  opacity: 0.95; }
  .tooltip.tooltip-lighter .tooltip-arrow {
    border-top-color: var(--base-color-text); }
  .tooltip.tooltip-lighter .tooltip-inner {
    background-color: var(--base-color-text);
    font-weight: 500;
    line-height: 16px;
    padding: 6px 10px;
    text-align: left; }

.ng-isolate-scope.bottom.fade.popover.in-remove {
  margin-left: -70px !important; }

.tooltip.tooltip-lighter {
  opacity: 0.95; }
  .tooltip.tooltip-lighter .tooltip-arrow {
    border-top-color: var(--base-color-text); }
  .tooltip.tooltip-lighter .tooltip-inner {
    background-color: var(--base-color-text);
    font-weight: 500;
    line-height: 16px;
    padding: 6px 10px; }

.tooltip.tooltip-large {
  max-width: 400px; }
  .tooltip.tooltip-large .tooltip-arrow {
    border-top-color: var(--base-color-text);
    opacity: 0.9; }
  .tooltip.tooltip-large .tootlip-header {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: normal; }
    .tooltip.tooltip-large .tootlip-header span {
      vertical-align: middle; }
    .tooltip.tooltip-large .tootlip-header .tooltip-icon {
      font-size: 20px;
      margin-right: 5px; }
      .tooltip.tooltip-large .tootlip-header .tooltip-icon.users-icon {
        font-size: 13px;
        position: relative;
        top: 0px;
        font-weight: normal; }
        .tooltip.tooltip-large .tootlip-header .tooltip-icon.users-icon.icon-users-registered {
          font-size: 12px;
          top: -1px; }
  .tooltip.tooltip-large .tooltip-section {
    display: block;
    margin-bottom: 10px;
    text-align: left; }
    .tooltip.tooltip-large .tooltip-section .tooltip-header,
    .tooltip.tooltip-large .tooltip-section .tooltip-body {
      display: block; }
    .tooltip.tooltip-large .tooltip-section:last-child {
      margin-bottom: 0; }
  .tooltip.tooltip-large .tooltip-inner {
    background-color: var(--base-color-text);
    font-weight: 500;
    max-width: inherit;
    opacity: 0.9;
    padding: 11px 14px; }
  .tooltip.tooltip-large .label {
    border-radius: 10px;
    background: var(--base-color-secondary-lighten);
    font-size: 10px;
    font-weight: 500;
    line-height: 10px;
    margin-left: 4px;
    padding: 4px 6px;
    text-transform: uppercase; }

.navbar-toggle .icon-bar:nth-of-type(2) {
  top: 1px; }

.navbar-toggle .icon-bar:nth-of-type(3) {
  top: 2px; }

.navbar-toggle .icon-bar {
  position: relative;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out; }

.navbar-toggle.active .icon-bar:nth-of-type(1) {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }

.navbar-toggle.active .icon-bar:nth-of-type(2) {
  background-color: transparent !important; }

.navbar-toggle.active .icon-bar:nth-of-type(3) {
  top: -9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); }

.myNavbar {
  color: white;
  position: absolute;
  right: 25px;
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: none !important; }

.myIconBar {
  color: white !important;
  background-color: white;
  margin-top: 7px !important;
  height: 2px !important;
  width: 35px !important;
  border: none;
  margin-left: -10px; }

.myIconBar:first-of-type {
  margin-top: 0 !important; }

.myIconBar.icon-bar:nth-of-type(1) {
  background-color: black; }

.myIconBar.icon-bar:nth-of-type(2) {
  background-color: black; }

.myIconBar.icon-bar:nth-of-type(3) {
  background-color: black; }

.offcanvas-position {
  position: absolute;
  top: 84px;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 4; }

.offcanvas-position.on {
  position: absolute;
  top: 84px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4; }

@media screen and (max-width: 199px) {
  .sidenav {
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    visibility: hidden;
    z-index: 4;
    padding: 0;
    position: absolute;
    -webkit-transition: all .15s ease-out;
    transition: all .15s ease-out; }
  .sidenav.on {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    visibility: visible;
    right: 100%;
    position: absolute;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
    z-index: 4;
    background-color: #3da4f3; } }

.myOffcanvas a {
  color: white;
  line-height: 60px;
  padding: 0 20px;
  display: block;
  border-bottom: #9dd1f9 solid 1px; }

.myOffcanvas a:hover {
  color: white; }

.multiple-select-box {
  position: relative;
  text-align: left;
  width: 100%;
  border: var(--base-color-secondary-lighten2) 1px solid;
  color: #353e4c;
  font-weight: 400;
  outline: none;
  border-radius: 4px;
  padding: 4px;
  height: 36px;
  background: white; }
  .multiple-select-box:hover {
    cursor: pointer; }
  .multiple-select-box.multiselect-large {
    height: 42px;
    padding-top: 6px; }

.multiple-select-box:after {
  content: "\E93D";
  font-family: 'Linearicons';
  position: absolute;
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
  right: 4px;
  pointer-events: none;
  color: var(--base-color-primary);
  font-size: 13px; }

td .multiple-select-box {
  padding: 2px;
  height: 35px; }

.multiple-select-box:hover {
  border: #3da4f3 1px solid; }

.multiple-select-dropdown {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 250px;
  background: white;
  overflow: hidden;
  border: #cdd8ea 1px solid;
  border-radius: 4px;
  z-index: 15;
  visibility: hidden;
  padding: 5px;
  -webkit-box-shadow: #dfe6f1 0px 2px 2px 0px;
          box-shadow: #dfe6f1 0px 2px 2px 0px; }

.small-height .multiple-select-dropdown {
  height: 200px; }

.select-box-category {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  padding-left: 5px; }

.multiple-select-dropdown.active {
  visibility: visible; }

.full-dropdown,
.half-dropdown {
  height: 2em;
  padding: 5px; }

.half-dropdown {
  display: inline-block; }
  @media (min-width: 200px) {
    .half-dropdown {
      width: 50%; } }
  @media (max-width: 199px) {
    .half-dropdown {
      width: 100%; } }

@media (min-width: 400px) {
  .report-top-filters-with-map .half-dropdown {
    width: 50%; } }

@media (min-width: 300px) and (max-width: 399px) {
  .report-top-filters-with-map .half-dropdown {
    width: 100%; } }

@media (min-width: 200px) and (max-width: 299px) {
  .report-top-filters-with-map .half-dropdown {
    width: 100%; } }

@media (max-width: 199px) {
  .report-top-filters-with-map .half-dropdown {
    width: 100%; } }

.select-tag-checkboxes {
  margin: 0 -10px; }

.select-box-label.multiple-selected-tags {
  color: #cacaca; }

.select-user-category {
  margin-left: 3px;
  font-weight: bold; }

.select-tag-label {
  margin: 0 5px;
  line-height: 24px;
  font-size: 16px; }

.select-user-checkbox {
  margin-top: 28px; }

.select-tag-label:hover {
  background: #e7f4fe; }

.select-tag-label:hover label.select-box-label {
  color: #3da4f3; }

.select-box-label {
  color: #353e4c;
  font-weight: normal;
  display: inline; }

.select-box-all-hr {
  margin-bottom: 10px;
  margin-top: 5px; }

.select-box-hr {
  margin-bottom: 10px;
  margin-top: 10px; }

.select-box-search-box {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  height: 40px; }

.select-box-search-box-input {
  position: relative;
  border: var(--base-color-border) 1px solid;
  color: var(--base-color-secondary);
  font-weight: 400;
  outline: none;
  border-radius: 4px;
  padding: 0 8px;
  width: 100%;
  height: 30px;
  display: inline-block; }

input.select-box-search-box-input:hover {
  border: #3da4f3 1px solid; }

input.select-box-search-box-input:focus {
  border: #3da4f3 1px solid;
  color: #353e4c;
  font-weight: 400;
  outline: none;
  border-radius: 4px;
  padding: 0 12px;
  width: 100%; }

.select-box-checkboxes {
  position: absolute;
  -webkit-overflow-scrolling: touch;
  top: 40px;
  left: 5px;
  right: 5px;
  bottom: 0; }
  .select-box-checkboxes.without-searchbox {
    padding-top: 10px;
    top: 0; }

.select-box-checkboxes.no-search-box {
  top: 0; }

@media (max-width: 199px) {
  .multiple-select-dropdown.active .select-box-checkboxes {
    overflow: scroll; } }

@media (min-width: 200px) {
  .multiple-select-dropdown.active .select-box-checkboxes {
    overflow: hidden; } }

.multiple-select-dropdown:hover .select-box-checkboxes {
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

.select-box-checkboxes::-webkit-scrollbar * {
  background: transparent; }

.select-box-checkboxes::-webkit-scrollbar-thumb {
  background: transparent !important; }

.searchbox-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-block;
  background: transparent;
  border: none;
  color: #353e4c;
  opacity: 0.4; }

.multiselect-tag, tags-input .tags .tag-item {
  position: relative;
  display: inline-block;
  padding: 4px;
  border: 1px solid var(--base-color-primary);
  border-radius: 4px;
  margin-left: 2px;
  background: #FFFFFF;
  z-index: 0;
  line-height: normal; }

td .multiple-select-box .multiselect-tag, td .multiple-select-box tags-input .tags .tag-item, tags-input .tags td .multiple-select-box .tag-item {
  padding: 2px 4px;
  text-transform: uppercase; }

.tag-icons {
  color: #3da4f3;
  font-size: 0.8em;
  padding: 4px 2px; }

.tag-icons:hover {
  color: #06385e;
  cursor: pointer; }

.front-tag-icon {
  color: #3da4f3;
  font-size: 20px;
  padding: 0;
  vertical-align: text-top; }

.multiple-select-box-area {
  width: 100%;
  height: 100%;
  position: relative; }

.multiselect-info {
  padding-left: 8px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%); }

.tmr-disabled {
  background: var(--base-color-text-lighten4);
  cursor: not-allowed !important; }

.tmr-disabled * {
  cursor: not-allowed !important; }

.tmr-disabled:hover {
  cursor: not-allowed !important; }

.checkboxes-inline {
  display: inline-block;
  padding: 5px;
  height: 2em;
  width: 100%; }

.required-border {
  border-color: #F04864 !important; }

.accounts-area {
  height: 250px;
  overflow-y: scroll; }

.account-box {
  margin: 4px 25px;
  height: 55px;
  border: 1px solid #b4bdcb;
  border-radius: 4px;
  background-color: white;
  line-height: 55px;
  position: relative;
  overflow: hidden; }

.account-box.active, .account-box:hover {
  cursor: pointer;
  border: 1px solid #3da4f3; }

.account-img {
  width: 80px;
  display: inline-block;
  vertical-align: middle;
  text-align: center; }

.account-img img {
  max-width: 100%;
  max-height: 100%;
  padding: 5px; }

.account-img span {
  font-size: 45px;
  padding: 5px;
  vertical-align: middle;
  color: #3da4f3; }

.account-name {
  display: inline; }

.accounts-area:hover {
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

.default-account {
  margin-right: 12px; }

.date-picker-box {
  display: inline-block;
  position: relative;
  min-width: 100px;
  text-align: center; }

.datepicker-icon {
  position: absolute;
  top: 50%;
  right: 7px;
  margin-top: -8px;
  font-size: 14px;
  height: 100%;
  color: #3da4f3;
  pointer-events: none; }

input.date-picker {
  border: #b4bdcb 1px solid;
  color: #353e4c;
  font-weight: 400;
  outline: none;
  border-radius: 4px;
  padding: 0 12px;
  width: 100px;
  height: 36px; }
  input.date-picker:before {
    font-family: 'Linearicons' !important;
    content: "\E920"; }

input.date-picker:hover {
  border: #3da4f3 1px solid; }

input.date-picker:focus {
  border: #3da4f3 1px solid;
  color: #353e4c;
  font-weight: 400;
  outline: none;
  border-radius: 4px;
  padding: 0 12px;
  width: 100px; }

.date-title {
  position: absolute;
  background-color: white;
  z-index: 2;
  top: -7px;
  padding-left: 5px;
  padding-right: 5px;
  left: 12px;
  color: #353e4c;
  font-weight: 400;
  font-size: 11px; }

.date-picker-box .btn {
  border: white 1px solid;
  background-color: transparent;
  border-radius: 4px;
  font-size: 0.9em;
  padding: 4px 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-top: 0; }

.date-picker-box tbody .btn:hover, .month-box tbody .btn:hover {
  border: var(--base-color-primary-lighten3) 1px solid;
  background-color: var(--base-color-primary-lighten3); }

.date-picker-box tbody .btn.active:hover, .month-box tbody .btn.active:hover {
  border: #3da4f3 1px solid;
  background-color: #3da4f3; }

.date-picker-box td:first-of-type {
  padding-left: 15px; }

.date-picker-box td:last-of-type {
  padding-right: 15px; }

.date-picker-box table {
  margin: 15px 0; }

.date-picker-box table {
  border: none;
  outline: none; }

.date-picker-box .btn.active, .month-box .btn.active {
  background-color: #3da4f3; }

.date-picker-box .btn.active span, .month-box .btn.active span {
  color: white; }

.date-picker-box .btn span {
  color: #353e4c;
  font-weight: 400; }

.date-picker-box button[disabled].btn.active, .date-picker-box button[disabled].btn.active span {
  color: #b0b0b0;
  font-weight: 400;
  background-color: transparent; }

.date-picker-box button:focus, .date-picker-box button.active {
  border-radius: 4px !important; }

.date-picker-box tbody {
  padding: 20px; }

.date-picker-box .glyphicon.glyphicon-chevron-right, .date-picker-box .ng-table th.sortable.sort-asc .glyphicon-chevron-right.sort-indicator:after, .ng-table th.sortable.sort-asc .date-picker-box .glyphicon-chevron-right.sort-indicator:after, .date-picker-box .ng-table th.sortable.sort-desc .glyphicon-chevron-right.sort-indicator:after, .ng-table th.sortable.sort-desc .date-picker-box .glyphicon-chevron-right.sort-indicator:after {
  visibility: hidden; }

.date-picker-box .glyphicon.glyphicon-chevron-left, .date-picker-box .ng-table th.sortable.sort-asc .glyphicon-chevron-left.sort-indicator:after, .ng-table th.sortable.sort-asc .date-picker-box .glyphicon-chevron-left.sort-indicator:after, .date-picker-box .ng-table th.sortable.sort-desc .glyphicon-chevron-left.sort-indicator:after, .ng-table th.sortable.sort-desc .date-picker-box .glyphicon-chevron-left.sort-indicator:after {
  visibility: hidden; }

.date-picker-box button.btn.pull-right:after {
  font-family: 'Linearicons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\E944";
  font-size: 1.4em; }

.date-picker-box button.btn.pull-left:before {
  font-family: 'Linearicons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\E943";
  font-size: 1.4em; }

.date-picker-box button[role="heading"][disabled], .date-picker-box button[role="heading"] {
  color: #353e4c;
  cursor: default;
  margin-top: -2px; }

.date-picker-box ul:after, .date-picker-box ul:before {
  bottom: 100%;
  left: 50px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

.date-picker-box ul:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 5px;
  margin-left: -5px; }

.date-picker-box ul:before {
  border-color: rgba(241, 244, 249, 0);
  border-bottom-color: #a2a9b6;
  border-width: 6px;
  margin-left: -6px; }

.date-picker-box th button[disabled]:hover {
  border: 1px solid white; }

.date-picker-box th * {
  outline: none !important; }

.date-picker-box td button[disabled] span {
  color: #b0b0b0; }

.date-picker:hover {
  cursor: pointer; }

@font-face {
  font-family: SourceSansPro;
  src: url(assets/SourceSansPro-Regular.otf?); }

@font-face {
  font-family: SourceSansPro;
  src: url(assets/SourceSansPro-Bold.otf?);
  font-weight: bold; }

@font-face {
  font-family: SourceSansPro;
  src: url(assets/SourceSansPro-It.otf?);
  font-style: italic; }

@font-face {
  font-family: SourceSansPro;
  src: url(assets/SourceSansPro-BoldIt.otf?);
  font-weight: bold;
  font-style: italic; }

@font-face {
  font-family: SourceSansPro;
  src: url(assets/SourceSansPro-Light.otf?);
  font-weight: 300; }

@font-face {
  font-family: SourceSansPro;
  src: url(assets/SourceSansPro-LightIt.otf?);
  font-style: italic;
  font-weight: 300; }

@font-face {
  font-family: SourceSansPro;
  src: url(assets/SourceSansPro-Semibold.otf?);
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Source Code Pro';
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  src: url(assets/SourceCodePro-Regular.otf?); }

html {
  min-height: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased; }

body {
  font-size: 14px;
  color: #353e4c;
  margin: 0 0 130px;
  background-color: #F1F4F9; }

body * {
  font-family: SourceSansPro, sans-serif; }

@media (min-width: 200px) {
  .tmr-background {
    background: url(assets/watermark_alpha.png?) fixed #F1F4F9 no-repeat left 25px bottom 25px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1; } }

@media (max-width: 199px) {
  .tmr-background {
    margin-top: 15px; } }

.background-with-logo {
  background: url(assets/watermark_alpha.png?) fixed #F1F4F9 no-repeat left 25px bottom 25px; }

.no-logo {
  background: none; }

a {
  color: #3da4f3;
  font-weight: 500; }
  a.settings-link:focus,
  a.settings-link:focus * {
    text-decoration: none; }
  a.link-standard {
    font-weight: 400; }

.account-manager-table,
.ul-table,
.user-manager-table,
.tmr-document-list,
.tmr-tag-list,
.par-table {
  position: relative; }

.settings-link + .popover.bottom {
  -webkit-box-shadow: 0px 0px 1px 0px #b4bdcb;
          box-shadow: 0px 0px 1px 0px #b4bdcb;
  margin-top: 7px;
  right: 0; }
  .settings-link + .popover.bottom > .arrow {
    left: auto;
    right: 10px; }

.account-manager-table .settings-link + .popover.bottom,
.user-manager-table .settings-link + .popover.bottom {
  margin-top: 14px; }

a span.icon-check-square, a span.icon-cross-square {
  color: #949cab; }

a span.icon-check-square:hover, a span.icon-cross-square:hover {
  color: #3da4f3; }

a:hover {
  text-decoration: underline;
  color: #3da4f3; }

nav a *:hover {
  text-decoration: underline; }

@media (max-width: 199px) {
  .mobile-top-margin {
    margin-top: 84px;
    padding-left: 0;
    padding-right: 0; } }

.mynewclassclose:hover {
  opacity: 1; }

.inline-edit-icon {
  padding-left: 10px;
  font-size: 14px; }

.registration-form-padding {
  padding-left: 30px;
  padding-right: 30px; }

@media (max-width: 199px) {
  .app-page-title {
    border-bottom: #cdd8ea 1px solid;
    padding: 20px 0 20px 20px; } }

.page-with-white-background {
  position: relative;
  background-color: white;
  border-radius: 5px;
  border: 1px solid var(--base-color-text-lighten3);
  display: block;
  margin-bottom: 15px; }
  @media (min-width: 200px) {
    .page-with-white-background {
      padding: 30px;
      margin-top: 0px; } }
  @media (max-width: 199px) {
    .page-with-white-background {
      padding: 0 !important;
      margin-top: 10px; } }

.page-with-no-background {
  position: relative;
  background-color: transparent; }
  @media (min-width: 300px) and (max-width: 399px) {
    .page-with-no-background {
      padding: 10px 43px; } }
  @media (max-width: 199px) {
    .page-with-no-background {
      padding: 0 !important; } }
  .page-with-no-background .page-title {
    margin-bottom: 20px; }
    .page-with-no-background .page-title .page-title-buttons {
      margin-top: 5px; }
      .page-with-no-background .page-title .page-title-buttons .btn {
        font-weight: 400;
        margin-top: 0; }

.page-with-no-background .app-page-title {
  margin-top: 0; }

select {
  background-color: white;
  border-radius: 4px;
  border: solid 1px #cdd1d8; }

.color-light {
  color: #b4bdcb; }

.login-href {
  color: #b1dbfa !important; }

.login-href:hover {
  color: #81c5f7 !important; }

.bigger-font {
  font-size: 1.5em; }

.vertical-middle {
  vertical-align: middle; }

.full-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(241, 244, 249, 0.6);
  z-index: 1500; }

.modal-loader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(241, 244, 249, 0.95); }

.tmr-loader {
  position: absolute;
  z-index: 5;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  top: 50%;
  left: 50%; }

.tmr-content-loader {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 6;
  background-color: rgba(255, 255, 255, 0.8); }

.app-page-loader {
  position: absolute;
  z-index: 5;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  top: 50%;
  left: 50%; }

.tmr-loader-inline {
  position: absolute;
  right: 12px; }

h3 {
  font-size: 18px;
  color: #353e4c;
  font-weight: 500;
  font-family: SourceSansPro, sans-serif;
  margin-bottom: 20px; }

p {
  font-family: SourceSansPro, sans-serif;
  color: #353e4c;
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 15px; }

@media (max-width: 199px) {
  .extra-padding {
    padding: 30px; } }

.dl-horizontal dt {
  word-wrap: break-word !important;
  overflow: visible;
  white-space: normal; }

@media (max-width: 199px) {
  .dl-horizontal dd {
    margin-bottom: 20px; } }

@media (min-width: 200px) {
  .dl-horizontal dd {
    margin-bottom: 8px; } }

@media (max-width: 199px) {
  .dl-horizontal dt {
    margin-bottom: 5px; } }

@media (min-width: 200px) {
  .dl-horizontal dt {
    margin-bottom: 8px; } }

.blue-color {
  color: #3da4f3 !important; }

.show-on-converting-to-svg {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0; }

.tmr-hide {
  height: 0;
  width: 0;
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden; }

.animate-repeat.ng-move,
.animate-repeat.ng-enter,
.animate-repeat.ng-leave {
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s; }

.animate-repeat.ng-leave.ng-leave-active,
.animate-repeat.ng-move,
.animate-repeat.ng-enter {
  opacity: 0;
  margin-top: -20px; }

.animate-repeat.ng-leave,
.animate-repeat.ng-move.ng-move-active,
.animate-repeat.ng-enter.ng-enter-active {
  opacity: 1;
  margin-top: 0; }

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

.text-muted {
  color: #4a576a; }

@media (max-width: 199px) {
  .xs-white-page {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px; } }

a.a-underline {
  font-weight: 400; }

a.a-underline:hover {
  text-decoration: underline;
  color: #3da4f3; }

.nav-center-right {
  float: right; }

.nav-center-right button,
.nav-center-right a {
  margin-top: 0; }

.nav-center-right a:focus,
.nav-center-right a:focus > * {
  text-decoration: none; }

.uppercase {
  text-transform: uppercase; }

@media (max-width: 199px) {
  .mobile-padding {
    padding: 12px; } }

.delete-btn {
  position: relative; }
  .delete-btn .tooltip {
    white-space: nowrap; }
  .delete-btn:focus,
  .delete-btn:focus * {
    text-decoration: none; }
  .delete-btn span {
    color: #F04864; }

.text-italic {
  font-style: italic; }

.bolder {
  font-weight: 500; }

.main-panel {
  background-color: #fff;
  border: 1px solid var(--base-color-secondary-lighten2);
  border-radius: 4px; }
  .main-panel .main-panel-content {
    padding: 20px 25px; }
  .main-panel .input-container {
    margin-bottom: 20px; }
    .main-panel .input-container label {
      color: #353e4c;
      font-weight: 500;
      margin-bottom: 0; }
    .main-panel .input-container .input-text-error {
      padding: 0; }
    .main-panel .input-container .help-block {
      margin-bottom: 0; }
  .main-panel .button-container .btn {
    margin-top: 5px; }

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .flex-container .full-space {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }

.notifier {
  bottom: 0;
  font-size: 16px;
  height: 60px;
  left: 0;
  line-height: 60px;
  position: fixed;
  width: 100%;
  z-index: 1100; }
  .notifier.notifier-success {
    background-color: #67C97E;
    color: white; }
  .notifier.notifier-error {
    background-color: #F34963;
    color: white; }
  .notifier.ng-leave {
    -webkit-transition: 0.5s linear all;
    transition: 0.5s linear all;
    opacity: 1; }
  .notifier.ng-leave.ng-leave-active {
    opacity: 0; }
  .notifier img {
    height: 20px; }
  .notifier .notifier__buttons .btn {
    margin-top: 0; }
    .notifier .notifier__buttons .btn.notifier__dismiss-button {
      border-radius: 50%;
      height: 33px;
      margin-left: 8px;
      padding: 6px 12px;
      width: 33px; }

.warning-alert {
  background-color: #FAF7E4;
  border-bottom: 1px solid #E5E6E8;
  border-top: 1px solid #E5E6E8;
  margin-left: -30px;
  margin-right: -30px;
  padding: 20px 15px; }

.cap-info-container {
  margin-right: 1px; }
  .cap-info-container > div {
    display: inline-block; }
  .cap-info-container .icon-info-with-circle {
    background-color: #fff;
    color: #9B58B9;
    cursor: pointer;
    padding: 0 4px;
    vertical-align: bottom; }
  .cap-info-container .tooltip-inner {
    text-align: left;
    width: 190px; }

.capitalize {
  text-transform: capitalize; }

@media (min-width: 300px) {
  .modal-lg {
    width: 800px; } }

.tmr-accounts-dropdown {
  background-color: #fff;
  border-radius: 4px;
  border-top-left-radius: 0;
  -webkit-box-shadow: 0px 1px 1px var(--base-color-secondary-lighten2);
          box-shadow: 0px 1px 1px var(--base-color-secondary-lighten2);
  left: 15px;
  max-height: 0px;
  min-width: 317px;
  overflow: hidden;
  position: absolute;
  top: 36px;
  z-index: 10; }
  .tmr-accounts-dropdown.dropdown-open {
    max-height: 443px;
    -webkit-transition: max-height 0.2s ease;
    transition: max-height 0.2s ease;
    -webkit-transition-delay: 0.06667s;
            transition-delay: 0.06667s; }
  .tmr-accounts-dropdown .dropdown-container {
    margin: 4px; }
  .tmr-accounts-dropdown .dropdown-main-content {
    max-height: 396px;
    overflow: auto; }
  .tmr-accounts-dropdown .group-items {
    margin: 4px 0; }
  .tmr-accounts-dropdown .set-default-account-link {
    line-height: 24px;
    margin-top: 4px;
    padding: 5px 11px; }
    .tmr-accounts-dropdown .set-default-account-link a {
      color: #435b7d;
      font-weight: 400;
      text-decoration: underline; }

/* Modal size */
.tmr-account-type-transition-modal-window .modal-dialog {
  width: 100%;
  max-width: 1024px; }

/* accountTypeTransition */
.tmr-account-type__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 7px;
  padding-bottom: 35px;
  background-color: #f1f4f9; }

.tmr-tier-transition-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.ie .tmr-tier-transition-container {
  display: block;
  position: relative;
  width: 100%;
  height: 460px; }
  .ie .tmr-tier-transition-container:after {
    content: "";
    display: table;
    clear: both; }
  .ie .tmr-tier-transition-container > * {
    display: block;
    float: left;
    width: calc(25% - 14px);
    height: 100%; }

.tmr-tier-transition-head {
  margin: 0;
  color: #FFFFFF; }

button.close.tmr-tier-transition-close {
  width: 40px;
  height: 40px;
  color: var(--base-color-primary);
  opacity: 1;
  background-color: #FFFFFF;
  padding-bottom: 5px;
  padding-right: 1px;
  margin-top: -2px;
  border-radius: 100%;
  text-align: center;
  top: 7px;
  position: relative; }

.tmr-tier-transition-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 7px;
  padding: 15px;
  background: white;
  border: 1px solid #67C97E;
  font-size: 1.1em;
  line-height: 1.2em;
  vertical-align: middle; }
  .tmr-tier-transition-message i.icon {
    color: #67C97E;
    font-weight: bolder;
    margin-right: 15px;
    font-size: 2em;
    line-height: inherit;
    vertical-align: inherit; }
  .tmr-tier-transition-message strong {
    text-transform: capitalize; }
  .tmr-tier-transition-message.error {
    border: 1px solid #F04864; }
    .tmr-tier-transition-message.error i.icon {
      color: #F04864; }

.tmr-tier-transition-footer {
  padding-top: 25px;
  margin: 0;
  font-family: SourceSansPro;
  text-align: center;
  color: var(--base-color-secondary); }
  .tmr-tier-transition-footer > a {
    color: currentColor;
    text-decoration: underline;
    font-weight: normal; }

.tmr-tier-transition-column {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 7px; }

.ie .tmr-tier-transition-column {
  height: 95%; }

.tmr-tier-transition-column-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 15px;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.07);
  -webkit-transition: -webkit-box-shadow filter .5s linear;
  transition: -webkit-box-shadow filter .5s linear;
  transition: box-shadow filter .5s linear;
  transition: box-shadow filter .5s linear, -webkit-box-shadow filter .5s linear;
  -webkit-transition: -webkit-filter .5s linear;
  background: var(--base-color-secondary-lighten4);
  border-radius: 3px;
  cursor: default; }
  .tmr-tier-transition-column-body:hover {
    -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.33);
            box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.33); }
    .tmr-tier-transition-column-body:hover.disabled {
      -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
              box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); }
      .tmr-tier-transition-column-body:hover.disabled * {
        filter: blur(2px);
        -webkit-filter: blur(2px); }
      .tmr-tier-transition-column-body:hover.disabled .tmr-overlay,
      .tmr-tier-transition-column-body:hover.disabled .tmr-overlay * {
        -webkit-filter: none !important;
                filter: none !important; }
      .tmr-tier-transition-column-body:hover.disabled > .tmr-overlay {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none; }
  .tmr-tier-transition-column-body > .tmr-overlay {
    display: none;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 25px;
    overflow: hidden;
    font-family: SourceSansPro;
    font-size: 20px;
    line-height: 1.33;
    text-align: center;
    color: var(--base-color-secondary); }
    .tmr-tier-transition-column-body > .tmr-overlay article {
      margin: auto 0; }
    .tmr-tier-transition-column-body > .tmr-overlay .document-cap-limit {
      color: #3da4f3; }

.ie .tmr-tier-transition-column-body {
  display: block;
  height: 100%; }
  .ie .tmr-tier-transition-column-body:hover.disabled .tmr-overlay {
    display: block;
    padding-top: 50px;
    color: black;
    background: white;
    opacity: .8; }

.tmr-tier-transition-column-active {
  font-family: SourceSansPro;
  text-transform: uppercase;
  color: #3da4f3;
  text-align: center;
  padding-bottom: 10px;
  letter-spacing: 1.3px;
  visibility: hidden; }

.active > .tmr-tier-transition-column-active {
  visibility: visible; }

.active > .tmr-tier-transition-column-body {
  border: 2px solid #3da4f3;
  -webkit-box-shadow: none;
          box-shadow: none; }

.tmr-tier-column__header {
  margin-top: 10px; }

.tmr-tier-column__title {
  font-size: 24px;
  font-family: SourceSansPro;
  font-weight: 300;
  line-height: 1.14;
  margin: 0;
  text-align: center;
  text-transform: capitalize; }

.tmr-tier-column__sub-title {
  font-family: SourceSansPro;
  line-height: 2;
  font-weight: 400;
  text-align: center;
  color: #a0a0a0;
  margin: 0; }

.tmr-tier-column__list {
  list-style: none;
  padding: 15px; }
  .tmr-tier-column__list i {
    font-weight: bold;
    margin-right: 15px; }
  .tmr-tier-column__list li {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: SourceSansPro;
    line-height: 1.1; }
    .tmr-tier-column__list li.available {
      color: #3da4f3; }
    .tmr-tier-column__list li.locked {
      color: var(--base-color-secondary);
      opacity: .5; }

.ie .tmr-tier-column__list {
  height: 200px; }

.tmr-tier-column-select {
  text-align: center; }
  .tmr-tier-column-select > .tmr-tier-column-price {
    font-size: 20px;
    font-family: SourceSansPro;
    font-weight: 300;
    line-height: 1.45;
    color: var(--base-color-secondary); }
    .tmr-tier-column-select > .tmr-tier-column-price > small {
      font-size: .65em;
      font-weight: 400; }
    .tmr-tier-column-select > .tmr-tier-column-price > .vat {
      font-size: .55em;
      opacity: .5;
      line-height: 1.56; }
      .tmr-tier-column-select > .tmr-tier-column-price > .vat.not-visible {
        visibility: hidden; }
  .tmr-tier-column-select > .btn.btn-small {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 6px 25px; }

.btn {
  height: 40px;
  line-height: 16px;
  border-radius: 80px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px; }

.btn.btn-small {
  font-size: 14px;
  font-weight: 400;
  height: 32px;
  line-height: 19px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 15px;
  padding-right: 15px; }

@media (max-width: 199px) {
  .btn.btn-resp {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 7px;
    padding-right: 7px; } }

.btn-normal-font {
  font-weight: normal; }

.btn.btn-full {
  width: 100%; }

.btn-primary {
  height: 40px;
  line-height: 25px;
  background: var(--base-color-primary);
  /* Old browsers */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#63b7f8', endColorstr='#5db1f1',GradientType=0 );
  /* IE6-9 */
  border: transparent solid 1px; }

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active:focus {
  border: 1px solid transparent;
  background-color: var(--base-color-primary-lighten); }

.btn-default {
  background-color: #FFFFFF;
  border: var(--base-color-primary) solid 1px;
  color: var(--base-color-primary); }

.btn-default:hover {
  background-color: var(--base-color-primary-lighten3);
  border: var(--base-color-primary) solid 1px;
  color: var(--base-color-primary); }

.btn-white {
  background-color: white;
  border: var(--base-color-primary) solid 1px;
  color: var(--base-color-primary); }

.btn-white:hover {
  background-color: var(--base-color-primary-lighten3);
  border: var(--base-color-primary) solid 1px;
  color: var(--base-color-primary); }

.btn-bnw {
  background-color: white;
  border: var(--base-color-primary) solid 1px;
  color: var(--base-color-primary); }

.btn-danger {
  background-color: var(--base-color-red);
  border: var(--base-color-red) solid 1px;
  color: white; }
  .btn-danger:hover {
    background-color: var(--base-color-red-lighten);
    border: var(--base-color-red-lighten) solid 1px; }
  .btn-danger:active {
    background-color: var(--base-color-red-lighten);
    border: var(--base-color-red-lighten) solid 1px; }
  .btn-danger:focus {
    background-color: var(--base-color-red-lighten);
    border: var(--base-color-red-lighten) solid 1px; }
  .btn-danger:focus:active {
    background-color: var(--base-color-red-lighten);
    border: var(--base-color-red-lighten) solid 1px; }

.btn.phone-dropDown {
  font-weight: normal;
  padding: 2px 8px 2px 8px;
  margin-top: 15px;
  font-size: 75%;
  border-radius: 4px; }

.btn.btn-new-report {
  float: right;
  vertical-align: middle;
  text-align: center;
  margin-top: 0;
  background-color: white;
  padding: 6px;
  border: var(--base-color-primary) 1px solid;
  color: var(--base-color-primary);
  font-weight: 600;
  width: 190px;
  overflow: hidden; }

.btn.tmr-action-button {
  margin-left: 10px; }

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

@media (max-width: 199px) {
  .mobile-full {
    width: 100%;
    border-radius: 0; } }

.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus, .btn.active {
  outline: none;
  border-radius: 80px;
  border: 1px solid var(--base-color-primary); }

.btn.ui-select-toggle:active {
  border-radius: 4px; }

.go-button {
  margin-right: 5px;
  margin-top: 19px;
  min-width: 120px; }

@media (min-width: 300px) {
  .btn-less-padding {
    min-width: 80px; } }

.tmr-button-group button,
.tmr-button-group .btn {
  margin-right: 14px; }

.btn-shadow {
  -webkit-box-shadow: #d8e0ee 0 1px 0;
          box-shadow: #d8e0ee 0 1px 0; }

.btn-right-margin {
  margin-right: 8px; }

.uar-edit-perm .btn-small {
  margin-top: 0;
  float: right; }

.btn-cancel-edit-permission {
  margin-top: 0; }

.btn-plus {
  height: 41px;
  line-height: 41px;
  width: 41px;
  position: relative; }
  .btn-plus span {
    font-size: 36px;
    font-weight: 100;
    left: 11px;
    position: absolute;
    top: -1px; }

.btn-disabled {
  background: #F1F4F9; }
  .btn-disabled:active, .btn-disabled:active:focus {
    background: #F1F4F9;
    border: 1px solid transparent;
    -webkit-box-shadow: none;
            box-shadow: none; }

@media (min-width: 200px) {
  .report-chart-box {
    background: url(assets/watermarkLogo.png?) center no-repeat;
    background-size: auto 100px; } }

@media (max-width: 199px) {
  .report-chart-box {
    background: url(assets/watermarkLogo.png?) center no-repeat;
    background-size: auto 70px; } }

.report-bar-chart-box {
  position: relative; }

svg text {
  fill: #353e4c; }

.nvd3 text {
  font: normal 12px SourceSansPro, sans-serif; }

.nv-axislabel {
  fill: #949cab; }

.bold-month {
  color: #949cab;
  font: normal 11px SourceSansPro, sans-serif; }

.bold-month:first-line {
  color: #353e4c; }

/* line 1, ../../source/scss/ng-img-crop.scss */
img-crop {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden; }

/* line 7, ../../source/scss/ng-img-crop.scss */
img-crop canvas {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  /* mobile webkit */ }

.tmr-logo {
  background: url(assets/Logo.svg?) center no-repeat;
  background-size: contain;
  height: 75px;
  margin-bottom: 75px;
  margin-top: 90px; }

.tmr-form {
  padding: 30px 0 30px 0;
  background: white;
  border-radius: 0; }
  @media (min-width: 200px) {
    .tmr-form {
      border-top: #3da4f3 3px solid;
      -webkit-box-shadow: #64bdff 0 0px 1px;
              box-shadow: #64bdff 0 0px 1px;
      margin-top: 20px;
      margin-bottom: 20px; } }

label .optional {
  color: #949cab;
  font-weight: 400; }

.form-control[disabled], tags-input .tags[disabled] {
  background-color: var(--base-color-text-lighten4);
  border-color: #b4bdcb;
  color: #353e4c; }
  .form-control[disabled]:hover, tags-input .tags[disabled]:hover {
    border-color: #b4bdcb; }
  .form-control[disabled]#phone-number:hover + .dropdown .form-control, tags-input .tags[disabled]#phone-number:hover + .dropdown .form-control, .form-control[disabled]#phone-number:hover + .dropdown tags-input .tags, tags-input .form-control[disabled]#phone-number:hover + .dropdown .tags, tags-input .tags[disabled]#phone-number:hover + .dropdown .tags {
    border-color: #b4bdcb; }

.form-control-space, .tmr-form .form-control, .tmr-form tags-input .tags, tags-input .tmr-form .tags, .base-form .form-control, .base-form tags-input .tags, tags-input .base-form .tags {
  border: solid #D2D5DA 1px;
  border-radius: 5px;
  height: 36px; }

.tmr-form .form-control, .tmr-form tags-input .tags, tags-input .tmr-form .tags {
  margin-top: 12px; }

.base-form .form-control, .base-form tags-input .tags, tags-input .base-form .tags {
  margin-top: 12px; }

.form-control--no-transition {
  -webkit-transition: none !important;
  transition: none !important; }

.form-control, tags-input .tags {
  border-radius: 2px; }

.form-control.form-control-large, tags-input .form-control-large.tags {
  border-color: var(--base-color-secondary-lighten2);
  height: 42px;
  font-size: 16px; }

.form-control, tags-input .tags, .form-control:focus, tags-input .tags:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #353e4c; }

::-webkit-input-placeholder {
  color: #353e4c !important; }

::-moz-placeholder {
  color: #353e4c !important; }

::-ms-input-placeholder {
  color: #353e4c !important; }

::placeholder {
  color: #353e4c !important; }

.form-text {
  margin-bottom: 20px;
  color: #353e4c;
  text-align: center; }

.form-text--align-left {
  text-align: left; }

.tmr-form label {
  margin-top: 12px; }

.tmr-display-input {
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .tmr-display-input .tmr-display-edit-button {
    margin-top: 0;
    margin-left: 10px; }

.icons-on-left, div#emailIconLogin, div#firstNameIcon, div#lastNameIcon, div#passwordIcon, div#confirmPasswordIcon, div#oldPasswordIcon, div#telephoneIcon, div#companyIcon {
  background-size: 20px auto !important;
  background-position: 10px 10px !important;
  height: 40px;
  width: 40px;
  position: absolute; }

.icons-on-right, div.error-icon {
  background-size: 20px auto !important;
  background-position: right 10px top !important;
  height: 40px;
  width: 40px;
  top: 10px;
  right: 10px;
  position: absolute; }

.forms-input-with-svg {
  padding-left: 40px; }

.input-container {
  position: relative; }

.form-group input.ng-invalid.ng-touched {
  border: #F04864 1px solid !important; }
  .form-group input.ng-invalid.ng-touched.date-picker-open {
    border-color: #3da4f3 !important; }

.form-group.without-margin {
  margin-bottom: 0;
  margin-top: 0; }

.ng-invalid.ng-touched {
  border: #F04864 1px solid !important;
  border-radius: 5px; }

.input-text-error {
  color: #F04864;
  padding: 10px 0 5px 10px; }

.input-text-error-color {
  color: #F04864; }

.input-text-info {
  padding: 10px 0 5px 10px; }

.presentation-field {
  position: relative;
  margin-bottom: 25px; }

.presentation-field div.label-field {
  color: #949cab;
  text-transform: uppercase;
  margin-bottom: 8px; }

.presentation-field div.text-field {
  border-bottom: #949cab 1px solid;
  padding-bottom: 5px; }

.svg-action:hover {
  fill: red; }

.presentation-icon {
  font-size: 1.4em;
  color: #353e4c;
  float: right; }

.presentation-icon:hover {
  color: #3da4f3; }

.dropdown-menu {
  border: 1px solid var(--base-color-secondary-lighten2); }

input[type="text"].presentation-input, input[type="text"].presentation-input:focus {
  border-bottom: #3da4f3 1px solid;
  color: #3da4f3;
  border-top: none;
  border-left: none;
  border-right: none;
  outline: none;
  padding-bottom: 5px;
  width: 100%; }

input[type="text"].presentation-input.input-error, input[type="text"].presentation-input:focus.input-error {
  border-bottom: #F04864 1px solid; }

.input-icons {
  font-size: 1.4em;
  position: absolute;
  right: 0;
  bottom: 5px; }

.form-error-message {
  color: #F04864;
  position: absolute; }

.form-small-box {
  margin-bottom: 14px; }

.form-small-box label {
  color: #353e4c;
  margin-bottom: 0px; }

input.app-input-form, select.app-input-form,
tags-input .tags {
  border: var(--base-color-secondary-lighten2) 1px solid;
  color: #353e4c;
  font-weight: 400;
  outline: none;
  border-radius: var(--base-spacing-input-border-radius);
  padding: 0 12px;
  width: 100%;
  height: 36px;
  font-size: 16px; }

input.tmr-small-input {
  height: 35px;
  line-height: 35px;
  font-size: 14px; }

input.tmr-small-input:focus {
  height: 35px !important;
  line-height: 35px !important;
  font-size: 14px; }

div.tmr-div-form {
  border: #b4bdcb 1px solid;
  color: #353e4c;
  font-weight: 400;
  outline: none;
  border-radius: 5px;
  padding: 0 12px;
  width: 100%;
  line-height: 36px;
  height: 36px;
  font-size: 16px; }

input.app-input-form:hover, select.app-input-form:hover,
tags-input .tags:hover {
  border: #3da4f3 1px solid; }

input.app-input-form:focus, select.app-input-form:focus,
tags-input .tags:focus {
  border: #3da4f3 1px solid;
  color: #353e4c;
  font-weight: 400;
  outline: none;
  border-radius: var(--base-spacing-input-border-radius);
  padding: 0 12px;
  width: 100%; }

textarea.app-input-form {
  border: var(--base-color-secondary-lighten2) 1px solid;
  font-weight: 400;
  border-radius: var(--base-spacing-input-border-radius);
  color: #353e4c;
  resize: none; }
  textarea.app-input-form:hover {
    border-color: #63B7F8; }

.input-form-with-enable-button {
  position: relative;
  overflow: visible; }
  .input-form-with-enable-button .help-block {
    margin-top: -20px; }

.input-form-with-enable-button .app-input-enable-chbox {
  position: absolute;
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 18px;
  right: 8px;
  z-index: 10; }
  .input-form-with-enable-button .app-input-enable-chbox .popover > .arrow {
    left: 79%; }

.app-input-enable-chbox label {
  font-size: 0.9em;
  font-weight: 500;
  color: #353e4c; }

.form-extra-bottom-margin {
  margin-bottom: 15px; }

@media (max-width: 299px) {
  .extra-mobile-select-margin {
    margin-top: 14px;
    margin-bottom: 0; } }

.middle-icon {
  vertical-align: middle;
  font-size: 18px; }

.date-picker-box .ng-invalid.ng-touched {
  border-color: #b4bdcb !important; }

.dropdown-large.ui-select-container .ui-select-match .ui-select-toggle {
  border-color: var(--base-color-secondary-lighten2);
  height: 42px;
  line-height: 42px; }

.dropdown-large.ui-select-bootstrap .ui-select-choices-row > a,
.icon-dropdown.ui-select-bootstrap .ui-select-choices-row > a,
.document-select__permissions-dropdown.ui-select-bootstrap .ui-select-choices-row > a {
  height: 33px;
  padding: 0; }
  .dropdown-large.ui-select-bootstrap .ui-select-choices-row > a:focus *,
  .icon-dropdown.ui-select-bootstrap .ui-select-choices-row > a:focus *,
  .document-select__permissions-dropdown.ui-select-bootstrap .ui-select-choices-row > a:focus * {
    text-decoration: none; }
  .dropdown-large.ui-select-bootstrap .ui-select-choices-row > a .du-menu-item,
  .icon-dropdown.ui-select-bootstrap .ui-select-choices-row > a .du-menu-item,
  .document-select__permissions-dropdown.ui-select-bootstrap .ui-select-choices-row > a .du-menu-item {
    height: 33px; }
  .dropdown-large.ui-select-bootstrap .ui-select-choices-row > a span,
  .icon-dropdown.ui-select-bootstrap .ui-select-choices-row > a span,
  .document-select__permissions-dropdown.ui-select-bootstrap .ui-select-choices-row > a span {
    vertical-align: middle; }
    .dropdown-large.ui-select-bootstrap .ui-select-choices-row > a span[class^="icon-"], .dropdown-large.ui-select-bootstrap .ui-select-choices-row > a span [class*=" icon-"],
    .icon-dropdown.ui-select-bootstrap .ui-select-choices-row > a span[class^="icon-"],
    .icon-dropdown.ui-select-bootstrap .ui-select-choices-row > a span [class*=" icon-"],
    .document-select__permissions-dropdown.ui-select-bootstrap .ui-select-choices-row > a span[class^="icon-"],
    .document-select__permissions-dropdown.ui-select-bootstrap .ui-select-choices-row > a span [class*=" icon-"] {
      font-size: 20px;
      margin-right: 5px; }

.dropdown-large.ui-select-bootstrap .ui-select-choices-row.active > a,
.dropdown-large.ui-select-bootstrap .ui-select-choices-row.active > a:hover,
.icon-dropdown.ui-select-bootstrap .ui-select-choices-row.active > a,
.icon-dropdown.ui-select-bootstrap .ui-select-choices-row.active > a:hover,
.document-select__permissions-dropdown.ui-select-bootstrap .ui-select-choices-row.active > a,
.document-select__permissions-dropdown.ui-select-bootstrap .ui-select-choices-row.active > a:hover {
  background-color: inherit; }

.dropdown-large .dropdown-menu,
.icon-dropdown .dropdown-menu,
.document-select__permissions-dropdown .dropdown-menu {
  border: 1px solid var(--base-color-secondary-lighten2);
  -webkit-box-shadow: none;
          box-shadow: none; }

.dropdown-large .dropdown-header,
.icon-dropdown .dropdown-header,
.document-select__permissions-dropdown .dropdown-header {
  color: #353e4c;
  font-size: 14px;
  padding: 5px 20px 8px 10px; }

.icon-dropdown.ui-select-container .ui-select-match .ui-select-toggle {
  padding-right: 30px; }
  .icon-dropdown.ui-select-container .ui-select-match .ui-select-toggle .ui-select-match-text {
    font-size: 20px; }

.icon-dropdown.ui-select-bootstrap > .ui-select-choices {
  width: inherit; }

.icon-dropdown .ui-select-toggle,
.icon-dropdown .form-control,
.icon-dropdown tags-input .tags,
tags-input .icon-dropdown .tags {
  width: inherit; }

.icon-dropdown .dropdown-menu {
  min-width: 120px;
  left: inherit;
  right: 0; }

input.input-warning {
  background-color: #FAF7E4; }

.login-footer {
  text-align: center;
  font-size: 14px;
  color: #353e4c; }

.login-logo {
  width: 180px;
  height: 180px;
  border: solid 0.9px var(--base-color-text-lighten3);
  padding: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .login-logo.registration-logo {
    margin-bottom: 0px;
    margin-top: 25px;
    position: relative;
    left: -35px; }

.app-logo {
  width: 100%;
  background: url(assets/Logo.svg?) center no-repeat;
  background-size: contain;
  height: 75px;
  margin-bottom: 35px;
  margin-top: 35px; }

.powered_by {
  height: 50px;
  background: url(assets/powered.png?) center no-repeat;
  display: none; }

.form-panel {
  background-color: #FFFFFF;
  border-top: #3da4f3 3px solid;
  border-radius: 10px;
  margin-top: 35px;
  overflow: hidden;
  -webkit-box-shadow: #64bdff 0 0px 1px;
          box-shadow: #64bdff 0 0px 1px;
  margin-bottom: 50px; }
  .form-panel .form {
    float: left; }
    .form-panel .form .login-form {
      border-top: 0px;
      padding-top: 0px;
      -webkit-box-shadow: none;
              box-shadow: none; }
  .form-panel .auth-panel {
    width: 580px;
    height: 600px;
    float: left;
    position: relative; }

.forgotten-password {
  margin-top: 12px;
  font-weight: normal; }

.login-message, .login-error, .login-success {
  width: 100%;
  min-height: 46px;
  color: white;
  font-weight: bold;
  margin-bottom: 25px;
  padding: 11.5px; }

.login-error {
  background-color: #F04864;
  margin-top: 15px; }
  .login-error a {
    color: #fff;
    text-decoration: underline; }
  .login-error .text-center {
    position: relative;
    z-index: 1;
    padding: 0 50px; }

.login-success {
  background-color: #3da4f3; }

.icon-login-error {
  background: url(assets/failedtopicon.svg?) no-repeat left;
  background-size: auto 33px;
  background-position: 15px 0px;
  opacity: 0.4;
  position: absolute; }

.login-form {
  margin: 20px auto;
  width: 539px;
  border-radius: 10px; }
  .login-form label {
    margin-top: 15px; }
  .login-form .password-container {
    margin-bottom: 10px; }
  .login-form .btn {
    margin-top: 0px; }

.tmr-form .form-input-invitation {
  margin-top: 0; }

.tmr-form .input-label {
  margin-bottom: 0; }

.form-input-invitation {
  margin-top: 0;
  padding: 0 12px; }

.edit-form-password {
  padding: 15px;
  background: #d5e8f9; }

.cropArea {
  overflow: hidden; }
  @media (min-width: 200px) {
    .cropArea {
      height: 350px;
      width: 370px; } }
  @media (max-width: 199px) {
    .cropArea {
      width: auto;
      height: 280px; } }

.zero-margin {
  margin: 0; }

.user-profile-photo-background-modal {
  width: 186px;
  height: 186px;
  background: #3da4f3;
  border-radius: 50%;
  border: #b5dcfa solid 10px;
  position: relative;
  overflow: hidden; }

.center-col {
  transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  -webkit-transform: translate(0, 50%); }

.my-profile-password {
  background-color: #ffffff;
  border-radius: 4px;
  -webkit-transition: background-color 0ms ease;
  transition: background-color 0ms ease; }
  .my-profile-password.changePassword {
    background-color: #F1F4F9;
    padding-bottom: 8px;
    padding-top: 4px;
    -webkit-transition: background-color 300ms ease;
    transition: background-color 300ms ease; }
    .my-profile-password.changePassword .form-small-box {
      margin-bottom: 4px; }
  .my-profile-password .input-form-with-enable-button label {
    color: #353e4c;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 7px; }
  .my-profile-password .input-form-with-enable-button input {
    padding-right: 30px; }
  .my-profile-password .input-form-with-enable-button input[type="checkbox"] {
    display: none; }
  .my-profile-password .cancel-password {
    color: #353e4c;
    cursor: pointer;
    text-decoration: underline; }

.mfa-switch-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px; }
  .mfa-switch-container .mfa-error-message {
    color: #F04864; }

div#emailIconLogin, div#firstNameIcon, div#lastNameIcon {
  background: url(assets/user.svg?) no-repeat left; }

div#passwordIcon, div#confirmPasswordIcon, div#oldPasswordIcon {
  background: url(assets/key.svg?) no-repeat left; }

div#emailAddressIcon {
  background: url(assets/email.svg?) no-repeat left;
  background-size: 20px auto !important;
  background-position: 10px 12px !important;
  height: 30px;
  width: 40px;
  position: absolute; }

div#telephoneIcon {
  background: url(assets/smartphone.svg?) no-repeat left; }

div#phoneNumberDropDown {
  position: absolute;
  left: 40px;
  top: -5px; }

.phone-input-extra-padding {
  padding-left: 92px; }

div#companyIcon {
  background: url(assets/company.svg?) no-repeat left;
  z-index: 9; }

div#companyName .form-control, div#companyName tags-input .tags, tags-input div#companyName .tags {
  margin-top: 0;
  padding-left: 40px; }

div#companyName .ui-select-placeholder {
  font-size: 14px;
  line-height: 14px;
  color: #353e4c; }

div#companyName .ui-select-match-text {
  font-size: 14px; }

input#telephoneNumber::-webkit-outer-spin-button,
input#telephoneNumber::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input#telephoneNumber {
  -moz-appearance: textfield; }

div.error-icon {
  background: url(assets/error.svg?) no-repeat right; }

.registration-panel {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
  background-color: #FFFFFF;
  border-top: #3da4f3 3px solid;
  border-radius: 10px;
  margin-top: 35px;
  overflow: hidden;
  -webkit-box-shadow: #64bdff 0 0px 1px;
          box-shadow: #64bdff 0 0px 1px; }
  .registration-panel .form {
    float: left; }
    .registration-panel .form .main-panel {
      border: none; }
  .registration-panel .auth-panel {
    width: 580px;
    height: 700px;
    float: left;
    position: relative; }
  .registration-panel .registration-text {
    width: 300px;
    margin-top: 60px; }

.registration-company-icon {
  width: 20px; }

.vertical-align-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.request-sent {
  line-height: 20px;
  vertical-align: middle; }

.main-panel .input-container .label-disabled {
  color: #4a576a; }

.tmr-form .form-input-invitation {
  margin-top: 0; }

.tmr-form .input-label {
  margin-bottom: 0; }

.form-input-invitation {
  margin-top: 0;
  padding: 0 12px; }

.registration-form {
  border-radius: 5px;
  margin: auto;
  width: 550px; }

.invitation-message {
  padding: 20px 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #64bdff;
  margin-top: -25px; }
  .invitation-message h2 {
    font-size: 25px;
    color: #343F4E; }

.invitation-message-no-token {
  background-color: #FAF7E4;
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid var(--base-color-secondary-lighten2); }
  .invitation-message-no-token h4,
  .invitation-message-no-token p {
    margin-bottom: 0; }
  .invitation-message-no-token h4 {
    color: #353e4c; }
  .invitation-message-no-token span {
    font-weight: 500; }

.verify-your-email-panel {
  padding: 0 15px 10px 15px;
  text-align: center; }
  .verify-your-email-panel h3 {
    font-size: 24px; }
  .verify-your-email-panel p {
    font-size: 16px; }
  .verify-your-email-panel .email {
    font-weight: 500; }

.main-panel-content {
  position: relative; }

.registration-password-helper {
  background: #F9FAFC;
  border-radius: 0 4px 4px 0;
  height: 170px;
  position: absolute;
  right: -251px;
  top: 80px;
  width: 250px;
  border: 1px solid var(--base-color-secondary-lighten2);
  border-left: none;
  padding: 15px;
  z-index: 10; }
  .registration-password-helper p {
    color: #353e4c; }
  .registration-password-helper .icon-cross-circle {
    color: #F04864; }
  .registration-password-helper .icon-checkmark-circle {
    color: #67C97E; }

@font-face {
  font-family: 'Linearicons';
  src: url(assets/Linearicons.eot?);
  src: url(assets/Linearicons.eot?) format("embedded-opentype"), url(assets/Linearicons.ttf?) format("truetype"), url(assets/Linearicons.woff?) format("woff"), url(assets/Linearicons.svg?) format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Linearicons' !important;
  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-uni40:before {
  content: "@"; }

.icon-city:before {
  content: "\E60B"; }

.icon-apartment2:before {
  content: "\E60D"; }

.icon-pencil:before {
  content: "\E60E"; }

.icon-pencil2:before {
  content: "\E60F"; }

.icon-pencil5:before {
  content: "\E613"; }

.icon-snow2:before {
  content: "\E637"; }

.icon-cloud-upload:before {
  content: "\E64B"; }

.icon-cloud-download:before {
  content: "\E64D"; }

.icon-database:before {
  content: "\E65D"; }

.icon-server:before {
  content: "\E667"; }

.icon-lock:before {
  content: "\E66B"; }

.icon-rotation-lock:before {
  content: "\E66E"; }

.icon-cog:before {
  content: "\E672"; }

.icon-factory:before {
  content: "\E67D"; }

.icon-trash2:before {
  content: "\E681"; }

.icon-star:before {
  content: "\E68D"; }

.icon-eye:before {
  content: "\E6A5"; }

.icon-eye-crossed:before {
  content: "\E6A6"; }

.icon-hdd-down:before {
  content: "\E6AD"; }

.icon-file-empty2:before {
  content: "\E6B4"; }

.icon-file-add:before {
  content: "\E6B5"; }

.icon-file-lock:before {
  content: "\E6B6"; }

.icon-compare:before {
  content: "\E6B9"; }

.icon-duplicate:before {
  content: "\E92E"; }

.icon-register:before {
  content: "\E6D1"; }

.icon-news:before {
  content: "\E6D5"; }

.icon-reading:before {
  content: "\E6D6"; }

.icon-camera:before {
  content: "\E704"; }

.icon-picture:before {
  content: "\E70E"; }

.icon-picture2:before {
  content: "\E70F"; }

.icon-picture3:before {
  content: "\E710"; }

.icon-user:before {
  content: "\E71E"; }

.icon-users:before {
  content: "\E722"; }

.icon-cash-dollar:before {
  content: "\E75A"; }

.icon-map:before {
  content: "\E781"; }

.icon-road-sign:before {
  content: "\E784"; }

.icon-mouse:before {
  content: "\E78D"; }

.icon-power-switch:before {
  content: "\E7B8"; }

.icon-power:before {
  content: "\E7B9"; }

.icon-pie-chart:before {
  content: "\E7F8"; }

.icon-pie-chart2:before {
  content: "\E7F9"; }

.icon-graph:before {
  content: "\E7FA"; }

.icon-chart-growth:before {
  content: "\E7FB"; }

.icon-chart-bars:before {
  content: "\E7FD"; }

.icon-balance:before {
  content: "\E839"; }

.icon-briefcase:before {
  content: "\E83A"; }

.icon-truck:before {
  content: "\E857"; }

.icon-site-map2:before {
  content: "\E884"; }

.icon-alarm:before {
  content: "\E8AA"; }

.icon-sync2:before {
  content: "\E8DD"; }

.icon-exit-left:before {
  content: "\E8FD"; }

.icon-bubble-chart:before {
  content: "\E901"; }

.icon-info-with-circle:before {
  content: "\E902"; }

.icon-info:before {
  content: "\E903"; }

.icon-long-arrow-right:before {
  content: "\E904"; }

.icon-long-arrow-left:before {
  content: "\E905"; }

.icon-long-arrow-up:before {
  content: "\E906"; }

.icon-long-arrow-down:before {
  content: "\E907"; }

.icon-bar-icon:before {
  content: "\E908"; }

.icon-line-icon:before {
  content: "\E909"; }

.icon-location-icon:before {
  content: "\E90A"; }

.icon-pie-icon:before {
  content: "\E90B"; }

.icon-Fire:before {
  content: "\E8FE"; }

.icon-Handcuffs:before {
  content: "\E90D"; }

.icon-due_to_expire:before {
  color: orange;
  content: "\E90E"; }

.icon-due_to_activate:before {
  content: "\E6B4"; }

.icon-due_to_activate_with_green:before {
  content: "\E6B4"; }

.icon-due_to_activate_with_green {
  position: relative; }

.with-green {
  position: relative; }

.with-green:after {
  content: " ";
  top: 0px;
  width: 7px;
  height: 7px;
  position: absolute;
  right: 0px;
  background: green;
  border-radius: 100%;
  z-index: 10;
  border: 1px solid #FFFFFF; }

.icon-due_to_activate_with_green:after {
  content: " ";
  top: 0px;
  width: 7px;
  height: 7px;
  position: absolute;
  right: 0px;
  background: green;
  border-radius: 100%;
  z-index: 10;
  border: 1px solid #FFFFFF; }

.icon-expired:before {
  color: red;
  content: "\E90F"; }

.icon-camera2:before {
  content: "\E910"; }

.icon-valid:before {
  color: green;
  content: "\E911"; }

.icon-mitigation-valid:before {
  color: green;
  content: "\E912"; }

.icon-mitigation-pending:before {
  color: orange;
  content: "\E913"; }

.icon-mitigation-expired:before {
  color: red;
  content: "\E914"; }

.icon-mitigation-empty:before {
  content: "\E915"; }

.icon-mitigation-add:before {
  content: "\E916"; }

.icon-draglarge:before {
  content: "\E917"; }

.icon-link2:before {
  content: "\E918"; }

.icon-supplier:before {
  content: "\E919"; }

.icon-fall-stairs:before {
  content: "\E91A"; }

.icon-drag:before {
  content: "\E91B"; }

.icon-thumbs-up2:before {
  content: "\E925"; }

.icon-partner-admin:before {
  content: "\E91D"; }

.icon-partner-user:before {
  content: "\E91E"; }

.icon-sys-admin:before {
  content: "\E91F"; }

.icon-clock:before {
  content: "\E94E"; }

.icon-users-pending:before {
  content: "\E94E"; }

.icon-users-pending-branded:before {
  color: orange;
  content: "\E94E"; }

.icon-share:before {
  content: "\EB12"; }

.icon-templates:before {
  content: "\E921"; }

.icon-magnifier:before {
  content: "\E922"; }

.icon-cross:before {
  content: "\E92A"; }

.icon-list:before {
  content: "\E926"; }

.icon-check:before {
  content: "\E934"; }

.icon-users-registered:before {
  content: "\E934"; }

.icon-users-registered-branded:before {
  color: green;
  content: "\E934"; }

.icon-cross2:before {
  content: "\E935"; }

.icon-chevron-up:before {
  content: "\E939"; }

.icon-chevron-down:before {
  content: "\E93A"; }

.icon-chevron-left:before {
  content: "\E93B"; }

.icon-chevron-right:before {
  content: "\E937"; }

.icon-chevrons-expand-vertical:before {
  content: "\E93D"; }

.icon-chevrons-expand-horizontal:before {
  content: "\E93E"; }

.icon-arrow-left:before {
  content: "\E943"; }

.icon-arrow-right:before {
  content: "\E944"; }

.icon-arrows-merge:before {
  content: "\E946"; }

.icon-warning:before {
  content: "\E955"; }

.icon-notification-circle:before {
  content: "\E956"; }

.icon-question-circle:before {
  content: "\E957"; }

.icon-checkmark-circle:before {
  content: "\E959"; }

.icon-cross-circle:before {
  content: "\E95A"; }

.icon-plus-circle:before {
  content: "\E95B"; }

.icon-plus:before {
  content: "+";
  font-size: 25px; }

.icon-circle-minus:before {
  content: "\E95A"; }

.icon-chevron-up-circle:before {
  content: "\E962"; }

.icon-chevron-down-circle:before {
  content: "\E963"; }

.icon-chevron-left-circle:before {
  content: "\E964"; }

.icon-chevron-right-circle:before {
  content: "\E965"; }

.icon-funnel:before {
  content: "\E97E"; }

.icon-check-square:before {
  content: "\E999"; }

.icon-cross-square:before {
  content: "\E99A"; }

.icon-info2:before {
  content: "\EA0E"; }

.icon-cross3:before {
  content: "\EA0F"; }

.icon-transfer:before {
  content: "\E900"; }

.icon-unpermissioned:before {
  content: "\E923"; }

.icon-view-history-icon2:before {
  content: "\E924"; }

.icon-arrow:before {
  content: "\EB10"; }

.icon-export:before {
  content: "\EB12"; }

.icon-export-pdf:before {
  content: "\E90C";
  color: #fff; }

.icon-group:before {
  content: "\E950"; }

.icon-group_add:before {
  content: "\E951"; }

.icon-person_add:before {
  content: "\E952"; }

.icon-person_delete:before {
  content: "\E953"; }

.icon-groups:before {
  content: "\E954"; }

.icon-person_add_alt:before {
  content: "\E92D"; }

.icon-user-groups:before {
  content: "\E723"; }

.icon-person:before {
  content: "\EE17"; }

.icon-primary {
  color: #5db1f1;
  position: relative;
  top: 2px; }

.icon-globe::before {
  content: '';
  width: 14px;
  height: 14px;
  background: url(assets/globe.svg?) no-repeat;
  background-size: cover;
  position: relative;
  top: 2px;
  display: inline-block; }

.icon-user-solid-circle:before {
  content: "\EB15";
  background: #5db1f1;
  color: #dedee2;
  border-radius: 100%; }

.icon-bulk-invite:before {
  content: "\E975"; }

.icon-bulk-delete:before {
  content: "\E977"; }

.icon-flag:before {
  content: "\E928";
  color: var(--base-color-red); }

.icon-flagged:before {
  content: "\E960";
  color: var(--base-color-red); }

.icon-unflagged:before {
  content: "\E929";
  color: var(--base-color-red); }

.icon-tag::before {
  content: '';
  width: 21px;
  height: 21px;
  background: url(assets/tag.svg?) no-repeat;
  background-size: cover;
  position: relative;
  top: 2px;
  display: inline-block; }

.icon-tag-brand::before {
  content: '';
  width: 19px;
  height: 19px;
  background: url(assets/tag-brand.svg?) no-repeat;
  background-size: cover;
  position: relative;
  top: 2px;
  display: inline-block; }

.icon-auditor:before {
  content: "\E91C"; }

.icon-group-add:before {
  content: "\E725"; }

.icon-datepicker:before {
  content: "\EE19"; }

.icon-reactivate:before {
  content: "\E321"; }

.icon-key:before {
  content: "\E98E"; }

.icon-mfa:before {
  content: '';
  width: 15px;
  height: 17px;
  background: url(assets/mfa.svg?) no-repeat;
  background-size: cover;
  position: relative;
  top: 2px;
  display: inline-block; }

.icon-mfa.inactive:before {
  background: url(assets/mfa_inactive.svg?) no-repeat; }

.icon-check-bold:before {
  content: "\EE20"; }

.angular-google-map-container {
  height: 600px; }

.controls {
  margin-top: 15px;
  border: 1px solid transparent;
  border-radius: 2px 0 0 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
  height: 36px;
  outline: none;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); }

@media (min-width: 200px) {
  .controls-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(37, 146, 248, 0.4); } }

@media (max-width: 199px) {
  .controls-background {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 270px;
    height: 125px;
    background-color: rgba(37, 146, 248, 0.4); } }

#pac-input, #map-right-controls {
  background-color: #fff;
  font-size: 15px;
  font-weight: 300;
  margin-left: 12px;
  margin-right: 12px;
  padding: 0 11px 0 13px;
  text-overflow: ellipsis;
  width: 240px;
  border-radius: 4px;
  position: absolute;
  z-index: 1; }

@media (max-width: 199px) {
  #map-right-controls {
    top: 55px !important;
    left: 0 !important;
    position: fixed !important; } }

#map-right-controls {
  position: relative;
  height: 36px; }

#inside-right-controls {
  position: relative;
  padding: 0 10px; }

#inside-right-controls a {
  font-weight: normal;
  text-decoration: underline; }

#pac-input:focus, #map-right-controls:focus {
  border-color: #4d90fe; }

#control-separator {
  padding: 0 10px; }

#type-selector {
  color: #fff;
  background-color: #4d90fe;
  padding: 5px 11px 0px 11px; }

#type-selector label {
  font-family: Roboto;
  font-size: 13px;
  font-weight: 300; }

#target {
  width: 345px; }

.marker-label {
  font-size: 11px;
  position: relative;
  font-weight: 500;
  background-color: #ff9600;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  color: white;
  opacity: 0.85;
  -webkit-box-shadow: rgba(255, 150, 0, 0.2) 0px 0px 0px 12px;
          box-shadow: rgba(255, 150, 0, 0.2) 0px 0px 0px 12px;
  visibility: visible; }

.marker-label.normal-label {
  visibility: visible; }

.marker-label.plus-fifty {
  height: 25px;
  width: 25px;
  line-height: 25px;
  background-color: #ff8503;
  visibility: visible;
  -webkit-box-shadow: rgba(255, 133, 3, 0.2) 0px 0px 0px 12px;
          box-shadow: rgba(255, 133, 3, 0.2) 0px 0px 0px 12px; }

.marker-label.plus-hundred {
  height: 35px;
  width: 35px;
  line-height: 35px;
  background-color: #ff6d00;
  visibility: visible;
  -webkit-box-shadow: rgba(255, 109, 0, 0.2) 0px 0px 0px 16px;
          box-shadow: rgba(255, 109, 0, 0.2) 0px 0px 0px 16px; }

.marker-label.plus-five-hundred {
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: #ff5200;
  visibility: visible;
  -webkit-box-shadow: rgba(255, 82, 0, 0.2) 0px 0px 0px 16px;
          box-shadow: rgba(255, 82, 0, 0.2) 0px 0px 0px 16px; }

.marker-label.plus-thousand {
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: #ff3000;
  visibility: visible;
  -webkit-box-shadow: rgba(255, 48, 0, 0.2) 0px 0px 0px 16px;
          box-shadow: rgba(255, 48, 0, 0.2) 0px 0px 0px 16px; }

.marker-label.plus-five-thousand {
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: #ff000f;
  visibility: visible;
  -webkit-box-shadow: rgba(255, 0, 15, 0.2) 0px 0px 0px 16px;
          box-shadow: rgba(255, 0, 15, 0.2) 0px 0px 0px 16px; }

.marker-label.plus-ten-thousand {
  font-size: 12px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: #9f0007;
  visibility: visible;
  -webkit-box-shadow: rgba(159, 0, 7, 0.2) 0px 0px 0px 16px;
          box-shadow: rgba(159, 0, 7, 0.2) 0px 0px 0px 16px; }

.no-data-on-map {
  position: absolute;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  color: #353e4c;
  top: 50%;
  left: 50%;
  width: 200px;
  text-align: center;
  padding: 20px 0;
  background-color: white;
  -webkit-box-shadow: white 0px 0px 8px 16px;
          box-shadow: white 0px 0px 8px 16px;
  z-index: 5; }

.infobox {
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.93);
  min-height: 100px;
  width: 250px;
  border-color: rgba(218, 229, 233, 0); }

.infobox img {
  visibility: hidden;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important; }

.map-marker-content:after, .map-marker-content:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

.map-marker-content:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-width: 6px;
  margin-left: -6px; }

.map-marker-content:before {
  border-color: rgba(218, 229, 233, 0);
  border-top-color: var(--base-color-border);
  border-width: 7px;
  margin-left: -7px; }

.map-marker-content {
  max-height: 120px;
  height: 120px;
  min-width: 250px;
  width: 100%;
  position: relative; }

.map-marker-header {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  line-height: 30px;
  padding-left: 8px;
  background-color: var(--base-color-text);
  color: white;
  font-size: 12px;
  font-weight: 500; }

.map-marker-close {
  float: right;
  padding-right: 8px;
  color: white;
  font-weight: bold; }

.map-marker-close span {
  font-weight: bold; }

.map-marker-close:hover {
  color: whitesmoke;
  text-decoration: none; }

.map-marker-body {
  position: absolute;
  top: 35px;
  left: 8px;
  right: 0;
  bottom: 0;
  padding-right: 8px;
  overflow-y: auto;
  font-weight: 500;
  color: #353e4c;
  font-size: 12px;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden; }

.map-marker-icon {
  width: 10%;
  display: inline-block;
  vertical-align: top;
  font-size: 18px; }

.map-marker-icon span {
  color: #F04764; }

.map-marker-label {
  display: inline-block;
  font-weight: 500;
  width: 70%;
  max-width: 140px; }

.map-marker-count {
  display: inline-block;
  text-align: right;
  float: right;
  padding-right: 10px;
  font-weight: 500; }

.map-marker-obj {
  margin-top: 2px;
  border-bottom: 1px solid #b4bdcb; }

.map-marker-obj:last-of-type {
  border-bottom: none !important; }

.filter-search-google-maps {
  display: inline-block;
  margin-right: 5px; }
  @media (min-width: 400px) {
    .filter-search-google-maps {
      width: 170px; } }
  @media (min-width: 300px) and (max-width: 399px) {
    .filter-search-google-maps {
      width: 140px; } }
  @media (min-width: 200px) and (max-width: 299px) {
    .filter-search-google-maps {
      width: 228px; } }
  @media (max-width: 199px) {
    .filter-search-google-maps {
      width: 100%; } }

.filter-radius-google-maps {
  display: inline-block;
  width: 100%; }

@media (min-width: 200px) {
  .pac-container {
    width: 400px !important; } }

@media (max-width: 199px) {
  .pac-container {
    width: 300px !important; } }

.app-modal-header {
  background-color: var(--base-color-secondary);
  color: #FFFFFF;
  text-align: left;
  padding: 20px 25px;
  position: relative;
  border-radius: 4px; }

.app-modal-title {
  font-weight: 500;
  font-size: 25px; }
  .app-modal-title .icon {
    color: #FFFFFF;
    padding-right: 10px; }

.app-modal-body {
  background-color: #FFFFFF; }

.app-modal-body.modal-settings {
  background-color: white;
  padding-top: 15px; }

.app-modal-account-list {
  margin: 15px auto; }

.app-modal-footer {
  background-color: var(--base-color-primary-lighten4); }
  @media (min-width: 200px) {
    .app-modal-footer {
      padding: 5px 25px 25px 25px; } }
  @media (max-width: 199px) {
    .app-modal-footer {
      padding: 5px; } }

.modal-footer .btn-default {
  float: left;
  color: #353e4c;
  background-color: inherit; }

@media screen and (min-width: 200px) {
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%; }
  .modal {
    text-align: center; }
  .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle; } }

.modal-dialog {
  border-radius: 4px;
  overflow-y: visible; }

.modal-content {
  position: relative;
  background-color: #fff;
  border: none;
  border-radius: 4px;
  background-clip: padding-box;
  outline: 0;
  overflow-y: visible; }

.modal-backdrop {
  background-color: var(--base-color-text);
  opacity: 0.9 !important; }

@media (min-width: 200px) {
  .modal-content {
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2); } }

.close-modal-icon-position {
  position: absolute;
  margin: 0;
  opacity: 0.8; }
  @media (min-width: 200px) {
    .close-modal-icon-position {
      top: -23px;
      /* half height of "X" image, just for nice placing*/
      right: -23px;
      /* half width of "X" image, just for nice placing*/ } }
  @media (max-width: 199px) {
    .close-modal-icon-position {
      top: -9px;
      right: -9px; } }

.close-modal-icon-position:hover {
  opacity: 1; }

.close-modal-icon {
  overflow: hidden;
  color: white;
  background: black;
  font-weight: bold;
  border: 1px solid black;
  border-radius: 50%;
  padding: 10px;
  font-size: 20px;
  opacity: 0.8; }

.password-modal-area {
  background-color: #FAF7E4;
  padding-top: 20px;
  padding-bottom: 20px; }

.error-modal-area {
  margin-top: -15px;
  margin-bottom: 15px;
  background-color: #F34963;
  color: white;
  font-size: 16px;
  padding: 15px 25px; }
  .error-modal-area > ul {
    margin: 0; }
    .error-modal-area > ul > li {
      margin: 0; }

.modal-top-text {
  padding: 5px 25px 20px 25px;
  font-style: italic;
  color: #353e4c; }

.modal-normal-text {
  padding: 5px 25px 25px 25px;
  color: #353e4c; }

.app-modal-body > .form-small-box, .app-modal-body .password-modal-area > .form-small-box, .modal-padding-area {
  padding-left: 25px;
  padding-right: 25px; }

.app-modal-footer {
  border-top: #b4bdcb 1px solid; }

.app-modal-45 {
  float: left;
  position: relative;
  min-height: 1px; }
  @media (min-width: 200px) {
    .app-modal-45 {
      width: 45%;
      padding-right: 15px; } }
  @media (max-width: 199px) {
    .app-modal-45 {
      width: 100%;
      padding-right: 15px;
      padding-left: 15px; } }

.app-modal-10 {
  float: left;
  position: relative;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px; }
  @media (min-width: 200px) {
    .app-modal-10 {
      width: 10%; } }
  @media (max-width: 199px) {
    .app-modal-10 {
      width: 100%; } }

@media (min-width: 200px) {
  .app-modal-45:first-of-type {
    padding-left: 15px;
    padding-right: 0px; } }

.note-under-merge {
  margin-top: -8px;
  font-style: italic;
  padding-bottom: 15px;
  font-size: 13px; }

.confirm-modal-text {
  padding-bottom: 5px;
  font-size: 13px; }

@media (min-width: 200px) {
  .modal-merge-icon {
    /* IE 9 */
    -webkit-transform: rotate(90deg);
    /* Chrome, Safari, Opera */
    transform: rotate(90deg);
    font-size: 24px;
    padding-left: 34px; } }

@media (max-width: 199px) {
  .modal-merge-icon {
    text-align: center;
    /* IE 9 */
    -webkit-transform: rotate(180deg);
    /* Chrome, Safari, Opera */
    transform: rotate(180deg);
    font-size: 24px;
    margin-top: -10px; } }

.mailto-admin {
  color: #353e4c;
  font-weight: 700;
  text-decoration: underline; }

.cog-popover.popover.bottom.document-trash-popover {
  left: 890px !important;
  max-width: inherit;
  top: 47px !important;
  width: 310px; }
  .cog-popover.popover.bottom.document-trash-popover .app-popover-title {
    width: 100%; }

.cog-popover.popover.bottom.manager-popover, .cog-popover.popover.bottom.account-manager-popover {
  left: 896px !important; }

.cog-popover.popover.bottom.account-manager-popover > .arrow {
  left: 89%; }

.cog-popover.popover.bottom.list-popover {
  left: 912px !important; }

.cog-popover.popover.bottom.trash-popover {
  left: -156px !important; }

.cog-popover.popover.bottom > .arrow {
  left: 91%; }

.cog-popover.popover.bottom .app-popover-title {
  border-bottom: 1px solid #b4bdcb; }

.cog-popover.popover.bottom .popover-body {
  line-height: 14px;
  padding: 15px 15px 0 15px; }

.cog-popover.popover.bottom .popover-footer-buttons {
  padding: 15px; }

.confirm-popover {
  max-width: 300px; }
  .confirm-popover .app-popover-title {
    border-bottom: 1px solid #b4bdcb; }
  .confirm-popover .popover-body {
    line-height: 18px;
    padding: 15px 15px 0 15px; }
  .confirm-popover .popover-footer-buttons {
    padding: 15px;
    white-space: nowrap; }

.popover.manage-document-popover {
  left: 940px !important;
  top: 45px !important; }
  .popover.manage-document-popover .arrow {
    right: 21px !important; }

.account-settings-popover .arrow {
  right: 15px !important; }

.app-modal .modal-header {
  color: #FFFFFF;
  padding: 20px;
  border-bottom: 0;
  background-color: var(--base-color-secondary); }
  .app-modal .modal-header button.close {
    width: 40px;
    height: 40px;
    color: var(--base-color-primary);
    opacity: 1;
    background-color: #FFFFFF;
    padding-bottom: 2px;
    padding-right: 1px;
    margin-top: -2px;
    border-radius: 100%;
    text-align: center; }
  .app-modal .modal-header .modal-title {
    font-size: 25px;
    font-weight: 500; }
    .app-modal .modal-header .modal-title .modal-subtitle {
      font-weight: 400; }

.app-modal .progress {
  background-color: #D8D2DA;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 8px;
  margin: 0; }
  .app-modal .progress .progress-bar {
    background-color: var(--base-color-primary-lighten);
    -webkit-box-shadow: none;
            box-shadow: none; }

.app-modal .modal-body {
  background-color: #FFFFFF;
  border-top: 2px solid #e5e5e5;
  padding: 20px; }
  .app-modal .modal-body.with-progress-bar {
    border-top: 0; }
  .app-modal .modal-body label {
    color: #353e4c;
    font-weight: 500;
    margin-bottom: 0; }
  .app-modal .modal-body .list-group {
    margin-bottom: 10px; }
    .app-modal .modal-body .list-group .list-group-item {
      border-color: var(--base-color-secondary-lighten2); }
      .app-modal .modal-body .list-group .list-group-item.multiselect-tag-wrap {
        min-height: 45px;
        padding: 0 5px 5px 0; }
      .app-modal .modal-body .list-group .list-group-item.list-group-multiselect {
        padding: 0; }
        .app-modal .modal-body .list-group .list-group-item.list-group-multiselect .host {
          margin: 0; }
        .app-modal .modal-body .list-group .list-group-item.list-group-multiselect .tags {
          border: 0; }
      .app-modal .modal-body .list-group .list-group-item.list-group-dropdown {
        padding: 10px 8px; }
      .app-modal .modal-body .list-group .list-group-item .multiselect-placeholder {
        margin: 13px 0 0 8px; }
      .app-modal .modal-body .list-group .list-group-item .multiselect-tag, .app-modal .modal-body .list-group .list-group-item tags-input .tags .tag-item, tags-input .tags .app-modal .modal-body .list-group .list-group-item .tag-item {
        margin: 8px 2px 2px 7px; }
      .app-modal .modal-body .list-group .list-group-item .dropdown-list-wrapper {
        padding: 0 10px;
        max-height: 130px;
        overflow: auto; }
      .app-modal .modal-body .list-group .list-group-item input.app-input-form.search-input {
        border-color: var(--base-color-secondary-lighten2);
        border-radius: 1px;
        height: 29px;
        font-size: 14px;
        margin-bottom: 10px;
        padding-right: 30px; }
      .app-modal .modal-body .list-group .list-group-item .filter-icon {
        color: var(--base-color-secondary-lighten2);
        font-size: 16px;
        position: absolute;
        right: 22px;
        top: 16px; }
      .app-modal .modal-body .list-group .list-group-item .separator {
        margin: 10px 0; }
      .app-modal .modal-body .list-group .list-group-item div.select-all {
        margin-bottom: 5px; }
        .app-modal .modal-body .list-group .list-group-item div.select-all input {
          margin-right: 5px; }
      .app-modal .modal-body .list-group .list-group-item label {
        display: block;
        font-weight: normal;
        margin-bottom: 0; }
        .app-modal .modal-body .list-group .list-group-item label.select-all {
          margin-bottom: 5px; }
          .app-modal .modal-body .list-group .list-group-item label.select-all input {
            margin-right: 5px; }
        .app-modal .modal-body .list-group .list-group-item label input {
          margin-right: 9px; }
  .app-modal .modal-body .radio-button-group {
    margin: 5px 0; }
    .app-modal .modal-body .radio-button-group label {
      margin-right: 15px; }
      .app-modal .modal-body .radio-button-group label input {
        margin-right: 3px; }
  .app-modal .modal-body .modal-section {
    margin-bottom: 20px; }
  .app-modal .modal-body .modal-step-header {
    border-bottom: 1px solid var(--base-color-secondary-lighten2);
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 8px; }
  .app-modal .modal-body .extra-margin-bottom {
    margin-bottom: 13px; }

.app-modal .modal-footer {
  padding: 20px;
  background-color: var(--base-color-primary-lighten4); }
  .app-modal .modal-footer .btn {
    margin: 0; }

.modal-invite-users-step3 {
  max-height: 440px;
  overflow: auto; }

.pager-btn {
  border-radius: 4px;
  font-size: 1em;
  font-weight: 500;
  color: #3da4f3;
  width: 35px;
  height: 35px;
  border: solid 1px #b4bdcb;
  background-color: #FFFFFF;
  margin-right: 3px; }

.pager-btn.selected-page {
  background-color: white;
  color: #B8BDD3;
  cursor: default; }

.ng-table-pager {
  height: 0 !important;
  width: 0 !important;
  visibility: hidden !important; }

.pager-btn:focus {
  outline: none; }

.pager-position {
  width: 100%;
  height: 56px;
  background-color: #E8F3FB;
  position: relative;
  border-top: 1px solid var(--base-color-border);
  border-bottom: 1px solid #D8D2DA;
  border-radius: 0 0 4px 4px;
  z-index: 0; }
  .pager-position .select-div .text-muted {
    color: #353e4c; }

.page-buttons-position {
  position: absolute;
  right: 12px;
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.page-buttons {
  display: inline-block;
  vertical-align: middle; }

.pager-area .ui-select-toggle {
  height: 35px !important;
  line-height: 35px !important;
  width: 105px;
  font-size: 13px; }
  .pager-area .ui-select-toggle:focus {
    -webkit-box-shadow: none;
            box-shadow: none; }

.pager-area #count-per-page .ui-select-toggle {
  width: 60px; }

.pager-area .dropdown-menu {
  min-width: 60px;
  -webkit-box-shadow: none;
          box-shadow: none; }

.pager-area .select-div:after {
  font-size: 12px; }

.pager-area .ui-select-match .btn {
  line-height: inherit; }

.page-jump-to {
  display: inline-block;
  vertical-align: middle; }

.total-results-position {
  position: absolute;
  left: 12px;
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
  z-index: 1; }

.total-results {
  display: inline-block;
  vertical-align: middle; }

.total-results-text {
  display: inline-block;
  vertical-align: middle;
  padding-left: 6px;
  color: #353e4c; }

.access-rights-settings,
.access-rights-settings:hover {
  text-decoration: none;
  display: block; }

.popover-a.access-rights-remove-access:hover {
  color: red; }

profile-access-rights .no-profiles {
  background-color: #f04864;
  color: #FFFFFF;
  text-align: center;
  padding: 10px;
  margin-top: -19px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px; }

.profile-access-rights__edit {
  position: relative;
  float: right; }

.tmr-access-rights-popover .disabled {
  pointer-events: none;
  color: #b1b6c1;
  text-decoration: none;
  cursor: default; }

.mfa-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.mfa-info-icon-container {
  display: inline-block;
  position: relative;
  margin-left: 5px;
  width: 12px;
  height: 12px;
  top: 0px;
  background-color: #FFFFFF;
  border-radius: 50%; }
  .mfa-info-icon-container .mfa-info-icon {
    display: inline-block;
    position: absolute;
    top: -2px;
    left: -1px;
    z-index: 1; }

tr.account-mfa-required {
  position: relative; }

tr.account-mfa-required td {
  background-color: #EAEBED !important; }

tr.account-mfa-required::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1; }

.resilience-how-to {
  background-color: #FAF7E4;
  border: 1px solid #F0E9CB;
  border-radius: 4px;
  color: #353e4c;
  font-weight: 500;
  padding: 15px; }
  .resilience-how-to .how-to-header {
    font-size: 18px;
    padding-bottom: 5px; }
  .resilience-how-to .how-to-item {
    padding-bottom: 15px;
    padding-top: 15px; }
    .resilience-how-to .how-to-item .item-image {
      border: #b1b6c1 solid 3px;
      border-radius: 50%;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      float: left;
      height: 150px;
      overflow: hidden;
      width: 150px; }
    .resilience-how-to .how-to-item .item-description {
      float: left;
      height: 150px;
      padding: 20px;
      width: 600px; }
      .resilience-how-to .how-to-item .item-description .description-header {
        color: #353e4c;
        font-size: 18px;
        line-height: 2; }
      .resilience-how-to .how-to-item .item-description .description-paragraph {
        color: #949cab;
        font-size: 16px;
        line-height: 1.5; }

.resilience-analysis-modal label {
  margin-bottom: 10px;
  width: 100%; }

.resilience-analysis-modal .app-modal-body {
  background: #FFFFFF;
  padding: 15px; }
  .resilience-analysis-modal .app-modal-body > form {
    position: relative; }
  .resilience-analysis-modal .app-modal-body .no-margin-label {
    margin-bottom: 0; }

.resilience-analysis-modal .app-modal-footer {
  padding: 5px 15px 15px 15px; }

.resilience-analysis-modal .tmr-button-group .btn:last-child {
  margin-right: 0; }

.resilience-analysis-modal .ra-modal-dropdown {
  background: #FFFFFF;
  border-radius: 5px;
  border: 1px solid var(--base-color-secondary-lighten2);
  margin-top: -11px;
  padding: 10px;
  position: absolute;
  left: 17px;
  right: 17px;
  z-index: 1; }
  .resilience-analysis-modal .ra-modal-dropdown .dropdown-inner {
    max-height: 100px;
    overflow: auto;
    width: 100%; }
    .resilience-analysis-modal .ra-modal-dropdown .dropdown-inner label {
      color: #353e4c;
      font-weight: 400; }
    .resilience-analysis-modal .ra-modal-dropdown .dropdown-inner input {
      margin-right: 10px; }
  .resilience-analysis-modal .ra-modal-dropdown label {
    margin-bottom: 0;
    max-width: 100%; }
    .resilience-analysis-modal .ra-modal-dropdown label span {
      display: inline-block;
      max-width: 90%;
      overflow: hidden;
      text-overflow: ellipsis; }

.resilience-analysis-modal .multiselect-tag-wrap {
  display: inline-block;
  margin-bottom: 2px; }
  .resilience-analysis-modal .multiselect-tag-wrap .multiselect-tag, .resilience-analysis-modal .multiselect-tag-wrap tags-input .tags .tag-item, tags-input .tags .resilience-analysis-modal .multiselect-tag-wrap .tag-item {
    line-height: 1; }
  .resilience-analysis-modal .multiselect-tag-wrap .tag-name {
    display: inline-block;
    line-height: 15px;
    max-height: 15px;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis; }
  .resilience-analysis-modal .multiselect-tag-wrap .tag-icons {
    line-height: 14px;
    vertical-align: text-top; }

.resilience-analysis-modal .filter-input {
  margin-bottom: 10px;
  padding-right: 26px;
  width: 100%; }
  .resilience-analysis-modal .filter-input:focus {
    padding-right: 26px; }

.resilience-analysis-modal .filter-icon {
  border-width: 1px;
  color: var(--base-color-secondary-lighten2);
  font-size: 20px;
  position: absolute;
  right: 16px;
  top: 16px; }

.resilience-analysis-modal .placeholder-text {
  font-size: 16px; }

.resilience-analysis-modal .ui-select-container {
  margin-bottom: 10px; }

.resilience-analysis-modal .du-filename-box {
  margin: 0 -15px; }

.resilience-analysis-modal .du-filename-box-name {
  padding: 0; }

.resilience-analysis-modal .first-group,
.resilience-analysis-modal .second-group {
  width: 100%; }

.resilience-analysis-modal .du-not-applicable {
  margin-right: 0; }
  .resilience-analysis-modal .du-not-applicable label {
    line-height: 1;
    vertical-align: middle;
    width: initial; }

.resilience-analysis-modal .info-document-panel .tmr-button-group .btn-primary {
  float: right; }

.resilience-analysis-modal .advanced-fields-container {
  background-color: #FFF;
  border-radius: 5px;
  border: 1px solid var(--base-color-secondary-lighten2);
  margin: 10px 0; }
  .resilience-analysis-modal .advanced-fields-container .advanced-fields-container-header {
    background: -webkit-gradient(linear, left bottom, left top, from(#F1F4F9), color-stop(70%, #F1F4F9), to(#FFFFFF));
    background: linear-gradient(0deg, #F1F4F9, #F1F4F9 70%, #FFFFFF);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    line-height: 20px;
    padding: 5px 8px;
    text-transform: uppercase; }
    .resilience-analysis-modal .advanced-fields-container .advanced-fields-container-header .collapse-icon {
      color: #949cab;
      font-size: 16px;
      margin-top: 2px; }
  .resilience-analysis-modal .advanced-fields-container .advanced-fields-container-body {
    padding: 15px 17px; }
    .resilience-analysis-modal .advanced-fields-container .advanced-fields-container-body .multiple-select-box {
      margin-bottom: 10px; }

.resilience-analysis-modal .remove-item-icon,
.resilience-analysis-modal .icon-trash2 {
  text-decoration: none; }
  .resilience-analysis-modal .remove-item-icon:hover, .resilience-analysis-modal .remove-item-icon:active, .resilience-analysis-modal .remove-item-icon:focus,
  .resilience-analysis-modal .icon-trash2:hover,
  .resilience-analysis-modal .icon-trash2:active,
  .resilience-analysis-modal .icon-trash2:focus {
    color: #F04864;
    text-decoration: none; }

.resilience-analysis-modal .remove-item-icon {
  float: right;
  font-size: 20px; }

.resilience-analysis-modal .resilience-modal-item-delete {
  padding: 0; }
  .resilience-analysis-modal .resilience-modal-item-delete .confirmation-text {
    text-align: center; }
  .resilience-analysis-modal .resilience-modal-item-delete .confirm-delete-wrapper {
    padding: 5px; }

.resilience-analysis-modal .modal-item-delete.popover.bottom > .arrow {
  left: auto;
  right: 33px; }

.resilience-analysis-modal .ra-name-label-wrapper p {
  display: none; }

.resilience-analysis-modal .ra-name-label-wrapper.show-similar-info {
  background: #FAF7E4;
  margin-bottom: 10px;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: -15px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px; }
  .resilience-analysis-modal .ra-name-label-wrapper.show-similar-info p {
    display: initial;
    margin-bottom: 0; }

.resilience-sidebar-wrapper {
  color: #353e4c;
  padding: 0; }
  .resilience-sidebar-wrapper .resilience-header-wrapper {
    border-bottom: 1px solid var(--base-color-secondary-lighten2);
    height: 68px;
    padding-left: 15px;
    padding-right: 15px; }
    .resilience-sidebar-wrapper .resilience-header-wrapper .btn {
      float: right;
      height: 32px;
      margin-top: 21px;
      position: relative; }
      .resilience-sidebar-wrapper .resilience-header-wrapper .btn:focus,
      .resilience-sidebar-wrapper .resilience-header-wrapper .btn:focus > * {
        text-decoration: none; }
      .resilience-sidebar-wrapper .resilience-header-wrapper .btn span {
        font-size: 30px;
        font-weight: 100;
        left: 8px;
        line-height: 30px;
        position: absolute;
        top: -1px; }
  .resilience-sidebar-wrapper .sidebar-title {
    display: inline-block;
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 23px;
    text-transform: capitalize; }
  .resilience-sidebar-wrapper .category-headline {
    display: inline-block; }
  .resilience-sidebar-wrapper .category-headline-wrapper {
    cursor: pointer; }
  .resilience-sidebar-wrapper .category-items {
    display: none; }
  .resilience-sidebar-wrapper .icon-chevron-up-circle {
    display: none; }
  .resilience-sidebar-wrapper .category-headline-wrapper.expanded + .category-items {
    display: block; }
  .resilience-sidebar-wrapper .category-headline-wrapper.expanded .icon-chevron-up-circle {
    display: inline; }
  .resilience-sidebar-wrapper .category-headline-wrapper.expanded .icon-chevron-down-circle {
    display: none; }
  .resilience-sidebar-wrapper .category-wrapper {
    border-bottom: 1px solid var(--base-color-secondary-lighten2);
    padding-left: 15px;
    padding-right: 15px; }
  .resilience-sidebar-wrapper .expanded-indicator {
    color: #949cab;
    float: right;
    font-size: 18px;
    margin-top: 11px; }
  .resilience-sidebar-wrapper .category-icon {
    color: #353e4c;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 4px; }
  .resilience-sidebar-wrapper .sidebar-item-wrapper:hover .icon-cog,
  .resilience-sidebar-wrapper .sidebar-item-wrapper:hover .icon-lock {
    display: inherit; }
  .resilience-sidebar-wrapper .sidebar-cogmenu-wrapper {
    float: right;
    font-size: 14px; }
    .resilience-sidebar-wrapper .sidebar-cogmenu-wrapper .icon-cog,
    .resilience-sidebar-wrapper .sidebar-cogmenu-wrapper .icon-lock {
      display: none; }
    .resilience-sidebar-wrapper .sidebar-cogmenu-wrapper .icon-lock {
      color: var(--base-color-secondary-lighten2); }
    .resilience-sidebar-wrapper .sidebar-cogmenu-wrapper .popover.bottom.fade.resilience-password-confirmation {
      margin-left: -120px; }
      .resilience-sidebar-wrapper .sidebar-cogmenu-wrapper .popover.bottom.fade.resilience-password-confirmation .arrow {
        left: auto;
        right: 8px; }
    .resilience-sidebar-wrapper .sidebar-cogmenu-wrapper .settings-link + .popover.bottom > .arrow {
      right: 6px; }
    .resilience-sidebar-wrapper .sidebar-cogmenu-wrapper .popover {
      margin-right: 15px; }
  .resilience-sidebar-wrapper .resilience-mitigations-category .category-headline-wrapper {
    display: none; }
  .resilience-sidebar-wrapper .resilience-mitigations-category .category-items {
    padding-top: 10px; }

.resource-item-wrapper {
  border-radius: 5px;
  border: 1px solid var(--base-color-secondary-lighten2);
  margin-bottom: 10px;
  position: relative;
  -webkit-transition: margin-bottom 200ms ease;
  transition: margin-bottom 200ms ease;
  -webkit-transition: background 1s linear;
  transition: background 1s linear; }
  .resource-item-wrapper.full-view.dragover, .resource-item-wrapper.saving-dropped {
    background-color: #F6FBFE;
    border-color: #3da4f3; }
    .resource-item-wrapper.full-view.dragover > .drop-info-panel-wrapper, .resource-item-wrapper.saving-dropped > .drop-info-panel-wrapper {
      display: inherit; }
    .resource-item-wrapper.full-view.dragover .drop-to-add-resource, .resource-item-wrapper.saving-dropped .drop-to-add-resource {
      border-color: #3da4f3; }
  .resource-item-wrapper.full-view.dragover-duplicate {
    background-color: #FEECEF;
    border-color: #F04864; }
    .resource-item-wrapper.full-view.dragover-duplicate .drop-info-panel {
      background-color: #F04864; }
    .resource-item-wrapper.full-view.dragover-duplicate > .drop-info-panel-duplicate-wrapper {
      display: inherit; }
  .resource-item-wrapper.full-view.saving-dropped .drop-info-panel {
    background-color: #AEDAFD; }
  .resource-item-wrapper.full-view:hover {
    border-color: #b1b6c1; }
  .resource-item-wrapper.highlighted {
    background-color: #FAF7E4; }
  .resource-item-wrapper .drop-info-panel-wrapper,
  .resource-item-wrapper .drop-info-panel-duplicate-wrapper {
    display: none;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%; }
  .resource-item-wrapper .drop-info-panel {
    background-color: #3da4f3;
    border-radius: 0 0 5px 5px;
    color: #FFFFFF;
    display: inline-block;
    padding: 2px 8px 4px 8px; }
  .resource-item-wrapper .heading-wrapper {
    cursor: pointer; }
  .resource-item-wrapper .heading-icon-wrapper,
  .resource-item-wrapper .heading-middle-wrapper {
    float: left; }
  .resource-item-wrapper .heading-icon-wrapper {
    background-color: #F1F4F9;
    border-radius: 50%;
    height: 50px;
    margin: 10px;
    text-align: center;
    width: 50px; }
    .resource-item-wrapper .heading-icon-wrapper span {
      font-size: 30px;
      line-height: 50px; }
  .resource-item-wrapper .attachment-icon-position {
    text-align: center;
    height: 10px; }
  .resource-item-wrapper .attachment-icon-wrapper {
    background-color: #F1F4F9;
    border-radius: 50%;
    display: inline-block;
    height: 40px;
    position: relative;
    top: -20px;
    width: 40px; }
    .resource-item-wrapper .attachment-icon-wrapper span {
      font-size: 20px;
      line-height: 40px; }
  .resource-item-wrapper .heading-middle-wrapper {
    max-width: 80%;
    overflow: hidden; }
    .resource-item-wrapper .heading-middle-wrapper .item-title {
      line-height: 1;
      margin-bottom: 8px;
      margin-top: 10px; }
  .resource-item-wrapper .items-count {
    display: inline-block;
    font-size: 12px;
    margin-bottom: 10px; }
    .resource-item-wrapper .items-count .items-line {
      background: #b1b6c1;
      border-radius: 5px;
      color: #353e4c;
      padding: 2px 6px 2px 4px;
      text-transform: uppercase; }
    .resource-item-wrapper .items-count .items-number {
      background: #353e4c;
      border-radius: 50%;
      color: #FFFFFF;
      display: inline-block;
      text-align: center;
      width: 17px; }
  .resource-item-wrapper .heading-cogmenu-wrapper {
    float: right;
    height: 70px;
    margin-right: 12px;
    padding-top: 12px; }
    .resource-item-wrapper .heading-cogmenu-wrapper a {
      display: inline-block;
      padding: 10px; }
      .resource-item-wrapper .heading-cogmenu-wrapper a:hover, .resource-item-wrapper .heading-cogmenu-wrapper a:active, .resource-item-wrapper .heading-cogmenu-wrapper a:focus {
        text-decoration: none; }
    .resource-item-wrapper .heading-cogmenu-wrapper .popover.bottom > .arrow {
      right: 23px; }
  .resource-item-wrapper .type-wrapper {
    border-radius: 5px;
    border: 1px solid var(--base-color-secondary-lighten2);
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 30px; }
  .resource-item-wrapper .type-header {
    background: -webkit-gradient(linear, left bottom, left top, from(#F1F4F9), color-stop(70%, #F1F4F9), to(#FFFFFF));
    background: linear-gradient(0deg, #F1F4F9, #F1F4F9 70%, #FFFFFF);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-weight: 500;
    padding: 5px 10px;
    text-transform: uppercase; }
  .resource-item-wrapper .type-details {
    padding-left: 10px;
    padding-right: 10px; }
  .resource-item-wrapper .details-title {
    font-weight: 500;
    text-transform: capitalize; }
  .resource-item-wrapper .items-attached-wrapper {
    background-color: #F1F4F9;
    border-radius: 0 0 5px 5px;
    margin-top: 10px;
    padding-bottom: 1px;
    padding-left: 20px;
    padding-right: 20px; }
  .resource-item-wrapper .attachments-heading {
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase; }
  .resource-item-wrapper .drop-to-add-resource {
    border-radius: 5px;
    border: 1px dashed var(--base-color-secondary-lighten2);
    margin-bottom: 20px;
    margin-top: 10px;
    padding-bottom: 5px;
    text-align: center; }
    .resource-item-wrapper .drop-to-add-resource h3 {
      color: #353e4c;
      margin-bottom: 0; }
    .resource-item-wrapper .drop-to-add-resource p {
      color: #353e4c; }
  .resource-item-wrapper.compact-view {
    background-color: #FFFFFF; }
    .resource-item-wrapper.compact-view .heading-icon-wrapper {
      height: 20px;
      width: 20px; }
      .resource-item-wrapper.compact-view .heading-icon-wrapper span {
        font-size: 18px;
        line-height: 20px; }
    .resource-item-wrapper.compact-view .heading-middle-wrapper .item-title {
      display: inline-block;
      font-size: 16px; }
    .resource-item-wrapper.compact-view .heading-cogmenu-wrapper {
      font-size: 18px;
      height: auto;
      margin-right: 0;
      padding-top: 0; }

.documents-list-wrapper,
.mitigations-list-wrapper {
  margin-bottom: 15px; }
  .documents-list-wrapper .list-line,
  .mitigations-list-wrapper .list-line {
    margin-top: 15px;
    padding-left: 40px;
    position: relative; }
    .documents-list-wrapper .list-line::after,
    .mitigations-list-wrapper .list-line::after {
      background-color: #b1b6c1;
      content: "";
      display: block;
      height: 100%;
      left: 15px;
      position: absolute;
      top: -11px;
      width: 2px; }
  .documents-list-wrapper .resource-item-wrapper,
  .mitigations-list-wrapper .resource-item-wrapper {
    background-color: inherit;
    color: #353e4c;
    font-weight: 500;
    margin-bottom: 5px;
    padding: 2px 6px;
    position: relative; }
    .documents-list-wrapper .resource-item-wrapper::after,
    .mitigations-list-wrapper .resource-item-wrapper::after {
      background-color: #b1b6c1;
      content: "";
      display: block;
      height: 2px;
      left: -25px;
      position: absolute;
      top: 12px;
      width: 20px; }
  .documents-list-wrapper .icon,
  .mitigations-list-wrapper .icon {
    font-size: 18px;
    margin-right: 6px;
    vertical-align: middle; }
  .documents-list-wrapper .item-title,
  .mitigations-list-wrapper .item-title {
    line-height: 1;
    vertical-align: middle; }

.tmr-processes-page .process-item-wrapper .heading-wrapper {
  margin-left: 10px; }

.process-item-wrapper > .heading-wrapper > .heading-middle-wrapper {
  margin-left: 20px; }

.process-item-wrapper.process-draggable > .heading-wrapper > .heading-middle-wrapper::before {
  color: #D0DAE2;
  content: "\E917";
  font-family: 'Linearicons';
  font-size: 48px;
  height: 100%;
  left: 5px;
  position: absolute;
  top: 0;
  width: 20px; }

.process-item-wrapper.item-expanded > .heading-wrapper > .heading-middle-wrapper::before {
  content: ""; }

.heading-icon-wrapper.s10mitigation-is-expired {
  background-color: #FFECEE; }

.heading-icon-wrapper.s20mitigation-is-due {
  background-color: #FEF4EB; }

.heading-icon-wrapper.s30mitigation-is-valid {
  background-color: #E2FFFA; }

.documents-count .status-wrap {
  display: inline-block;
  margin-right: 10px; }

.documents-count .status-expired {
  color: red; }

.documents-count .status-due {
  color: orange; }

.documents-count .status-valid {
  color: green; }

.documents-count .icon {
  font-size: 20px;
  vertical-align: top; }

.documents-count .count {
  font-size: 14px;
  margin-left: 5px; }

.heading-cogmenu-wrapper a:hover,
.heading-cogmenu-wrapper a:active,
.heading-cogmenu-wrapper a:focus,
.sidebar-cogmenu-wrapper a:hover,
.sidebar-cogmenu-wrapper a:active,
.sidebar-cogmenu-wrapper a:focus {
  text-decoration: none; }

.ui-select-toggle {
  width: 100%;
  border: var(--base-color-secondary-lighten2) 1px solid;
  color: #353e4c;
  font-weight: 400;
  outline: none;
  border-radius: 4px;
  padding: 0 4px 0 12px;
  height: 36px;
  background: white;
  margin: 0;
  line-height: 36px;
  font-size: 16px; }

.ui-select-toggle:after {
  content: "\E93D";
  font-family: 'Linearicons';
  position: absolute;
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
  right: 4px;
  pointer-events: none;
  color: var(--base-color-primary);
  font-size: 13px; }

.ui-select-toggle.form-control, tags-input .ui-select-toggle.tags {
  padding: 0 4px 0 12px; }

#phone-dropdown .ui-select-toggle {
  height: 20px !important;
  line-height: 20px !important;
  width: 80px; }

#phone-dropdown .ui-select-match .btn {
  line-height: inherit; }

.tmr-small-input .ui-select-match .btn {
  line-height: 35px; }

.tmr-small-input .ui-select-toggle {
  height: 35px;
  line-height: 35px;
  font-size: 14px; }

select.mobile-select {
  border: solid #b4bdcb 1px !important;
  border-radius: 4px;
  background-color: white;
  padding: 0 12px;
  font-weight: normal;
  font-family: SourceSansPro, sans-serif;
  font-size: 14px;
  width: 100%;
  margin-top: 0;
  height: 36px; }

.ui-select-match .btn {
  line-height: 36px; }

.ui-select-toggle:hover {
  background-color: white;
  border: solid #3da4f3 1px !important;
  color: #353e4c; }

.btn-default-focus {
  border: 1px #3da4f3 solid;
  background-color: transparent;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline-offset: 0;
  font-size: 14px;
  border-radius: 4px; }

.phone-dropDown .btn-default-focus {
  border: none; }

.report-drop-down-filter .caret {
  visibility: hidden; }

.report-drop-down-filter .ui-select-toggle:after {
  font-family: Linearicons;
  content: "\E93D";
  vertical-align: middle;
  position: absolute;
  right: var(--base-color-primary); }

.report-drop-down-filter input[type="search"] {
  width: 100%; }

.report-drop-down-filter .ui-select-choices-row.active > a, .report-drop-down-filter a.ui-select-choices-row-inner:hover {
  background-color: #bfe1fb;
  color: #3da4f3; }

select.app-input-form {
  -webkit-appearance: none;
  -moz-appearance: none; }

.form-control.btn[disabled], tags-input .btn.tags[disabled] {
  opacity: 1; }

.form-control.btn[disabled]:hover, tags-input .btn.tags[disabled]:hover {
  background-color: #eeeeee;
  border-color: #b4bdcb !important; }

.inv-input-form.ui-select-bootstrap > .ui-select-choices {
  width: inherit; }

.select-div {
  position: relative;
  float: left;
  width: 100%; }

body > .ui-select-bootstrap.open {
  z-index: 1050 !important; }

.ui-select-bootstrap .ui-select-choices-row.active a {
  background-color: #3da4f3; }

.ui-select-bootstrap .ui-select-choices-row a:hover {
  background-color: #bfe1fb;
  color: #3da4f3; }

.ui-select-bootstrap .ui-select-choices-row.active a:hover {
  background-color: #2f9df2;
  color: white; }

i.caret.pull-right {
  display: none; }

.ui-select-bootstrap > .ui-select-choices, .ui-select-bootstrap > .ui-select-no-choice {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
  margin-top: 1px; }

.ui-select-search {
  height: 36px; }

.ui-select-match .btn {
  border-radius: 5px !important; }

.ui-select-container.ng-invalid.ng-touched * {
  border: none !important; }

.ui-select-container .ui-select-match.btn-default-focus > .ui-select-toggle {
  border: 1px solid #3da4f3; }

.ui-select-container .ui-select-match .ui-select-toggle {
  padding-right: 20px; }
  .ui-select-container .ui-select-match .ui-select-toggle .ui-select-placeholder {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    color: #353e4c; }

@media (max-width: 299px) {
  .ui-select-extra-margin {
    margin-top: 14px; } }

.related-div {
  position: relative; }

.related-div .ui-select-container {
  top: 0; }

.related-div .btn-default-focus {
  height: 36px;
  border: transparent; }

.related-div .dropdown-menu {
  min-width: 100px; }

.form-control.ui-select-search, tags-input .ui-select-search.tags {
  width: 100% !important; }

.dropdown-email {
  font-weight: 200; }

.btn-default-focus {
  border: none; }

.sidebar-item-wrapper {
  background-color: #FFFFFF;
  border-radius: 5px;
  border: 1px solid var(--base-color-secondary-lighten2);
  margin-bottom: 4px;
  overflow: hidden;
  padding: 4px 4px; }
  .sidebar-item-wrapper .item-icon {
    color: #3da4f3;
    font-size: 16px;
    line-height: 18px;
    padding-right: 5px;
    vertical-align: middle; }
  .sidebar-item-wrapper .item-text {
    font-weight: 500; }
  .sidebar-item-wrapper.sidebar-item-draggable {
    cursor: move; }
  .sidebar-item-wrapper.sidebar-item-draggable::before {
    color: var(--base-color-secondary-lighten2);
    content: "\E91B";
    font-family: 'Linearicons';
    font-size: 16px;
    line-height: 1;
    padding-left: 5px;
    padding-right: 5px;
    vertical-align: middle; }

@font-face {
  font-family: 'icomoon';
  src: url(assets/icomoon.eot?);
  src: url(assets/icomoon.eot?#iefix) format("embedded-opentype"), url(assets/icomoon.ttf?) format("truetype"), url(assets/icomoon.woff?) format("woff"), url(assets/icomoon.svg?#icomoon) format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="social-"], [class*="social-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  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; }

.social-twitter:before {
  content: "\EA96"; }

.social-linkedin:before {
  content: "\EAE9"; }

.social-linkedin2:before {
  content: "\EAEA"; }

.social-globe:before {
  content: "\E900"; }

.social-youtube:before {
  content: "\EA9E"; }

.switch {
  background: var(--base-color-red);
  border: none;
  border-radius: 20px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 32px;
  line-height: 32px;
  margin: 0px;
  overflow: visible;
  padding: 0px;
  position: relative;
  transition: 0.3s ease-out all;
  -webkit-transition: 0.3s ease-out all;
  width: 65px;
  outline: none;
  color: #FFFFFF; }
  .switch.checked {
    background: var(--base-color-green);
    border-color: var(--base-color-green); }
    .switch.checked small {
      left: 35px; }
    .switch.checked .off {
      display: none;
      color: #FFFFFF; }
    .switch.checked .on {
      display: block;
      color: #FFFFFF; }
  .switch.disabled {
    opacity: .50;
    cursor: not-allowed; }
  .switch small {
    background: #fff;
    border-radius: 100%;
    height: 28px;
    left: 2px;
    position: absolute;
    top: 2px;
    transition: 0.3s ease-out all;
    -webkit-transition: 0.3s ease-out all;
    width: 28px; }
  .switch .off {
    display: block;
    position: absolute;
    right: 7px;
    z-index: 0;
    color: #FFFFFF; }
  .switch .on {
    display: none;
    left: 10px;
    position: absolute;
    z-index: 0;
    color: #FFFFFF; }
  .switch .off,
  .switch .on {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    top: 0; }

.table-striped > tbody > tr > td,
.table-striped > tbody > tr > th {
  background-color: #FFFFFF;
  color: #353e4c; }

.table-striped > tbody > tr.disabled > td {
  color: #949cab; }

.table-striped > tbody > tr > td {
  line-height: 23px; }

.table-striped thead {
  background-color: var(--base-color-secondary); }

.table-striped td, th {
  padding-left: 12px !important; }

td[data-sortable="'account'"],
td[data-sortable="'account_type'"],
td[data-sortable="'created_at'"],
td[data-sortable="'email'"],
td[data-sortable="'owner'"],
td[data-sortable="'first_name'"],
td[data-sortable="'last_name'"],
td[data-sortable="'role'"],
td[data-sortable="'subscription_level'"],
td[data-sortable="'updated_at'"] {
  white-space: nowrap; }

td.action-links {
  font-size: 20px;
  text-align: right; }
  td.action-links a {
    margin-right: 10px; }
    td.action-links a:last-child {
      margin-right: 0; }
    td.action-links a.disabled {
      cursor: not-allowed; }
  td.action-links a,
  td.action-links a:focus,
  td.action-links a:focus > * {
    text-decoration: none; }

th {
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: underline;
  text-align: left; }

.table-striped thead tr {
  line-height: 40px;
  height: 40px;
  border-bottom: none; }

.table > thead > tr > th {
  vertical-align: middle;
  border-bottom: 1px solid #353e4c; }

.table-no-underline th {
  text-decoration: none; }

.ng-table th {
  text-align: left;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .ng-table th.text-right {
    text-align: right; }
  .ng-table th.sortable.center-text {
    text-align: center; }
    .ng-table th.sortable.center-text .sort-indicator {
      padding-right: 0; }
  .ng-table th.sortable .sort-indicator:before {
    display: none; }
  .ng-table th.sortable .sort-indicator:after {
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s; }
  .ng-table th.sortable .sort-indicator:hover:after {
    opacity: 0; }
  .ng-table th.sortable.sort-asc .sort-indicator:after {
    content: "\E260"; }
  .ng-table th.sortable.sort-desc .sort-indicator:after {
    content: "\E259"; }

.ng-table tr.selected td {
  background-color: #FAF7E4 !important; }

.global-search-area {
  padding: 8px 8px 12px 8px;
  background-color: #E9EEF5;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 15px;
  border-radius: 4px;
  border-bottom: 1px solid #D8D2DA; }
  .global-search-area .form-small-box {
    margin: 0; }
  .global-search-area .btn {
    font-weight: 400; }

.app-table {
  color: #353e4c;
  margin-bottom: 0; }

.inline-long-el {
  vertical-align: top;
  display: inline-block; }
  @media (min-width: 300px) {
    .inline-long-el {
      width: 90%; } }
  @media (max-width: 299px) {
    .inline-long-el {
      width: 80%; } }

.inline-short-el {
  vertical-align: top;
  display: inline-block;
  line-height: inherit; }

.inline-short-el:hover {
  text-decoration: none; }

.table-remove-icon {
  font-size: 27px;
  vertical-align: middle;
  color: #3da4f3; }

.table-cel-10 {
  width: 10%; }

.table-cel-20 {
  width: 20%; }

.table-cel-30 {
  width: 30%; }

.table-cel-40 {
  width: 40%; }

.table-cel-50 {
  width: 50%; }

.table-cel-60 {
  width: 60%; }

.inviteTable .btn,
.inviteTable .app-input-form,
.inviteTable .app-input-form:focus,
.inviteTable .form-control,
.inviteTable tags-input .tags,
tags-input .inviteTable .tags {
  font-size: 16px; }

.inviteTable .ui-select-search {
  height: 36px;
  padding-bottom: 0;
  padding-top: 2px; }

.inviteTable > tbody > tr > td {
  padding: 5px;
  padding-left: 0px !important; }

.inviteTable > tbody > tr > td .ui-select-match .btn {
  line-height: 36px;
  height: 36px; }

.account-manager-table .user-avatar {
  cursor: pointer; }

.account-manager-table th,
.activity-logs-table th,
.par-table th,
.user-manager-table th,
.ul-table th,
.inviteTable th {
  font-weight: 500;
  text-decoration: none; }

.account-manager-table th.sortable,
.activity-logs-table th.sortable,
.par-table th.sortable,
.user-manager-table th.sortable,
.ul-table th.sortable,
.inviteTable th.sortable {
  text-decoration: underline;
  cursor: pointer; }

.ul-mfa {
  text-align: center; }

.par-mfa {
  text-align: center; }

.ul-table th,
.par-table th {
  white-space: nowrap; }

.ul-table .account-name-column,
.par-table .account-name-column {
  width: 50%; }

.account-manager-table td > a.disabled {
  color: #353e4c;
  cursor: default; }
  .account-manager-table td > a.disabled:hover, .account-manager-table td > a.disabled:focus {
    text-decoration: none; }
    .account-manager-table td > a.disabled:hover > *, .account-manager-table td > a.disabled:focus > * {
      text-decoration: none; }

.table-inputs > tbody > tr > td {
  padding: 3px !important; }

.table > tbody > tr > td.switch-cell {
  padding-bottom: 6px;
  padding-top: 7px;
  white-space: nowrap; }
  .table > tbody > tr > td.switch-cell > span {
    vertical-align: middle; }
  .table > tbody > tr > td.switch-cell.flex-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .table > tbody > tr > td.switch-cell.switch-disabled {
    background-color: var(--base-color-text-lighten4); }
    .table > tbody > tr > td.switch-cell.switch-disabled .switch {
      cursor: default; }
  .table > tbody > tr > td.switch-cell .icon-lock {
    font-size: 18px; }
  .table > tbody > tr > td.switch-cell .next-to-switch,
  .table > tbody > tr > td.switch-cell .icon-lock {
    line-height: 26px;
    margin-left: 10px; }
  .table > tbody > tr > td.switch-cell .switch {
    float: left; }

.table-inputs td.text-cell {
  padding-top: 11px !important;
  padding-left: 16px !important;
  font-size: 16px; }

.remove-table-row {
  font-size: 18px;
  text-align: center; }
  .remove-table-row a {
    margin-top: 8px;
    display: inline-block; }
    .remove-table-row a:hover, .remove-table-row a:focus,
    .remove-table-row a:focus * {
      text-decoration: none; }

.user-full-name-cell {
  max-height: 23px; }
  .user-full-name-cell .cell-content {
    margin-left: 7px; }

.ng-table th.sortable.sort-asc, .ng-table th.sortable.sort-desc {
  background-color: var(--base-color-secondary);
  text-shadow: none; }
  .ng-table th.sortable.sort-asc .sort-indicator:after, .ng-table th.sortable.sort-desc .sort-indicator:after {
    border: none;
    background-color: #FFFFFF;
    opacity: 1;
    padding: 3px;
    font-size: 10px;
    color: var(--base-color-primary);
    border-radius: 2px;
    right: -7px;
    display: inherit; }
  .ng-table th.sortable.sort-asc .sort-indicator:hover:after, .ng-table th.sortable.sort-desc .sort-indicator:hover:after {
    opacity: 1; }

tags-input .host {
  min-height: 45px; }

tags-input .tags {
  height: 100%;
  min-height: 45px;
  overflow: auto;
  padding: 0 5px 5px 0;
  -webkit-appearance: initial; }
  tags-input .tags .input {
    font: inherit;
    font-size: 14px;
    margin-top: 8px;
    width: inherit; }
  tags-input .tags.focused {
    -webkit-box-shadow: none;
            box-shadow: none; }
  tags-input .tags .tag-item {
    color: #353e4c;
    font-family: inherit;
    height: 28px;
    margin-top: 8px;
    margin-left: 7px !important; }
    tags-input .tags .tag-item.user-tag {
      margin-top: 7px; }
    tags-input .tags .tag-item.tag-invalid {
      border-color: var(--base-color-red); }
      tags-input .tags .tag-item.tag-invalid .tag-icons {
        background-color: var(--base-color-red); }
      tags-input .tags .tag-item.tag-invalid .tag-name {
        color: var(--base-color-red) !important; }
      tags-input .tags .tag-item.tag-invalid .front-tag-icon {
        color: var(--base-color-red); }

tags-input.ng-invalid.ng-touched {
  border: 0 !important; }

tags-input.ng-invalid .tags {
  -webkit-box-shadow: none;
          box-shadow: none; }

tags-input .autocomplete {
  border-color: var(--base-color-secondary-lighten2);
  border-radius: 0px;
  margin-top: 2px; }
  tags-input .autocomplete .suggestion-item {
    color: #353e4c;
    font: inherit;
    font-size: 13px; }
    tags-input .autocomplete .suggestion-item .access-icon {
      font-size: 16px; }
    tags-input .autocomplete .suggestion-item [class^="col-"] {
      padding-left: 5px;
      padding-right: 5px; }
    tags-input .autocomplete .suggestion-item [class^="col-"]:first-child {
      padding-left: 15px; }
    tags-input .autocomplete .suggestion-item [class^="col-"]:last-child {
      padding-right: 15px; }
    tags-input .autocomplete .suggestion-item [class^="col-"],
    tags-input .autocomplete .suggestion-item .cell-content {
      overflow: hidden;
      text-overflow: ellipsis; }
    tags-input .autocomplete .suggestion-item em {
      font: inherit;
      font-weight: 500; }
    tags-input .autocomplete .suggestion-item span {
      vertical-align: middle; }

.invite-message {
  width: 100%;
  height: 100px;
  display: block;
  margin-top: 10px;
  border: var(--base-color-secondary-lighten2) 1px solid;
  font-weight: 400;
  border-radius: 5px;
  resize: none;
  padding: 5px; }
  .invite-message:hover {
    border-color: #3da4f3;
    outline: 0; }
  .invite-message:focus {
    outline: 0; }

.tags-input-error {
  color: #F04864;
  font-size: 12px;
  margin-top: 5px; }
  .tags-input-error span.middle {
    vertical-align: middle; }
  .tags-input-error .icon-notification-circle {
    font-size: 20px; }

.user-tag {
  border-radius: 4px !important;
  color: var(--base-color-text) !important;
  height: 26px !important;
  padding: 0px !important;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }
  .user-tag .tag-name {
    padding: 2px; }
  .user-tag user-avatar {
    padding: 2px 4px; }
  .user-tag .front-tag-icon {
    padding: 2px 4px;
    line-height: 15px; }
  .user-tag .tag-icons {
    border-radius: 0px;
    background-color: var(--base-color-primary);
    color: #FFFFFF;
    position: relative;
    left: 1px;
    line-height: 15px; }

.user-avatar {
  background-color: var(--base-color-secondary-lighten);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  text-align: center;
  vertical-align: text-top;
  aspect-ratio: 1; }
  .user-avatar.user-avatar-small {
    line-height: 20px;
    height: 20px;
    width: 20px; }
    .user-avatar.user-avatar-small span {
      font-size: 10px;
      font-weight: 500;
      vertical-align: text-top; }
    .user-avatar.user-avatar-small img {
      border-radius: 50%;
      width: 20px;
      height: 20px; }
    .user-avatar.user-avatar-small .user-avatar-pip {
      height: 8px;
      right: -1px;
      top: -1px;
      width: 8px; }
  .user-avatar.user-avatar-medium {
    line-height: 35px;
    height: 35px;
    width: 35px; }
    .user-avatar.user-avatar-medium span {
      font-size: 20px;
      font-weight: 400;
      vertical-align: baseline; }
    .user-avatar.user-avatar-medium img {
      border-radius: 50%;
      width: 35px;
      height: 35px; }
    .user-avatar.user-avatar-medium .user-avatar-pip {
      height: 8px;
      right: -1px;
      top: -1px;
      width: 8px; }
  .user-avatar span {
    color: #fff; }
  .user-avatar img {
    position: absolute;
    left: 0;
    top: 0; }
  .user-avatar .user-avatar-pip {
    background-color: #3da4f3;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute; }

.tmr-usermenu-dropdown {
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0px 1px 1px var(--base-color-secondary-lighten2);
          box-shadow: 0px 1px 1px var(--base-color-secondary-lighten2);
  cursor: default;
  max-height: 0px;
  min-width: 226px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 46px;
  -webkit-transition: none;
  transition: none;
  width: 100%;
  z-index: 1000; }
  .tmr-usermenu-dropdown.dropdown-open {
    max-height: 300px;
    -webkit-transition: max-height 0.2s ease;
    transition: max-height 0.2s ease;
    -webkit-transition-delay: 0.06667s;
            transition-delay: 0.06667s; }
  .tmr-usermenu-dropdown .dropdown-container {
    margin: 4px; }
  .tmr-usermenu-dropdown .sticky-only {
    display: none; }
    .tmr-usermenu-dropdown .sticky-only.access-icon {
      padding-top: 0 !important; }
      .tmr-usermenu-dropdown .sticky-only.access-icon span {
        vertical-align: middle; }
      .tmr-usermenu-dropdown .sticky-only.access-icon .role-name {
        font-weight: 400; }
  .tmr-usermenu-dropdown .tmr-usermenu-dropdown-access {
    color: #353e4c;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 11px;
    padding-top: 0; }
    .tmr-usermenu-dropdown .tmr-usermenu-dropdown-access span {
      vertical-align: middle; }
    .tmr-usermenu-dropdown .tmr-usermenu-dropdown-access .user-access-icon {
      background-color: inherit;
      border-radius: 0;
      color: #353e4c;
      font-size: 20px;
      margin: 0;
      padding: 0; }
  .tmr-usermenu-dropdown .dropdown-logout {
    margin-top: 4px; }
    .tmr-usermenu-dropdown .dropdown-logout .menu-item {
      padding: 5px 11px 7px 11px !important; }
      .tmr-usermenu-dropdown .dropdown-logout .menu-item span {
        vertical-align: middle; }
      .tmr-usermenu-dropdown .dropdown-logout .menu-item .icon-power-switch {
        font-size: 20px; }
  .tmr-usermenu-dropdown .dropdown-main-content {
    margin-bottom: 4px;
    margin-top: 4px; }

.account-action {
  margin-bottom: 10px; }
  .account-action__title {
    font-size: 16px; }
  .account-action__button {
    float: right;
    position: relative; }
  .account-action__icon {
    display: inline-block;
    margin-right: 5px;
    font-size: 0.85em; }

.login-footer {
  text-align: center;
  font-size: 14px;
  color: #353e4c; }

.login-logo {
  width: 180px;
  height: 180px;
  border: solid 0.9px var(--base-color-text-lighten3);
  padding: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .login-logo.registration-logo {
    margin-bottom: 0px;
    margin-top: 25px;
    position: relative;
    left: -35px; }

.app-logo {
  width: 100%;
  background: url(assets/Logo.svg?) center no-repeat;
  background-size: contain;
  height: 75px;
  margin-bottom: 35px;
  margin-top: 35px; }

.powered_by {
  height: 50px;
  background: url(assets/powered.png?) center no-repeat;
  display: none; }

.form-panel {
  background-color: #FFFFFF;
  border-top: #3da4f3 3px solid;
  border-radius: 10px;
  margin-top: 35px;
  overflow: hidden;
  -webkit-box-shadow: #64bdff 0 0px 1px;
          box-shadow: #64bdff 0 0px 1px;
  margin-bottom: 50px; }
  .form-panel .form {
    float: left; }
    .form-panel .form .login-form {
      border-top: 0px;
      padding-top: 0px;
      -webkit-box-shadow: none;
              box-shadow: none; }
  .form-panel .auth-panel {
    width: 580px;
    height: 600px;
    float: left;
    position: relative; }

.forgotten-password {
  margin-top: 12px;
  font-weight: normal; }

.login-message, .login-error, .login-success {
  width: 100%;
  min-height: 46px;
  color: white;
  font-weight: bold;
  margin-bottom: 25px;
  padding: 11.5px; }

.login-error {
  background-color: #F04864;
  margin-top: 15px; }
  .login-error a {
    color: #fff;
    text-decoration: underline; }
  .login-error .text-center {
    position: relative;
    z-index: 1;
    padding: 0 50px; }

.login-success {
  background-color: #3da4f3; }

.icon-login-error {
  background: url(assets/failedtopicon.svg?) no-repeat left;
  background-size: auto 33px;
  background-position: 15px 0px;
  opacity: 0.4;
  position: absolute; }

.login-form {
  margin: 20px auto;
  width: 539px;
  border-radius: 10px; }
  .login-form label {
    margin-top: 15px; }
  .login-form .password-container {
    margin-bottom: 10px; }
  .login-form .btn {
    margin-top: 0px; }

.tmr-form .form-input-invitation {
  margin-top: 0; }

.tmr-form .input-label {
  margin-bottom: 0; }

.form-input-invitation {
  margin-top: 0;
  padding: 0 12px; }

.edit-form-password {
  padding: 15px;
  background: #d5e8f9; }

.cropArea {
  overflow: hidden; }
  @media (min-width: 200px) {
    .cropArea {
      height: 350px;
      width: 370px; } }
  @media (max-width: 199px) {
    .cropArea {
      width: auto;
      height: 280px; } }

.zero-margin {
  margin: 0; }

.user-profile-photo-background-modal {
  width: 186px;
  height: 186px;
  background: #3da4f3;
  border-radius: 50%;
  border: #b5dcfa solid 10px;
  position: relative;
  overflow: hidden; }

.center-col {
  transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  -webkit-transform: translate(0, 50%); }

.my-profile-password {
  background-color: #ffffff;
  border-radius: 4px;
  -webkit-transition: background-color 0ms ease;
  transition: background-color 0ms ease; }
  .my-profile-password.changePassword {
    background-color: #F1F4F9;
    padding-bottom: 8px;
    padding-top: 4px;
    -webkit-transition: background-color 300ms ease;
    transition: background-color 300ms ease; }
    .my-profile-password.changePassword .form-small-box {
      margin-bottom: 4px; }
  .my-profile-password .input-form-with-enable-button label {
    color: #353e4c;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 7px; }
  .my-profile-password .input-form-with-enable-button input {
    padding-right: 30px; }
  .my-profile-password .input-form-with-enable-button input[type="checkbox"] {
    display: none; }
  .my-profile-password .cancel-password {
    color: #353e4c;
    cursor: pointer;
    text-decoration: underline; }

.mfa-switch-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px; }
  .mfa-switch-container .mfa-error-message {
    color: #F04864; }

div#emailIconLogin, div#firstNameIcon, div#lastNameIcon {
  background: url(assets/user.svg?) no-repeat left; }

div#passwordIcon, div#confirmPasswordIcon, div#oldPasswordIcon {
  background: url(assets/key.svg?) no-repeat left; }

div#emailAddressIcon {
  background: url(assets/email.svg?) no-repeat left;
  background-size: 20px auto !important;
  background-position: 10px 12px !important;
  height: 30px;
  width: 40px;
  position: absolute; }

div#telephoneIcon {
  background: url(assets/smartphone.svg?) no-repeat left; }

div#phoneNumberDropDown {
  position: absolute;
  left: 40px;
  top: -5px; }

.phone-input-extra-padding {
  padding-left: 92px; }

div#companyIcon {
  background: url(assets/company.svg?) no-repeat left;
  z-index: 9; }

div#companyName .form-control, div#companyName tags-input .tags, tags-input div#companyName .tags {
  margin-top: 0;
  padding-left: 40px; }

div#companyName .ui-select-placeholder {
  font-size: 14px;
  line-height: 14px;
  color: #353e4c; }

div#companyName .ui-select-match-text {
  font-size: 14px; }

input#telephoneNumber::-webkit-outer-spin-button,
input#telephoneNumber::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input#telephoneNumber {
  -moz-appearance: textfield; }

div.error-icon {
  background: url(assets/error.svg?) no-repeat right; }

.registration-panel {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
  background-color: #FFFFFF;
  border-top: #3da4f3 3px solid;
  border-radius: 10px;
  margin-top: 35px;
  overflow: hidden;
  -webkit-box-shadow: #64bdff 0 0px 1px;
          box-shadow: #64bdff 0 0px 1px; }
  .registration-panel .form {
    float: left; }
    .registration-panel .form .main-panel {
      border: none; }
  .registration-panel .auth-panel {
    width: 580px;
    height: 700px;
    float: left;
    position: relative; }
  .registration-panel .registration-text {
    width: 300px;
    margin-top: 60px; }

.registration-company-icon {
  width: 20px; }

.vertical-align-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.request-sent {
  line-height: 20px;
  vertical-align: middle; }

.main-panel .input-container .label-disabled {
  color: #4a576a; }

.tmr-form .form-input-invitation {
  margin-top: 0; }

.tmr-form .input-label {
  margin-bottom: 0; }

.form-input-invitation {
  margin-top: 0;
  padding: 0 12px; }

.registration-form {
  border-radius: 5px;
  margin: auto;
  width: 550px; }

.invitation-message {
  padding: 20px 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #64bdff;
  margin-top: -25px; }
  .invitation-message h2 {
    font-size: 25px;
    color: #343F4E; }

.invitation-message-no-token {
  background-color: #FAF7E4;
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid var(--base-color-secondary-lighten2); }
  .invitation-message-no-token h4,
  .invitation-message-no-token p {
    margin-bottom: 0; }
  .invitation-message-no-token h4 {
    color: #353e4c; }
  .invitation-message-no-token span {
    font-weight: 500; }

.verify-your-email-panel {
  padding: 0 15px 10px 15px;
  text-align: center; }
  .verify-your-email-panel h3 {
    font-size: 24px; }
  .verify-your-email-panel p {
    font-size: 16px; }
  .verify-your-email-panel .email {
    font-weight: 500; }

.main-panel-content {
  position: relative; }

.registration-password-helper {
  background: #F9FAFC;
  border-radius: 0 4px 4px 0;
  height: 170px;
  position: absolute;
  right: -251px;
  top: 80px;
  width: 250px;
  border: 1px solid var(--base-color-secondary-lighten2);
  border-left: none;
  padding: 15px;
  z-index: 10; }
  .registration-password-helper p {
    color: #353e4c; }
  .registration-password-helper .icon-cross-circle {
    color: #F04864; }
  .registration-password-helper .icon-checkmark-circle {
    color: #67C97E; }

.activity-log-dates .arrow-icon {
  color: #b1b6c1; }

.activity-log-dates .date-picker-box {
  width: 128px; }
  .activity-log-dates .date-picker-box .datetimepicker,
  .activity-log-dates .date-picker-box table.table-condensed {
    width: 235px; }
  .activity-log-dates .date-picker-box th {
    color: inherit;
    text-decoration: none; }
    .activity-log-dates .date-picker-box th.switch {
      background: transparent;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      display: table-cell; }
    .activity-log-dates .date-picker-box th[data-action]:hover {
      background: transparent; }
    .activity-log-dates .date-picker-box th[data-action] span.glyphicon, .activity-log-dates .date-picker-box th[data-action] .ng-table th.sortable.sort-asc span.sort-indicator:after, .ng-table th.sortable.sort-asc .activity-log-dates .date-picker-box th[data-action] span.sort-indicator:after, .activity-log-dates .date-picker-box th[data-action] .ng-table th.sortable.sort-desc span.sort-indicator:after, .ng-table th.sortable.sort-desc .activity-log-dates .date-picker-box th[data-action] span.sort-indicator:after {
      visibility: visible; }
  .activity-log-dates .date-picker-box td:hover {
    background-color: transparent; }
  .activity-log-dates .date-picker-box td a[data-action="togglePicker"] span {
    background-color: #3da4f3;
    color: #FFFFFF; }
  .activity-log-dates .date-picker-box td > span[data-action],
  .activity-log-dates .date-picker-box td > .hour,
  .activity-log-dates .date-picker-box td > .minute,
  .activity-log-dates .date-picker-box td > .month,
  .activity-log-dates .date-picker-box td > .year {
    border: 1px solid transparent; }
    .activity-log-dates .date-picker-box td > span[data-action]:hover,
    .activity-log-dates .date-picker-box td > .hour:hover,
    .activity-log-dates .date-picker-box td > .minute:hover,
    .activity-log-dates .date-picker-box td > .month:hover,
    .activity-log-dates .date-picker-box td > .year:hover {
      background: transparent;
      border: 1px solid #3da4f3; }
    .activity-log-dates .date-picker-box td > span[data-action].active,
    .activity-log-dates .date-picker-box td > .hour.active,
    .activity-log-dates .date-picker-box td > .minute.active,
    .activity-log-dates .date-picker-box td > .month.active,
    .activity-log-dates .date-picker-box td > .year.active {
      background: #3da4f3;
      text-shadow: none; }
  .activity-log-dates .date-picker-box td > .month,
  .activity-log-dates .date-picker-box td > .year {
    border-radius: 50%; }
  .activity-log-dates .date-picker-box .disabled {
    opacity: 0.5; }
  .activity-log-dates .date-picker-box td.day {
    background-color: transparent;
    border-radius: 100%;
    color: inherit;
    height: 33px;
    line-height: 33px;
    padding: 0px;
    position: relative;
    text-align: center;
    width: 33px; }
    .activity-log-dates .date-picker-box td.day.past, .activity-log-dates .date-picker-box td.day.future {
      color: #949cab; }
    .activity-log-dates .date-picker-box td.day.active {
      background: #3da4f3;
      color: #FFFFFF;
      display: inline-block;
      line-height: 33px;
      text-shadow: none; }
      .activity-log-dates .date-picker-box td.day.active:hover {
        background: #3da4f3; }
    .activity-log-dates .date-picker-box td.day:hover {
      background: none; }
      .activity-log-dates .date-picker-box td.day:hover:after {
        border: 1px solid #3da4f3;
        border-radius: 100%;
        content: " ";
        display: block;
        height: 33px;
        left: 0px;
        position: absolute;
        top: 0px;
        width: 33px; }
    .activity-log-dates .date-picker-box td.day.old {
      cursor: default;
      visibility: hidden; }
    .activity-log-dates .date-picker-box td.day.new {
      cursor: default;
      display: none;
      visibility: hidden; }
    .activity-log-dates .date-picker-box td.day:before {
      display: none; }

.table-buttons-holder {
  padding-right: 4px;
  padding-top: 6px; }

table.table .date-time-field {
  min-width: 175px; }

.substring-html + .tooltip .tooltip-inner {
  max-width: 250px;
  word-wrap: break-word; }

.account-activity-subtitle.tmr-subtitle-area {
  margin-top: 10px; }

.account-activity-subtitle .activity-log-link {
  font-size: 22px; }

.risk-content {
  margin-top: 15px; }

.reports-box {
  color: black;
  border: solid #b4bdcb 1px;
  background-color: white;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 4px;
  position: relative;
  overflow: hidden; }
  @media (min-width: 200px) {
    .reports-box {
      min-height: 184px; } }
  @media (max-width: 199px) {
    .reports-box {
      min-height: 80px; } }

@media (max-width: 199px) {
  .reports-box-on-mouse-over-container {
    visibility: hidden; } }

@media (min-width: 200px) {
  .reports-box-on-mouse-over-container {
    position: relative;
    height: 180px;
    overflow: hidden;
    cursor: pointer; }
  :root .reports-box:hover .reports-box-on-mouse-over {
    height: 180px \0/ IE9;
    margin-top: 0 \0/ IE9; }
  .reports-box-on-mouse-over-container:hover .reports-box-on-mouse-over {
    height: 180px;
    margin-top: 0; }
  .reports-box-on-mouse-over {
    background-color: rgba(255, 255, 255, 0.94);
    text-align: center;
    z-index: 2;
    width: 100%;
    height: 0;
    margin-top: 180px;
    border-radius: 4px;
    position: relative;
    color: black;
    cursor: pointer;
    -webkit-transition: all linear 0.15s;
    transition: all linear 0.15s; } }

.reports-create-box {
  color: black;
  border: dashed #C8D2DA 2px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 4px;
  position: relative; }
  @media (min-width: 200px) {
    .reports-create-box {
      text-align: center;
      min-height: 184px; } }
  @media (max-width: 199px) {
    .reports-create-box {
      text-align: left;
      min-height: 80px; } }
  .reports-create-box .reports-name {
    font-weight: 500;
    font-size: 18px; }

.reports-create-box:hover {
  background-color: white;
  border: solid white 1px;
  cursor: pointer; }

.reports-create-box:hover .reports-name {
  color: #3da4f3;
  -webkit-text-decoration-color: #F1F4F9;
          text-decoration-color: #F1F4F9; }

@media (min-width: 200px) {
  .reports-box-create-content {
    width: 100%;
    transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    text-align: center; } }

@media (max-width: 199px) {
  .reports-name-mobile {
    transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    position: absolute;
    vertical-align: middle !important;
    font-size: 1.5em !important;
    top: 47%;
    left: 50px; } }

@media (max-width: 199px) {
  .reports-box-create-content .reports-new-icon, .reports-box-create-content .reports-name {
    display: inline-block;
    padding-left: 15px; } }

.reports-box-content {
  text-overflow: ellipsis;
  text-align: center;
  position: absolute;
  padding: 10px; }
  @media (min-width: 200px) {
    .reports-box-content {
      bottom: 0;
      left: 0;
      width: 100%;
      height: 37%; } }
  @media (max-width: 199px) {
    .reports-box-content {
      top: 0;
      right: 0;
      width: 70%;
      height: auto; } }

.reports-box-content-on-mouse-over {
  text-overflow: ellipsis;
  width: 100%;
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  height: 30%;
  padding: 10px; }

.reports-icon {
  font-size: 2.5em; }

.reports-category-image-box {
  padding: 5px;
  position: absolute;
  overflow: hidden; }
  @media (min-width: 200px) {
    .reports-category-image-box {
      top: 0;
      left: 0;
      width: 100%; } }
  @media (max-width: 199px) {
    .reports-category-image-box {
      top: 0;
      left: 0;
      height: auto;
      width: 30%; } }

.reports-category-image-content {
  position: relative;
  text-align: center;
  height: 100%; }
  @media (min-width: 200px) {
    .reports-category-image-content {
      vertical-align: middle; } }
  @media (max-width: 199px) {
    .reports-category-image-content {
      text-align: left; } }

@media (min-width: 200px) {
  .reports-category-image-content img {
    max-height: 100%;
    max-width: 100%; } }

@media (max-width: 199px) {
  .reports-category-image-content img {
    max-height: 80px;
    max-width: 100%; } }

.reports-name {
  font-size: 16px;
  color: #353e4c; }

.reports-new-icon {
  font-size: 38px;
  color: #3da4f3; }
  @media (max-width: 199px) {
    .reports-new-icon {
      transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      -webkit-transform: translate(0, -50%);
      position: absolute;
      top: 50%; } }

.two-line-title {
  display: block;
  display: -webkit-box;
  max-height: 48px;
  margin: 0 10px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; }

.four-line-title {
  display: block;
  display: -webkit-box;
  text-align: center;
  max-height: 96px;
  margin: 15px 10px 0;
  font-size: 1.2em;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; }

.three-line-description {
  display: block;
  display: -webkit-box;
  max-height: 56px;
  margin: 0 auto;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; }

.report-description {
  position: absolute;
  left: 0;
  top: 30%;
  height: 32%;
  padding: 10px;
  color: #353e4c; }

.report-footer {
  position: absolute;
  left: 0;
  right: 0;
  top: 58%;
  height: 40%;
  padding: 10px; }

.report-template-box {
  position: relative;
  background-color: white;
  width: 100%;
  border: white solid 1px;
  border-radius: 4px;
  margin-top: 15px;
  padding: 10px; }
  @media (min-width: 200px) {
    .report-template-box {
      height: 130px;
      text-align: center; } }
  @media (max-width: 199px) {
    .report-template-box {
      text-align: left;
      border-radius: 4px;
      height: 70px; } }

@media (max-width: 199px) {
  .report-template-box .template-icon {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%); } }

@media (min-width: 200px) {
  .report-template-box .template-icon {
    position: absolute;
    top: 50%;
    transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%); } }

@media (max-width: 199px) {
  .report-template-box .report-template-name {
    position: absolute;
    top: 50%;
    left: 70px;
    width: 50%;
    transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%); } }

.report-template-box:hover, .report-template-box.active {
  border: #3da4f3 solid 1px;
  cursor: pointer; }

input:focus, div[contenteditable]:focus, .report-template-box:focus, .reports-create-box:focus, .multiple-select-box:focus,
.reports-box:focus {
  border: #3da4f3 solid 1px;
  border-radius: var(--base-spacing-input-border-radius);
  outline: none; }

.btn:focus {
  border: #3da4f3 solid 1px;
  border-radius: 80px;
  outline: none; }

.report-template-box .template-icon {
  color: #3da4f3; }
  @media (min-width: 200px) {
    .report-template-box .template-icon {
      font-size: 5em; } }
  @media (max-width: 199px) {
    .report-template-box .template-icon {
      font-size: 3em; } }

.report-template-box .report-template-name {
  color: #353e4c; }

.report-template-selected-icon {
  position: absolute;
  padding: 3px; }
  @media (min-width: 200px) {
    .report-template-selected-icon {
      top: 0;
      right: 0;
      border-radius: 4px;
      background-color: #3da4f3; } }
  @media (max-width: 199px) {
    .report-template-selected-icon {
      top: 50%;
      transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      -webkit-transform: translate(0, -50%);
      right: 10px;
      background-color: transparent; } }

.report-template-selected-icon .icon-checkmark-circle {
  font-size: 2em; }
  @media (min-width: 200px) {
    .report-template-selected-icon .icon-checkmark-circle {
      color: white; } }
  @media (max-width: 199px) {
    .report-template-selected-icon .icon-checkmark-circle {
      color: #3da4f3; } }

@media (min-width: 200px) {
  .report-template-box-extra-margin {
    margin-top: 15px;
    margin-bottom: 15px; } }

@media (max-width: 199px) {
  .app-page-title .icon-chevrons-expand-vertical {
    float: right;
    font-size: 1.3em !important; } }

.welcome-message-image {
  max-width: 100%;
  max-height: 100%;
  margin-top: 20px; }
  @media (max-width: 199px) {
    .welcome-message-image {
      display: block;
      margin-left: auto;
      margin-right: auto; } }

.feedback-info {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: -10px;
  padding: 10px;
  background-color: #F1F4F9;
  border: #949cab 1px solid;
  border-radius: 4px; }

.feedback-info span#feedback-text {
  padding-right: 300px; }

.reports-dropdown {
  font-size: 14px;
  font-weight: normal;
  position: relative; }
  @media (min-width: 200px) {
    .reports-dropdown {
      float: right;
      display: inline-block;
      margin-bottom: 10px;
      margin-top: 10px; } }
  @media (max-width: 199px) {
    .reports-dropdown {
      display: block;
      float: right;
      margin-bottom: 8px; } }
  .reports-dropdown label {
    font-weight: 400;
    margin: 0 5px 0 20px;
    vertical-align: middle; }
  .reports-dropdown .app-input-form {
    display: inline-block;
    vertical-align: middle;
    min-width: 180px; }
    .reports-dropdown .app-input-form .ui-select-toggle {
      color: #353e4c; }
    .reports-dropdown .app-input-form .divider {
      margin: 7px 0; }
    .reports-dropdown .app-input-form .ui-select-choices-group-label {
      display: none; }
    .reports-dropdown .app-input-form .ui-select-choices {
      width: inherit; }

.reports-dropdown:hover {
  cursor: pointer; }

.chevron-icon {
  position: absolute;
  right: 8px;
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.reports-section-header {
  margin-bottom: 24px; }
  .reports-section-header h3 {
    border-bottom: #e5e6e8 1px solid;
    padding-bottom: 8px;
    margin-bottom: 0; }
  .reports-section-header .icon {
    font-size: 17px;
    color: var(--base-color-secondary-lighten2);
    cursor: pointer; }

.ct-container-center {
  border: 1px solid var(--base-color-border);
  padding: 15px; }

.ct-description {
  padding: 20px 30px; }

.ct-password {
  padding: 20px 30px; }

.ct-button-panel {
  padding: 0px 15px; }

.upload-label {
  color: #353e4c; }

.upload-box {
  height: 280px;
  width: 330px;
  background-color: #F1F4F9;
  border-radius: 4px;
  border: 2px dashed #3da4f3;
  text-align: center; }

.upload-area {
  position: relative;
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
  overflow: auto; }

.upload-box-icon {
  color: #3da4f3;
  font-size: 7em;
  margin-top: 10px; }

.upload-text {
  margin-top: -8px;
  font-size: 16px;
  color: #353e4c; }
  .upload-text span {
    display: block; }

.company-assign {
  color: #353e4c;
  margin-bottom: 15px; }
  .company-assign *:not(.switch) {
    -webkit-transition: none !important;
    transition: none !important; }
  .company-assign .tmr-display-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .company-assign .account-name-container {
    height: 67px;
    overflow: hidden; }

.upload-help {
  font-style: italic;
  padding: 0 20px;
  margin-bottom: 20px; }

.upload-box.drag-over-photo {
  -webkit-transition: all .51s;
  transition: all .51s;
  background: #fcfcfe;
  border: #2599f2 dashed 2px;
  position: relative;
  overflow: hidden; }

.upload-box.drag-over-photo .upload-text {
  -webkit-transition: all .51s;
  transition: all .51s;
  color: #3da4f3;
  font-weight: 500; }

.upload-buttons button {
  margin-top: 8px;
  margin-bottom: 13px; }

.upload-buttons .btn-primary {
  margin-right: 0; }

.account-image {
  height: 160px;
  width: 330px;
  border: 1px solid #e5e6e8;
  border-radius: 4px; }

.cropped-image {
  width: 100%;
  border: 1px solid #e5e6e8;
  border-radius: 4px; }

.label-me {
  border-radius: 10px;
  background: var(--base-color-secondary-lighten);
  color: #FFFFFF;
  font-size: 11px;
  margin-left: 4px;
  padding: 3px 6px;
  line-height: 10px; }

.change-image-text {
  font-size: 16px;
  margin-top: 10px; }
  @media (max-width: 299px) {
    .change-image-text {
      text-align: left; } }
  @media (min-width: 300px) {
    .change-image-text {
      text-align: center; } }

.modal-account-created .modal-dialog {
  width: 530px; }

.modal-account-created .modal-body {
  padding: 20px;
  overflow: hidden; }

.modal-account-created button {
  margin-top: 0; }

.modal-account-created button:last-child {
  margin-right: 0; }

.create-new-account-form .create-acc-info {
  font-size: 16px; }

.create-new-account-form .request-account-access .btn-primary {
  float: right;
  margin-right: 0; }

.create-new-account-form .request-acc-info {
  font-size: 24px;
  margin-bottom: -10px; }

.create-new-account-form .request-to-join-acc-sent {
  text-align: center;
  margin: 50px auto; }
  .create-new-account-form .request-to-join-acc-sent h3 {
    font-size: 24px; }
  .create-new-account-form .request-to-join-acc-sent p {
    font-size: 16px; }
  .create-new-account-form .request-to-join-acc-sent .requested-account {
    font-weight: 500; }

.logout-link {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  margin-top: 10px;
  padding: 0;
  color: var(--base-color-text);
  font-weight: normal;
  line-height: 20px;
  vertical-align: middle;
  border-color: transparent; }
  .logout-link:hover,
  .logout-link:hover > span, .logout-link:active,
  .logout-link:active > span, .logout-link:focus,
  .logout-link:focus > span {
    outline: none;
    border-color: transparent !important;
    color: var(--base-color-text);
    text-decoration: none !important; }

.logout-icon {
  height: 16px; }

.confirm-delete-btns button {
  font-size: 0.8em !important; }
  @media (max-width: 199px) {
    .confirm-delete-btns button {
      width: 100%; } }

.confirm-delete-btns {
  width: 170px;
  padding: 0 15px 15px 15px;
  text-align: center; }

.trash-icon {
  font-size: 1.4em;
  color: #cdd1d8;
  padding-right: 4px; }

.ui-select-choices-group {
  z-index: 5; }

.hidden-chart-prev {
  background-size: 100% auto;
  height: 400px;
  width: 100%; }

.hidden-chart-prev.line-chart-prev {
  background: url(assets/hidden-line.jpg?) center no-repeat; }

.hidden-chart-prev.pie-chart-prev {
  background: url(assets/hidden-pie.jpg?) center no-repeat; }

.hidden-chart-prev.bar-chart-prev {
  background: url(assets/hidden-bar.jpg?) center no-repeat; }

.hidden-chart-prev.location-prev {
  background: url(assets/locations-prev.jpg?) center no-repeat; }

.add-filters-message {
  text-align: center;
  padding-top: 150px; }

.hidden-chart-prev i {
  font-size: 4em;
  color: #b1b6c1; }

.hidden-chart-prev h4 {
  margin-top: 30px;
  color: #b1b6c1;
  font-weight: 600; }

.filters-tab {
  padding-top: 0; }

.popover {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 4px; }

.report-top-filters, .report-top-filters-with-map {
  position: relative;
  background-color: white;
  border-radius: 4px;
  border: solid 1px #c3cad5; }
  @media (min-width: 300px) {
    .report-top-filters, .report-top-filters-with-map {
      height: 80px; } }
  @media (min-width: 200px) and (max-width: 299px) {
    .report-top-filters, .report-top-filters-with-map {
      height: 160px; } }
  @media (max-width: 199px) {
    .report-top-filters, .report-top-filters-with-map {
      height: 240px; } }

@media (min-width: 400px) {
  .report-top-filters-with-map {
    height: 80px; } }

@media (min-width: 300px) and (max-width: 399px) {
  .report-top-filters-with-map {
    height: 80px; } }

@media (min-width: 200px) and (max-width: 299px) {
  .report-top-filters-with-map {
    height: 160px; } }

@media (max-width: 199px) {
  .report-top-filters-with-map {
    height: 320px; } }

@media (max-width: 199px) {
  .report-top-filters.tmr-read-only, .tmr-read-only.report-top-filters-with-map {
    height: 160px !important; } }

.report-filter-area {
  position: relative;
  min-height: 80px;
  padding-top: 10px; }
  .report-filter-area .date-picker-box {
    max-width: 44%; }

@media (min-width: 300px) {
  .right-separator {
    border-right: solid 1px #b4bdcb; } }

.filter-label {
  color: #353e4c;
  font-weight: bold; }

.datepicker-arrow-right {
  padding-left: 1px;
  padding-right: 1px; }

.report-container {
  border: solid 1px #c3cad5;
  margin-top: 5px; }

.report-area {
  border: 1px solid #b4bdcb;
  border-radius: 4px; }

.report-area.no-border {
  border: none !important; }

.char-box {
  padding: 20px; }

.report-action-buttons {
  margin: 0;
  display: inline-block;
  border-left: 1px solid #b4bdcb;
  border-bottom: 1px solid #b4bdcb;
  border-radius: 4px;
  background: white;
  /* For browsers that do not support gradients */
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: -webkit-gradient(linear, left bottom, left top, from(#F1F4F9), to(#fcfcfe));
  background: linear-gradient(to top, #F1F4F9, #fcfcfe);
  /* Standard syntax */ }
  .report-action-buttons .delete-btn .report-action-icon {
    pointer-events: none; }

a[href].report-btn,
.report-btn {
  color: #353e4c;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 8px 12px;
  border-right: 1px solid #b4bdcb;
  margin-left: -4px; }

a[href].report-btn,
.report-btn, a[href].report-btn:focus {
  outline: none; }

.report-btn:hover {
  background: #c3cad5;
  cursor: pointer; }

.report-btn.no-hover:hover {
  background: transparent !important;
  cursor: default !important; }

.report-btn:hover span.report-action-icon {
  color: #3da4f3; }

.report-btn:last-of-type {
  border-right: none; }

.report-action-icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px; }

.report-action-red:hover span.report-action-icon {
  color: #F04864; }

.report-btn.temp-disabled:hover {
  cursor: not-allowed; }

.report-action-text {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
  padding-right: 20px; }

.create-report-title-position {
  padding: 20px 20px 0 20px; }

.create-report-desc-position {
  padding: 0 20px 20px 20px; }

.report-name-not-empty {
  font-size: 18px;
  color: #353e4c;
  width: auto;
  margin: auto;
  display: inline-block;
  border: 1px solid transparent; }

.report-desc-not-empty {
  font-size: 16px;
  color: #353e4c;
  width: auto;
  margin: auto;
  display: inline-block;
  border: 1px solid transparent; }

.report-name-not-empty:hover, .report-name-empty:hover, .report-desc-not-empty:hover, .report-desc-empty:hover {
  border: 1px solid #b4bdcb;
  border-radius: 4px;
  opacity: 1; }

.report-desc-not-empty.no-hover-border {
  border: none; }

.report-name-not-empty:focus, .report-desc-not-empty:focus {
  border: 1px solid #3da4f3;
  border-radius: 4px; }

.report-name-empty, .report-desc-empty {
  font-style: italic;
  opacity: 0.7;
  border: 1px solid transparent; }

.report-name-empty:focus, .report-desc-empty:focus {
  border: 1px solid #3da4f3;
  border-radius: 4px;
  font-style: normal;
  opacity: 1; }

.report-saved:after {
  content: "Saved"; }

.report-saving:after {
  content: "Saving..."; }

.show-saving-loader {
  width: auto; }

.hide-saving-loader {
  width: 0; }

.impact-select {
  width: 100%;
  border: #b4bdcb 1px solid;
  color: #353e4c;
  font-weight: 500;
  outline: none;
  border-radius: 4px;
  padding: 4px;
  height: 36px;
  background: white; }

.report-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: white;
  margin-top: 5px;
  border: solid 1px #c3cad5;
  border-radius: 4px; }
  @media (min-width: 200px) {
    .report-navigation {
      padding: 12px 10px; } }
  @media (max-width: 199px) {
    .report-navigation {
      padding: 5px !important; } }

.report-nav-text {
  text-decoration: underline;
  padding-left: 8px;
  font-size: 1em;
  vertical-align: middle; }

.report-nav-icon {
  color: #3da4f3;
  font-size: 1.2em; }

.back-to-dashboard:hover * {
  cursor: pointer;
  color: #3da4f3; }

.back-to-dashboard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.new-report-icon {
  font-size: 1.2em;
  vertical-align: middle;
  color: #3da4f3; }

.new-report-from-create-state-select:hover {
  cursor: pointer;
  background-color: #bfe1fb;
  color: #3da4f3; }

.new-report-from-create-state-select:first-of-type {
  border-bottom: 1px solid #e7f2f6; }

.new-report-from-create-state-select {
  padding: 0 12px;
  border: none; }

.btn-padding-icon {
  padding-left: 56px;
  padding-right: 56px; }

@media (min-width: 200px) {
  .applyFiltersTootltipBox {
    float: right;
    display: inline-block; } }

.tmr-random-msg {
  text-align: center;
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: 61%; }

.source-line {
  margin-top: -100px; }

.tmr-random-msg-wait {
  font-size: 20px;
  font-weight: 500;
  color: #353e4c; }

.tmr-random-msg-random {
  margin-top: 8px;
  color: #353e4c;
  font-size: 14px; }

@media (min-width: 200px) {
  .filter-minus-left {
    padding-left: 0 !important; } }

.share-report-modal .row {
  margin-bottom: 0 !important; }

.dashboard-buttons {
  margin-bottom: 30px; }

.page-with-no-background > .dashboard-title {
  margin: -10px 0 0; }

.dashboard-widgets {
  margin-bottom: 50px; }

.task-manager-widget {
  padding-right: 0px; }

.task-manager-widget {
  padding-left: 30px; }

.dashboard-widgets #document-upload {
  width: 0px;
  height: 0px;
  visibility: hidden;
  position: absolute; }

.dashboard-button {
  background-color: white;
  border: 1px solid var(--base-color-secondary-lighten2);
  border-radius: 4px;
  color: #3da4f3;
  display: block;
  padding: 50px 0;
  text-align: center; }
  .dashboard-button:hover, .dashboard-button:focus {
    border-color: #3da4f3;
    cursor: pointer;
    text-decoration: none; }
  .dashboard-button:focus * {
    text-decoration: none; }
  .dashboard-button [class^="icon-"],
  .dashboard-button [class*="icon-"] {
    font-size: 80px; }
  .dashboard-button .dashboard-button-label {
    font-size: 16px;
    font-weight: bolder;
    margin-top: 15px; }

.app-managed .managed-by {
  margin-top: 35px; }

.app-managed .image {
  margin-top: 50px; }

.dashboard-widget {
  background-color: #FFFFFF;
  border: 1px solid var(--base-color-text-lighten3);
  border-radius: 17px;
  height: 275px;
  margin: 10px 0; }
  .dashboard-widget .widget-header {
    margin-bottom: 15px; }
    .dashboard-widget .widget-header h2 {
      float: left; }
    .dashboard-widget .widget-header .header-button {
      float: right;
      margin-top: 0px; }
      .dashboard-widget .widget-header .header-button.btn {
        font-size: 16px;
        line-height: 14px;
        display: block;
        padding: 25px;
        padding-top: 12px;
        padding-bottom: 12px; }
      .dashboard-widget .widget-header .header-button + .header-button {
        margin-right: 10px; }
    .dashboard-widget .widget-header .btn-refresh span {
      font-size: 29px; }
  .dashboard-widget h2 {
    color: #3B3E53;
    font-size: 22px;
    font-weight: 500;
    margin-top: 0px; }
  .dashboard-widget > div {
    padding: 20px; }
    .dashboard-widget > div.dashboard-widget-header {
      border-bottom: 1px solid #F1F4F9;
      position: relative; }
      .dashboard-widget > div.dashboard-widget-header.dashboard-widget-header-dropdown {
        padding: 12px 20px; }
        .dashboard-widget > div.dashboard-widget-header.dashboard-widget-header-dropdown .dropdown {
          display: -webkit-inline-box;
          display: -ms-inline-flexbox;
          display: inline-flex; }
        .dashboard-widget > div.dashboard-widget-header.dashboard-widget-header-dropdown .ui-select-toggle {
          font-weight: 500;
          padding-right: 30px; }
        .dashboard-widget > div.dashboard-widget-header.dashboard-widget-header-dropdown .view-all-link {
          display: -webkit-inline-box;
          display: -ms-inline-flexbox;
          display: inline-flex;
          font-size: 16px;
          margin-left: 5px;
          vertical-align: middle; }
      .dashboard-widget > div.dashboard-widget-header > .popover {
        left: 412px !important; }
        .dashboard-widget > div.dashboard-widget-header > .popover .arrow {
          left: 83%; }
      .dashboard-widget > div.dashboard-widget-header h3 {
        display: inline-block;
        margin: 0px; }
        .dashboard-widget > div.dashboard-widget-header h3 span.all-items {
          display: -webkit-inline-box;
          display: -ms-inline-flexbox;
          display: inline-flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-weight: normal;
          font-size: 16px; }
      .dashboard-widget > div.dashboard-widget-header .btn-add {
        height: 41px;
        line-height: 41px;
        margin-top: 0;
        position: absolute;
        right: 20px;
        top: 10px;
        width: 41px; }
        .dashboard-widget > div.dashboard-widget-header .btn-add span {
          font-size: 36px;
          font-weight: 100;
          left: 12px;
          position: absolute;
          top: -1px; }
      .dashboard-widget > div.dashboard-widget-header .tooltip.tooltip-lighter .tooltip-inner {
        white-space: nowrap; }
      .dashboard-widget > div.dashboard-widget-header .kpi-info {
        border-radius: 100%;
        color: #9B58B9;
        cursor: pointer;
        float: left;
        font-size: 15px;
        position: relative;
        text-align: center;
        top: 3px; }
        .dashboard-widget > div.dashboard-widget-header .kpi-info + .tooltip {
          opacity: 0.95; }
          .dashboard-widget > div.dashboard-widget-header .kpi-info + .tooltip .tooltip-inner {
            background-color: #9B58B9;
            padding: 10px; }
          .dashboard-widget > div.dashboard-widget-header .kpi-info + .tooltip .tooltip-arrow {
            border-top-color: #9B58B9; }
    .dashboard-widget > div.dashboard-widget-content table {
      border-bottom: 1px solid #ddd; }
      .dashboard-widget > div.dashboard-widget-content table th {
        text-decoration: none; }
      .dashboard-widget > div.dashboard-widget-content table.ng-table th.sortable .sort-indicator:after {
        background-color: #FFFFFF; }
      .dashboard-widget > div.dashboard-widget-content table .status-field {
        text-transform: capitalize; }
      .dashboard-widget > div.dashboard-widget-content table .ul-status {
        text-transform: capitalize; }
    .dashboard-widget > div.dashboard-widget-content .report-holder {
      float: left;
      width: 250px; }
    .dashboard-widget > div.dashboard-widget-content .reports-box {
      border: 1px solid #b4bdcb;
      height: 250px; }
      .dashboard-widget > div.dashboard-widget-content .reports-box .reports-box-content {
        border: none;
        height: 25%;
        width: 100%; }
      .dashboard-widget > div.dashboard-widget-content .reports-box .reports-box-on-mouse-over-container {
        height: 250px; }
        .dashboard-widget > div.dashboard-widget-content .reports-box .reports-box-on-mouse-over-container .reports-box-on-mouse-over {
          height: 250px; }
      .dashboard-widget > div.dashboard-widget-content .reports-box .report-footer {
        width: 100%; }
        .dashboard-widget > div.dashboard-widget-content .reports-box .report-footer button {
          display: inline-block; }
      .dashboard-widget > div.dashboard-widget-content .reports-box * {
        text-align: center; }
    .dashboard-widget > div.dashboard-widget-content .reports-category-image-box {
      height: 170px;
      margin: 5px;
      overflow: hidden;
      width: 230px; }
    .dashboard-widget > div.dashboard-widget-content .reports-category-image-content {
      float: right;
      height: 170px;
      position: relative;
      right: 50%; }
      .dashboard-widget > div.dashboard-widget-content .reports-category-image-content img {
        height: 170px;
        max-width: none;
        position: relative;
        right: -50%;
        width: auto; }
    .dashboard-widget > div.dashboard-widget-content .no-data {
      margin-top: 100px;
      text-align: center; }
    .dashboard-widget > div.dashboard-widget-content .kpi-widget {
      background-color: #f9f5fb;
      border-radius: 100%;
      display: inline-block;
      height: 175px;
      overflow: hidden;
      position: relative;
      width: 175px; }
      .dashboard-widget > div.dashboard-widget-content .kpi-widget .kpi-content {
        height: 100%;
        left: 0px;
        position: absolute;
        text-align: center;
        top: 0px;
        -webkit-transition: top 0.5s;
        transition: top 0.5s;
        width: 100%; }
        .dashboard-widget > div.dashboard-widget-content .kpi-widget .kpi-content .kpi-value {
          color: #435b7d;
          display: block;
          font-size: 35px;
          font-weight: 600;
          line-height: 1;
          margin-bottom: 5px;
          margin-top: 50px; }
        .dashboard-widget > div.dashboard-widget-content .kpi-widget .kpi-content .kpi-name {
          color: #333e4e;
          display: block;
          font-size: 16px;
          font-weight: 500;
          line-height: 1.3;
          margin-left: auto;
          margin-right: auto;
          text-transform: uppercase;
          width: 125px; }
        .dashboard-widget > div.dashboard-widget-content .kpi-widget .kpi-content.kpi-hover {
          top: 175px; }
        .dashboard-widget > div.dashboard-widget-content .kpi-widget .kpi-content.dual-line .kpi-value {
          margin-top: 39px; }
    .dashboard-widget > div.dashboard-widget-content .kpi-widget-holder {
      width: 100%;
      text-align: center; }
      .dashboard-widget > div.dashboard-widget-content .kpi-widget-holder:hover .has-hover .kpi-content.kpi-visible {
        top: -175px; }
      .dashboard-widget > div.dashboard-widget-content .kpi-widget-holder:hover .has-hover .kpi-content.kpi-hover {
        top: 0px; }
  .dashboard-widget.dashboard-kpi-widget {
    position: relative; }
    .dashboard-widget.dashboard-kpi-widget .no-data {
      margin-top: 100px;
      text-align: center; }
    .dashboard-widget.dashboard-kpi-widget h3 {
      float: left;
      padding-right: 5px; }

.dashboard-image h2 a {
  margin-top: -5px; }

.dashboard-image .image {
  line-height: 210px;
  text-align: center; }

.dashboard-image img {
  width: 100%; }

.dashboard-image .no-image {
  width: 100%; }

.help-widget h2 {
  margin-bottom: 15px; }

.help-widget .dashboard-widget {
  background-color: #f9f5fb;
  background-image: url(assets/widget_background.png?);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain; }

.help-widget a {
  font-size: 18px;
  font-weight: 600;
  line-height: 2.28;
  color: #ab53e3;
  display: block; }

.dashboard-partner-account > .col-md-6 {
  background-color: #FFFFFF; }

.dashboard-partner-account .image {
  text-align: center; }
  .dashboard-partner-account .image img {
    width: 100%; }
  .dashboard-partner-account .image .no-image {
    width: 100%;
    color: #b4bdcb;
    font-size: 150px;
    line-height: 210px;
    opacity: 0.75; }

.dashboard-partner-account .partner-account-notes {
  overflow: hidden;
  text-overflow: ellipsis; }

.dashboard-partner-account .managed-by {
  padding-right: 0; }
  .dashboard-partner-account .managed-by h3 {
    font-size: 15px;
    margin-bottom: 8px; }
  .dashboard-partner-account .managed-by .switch-btn {
    font-weight: 400;
    margin-top: 3px; }
  .dashboard-partner-account .managed-by .default-organisation-name {
    font-weight: 500; }

.dashboard-items-count.items-limit-reached {
  color: #F04864; }

.th-access-rights {
  width: 21%; }

.list-group-item.select-all-item {
  height: 53px;
  line-height: 31px; }

#select-users-container {
  margin-right: 4px;
  width: calc(100% - 100px); }

#select-users-container tags-input .host {
  margin: 0;
  min-height: 42px; }

#select-users-container tags-input .tags {
  border-color: var(--base-color-secondary-lighten2);
  min-height: 42px; }
  #select-users-container tags-input .tags .input {
    margin-top: 7px; }

.page-with-white-background.replace-document-page {
  padding-bottom: 0; }
  .page-with-white-background.replace-document-page .app-page-content {
    margin-top: 37px; }
  .page-with-white-background.replace-document-page .du-not-applicable {
    margin-right: 0; }
  .page-with-white-background.replace-document-page .du-replacement-text {
    margin-top: 60px; }
  .page-with-white-background.replace-document-page .warning-alert {
    margin-top: 25px; }

.list-group-item.selected {
  background-color: #FAF7E4; }

#invite-users-container,
#select-users-container {
  margin-right: 4px;
  width: calc(100% - 100px); }

#invite-users-container tags-input .host,
#select-users-container tags-input .host {
  margin: 0;
  min-height: 42px; }

#invite-users-container tags-input .tags,
#select-users-container tags-input .tags {
  border-color: var(--base-color-secondary-lighten2);
  min-height: 42px; }
  #invite-users-container tags-input .tags .input,
  #select-users-container tags-input .tags .input {
    margin-top: 7px; }

.page-with-white-background.replace-document-page {
  padding-bottom: 0; }
  .page-with-white-background.replace-document-page .app-page-content {
    margin-top: 37px; }
  .page-with-white-background.replace-document-page .du-not-applicable {
    margin-right: 0; }
  .page-with-white-background.replace-document-page .du-replacement-text {
    margin-top: 60px; }
  .page-with-white-background.replace-document-page .warning-alert {
    margin-top: 25px; }
  .page-with-white-background.replace-document-page .tmr-button-group {
    margin-top: 25px; }

.replace-document-filenames {
  background-color: #F1F4F9;
  border-bottom: 1px solid var(--base-color-secondary-lighten2);
  border-top: 1px solid var(--base-color-secondary-lighten2);
  font-size: 16px;
  padding-bottom: 10px;
  padding-top: 8px; }
  .replace-document-filenames .icon-exit-left {
    font-size: 20px;
    position: absolute;
    right: -6px;
    top: 1px; }

.permission-select {
  margin-bottom: 15px;
  margin-left: 2px; }
  .permission-select label.permission {
    cursor: pointer;
    font-weight: normal;
    margin-right: 30px;
    line-height: 35px; }
    .permission-select label.permission span.icon {
      font-size: 22px;
      position: relative;
      top: 2px;
      display: inline-block;
      margin-left: 10px;
      margin-right: 5px; }
      .permission-select label.permission span.icon.icon-pencil5 {
        font-size: 18px;
        top: 1px; }
    .permission-select label.permission span.text {
      position: relative;
      top: -2px; }
    .permission-select label.permission.disabled {
      opacity: 0.67; }

.invited-users .permission-select {
  margin-top: 25px; }

.invited-users .email-address {
  margin-bottom: 15px; }

.group-name-autocomplete {
  font-weight: bold; }

.ie10 .invite-users-step {
  display: block; }
  .ie10 .invite-users-step #invite-users-container,
  .ie10 .invite-users-step #select-users-container {
    display: inline-block;
    width: calc(100% - 70px); }
  .ie10 .invite-users-step #select-role-container {
    display: inline-block;
    float: right; }

.animation-all-linear {
  -webkit-transition: all linear 0.15s;
  transition: all linear 0.15s; }

.center-vertical-absolute, .myNavbar, .tmr-loader-inline, #inside-right-controls {
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.center-horizontal-absolute {
  transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  left: 50%; }

.app-table .dtm-tagname {
  width: 60%; }

.app-table .dtm-global {
  display: table-cell;
  text-align: right;
  vertical-align: middle !important;
  width: 15px;
  padding: 0 0 0 12px !important;
  line-height: 24px; }

.app-table .dtm-globe-icon {
  -webkit-transform: scale(1.2);
          transform: scale(1.2); }

.app-table .dtm-cogicon {
  float: right; }

.app-table .dtm-modal-body {
  width: 100%;
  padding: 30px 20px; }

.app-table .dtm-modal-footer {
  padding: 20px;
  border-top: 1px solid #e5e5e5; }

.app-table .dtm-modal-button {
  margin-top: 0;
  margin-right: 15px;
  margin-left: 0; }

.app-table .dtm-warning {
  color: #d9534f;
  font-weight: bold; }

.app-table .count-zero {
  text-decoration: none;
  color: #949cab; }

.du-upload-box {
  width: 100%;
  border-radius: 4px;
  border: 2px dashed var(--base-color-primary);
  text-align: center; }
  .du-upload-box .upload-box-icon {
    margin-top: 0; }
  .du-upload-box .tmr-button-group {
    font-size: 14px; }

.du-text-bold {
  font-weight: bold; }

.du-text-italic {
  font-style: italic; }

.second-group .file-label {
  overflow: auto; }
  .second-group .file-label > label {
    color: #353e4c;
    margin-bottom: 0; }

.second-group .document-upload {
  padding-top: 45px; }

.du-filename-box-name {
  display: inline-block;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 4px;
  border: 1px solid var(--base-color-secondary-lighten2); }
  .du-filename-box-name .du-filename-icon {
    float: left;
    height: 50px;
    padding-top: 15px;
    text-align: center;
    width: 50px; }
    .du-filename-box-name .du-filename-icon.valid {
      background-color: #69C0AF; }
      .du-filename-box-name .du-filename-icon.valid span:before {
        content: "\E911"; }
    .du-filename-box-name .du-filename-icon.due_to_expire {
      background-color: orange; }
      .du-filename-box-name .du-filename-icon.due_to_expire span:before {
        content: "\E90E"; }
    .du-filename-box-name .du-filename-icon.expired, .du-filename-box-name .du-filename-icon.due_to_activate {
      background-color: #F04864; }
      .du-filename-box-name .du-filename-icon.expired span:before, .du-filename-box-name .du-filename-icon.due_to_activate span:before {
        content: "\E90F"; }
    .du-filename-box-name .du-filename-icon span {
      font-size: 21px; }
      .du-filename-box-name .du-filename-icon span::before {
        color: #fff; }
  .du-filename-box-name .du-filename-virus-icon {
    float: left;
    padding-left: 10px;
    padding-top: 16px; }
  .du-filename-box-name .du-filename-name {
    float: left;
    padding-left: 5px;
    padding-top: 15px; }
  .du-filename-box-name .du-filename-menu {
    float: right;
    font-size: 18px;
    height: 50px;
    padding-right: 0px;
    padding-top: 12px; }
    .du-filename-box-name .du-filename-menu a, .du-filename-box-name .du-filename-menu span {
      text-decoration: none; }
    .du-filename-box-name .du-filename-menu .arrow {
      left: auto;
      right: 22px; }

.du-filename-box-changeButton {
  margin: 0;
  display: inline-block;
  float: right; }

.du-extra-margin-bottom {
  margin-bottom: 25px; }

.du-not-applicable {
  margin-right: 45px; }

.du-date-picker-box {
  width: 100%; }

.du-date-picker-box ul {
  padding: 1px 10px;
  margin-bottom: 100px; }

.du-date-picker-box .btn {
  padding: 5px; }

.du-date-picker-box td:first-of-type {
  padding-left: 0; }

.du-date-picker-box td:last-of-type {
  padding-right: 0; }

.du-date-picker-box th small {
  color: #4e5560;
  font-size: 10px; }

.du-date-picker-box th {
  padding-left: 0 !important; }

.du-date-picker-box th:first-child {
  padding-left: 0; }

.du-date-picker-box th:last-child {
  padding-right: 0; }

.date-picker {
  width: 100% !important; }

.date-picker:disabled {
  background: var(--base-color-text-lighten4);
  color: #353e4c;
  cursor: not-allowed; }
  .date-picker:disabled:hover {
    border-color: #b4bdcb; }

textarea.description-textarea.form-control, tags-input textarea.description-textarea.tags {
  height: 90px; }

.du-uploading {
  padding: 100px 0;
  text-align: center; }

.du-uploading-info {
  font-size: 20px; }

.info-document-panel .form-small-box.invalid .multiple-select-box {
  border-color: #F04864; }

.info-document-panel .form-small-box.invalid .help-block {
  color: #F04864; }

.info-document-panel .multiple-select-box {
  padding: 3px;
  padding-right: 20px;
  white-space: nowrap; }
  .info-document-panel .multiple-select-box .multiple-select-box-area {
    overflow: hidden; }

.info-document-panel .multiple-select-dropdown .select-box-category-group:last-child hr.select-box-hr {
  display: none; }

.info-document-panel .date-picker-box table,
.replace-document-page .date-picker-box table {
  table-layout: fixed;
  width: 230px;
  margin-bottom: 0; }

.info-document-panel .date-picker-box .btn-sm, .info-document-panel .date-picker-box .btn-group-sm > .btn,
.replace-document-page .date-picker-box .btn-sm,
.replace-document-page .date-picker-box .btn-group-sm > .btn {
  padding: 0; }

.info-document-panel .date-picker-box .text-muted,
.replace-document-page .date-picker-box .text-muted {
  opacity: .5; }

.info-document-panel .tmr-subtitle-area .share-btn {
  margin-bottom: 0;
  margin-top: 8px; }

.du-invalid-date {
  border: #F04864 1px solid !important; }

.du-cog-icon {
  display: inline;
  float: right;
  padding-right: 20px; }

.du-replacement-text {
  margin-bottom: 20px;
  font-size: 15px; }

.du-replacement-filename {
  color: #3da4f3;
  word-break: break-all; }

.du-input-with-span {
  background: var(--base-color-text-lighten4);
  border: #b4bdcb 1px solid;
  border-radius: 4px;
  height: 36px;
  line-height: 36px;
  padding-left: 15px; }

.du-input-with-span:hover {
  cursor: not-allowed; }

.du-cogMenu {
  margin: 0 -12px; }

.du-menu-item:hover, tags-input .autocomplete .suggestion-item.selected,
tags-input .autocomplete .suggestion-item.selected em,
.du-menu-item-red:hover {
  background-color: #e7f4fe;
  color: #3da4f3;
  text-decoration: none;
  font-weight: 500; }

.du-menu-item-red:hover {
  color: #F04864; }

.du-menu-item,
.du-menu-item-red {
  white-space: nowrap;
  font-weight: normal;
  font-size: 14px;
  color: #4e5560;
  padding: 0 10px;
  width: 100%;
  display: block;
  line-height: 26px; }

.info-document-panel .date-picker-box thead .btn,
.replace-document-page .date-picker-box thead .btn {
  line-height: 24px;
  width: 100%; }

.info-document-panel .date-picker-box tbody .btn-sm, .info-document-panel .date-picker-box tbody .btn-group-sm > .btn,
.info-document-panel .date-picker-box tbody .btn-group-sm > .btn,
.replace-document-page .date-picker-box tbody .btn-sm,
.replace-document-page .date-picker-box tbody .btn-group-sm > .btn,
.replace-document-page .date-picker-box tbody .btn-group-sm > .btn {
  border-radius: 0px !important;
  height: 34px;
  margin: 0;
  padding: 0;
  width: 10px; }

.du.disabled {
  display: none; }

.info-document-panel .date-picker-box .btn-sm, .info-document-panel .date-picker-box .btn-group-sm > .btn,
.replace-document-page .date-picker-box .btn-sm,
.replace-document-page .date-picker-box .btn-group-sm > .btn {
  float: left !important; }

.upload-boxes-wrapper {
  margin-left: -15px; }

.replacement-box {
  margin-bottom: 15px; }

.replacement-upload-box {
  padding: 15px 15px 0 15px;
  text-align: left; }
  .replacement-upload-box .form-small-box {
    margin-bottom: 0; }
  .replacement-upload-box .input-text-error {
    margin-bottom: -15px;
    margin: 0;
    padding: 0; }
  .replacement-upload-box .input-form-with-enable-button .input-text-error {
    margin: 0;
    margin-top: -12px; }

.replacement-name-wrapper {
  padding-bottom: 15px; }
  .replacement-name-wrapper .replacement-name {
    float: left;
    font-size: 15px; }
  .replacement-name-wrapper .replacement-remove-icon {
    position: relative;
    display: block;
    color: #F04864;
    float: right;
    font-size: 20px;
    text-decoration: none; }

.du-document-replacement-file {
  margin-bottom: 15px; }
  .du-document-replacement-file .du-filename-icon {
    background-color: #b1b6c1; }
  .du-document-replacement-file .du-filename-name {
    padding-left: 0px;
    padding-top: 5px; }
    .du-document-replacement-file .du-filename-name .du-filename-virus-icon {
      line-height: 10px;
      padding-left: 0;
      padding-right: 5px;
      padding-top: 2px; }

.du-file-versions {
  margin-top: 15px; }
  .du-file-versions .du-filename-name {
    padding-left: 0px;
    padding-top: 5px; }
    .du-file-versions .du-filename-name .du-filename-virus-icon {
      line-height: 10px;
      padding-left: 0;
      padding-right: 5px;
      padding-top: 2px; }
  .du-file-versions .du-filename-box {
    border: 1px solid var(--base-color-secondary-lighten2);
    border-bottom: none; }
    .du-file-versions .du-filename-box:first-child {
      border-top-left-radius: 4px;
      border-top-right-radius: 4px; }
    .du-file-versions .du-filename-box:last-child {
      border-bottom-left-radius: 4px;
      border-bottom-right-radius: 4px;
      border-bottom: 1px solid var(--base-color-secondary-lighten2); }
  .du-file-versions .du-filename-box-name {
    border: none; }

.du-file-versions .document-replacement-dates,
.du-document-replacement-file .document-replacement-dates {
  font-weight: 400; }
  .du-file-versions .document-replacement-dates span,
  .du-document-replacement-file .document-replacement-dates span {
    font-weight: 500; }

.show-more-versions {
  text-align: center; }

.phone-prefix-container > .btn,
.phone-prefix-container + .ui-select-search {
  border-radius: 4px 0 0 4px !important; }

.phone-prefix-container[disabled] .form-control.btn[disabled]:hover, .phone-prefix-container[disabled] tags-input .btn.tags[disabled]:hover, tags-input .phone-prefix-container[disabled] .btn.tags[disabled]:hover,
.phone-prefix-container[disabled] .btn-default[disabled]:focus {
  background-color: var(--base-color-text-lighten4);
  border-color: #b4bdcb; }

.form-small-box .phone-prefix-container > .ui-select-toggle,
.form-small-box .phone-prefix-container + .ui-select-search {
  height: 36px;
  line-height: 36px; }

.iv-email-column {
  width: 250px; }

.page-footer {
  margin-top: 30px; }

.page-content {
  padding-top: 115px;
  position: relative;
  z-index: 1; }
  .page-content.with-breadcrumbs {
    padding-top: 135px; }

.main-logo {
  background: url(assets/Logo.svg?) center no-repeat;
  background-size: contain;
  margin: 74px 0;
  width: 100%;
  height: 51px; }

.tmr-logo-privacy {
  background: url(assets/Logo.svg?) #F1F4F9 center no-repeat;
  background-size: auto 40px;
  height: 70px;
  cursor: pointer; }

.top-page {
  position: relative;
  background-color: white;
  background-position: 100%;
  height: 100%;
  z-index: 1; }

.top-page-white {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: white;
  z-index: 1; }

.top-page-blue {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  height: 46px;
  background-color: #3da4f3;
  z-index: 1; }

.top-breadcrumbs-bottom-border {
  position: absolute;
  top: 116px;
  left: 0;
  right: 0;
  height: 31px;
  background-color: #F1F4F9;
  border-bottom: 1px #cdd8ea solid; }

.top-logo-and-user {
  height: 70px;
  line-height: 70px; }

.top-user {
  display: inline-block; }

.top-user {
  background-color: #F1F4F9;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  border-radius: 80px;
  border: solid #F1F4F9 8px;
  margin-top: -8px;
  height: 50px;
  position: relative;
  right: -8px;
  top: 18px; }

.top-user .avatar-img {
  margin-top: -39px;
  margin-left: -2px; }

.avatar-img {
  display: inline;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden; }

.avatar-img.no-image span {
  position: relative;
  padding: 8px;
  font-size: 24px;
  z-index: 1;
  color: #3da4f3;
  vertical-align: middle; }

.avatar-img.no-image span:after {
  position: absolute;
  top: 0px;
  left: -1px;
  background-color: #F1F4F9;
  content: '';
  z-index: -1;
  height: 100%;
  width: 100%;
  border: #F1F4F9 8px solid;
  border-radius: 50%;
  vertical-align: middle; }

.breadcrumbs-top {
  color: #353e4c;
  height: 31px;
  line-height: 31px;
  padding-left: 0px; }
  .breadcrumbs-top .breadcrumbs {
    line-height: 31px; }
    .breadcrumbs-top .breadcrumbs a {
      color: #3da4f3; }

.breadcrumbs-top ul {
  margin-bottom: 0; }

.breadcrumbs {
  line-height: 34px; }

.breadcrumbs ul {
  list-style-type: none;
  padding-left: 0;
  font-weight: normal; }

.breadcrumbs ul li {
  display: inline; }

.breadcrumbs ul li a {
  font-weight: normal; }

.breadcrumbs ul li a:hover {
  text-decoration: underline;
  color: #3da4f3; }

.user-profile-page-title {
  font-size: 200%;
  margin-bottom: 20px;
  text-align: center;
  padding: 20px 0 20px 0px; }

.app-page-title {
  color: #353e4c;
  font-size: 30px;
  font-weight: 500;
  word-wrap: break-word;
  max-width: 100%; }
  @media (min-width: 200px) {
    .app-page-title {
      display: inline-block; } }
  @media (max-width: 199px) {
    .app-page-title {
      margin-bottom: 10px;
      margin-top: 30px; } }

.app-page-title.with-icon {
  display: inline-block; }
  .app-page-title.with-icon .app-page-title-icon {
    margin-right: 7px;
    margin-top: -5px; }

.page-with-white-background .app-page-title {
  margin-top: 0; }

.app-page-title .icon-chevrons-expand-vertical {
  color: #949cab;
  font-size: 0.8em; }

.main-content {
  margin-bottom: 10px; }

@media (max-width: 199px) {
  .row.main-content {
    margin-right: 10px;
    margin-left: 10px; } }

@media (max-width: 199px) {
  .mobile-content {
    padding: auto; } }

footer {
  bottom: 0;
  color: #353e4c;
  left: 0;
  position: absolute;
  text-align: left;
  font-size: 18px;
  line-height: 1.5;
  width: 100%; }
  footer .footer-content {
    padding: 20px 0;
    border-top: 1px solid #b4bdcb; }
    footer .footer-content .legal {
      text-align: right;
      vertical-align: middle;
      line-height: 1;
      font-weight: normal;
      font-size: .75em; }
      footer .footer-content .legal a {
        color: #353e4c;
        text-decoration: underline; }
      footer .footer-content .legal .legal-links li {
        list-style-type: none;
        display: inline;
        padding-left: 7px;
        padding-right: 7px;
        border-right: 1px solid #777; }
        footer .footer-content .legal .legal-links li.right {
          border-right: none;
          padding-right: 0; }
    footer .footer-content .social {
      text-align: right;
      margin-bottom: 9px; }
      footer .footer-content .social a {
        display: inline-block;
        margin-left: 9px;
        margin-right: 0px;
        padding: 8px;
        font-size: .95em;
        border-radius: 100%;
        background-clip: padding-box;
        color: #F1F4F9;
        background-color: #3da4f3; }
        footer .footer-content .social a:hover, footer .footer-content .social a:active, footer .footer-content .social a:focus, footer .footer-content .social a:visited {
          text-decoration: none; }
  footer .copyright {
    font-size: 1em;
    color: #353e4c; }
  footer .company-info {
    font-size: .75em; }

.div-center {
  margin: auto; }

.mobile-top {
  background: white url(assets/Logo.svg?) no-repeat;
  background-size: auto 42px;
  height: 84px;
  width: 100%;
  position: fixed;
  background-position: left 20px center;
  z-index: 10; }

.breadcrumb-icon-size {
  font-size: 10px; }

.hoverable {
  cursor: pointer;
  border-bottom: 1px dotted;
  line-height: 15px; }

.sso-iframe {
  height: 0px;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  width: 0px; }

.page-subheader {
  color: #353e4c;
  font-size: 24px;
  font-weight: 500;
  padding: 30px 30px 20px 30px; }

.page-disabled {
  background-color: #FDFDFF; }

.suspended-backdrop.modal-backdrop {
  z-index: 100; }

.suspended_modal {
  height: 100vh;
  position: absolute;
  top: 0px;
  width: 100vw;
  z-index: 100; }
  .suspended_modal .modal-content {
    border-radius: 15px;
    overflow-y: visible; }
  .suspended_modal .modal-header {
    background: #F04764;
    color: #FFFFFF; }
    .suspended_modal .modal-header .icon {
      color: #FFFFFF; }
  .suspended_modal .suspended_modal-background {
    background-color: #000;
    opacity: .9;
    height: 100%;
    width: 100%;
    position: absolute; }

.my-account .ul-status {
  text-transform: capitalize; }

.my-account .tmr-subtitle-area {
  margin-top: 10px; }
  .my-account .tmr-subtitle-area .btn-small {
    font-weight: 400; }

.my-account .header {
  font-weight: 500; }

.my-account .account-limits {
  color: #353e4c;
  font-size: 1.1em;
  margin-bottom: 15px; }
  .my-account .account-limits .account-limits-alert {
    background-color: #fff;
    border-color: #F04864;
    color: #F04864;
    margin-bottom: 0;
    margin-top: 15px; }
    .my-account .account-limits .account-limits-alert span {
      vertical-align: middle; }
    .my-account .account-limits .account-limits-alert .icon-cross-circle {
      font-size: 20px;
      margin-right: 10px; }
  .my-account .account-limits .account-limits-input {
    display: inline-block;
    margin-right: 10px;
    width: 33%; }
  .my-account .account-limits .account-limits-unlimited {
    line-height: 42px; }

.my-account .my-account-users .invite-button {
  margin-top: 10px; }
  .my-account .my-account-users .invite-button.disabled {
    cursor: pointer; }

.my-account .my-account-users .groups-button {
  margin-top: 10px;
  margin-right: 10px; }
  .my-account .my-account-users .groups-button .icon {
    font-size: 15px;
    position: relative;
    top: 2px; }

.my-account .my-account-users .tooltip-inner {
  text-align: left;
  width: 190px; }

.my-account .risk-map-choices {
  min-width: 200px; }
  .my-account .risk-map-choices a:focus *,
  .my-account .risk-map-choices a:active * {
    text-decoration: none; }
  .my-account .risk-map-choices .divider {
    display: none; }
  .my-account .risk-map-choices li:nth-child(1) .ui-select-choices-group-label,
  .my-account .risk-map-choices li:nth-child(3) .ui-select-choices-group-label {
    color: #353e4c;
    font-size: 14px; }
  .my-account .risk-map-choices li:nth-child(3) .ui-select-choices-row,
  .my-account .risk-map-choices li:nth-child(4) .ui-select-choices-row {
    display: none; }
  .my-account .risk-map-choices li:nth-child(4) .ui-select-choices-group-label {
    font-style: italic;
    white-space: normal; }

.my-account brand-login-checkbox {
  display: block;
  margin-top: 15px; }

.my-account-page-loader {
  top: 0px;
  left: 0px;
  position: fixed;
  background: rgba(0, 0, 0, 0.5); }

.page-not-found {
  margin-bottom: 20px; }
  .page-not-found .page-title {
    border-bottom: 1px solid var(--base-color-secondary-lighten2);
    color: #353e4c;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 10px; }
  .page-not-found .headline {
    font-size: 16px; }
  .page-not-found .requested-address {
    background: #FDFDFF;
    display: inline-block;
    font-family: 'Source Code Pro', monospace;
    margin-bottom: 10px;
    padding: 5px 10px; }
  .page-not-found .go-back-wrap .btn {
    margin-bottom: 10px;
    margin-top: 0; }
  .page-not-found ul {
    list-style-type: square; }

#privacy-policy * {
  line-height: 1.3em !important;
  font-size: 16px !important; }

#privacy-policy p,
#privacy-policy li {
  margin-bottom: 1em;
  margin-top: 1em; }

#privacy-policy .c11,
#privacy-policy .c15 {
  margin-left: 0; }

#privacy-policy .c8 {
  margin-left: 50px; }

#privacy-policy .c4,
#privacy-policy .c5,
#privacy-policy .c6 {
  margin-left: 100px; }

#privacy-policy .title {
  margin-bottom: 2em;
  font-size: 24px !important;
  text-align: center !important; }

#privacy-policy li {
  position: relative;
  padding-left: 50px; }

#privacy-policy li:before {
  position: absolute;
  left: 0; }

#privacy-policy .contact {
  margin-top: 50px; }
  #privacy-policy .contact header {
    font-weight: bold;
    padding: 10px 0;
    text-decoration: underline; }
  #privacy-policy .contact p,
  #privacy-policy .contact a {
    font-size: .9em !important;
    line-height: 2em;
    margin: 0; }

/* Content generated by Google Docs: */
.privacy-policy li,
.privacy-policy p {
  text-align: justify !important; }

.privacy-policy ol.lst-kix_list_7-0 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-6.start {
  counter-reset: lst-ctn-kix_xue9v0nlrxl0-6 0; }

.privacy-policy .lst-kix_list_2-1 > li {
  counter-increment: lst-ctn-kix_list_2-1; }

.privacy-policy ol.lst-kix_list_9-0.start {
  counter-reset: lst-ctn-kix_list_9-0 0; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-6.start {
  counter-reset: lst-ctn-kix_hjhcm8n2s2v7-6 0; }

.privacy-policy .lst-kix_list_6-1 > li {
  counter-increment: lst-ctn-kix_list_6-1; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-8 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-3.start {
  counter-reset: lst-ctn-kix_2uukeutk4mzm-3 0; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-7 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-6 {
  list-style-type: none; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-6 > li {
  counter-increment: lst-ctn-kix_hjhcm8n2s2v7-6; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-5 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-4 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-3 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-2 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-1 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-0 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_7-4.start {
  counter-reset: lst-ctn-kix_list_7-4 0; }

.privacy-policy .lst-kix_list_5-0 > li {
  counter-increment: lst-ctn-kix_list_5-0; }

.privacy-policy .lst-kix_list_9-0 > li {
  counter-increment: lst-ctn-kix_list_9-0; }

.privacy-policy ol.lst-kix_list_2-3.start {
  counter-reset: lst-ctn-kix_list_2-3 0; }

.privacy-policy ol.lst-kix_list_7-5 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_7-6 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_7-7 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_7-8 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_7-1 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_7-3 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_7-4 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_5-3.start {
  counter-reset: lst-ctn-kix_list_5-3 0; }

.privacy-policy .lst-kix_list_4-3 > li {
  counter-increment: lst-ctn-kix_list_4-3; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-4 > li:before {
  content: "" counter(lst-ctn-kix_hjhcm8n2s2v7-0, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-1, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-2, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-3, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-4, decimal) ". "; }

.privacy-policy .lst-kix_rfn16hdhkkok-4 > li {
  counter-increment: lst-ctn-kix_rfn16hdhkkok-4; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-5 > li:before {
  content: "" counter(lst-ctn-kix_hjhcm8n2s2v7-0, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-1, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-2, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-3, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-4, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-5, decimal) ". "; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-6 > li:before {
  content: "" counter(lst-ctn-kix_hjhcm8n2s2v7-0, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-1, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-2, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-3, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-4, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-5, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-6, decimal) ". "; }

.privacy-policy ol.lst-kix_list_3-7.start {
  counter-reset: lst-ctn-kix_list_3-7 0; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-8.start {
  counter-reset: lst-ctn-kix_2uukeutk4mzm-8 0; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-7 > li:before {
  content: "" counter(lst-ctn-kix_hjhcm8n2s2v7-0, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-1, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-2, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-3, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-4, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-5, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-6, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-7, decimal) ". "; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-8 > li:before {
  content: "" counter(lst-ctn-kix_hjhcm8n2s2v7-0, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-1, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-2, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-3, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-4, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-5, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-6, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-7, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-8, decimal) ". "; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-4.start {
  counter-reset: lst-ctn-kix_mbqmkj3emh5t-4 0; }

.privacy-policy ol.lst-kix_list_8-8.start {
  counter-reset: lst-ctn-kix_list_8-8 0; }

.privacy-policy .lst-kix_list_3-2 > li {
  counter-increment: lst-ctn-kix_list_3-2; }

.privacy-policy .lst-kix_2uukeutk4mzm-4 > li {
  counter-increment: lst-ctn-kix_2uukeutk4mzm-4; }

.privacy-policy ol.lst-kix_list_10-4.start {
  counter-reset: lst-ctn-kix_list_10-4 0; }

.privacy-policy .lst-kix_list_5-0 > li:before {
  content: "" counter(lst-ctn-kix_list_5-0, decimal) ". "; }

.privacy-policy ol.lst-kix_list_6-0 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-1.start {
  counter-reset: lst-ctn-kix_xue9v0nlrxl0-1 0; }

.privacy-policy ol.lst-kix_list_6-1 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-1.start {
  counter-reset: lst-ctn-kix_hjhcm8n2s2v7-1 2; }

.privacy-policy .lst-kix_list_5-4 > li {
  counter-increment: lst-ctn-kix_list_5-4; }

.privacy-policy .lst-kix_list_1-4 > li {
  counter-increment: lst-ctn-kix_list_1-4; }

.privacy-policy .lst-kix_xue9v0nlrxl0-1 > li {
  counter-increment: lst-ctn-kix_xue9v0nlrxl0-1; }

.privacy-policy ol.lst-kix_list_1-6.start {
  counter-reset: lst-ctn-kix_list_1-6 0; }

.privacy-policy .lst-kix_list_5-3 > li:before {
  content: "" counter(lst-ctn-kix_list_5-3, decimal) ". "; }

.privacy-policy ol.lst-kix_list_9-5.start {
  counter-reset: lst-ctn-kix_list_9-5 0; }

.privacy-policy .lst-kix_list_5-2 > li:before {
  content: "\25CF    "; }

.privacy-policy .lst-kix_mbqmkj3emh5t-3 > li {
  counter-increment: lst-ctn-kix_mbqmkj3emh5t-3; }

.privacy-policy .lst-kix_list_8-3 > li {
  counter-increment: lst-ctn-kix_list_8-3; }

.privacy-policy .lst-kix_list_5-1 > li:before {
  content: "" counter(lst-ctn-kix_list_5-1, decimal) ". "; }

.privacy-policy .lst-kix_list_5-7 > li:before {
  content: "" counter(lst-ctn-kix_list_5-7, decimal) ". "; }

.privacy-policy .lst-kix_list_5-6 > li:before {
  content: "" counter(lst-ctn-kix_list_5-6, decimal) ". "; }

.privacy-policy .lst-kix_list_5-8 > li:before {
  content: "" counter(lst-ctn-kix_list_5-8, decimal) ". "; }

.privacy-policy ul.lst-kix_list_8-2 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_9-4 > li {
  counter-increment: lst-ctn-kix_list_9-4; }

.privacy-policy ol.lst-kix_list_6-6 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_6-7 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_5-4 > li:before {
  content: "" counter(lst-ctn-kix_list_5-4, decimal) ". "; }

.privacy-policy ol.lst-kix_list_6-8 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_5-5 > li:before {
  content: "" counter(lst-ctn-kix_list_5-5, decimal) ". "; }

.privacy-policy ol.lst-kix_list_6-3 {
  list-style-type: none; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-2 > li {
  counter-increment: lst-ctn-kix_hjhcm8n2s2v7-2; }

.privacy-policy ol.lst-kix_list_6-4 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_6-5 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-7 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-6 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_6-1 > li:before {
  content: "" counter(lst-ctn-kix_list_6-1, decimal) ". "; }

.privacy-policy .lst-kix_list_6-3 > li:before {
  content: "" counter(lst-ctn-kix_list_6-3, decimal) ". "; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-8 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_6-5 > li {
  counter-increment: lst-ctn-kix_list_6-5; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-0 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_6-8 > li {
  counter-increment: lst-ctn-kix_list_6-8; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-1 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_6-0 > li:before {
  content: "" counter(lst-ctn-kix_list_6-0, decimal) ". "; }

.privacy-policy .lst-kix_list_6-4 > li:before {
  content: "" counter(lst-ctn-kix_list_6-4, decimal) ". "; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-2 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-3 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-4 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-5 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-1 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-6 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-0 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-7 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-3 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-8 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_3-6 > li {
  counter-increment: lst-ctn-kix_list_3-6; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-2 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-5 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_6-2 > li:before {
  content: "\25CF    "; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-3.start {
  counter-reset: lst-ctn-kix_rfn16hdhkkok-3 0; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-4 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_2-5 > li {
  counter-increment: lst-ctn-kix_list_2-5; }

.privacy-policy .lst-kix_list_2-8 > li {
  counter-increment: lst-ctn-kix_list_2-8; }

.privacy-policy ol.lst-kix_list_3-2.start {
  counter-reset: lst-ctn-kix_list_3-2 0; }

.privacy-policy .lst-kix_list_6-8 > li:before {
  content: "" counter(lst-ctn-kix_list_6-8, decimal) ". "; }

.privacy-policy .lst-kix_list_6-5 > li:before {
  content: "" counter(lst-ctn-kix_list_6-5, decimal) ". "; }

.privacy-policy .lst-kix_list_6-7 > li:before {
  content: "" counter(lst-ctn-kix_list_6-7, decimal) ". "; }

.privacy-policy .lst-kix_list_6-6 > li:before {
  content: "" counter(lst-ctn-kix_list_6-6, decimal) ". "; }

.privacy-policy ol.lst-kix_list_10-6.start {
  counter-reset: lst-ctn-kix_list_10-6 0; }

.privacy-policy .lst-kix_list_7-4 > li:before {
  content: "" counter(lst-ctn-kix_list_7-4, decimal) ". "; }

.privacy-policy .lst-kix_list_7-6 > li:before {
  content: "" counter(lst-ctn-kix_list_7-6, decimal) ". "; }

.privacy-policy .lst-kix_list_7-2 > li:before {
  content: "\25CF    "; }

.privacy-policy .lst-kix_list_7-6 > li {
  counter-increment: lst-ctn-kix_list_7-6; }

.privacy-policy .lst-kix_list_8-6 > li {
  counter-increment: lst-ctn-kix_list_8-6; }

.privacy-policy .lst-kix_2uukeutk4mzm-0 > li {
  counter-increment: lst-ctn-kix_2uukeutk4mzm-0; }

.privacy-policy .lst-kix_mbqmkj3emh5t-7 > li {
  counter-increment: lst-ctn-kix_mbqmkj3emh5t-7; }

.privacy-policy ol.lst-kix_list_4-6.start {
  counter-reset: lst-ctn-kix_list_4-6 0; }

.privacy-policy ol.lst-kix_list_9-7 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_9-8 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_3-0.start {
  counter-reset: lst-ctn-kix_list_3-0 2; }

.privacy-policy ol.lst-kix_list_9-3 {
  list-style-type: none; }

.privacy-policy .lst-kix_rfn16hdhkkok-8 > li {
  counter-increment: lst-ctn-kix_rfn16hdhkkok-8; }

.privacy-policy ol.lst-kix_list_9-4 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_5-7 > li {
  counter-increment: lst-ctn-kix_list_5-7; }

.privacy-policy ol.lst-kix_list_9-5 {
  list-style-type: none; }

.privacy-policy .lst-kix_rfn16hdhkkok-8 > li:before {
  content: "" counter(lst-ctn-kix_rfn16hdhkkok-0, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-1, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-2, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-3, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-4, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-5, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-6, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-7, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-8, decimal) ". "; }

.privacy-policy .lst-kix_list_7-8 > li:before {
  content: "" counter(lst-ctn-kix_list_7-8, decimal) ". "; }

.privacy-policy ol.lst-kix_list_9-6 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_4-7 > li {
  counter-increment: lst-ctn-kix_list_4-7; }

.privacy-policy ol.lst-kix_list_9-0 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_9-1 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_9-2 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_2-5.start {
  counter-reset: lst-ctn-kix_list_2-5 0; }

.privacy-policy .lst-kix_list_9-8 > li {
  counter-increment: lst-ctn-kix_list_9-8; }

.privacy-policy .lst-kix_list_4-1 > li:before {
  content: "" counter(lst-ctn-kix_list_4-0, decimal) "." counter(lst-ctn-kix_list_4-1, decimal) ". "; }

.privacy-policy .lst-kix_rfn16hdhkkok-6 > li:before {
  content: "" counter(lst-ctn-kix_rfn16hdhkkok-0, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-1, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-2, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-3, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-4, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-5, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-6, decimal) ". "; }

.privacy-policy .lst-kix_list_4-3 > li:before {
  content: "" counter(lst-ctn-kix_list_4-0, decimal) "." counter(lst-ctn-kix_list_4-1, decimal) "." counter(lst-ctn-kix_list_4-2, decimal) "." counter(lst-ctn-kix_list_4-3, decimal) ". "; }

.privacy-policy .lst-kix_list_4-5 > li:before {
  content: "" counter(lst-ctn-kix_list_4-0, decimal) "." counter(lst-ctn-kix_list_4-1, decimal) "." counter(lst-ctn-kix_list_4-2, decimal) "." counter(lst-ctn-kix_list_4-3, decimal) "." counter(lst-ctn-kix_list_4-4, decimal) "." counter(lst-ctn-kix_list_4-5, decimal) ". "; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-4.start {
  counter-reset: lst-ctn-kix_xue9v0nlrxl0-4 0; }

.privacy-policy .lst-kix_rfn16hdhkkok-2 > li:before {
  content: "6.2." counter(lst-ctn-kix_rfn16hdhkkok-2, decimal) ". "; }

.privacy-policy .lst-kix_rfn16hdhkkok-4 > li:before {
  content: "" counter(lst-ctn-kix_rfn16hdhkkok-0, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-1, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-2, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-3, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-4, decimal) ". "; }

.privacy-policy .lst-kix_list_1-8 > li {
  counter-increment: lst-ctn-kix_list_1-8; }

.privacy-policy .lst-kix_list_10-5 > li {
  counter-increment: lst-ctn-kix_list_10-5; }

.privacy-policy ol.lst-kix_list_1-4.start {
  counter-reset: lst-ctn-kix_list_1-4 0; }

.privacy-policy .lst-kix_list_3-5 > li {
  counter-increment: lst-ctn-kix_list_3-5; }

.privacy-policy .lst-kix_rfn16hdhkkok-0 > li:before {
  content: "" counter(lst-ctn-kix_rfn16hdhkkok-0, decimal) ". "; }

.privacy-policy ol.lst-kix_list_1-1.start {
  counter-reset: lst-ctn-kix_list_1-1 0; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-5.start {
  counter-reset: lst-ctn-kix_2uukeutk4mzm-5 0; }

.privacy-policy ol.lst-kix_list_4-4.start {
  counter-reset: lst-ctn-kix_list_4-4 0; }

.privacy-policy .lst-kix_mbqmkj3emh5t-5 > li:before {
  content: "" counter(lst-ctn-kix_mbqmkj3emh5t-0, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-1, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-2, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-3, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-4, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-5, decimal) ". "; }

.privacy-policy .lst-kix_mbqmkj3emh5t-3 > li:before {
  content: "" counter(lst-ctn-kix_mbqmkj3emh5t-0, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-1, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-2, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-3, decimal) ". "; }

.privacy-policy .lst-kix_mbqmkj3emh5t-7 > li:before {
  content: "" counter(lst-ctn-kix_mbqmkj3emh5t-0, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-1, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-2, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-3, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-4, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-5, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-6, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-7, decimal) ". "; }

.privacy-policy .lst-kix_list_6-4 > li {
  counter-increment: lst-ctn-kix_list_6-4; }

.privacy-policy ol.lst-kix_list_9-2.start {
  counter-reset: lst-ctn-kix_list_9-2 0; }

.privacy-policy .lst-kix_mbqmkj3emh5t-1 > li:before {
  content: "" counter(lst-ctn-kix_mbqmkj3emh5t-0, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-1, decimal) ". "; }

.privacy-policy .lst-kix_list_9-3 > li {
  counter-increment: lst-ctn-kix_list_9-3; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-3 > li:before {
  content: "" counter(lst-ctn-kix_hjhcm8n2s2v7-0, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-1, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-2, decimal) "." counter(lst-ctn-kix_hjhcm8n2s2v7-3, decimal) ". "; }

.privacy-policy ol.lst-kix_list_2-8.start {
  counter-reset: lst-ctn-kix_list_2-8 0; }

.privacy-policy ol.lst-kix_list_8-8 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-0.start {
  counter-reset: lst-ctn-kix_rfn16hdhkkok-0 2; }

.privacy-policy ol.lst-kix_list_7-6.start {
  counter-reset: lst-ctn-kix_list_7-6 0; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-4.start {
  counter-reset: lst-ctn-kix_hjhcm8n2s2v7-4 0; }

.privacy-policy ol.lst-kix_list_8-4 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_8-5 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_8-6 {
  list-style-type: none; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-1 > li:before {
  content: "6." counter(lst-ctn-kix_hjhcm8n2s2v7-1, decimal) ". "; }

.privacy-policy ol.lst-kix_list_8-7 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_8-0 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_8-1 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_8-3 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_10-4 > li {
  counter-increment: lst-ctn-kix_list_10-4; }

.privacy-policy .lst-kix_2uukeutk4mzm-5 > li {
  counter-increment: lst-ctn-kix_2uukeutk4mzm-5; }

.privacy-policy ol.lst-kix_list_5-8.start {
  counter-reset: lst-ctn-kix_list_5-8 0; }

.privacy-policy .lst-kix_xue9v0nlrxl0-8 > li {
  counter-increment: lst-ctn-kix_xue9v0nlrxl0-8; }

.privacy-policy .lst-kix_list_1-3 > li {
  counter-increment: lst-ctn-kix_list_1-3; }

.privacy-policy ol.lst-kix_list_6-0.start {
  counter-reset: lst-ctn-kix_list_6-0 5; }

.privacy-policy .lst-kix_xue9v0nlrxl0-2 > li {
  counter-increment: lst-ctn-kix_xue9v0nlrxl0-2; }

.privacy-policy .lst-kix_list_4-2 > li {
  counter-increment: lst-ctn-kix_list_4-2; }

.privacy-policy .lst-kix_xue9v0nlrxl0-4 > li {
  counter-increment: lst-ctn-kix_xue9v0nlrxl0-4; }

.privacy-policy ol.lst-kix_list_3-1 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_3-2 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_3-3 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_3-4.start {
  counter-reset: lst-ctn-kix_list_3-4 0; }

.privacy-policy .lst-kix_list_5-1 > li {
  counter-increment: lst-ctn-kix_list_5-1; }

.privacy-policy ol.lst-kix_list_3-4 {
  list-style-type: none; }

.privacy-policy .lst-kix_rfn16hdhkkok-3 > li {
  counter-increment: lst-ctn-kix_rfn16hdhkkok-3; }

.privacy-policy ol.lst-kix_list_3-0 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-1.start {
  counter-reset: lst-ctn-kix_mbqmkj3emh5t-1 0; }

.privacy-policy .lst-kix_list_1-1 > li {
  counter-increment: lst-ctn-kix_list_1-1; }

.privacy-policy .lst-kix_list_7-1 > li {
  counter-increment: lst-ctn-kix_list_7-1; }

.privacy-policy ol.lst-kix_list_2-6.start {
  counter-reset: lst-ctn-kix_list_2-6 0; }

.privacy-policy .lst-kix_list_3-0 > li:before {
  content: "" counter(lst-ctn-kix_list_3-0, decimal) ". "; }

.privacy-policy .lst-kix_mbqmkj3emh5t-0 > li {
  counter-increment: lst-ctn-kix_mbqmkj3emh5t-0; }

.privacy-policy .lst-kix_list_4-0 > li {
  counter-increment: lst-ctn-kix_list_4-0; }

.privacy-policy .lst-kix_list_8-0 > li {
  counter-increment: lst-ctn-kix_list_8-0; }

.privacy-policy .lst-kix_list_10-0 > li {
  counter-increment: lst-ctn-kix_list_10-0; }

.privacy-policy .lst-kix_list_3-4 > li:before {
  content: "" counter(lst-ctn-kix_list_3-0, decimal) "." counter(lst-ctn-kix_list_3-1, decimal) "." counter(lst-ctn-kix_list_3-2, decimal) "." counter(lst-ctn-kix_list_3-3, decimal) "." counter(lst-ctn-kix_list_3-4, decimal) ". "; }

.privacy-policy .lst-kix_list_3-3 > li:before {
  content: "" counter(lst-ctn-kix_list_3-0, decimal) "." counter(lst-ctn-kix_list_3-1, decimal) "." counter(lst-ctn-kix_list_3-2, decimal) "." counter(lst-ctn-kix_list_3-3, decimal) ". "; }

.privacy-policy ol.lst-kix_list_3-5 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_3-6 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_8-0 > li:before {
  content: "" counter(lst-ctn-kix_list_8-0, decimal) ". "; }

.privacy-policy ol.lst-kix_list_3-7 {
  list-style-type: none; }

.privacy-policy ul.lst-kix_list_5-2 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_3-8 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_8-7 > li:before {
  content: "" counter(lst-ctn-kix_list_8-7, decimal) ". "; }

.privacy-policy .lst-kix_list_3-8 > li:before {
  content: "" counter(lst-ctn-kix_list_3-0, decimal) "." counter(lst-ctn-kix_list_3-1, decimal) "." counter(lst-ctn-kix_list_3-2, decimal) "." counter(lst-ctn-kix_list_3-3, decimal) "." counter(lst-ctn-kix_list_3-4, decimal) "." counter(lst-ctn-kix_list_3-5, decimal) "." counter(lst-ctn-kix_list_3-6, decimal) "." counter(lst-ctn-kix_list_3-7, decimal) "." counter(lst-ctn-kix_list_3-8, decimal) ". "; }

.privacy-policy ol.lst-kix_list_10-7.start {
  counter-reset: lst-ctn-kix_list_10-7 0; }

.privacy-policy .lst-kix_list_8-3 > li:before {
  content: "" counter(lst-ctn-kix_list_8-3, decimal) ". "; }

.privacy-policy .lst-kix_xue9v0nlrxl0-6 > li {
  counter-increment: lst-ctn-kix_xue9v0nlrxl0-6; }

.privacy-policy .lst-kix_list_3-7 > li:before {
  content: "" counter(lst-ctn-kix_list_3-0, decimal) "." counter(lst-ctn-kix_list_3-1, decimal) "." counter(lst-ctn-kix_list_3-2, decimal) "." counter(lst-ctn-kix_list_3-3, decimal) "." counter(lst-ctn-kix_list_3-4, decimal) "." counter(lst-ctn-kix_list_3-5, decimal) "." counter(lst-ctn-kix_list_3-6, decimal) "." counter(lst-ctn-kix_list_3-7, decimal) ". "; }

.privacy-policy .lst-kix_list_8-4 > li:before {
  content: "" counter(lst-ctn-kix_list_8-4, decimal) ". "; }

.privacy-policy .lst-kix_rfn16hdhkkok-1 > li {
  counter-increment: lst-ctn-kix_rfn16hdhkkok-1; }

.privacy-policy .lst-kix_list_10-2 > li {
  counter-increment: lst-ctn-kix_list_10-2; }

.privacy-policy .lst-kix_2uukeutk4mzm-7 > li {
  counter-increment: lst-ctn-kix_2uukeutk4mzm-7; }

.privacy-policy ol.lst-kix_list_8-5.start {
  counter-reset: lst-ctn-kix_list_8-5 0; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-7.start {
  counter-reset: lst-ctn-kix_mbqmkj3emh5t-7 0; }

.privacy-policy ol.lst-kix_list_9-3.start {
  counter-reset: lst-ctn-kix_list_9-3 0; }

.privacy-policy .lst-kix_list_8-8 > li:before {
  content: "" counter(lst-ctn-kix_list_8-8, decimal) ". "; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-1.start {
  counter-reset: lst-ctn-kix_rfn16hdhkkok-1 0; }

.privacy-policy ol.lst-kix_list_2-2 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_2-3 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_2-4 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_2-5 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-8.start {
  counter-reset: lst-ctn-kix_hjhcm8n2s2v7-8 0; }

.privacy-policy ol.lst-kix_list_2-0 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-8.start {
  counter-reset: lst-ctn-kix_xue9v0nlrxl0-8 0; }

.privacy-policy ol.lst-kix_list_2-1 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_4-8 > li:before {
  content: "" counter(lst-ctn-kix_list_4-0, decimal) "." counter(lst-ctn-kix_list_4-1, decimal) "." counter(lst-ctn-kix_list_4-2, decimal) "." counter(lst-ctn-kix_list_4-3, decimal) "." counter(lst-ctn-kix_list_4-4, decimal) "." counter(lst-ctn-kix_list_4-5, decimal) "." counter(lst-ctn-kix_list_4-6, decimal) "." counter(lst-ctn-kix_list_4-7, decimal) "." counter(lst-ctn-kix_list_4-8, decimal) ". "; }

.privacy-policy .lst-kix_list_4-7 > li:before {
  content: "" counter(lst-ctn-kix_list_4-0, decimal) "." counter(lst-ctn-kix_list_4-1, decimal) "." counter(lst-ctn-kix_list_4-2, decimal) "." counter(lst-ctn-kix_list_4-3, decimal) "." counter(lst-ctn-kix_list_4-4, decimal) "." counter(lst-ctn-kix_list_4-5, decimal) "." counter(lst-ctn-kix_list_4-6, decimal) "." counter(lst-ctn-kix_list_4-7, decimal) ". "; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-1.start {
  counter-reset: lst-ctn-kix_2uukeutk4mzm-1 0; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-0 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_4-8.start {
  counter-reset: lst-ctn-kix_list_4-8 0; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-2 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_8-4 > li {
  counter-increment: lst-ctn-kix_list_8-4; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-1 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-4 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_3-3.start {
  counter-reset: lst-ctn-kix_list_3-3 0; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-3 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_10-8.start {
  counter-reset: lst-ctn-kix_list_10-8 0; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-6 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-5 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_2-6 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-8 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_2-7 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-7 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_2-8 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-2.start {
  counter-reset: lst-ctn-kix_mbqmkj3emh5t-2 0; }

.privacy-policy ol.lst-kix_list_7-1.start {
  counter-reset: lst-ctn-kix_list_7-1 0; }

.privacy-policy ol.lst-kix_list_8-6.start {
  counter-reset: lst-ctn-kix_list_8-6 0; }

.privacy-policy ol.lst-kix_list_8-0.start {
  counter-reset: lst-ctn-kix_list_8-0 7; }

.privacy-policy .lst-kix_list_7-0 > li:before {
  content: "" counter(lst-ctn-kix_list_7-0, decimal) ". "; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-0.start {
  counter-reset: lst-ctn-kix_2uukeutk4mzm-0 2; }

.privacy-policy .lst-kix_list_2-2 > li {
  counter-increment: lst-ctn-kix_list_2-2; }

.privacy-policy ol.lst-kix_list_4-7.start {
  counter-reset: lst-ctn-kix_list_4-7 0; }

.privacy-policy ol.lst-kix_list_5-0 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_3-7 > li {
  counter-increment: lst-ctn-kix_list_3-7; }

.privacy-policy ol.lst-kix_list_5-1 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_9-7.start {
  counter-reset: lst-ctn-kix_list_9-7 0; }

.privacy-policy .lst-kix_list_2-4 > li:before {
  content: "" counter(lst-ctn-kix_list_2-0, decimal) "." counter(lst-ctn-kix_list_2-1, decimal) "." counter(lst-ctn-kix_list_2-2, decimal) "." counter(lst-ctn-kix_list_2-3, decimal) "." counter(lst-ctn-kix_list_2-4, decimal) ". "; }

.privacy-policy .lst-kix_list_2-8 > li:before {
  content: "" counter(lst-ctn-kix_list_2-0, decimal) "." counter(lst-ctn-kix_list_2-1, decimal) "." counter(lst-ctn-kix_list_2-2, decimal) "." counter(lst-ctn-kix_list_2-3, decimal) "." counter(lst-ctn-kix_list_2-4, decimal) "." counter(lst-ctn-kix_list_2-5, decimal) "." counter(lst-ctn-kix_list_2-6, decimal) "." counter(lst-ctn-kix_list_2-7, decimal) "." counter(lst-ctn-kix_list_2-8, decimal) ". "; }

.privacy-policy .lst-kix_list_6-6 > li {
  counter-increment: lst-ctn-kix_list_6-6; }

.privacy-policy .lst-kix_list_7-3 > li:before {
  content: "" counter(lst-ctn-kix_list_7-3, decimal) ". "; }

.privacy-policy .lst-kix_list_10-0 > li:before {
  content: "" counter(lst-ctn-kix_list_10-0, decimal) ". "; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-5.start {
  counter-reset: lst-ctn-kix_mbqmkj3emh5t-5 0; }

.privacy-policy .lst-kix_list_9-7 > li {
  counter-increment: lst-ctn-kix_list_9-7; }

.privacy-policy ol.lst-kix_list_5-7 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_5-8 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-5.start {
  counter-reset: lst-ctn-kix_rfn16hdhkkok-5 0; }

.privacy-policy ol.lst-kix_list_5-3 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_8-7 > li {
  counter-increment: lst-ctn-kix_list_8-7; }

.privacy-policy ol.lst-kix_list_5-4 {
  list-style-type: none; }

.privacy-policy ul.lst-kix_list_7-2 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_3-8.start {
  counter-reset: lst-ctn-kix_list_3-8 0; }

.privacy-policy ol.lst-kix_list_5-5 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-8.start {
  counter-reset: lst-ctn-kix_mbqmkj3emh5t-8 0; }

.privacy-policy ol.lst-kix_list_5-6 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_7-7 > li:before {
  content: "" counter(lst-ctn-kix_list_7-7, decimal) ". "; }

.privacy-policy ol.lst-kix_list_8-1.start {
  counter-reset: lst-ctn-kix_list_8-1 0; }

.privacy-policy .lst-kix_mbqmkj3emh5t-5 > li {
  counter-increment: lst-ctn-kix_mbqmkj3emh5t-5; }

.privacy-policy .lst-kix_list_9-5 > li {
  counter-increment: lst-ctn-kix_list_9-5; }

.privacy-policy .lst-kix_list_5-8 > li {
  counter-increment: lst-ctn-kix_list_5-8; }

.privacy-policy .lst-kix_list_10-4 > li:before {
  content: "" counter(lst-ctn-kix_list_10-0, decimal) "." counter(lst-ctn-kix_list_10-1, decimal) "." counter(lst-ctn-kix_list_10-2, decimal) ".(" counter(lst-ctn-kix_list_10-3, lower-latin) ")(" counter(lst-ctn-kix_list_10-4, lower-roman) ") "; }

.privacy-policy .lst-kix_list_10-8 > li:before {
  content: "" counter(lst-ctn-kix_list_10-0, decimal) "." counter(lst-ctn-kix_list_10-1, decimal) "." counter(lst-ctn-kix_list_10-2, decimal) ".(" counter(lst-ctn-kix_list_10-3, lower-latin) ")(" counter(lst-ctn-kix_list_10-4, lower-roman) ")(" counter(lst-ctn-kix_list_10-5, upper-latin) ")" counter(lst-ctn-kix_list_10-6, decimal) "." counter(lst-ctn-kix_list_10-7, decimal) "." counter(lst-ctn-kix_list_10-8, decimal) ". "; }

.privacy-policy .lst-kix_list_4-0 > li:before {
  content: "" counter(lst-ctn-kix_list_4-0, decimal) ". "; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-8.start {
  counter-reset: lst-ctn-kix_rfn16hdhkkok-8 0; }

.privacy-policy .lst-kix_rfn16hdhkkok-5 > li:before {
  content: "" counter(lst-ctn-kix_rfn16hdhkkok-0, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-1, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-2, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-3, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-4, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-5, decimal) ". "; }

.privacy-policy .lst-kix_list_4-4 > li:before {
  content: "" counter(lst-ctn-kix_list_4-0, decimal) "." counter(lst-ctn-kix_list_4-1, decimal) "." counter(lst-ctn-kix_list_4-2, decimal) "." counter(lst-ctn-kix_list_4-3, decimal) "." counter(lst-ctn-kix_list_4-4, decimal) ". "; }

.privacy-policy ol.lst-kix_list_2-2.start {
  counter-reset: lst-ctn-kix_list_2-2 0; }

.privacy-policy .lst-kix_list_9-3 > li:before {
  content: "" counter(lst-ctn-kix_list_9-0, decimal) "." counter(lst-ctn-kix_list_9-1, decimal) "." counter(lst-ctn-kix_list_9-2, decimal) ".(" counter(lst-ctn-kix_list_9-3, lower-latin) ") "; }

.privacy-policy ol.lst-kix_list_7-0.start {
  counter-reset: lst-ctn-kix_list_7-0 6; }

.privacy-policy .lst-kix_rfn16hdhkkok-1 > li:before {
  content: "" counter(lst-ctn-kix_rfn16hdhkkok-0, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-1, decimal) ". "; }

.privacy-policy ol.lst-kix_list_4-0 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_4-1 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_4-2 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_4-3 {
  list-style-type: none; }

.privacy-policy .lst-kix_xue9v0nlrxl0-6 > li:before {
  content: "" counter(lst-ctn-kix_xue9v0nlrxl0-0, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-1, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-2, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-3, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-4, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-5, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-6, decimal) ". "; }

.privacy-policy .lst-kix_list_9-7 > li:before {
  content: "" counter(lst-ctn-kix_list_9-0, decimal) "." counter(lst-ctn-kix_list_9-1, decimal) "." counter(lst-ctn-kix_list_9-2, decimal) ".(" counter(lst-ctn-kix_list_9-3, lower-latin) ")(" counter(lst-ctn-kix_list_9-4, lower-roman) ")(" counter(lst-ctn-kix_list_9-5, upper-latin) ")" counter(lst-ctn-kix_list_9-6, decimal) "." counter(lst-ctn-kix_list_9-7, decimal) ". "; }

.privacy-policy .lst-kix_list_2-4 > li {
  counter-increment: lst-ctn-kix_list_2-4; }

.privacy-policy ol.lst-kix_list_3-6.start {
  counter-reset: lst-ctn-kix_list_3-6 0; }

.privacy-policy .lst-kix_mbqmkj3emh5t-0 > li:before {
  content: "" counter(lst-ctn-kix_mbqmkj3emh5t-0, decimal) ". "; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-6.start {
  counter-reset: lst-ctn-kix_mbqmkj3emh5t-6 0; }

.privacy-policy .lst-kix_mbqmkj3emh5t-8 > li:before {
  content: "" counter(lst-ctn-kix_mbqmkj3emh5t-0, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-1, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-2, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-3, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-4, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-5, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-6, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-7, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-8, decimal) ". "; }

.privacy-policy .lst-kix_rfn16hdhkkok-6 > li {
  counter-increment: lst-ctn-kix_rfn16hdhkkok-6; }

.privacy-policy .lst-kix_list_5-3 > li {
  counter-increment: lst-ctn-kix_list_5-3; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-7.start {
  counter-reset: lst-ctn-kix_rfn16hdhkkok-7 0; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-2 > li:before {
  content: "4.1." counter(lst-ctn-kix_hjhcm8n2s2v7-2, decimal) ". "; }

.privacy-policy ol.lst-kix_list_4-8 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_7-4 > li {
  counter-increment: lst-ctn-kix_list_7-4; }

.privacy-policy .lst-kix_list_1-0 > li:before {
  content: "" counter(lst-ctn-kix_list_1-0, decimal) ". "; }

.privacy-policy ol.lst-kix_list_4-4 {
  list-style-type: none; }

.privacy-policy ul.lst-kix_list_6-2 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_4-5 {
  list-style-type: none; }

.privacy-policy .lst-kix_mbqmkj3emh5t-4 > li:before {
  content: "" counter(lst-ctn-kix_mbqmkj3emh5t-0, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-1, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-2, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-3, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-4, decimal) ". "; }

.privacy-policy ol.lst-kix_list_2-0.start {
  counter-reset: lst-ctn-kix_list_2-0 1; }

.privacy-policy ol.lst-kix_list_4-6 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_4-7 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_8-4.start {
  counter-reset: lst-ctn-kix_list_8-4 0; }

.privacy-policy .lst-kix_list_1-4 > li:before {
  content: "" counter(lst-ctn-kix_list_1-0, decimal) "." counter(lst-ctn-kix_list_1-1, decimal) "." counter(lst-ctn-kix_list_1-2, decimal) "." counter(lst-ctn-kix_list_1-3, decimal) "." counter(lst-ctn-kix_list_1-4, decimal) ". "; }

.privacy-policy ol.lst-kix_list_3-5.start {
  counter-reset: lst-ctn-kix_list_3-5 0; }

.privacy-policy .lst-kix_2uukeutk4mzm-2 > li {
  counter-increment: lst-ctn-kix_2uukeutk4mzm-2; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-4 > li {
  counter-increment: lst-ctn-kix_hjhcm8n2s2v7-4; }

.privacy-policy .lst-kix_list_1-6 > li {
  counter-increment: lst-ctn-kix_list_1-6; }

.privacy-policy .lst-kix_list_10-7 > li {
  counter-increment: lst-ctn-kix_list_10-7; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-8 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-7 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-4 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-3 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_2-0 > li:before {
  content: "" counter(lst-ctn-kix_list_2-0, decimal) ". "; }

.privacy-policy ol.lst-kix_list_2-1.start {
  counter-reset: lst-ctn-kix_list_2-1 0; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-6.start {
  counter-reset: lst-ctn-kix_rfn16hdhkkok-6 0; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-6 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_8-3.start {
  counter-reset: lst-ctn-kix_list_8-3 0; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-5 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_4-5 > li {
  counter-increment: lst-ctn-kix_list_4-5; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-0 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_9-8.start {
  counter-reset: lst-ctn-kix_list_9-8 0; }

.privacy-policy .lst-kix_list_1-8 > li:before {
  content: "" counter(lst-ctn-kix_list_1-0, decimal) "." counter(lst-ctn-kix_list_1-1, decimal) "." counter(lst-ctn-kix_list_1-2, decimal) "." counter(lst-ctn-kix_list_1-3, decimal) "." counter(lst-ctn-kix_list_1-4, decimal) "." counter(lst-ctn-kix_list_1-5, decimal) "." counter(lst-ctn-kix_list_1-6, decimal) "." counter(lst-ctn-kix_list_1-7, decimal) "." counter(lst-ctn-kix_list_1-8, decimal) ". "; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-2 {
  list-style-type: none; }

.privacy-policy .lst-kix_xue9v0nlrxl0-2 > li:before {
  content: "" counter(lst-ctn-kix_xue9v0nlrxl0-0, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-1, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-2, decimal) ". "; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-1 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_4-1 > li {
  counter-increment: lst-ctn-kix_list_4-1; }

.privacy-policy .lst-kix_2uukeutk4mzm-6 > li {
  counter-increment: lst-ctn-kix_2uukeutk4mzm-6; }

.privacy-policy .lst-kix_list_8-1 > li {
  counter-increment: lst-ctn-kix_list_8-1; }

.privacy-policy ol.lst-kix_list_3-1.start {
  counter-reset: lst-ctn-kix_list_3-1 0; }

.privacy-policy ol.lst-kix_list_6-6.start {
  counter-reset: lst-ctn-kix_list_6-6 0; }

.privacy-policy .lst-kix_list_7-0 > li {
  counter-increment: lst-ctn-kix_list_7-0; }

.privacy-policy .lst-kix_mbqmkj3emh5t-1 > li {
  counter-increment: lst-ctn-kix_mbqmkj3emh5t-1; }

.privacy-policy ol.lst-kix_list_1-5.start {
  counter-reset: lst-ctn-kix_list_1-5 0; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-0.start {
  counter-reset: lst-ctn-kix_xue9v0nlrxl0-0 0; }

.privacy-policy .lst-kix_rfn16hdhkkok-2 > li {
  counter-increment: lst-ctn-kix_rfn16hdhkkok-2; }

.privacy-policy ol.lst-kix_list_9-6.start {
  counter-reset: lst-ctn-kix_list_9-6 0; }

.privacy-policy .lst-kix_list_2-3 > li {
  counter-increment: lst-ctn-kix_list_2-3; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-0.start {
  counter-reset: lst-ctn-kix_hjhcm8n2s2v7-0 2; }

.privacy-policy ol.lst-kix_list_4-5.start {
  counter-reset: lst-ctn-kix_list_4-5 0; }

.privacy-policy .lst-kix_xue9v0nlrxl0-3 > li {
  counter-increment: lst-ctn-kix_xue9v0nlrxl0-3; }

.privacy-policy .lst-kix_list_1-2 > li {
  counter-increment: lst-ctn-kix_list_1-2; }

.privacy-policy .lst-kix_list_9-2 > li {
  counter-increment: lst-ctn-kix_list_9-2; }

.privacy-policy .lst-kix_2uukeutk4mzm-6 > li:before {
  content: "" counter(lst-ctn-kix_2uukeutk4mzm-0, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-1, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-2, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-3, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-4, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-5, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-6, decimal) ". "; }

.privacy-policy ol.lst-kix_list_8-7.start {
  counter-reset: lst-ctn-kix_list_8-7 0; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-3.start {
  counter-reset: lst-ctn-kix_mbqmkj3emh5t-3 0; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-4.start {
  counter-reset: lst-ctn-kix_rfn16hdhkkok-4 0; }

.privacy-policy .lst-kix_2uukeutk4mzm-3 > li:before {
  content: "" counter(lst-ctn-kix_2uukeutk4mzm-0, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-1, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-2, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-3, decimal) ". "; }

.privacy-policy .lst-kix_2uukeutk4mzm-7 > li:before {
  content: "" counter(lst-ctn-kix_2uukeutk4mzm-0, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-1, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-2, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-3, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-4, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-5, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-6, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-7, decimal) ". "; }

.privacy-policy .lst-kix_2uukeutk4mzm-2 > li:before {
  content: "6.1." counter(lst-ctn-kix_2uukeutk4mzm-2, decimal) ". "; }

.privacy-policy .lst-kix_2uukeutk4mzm-0 > li:before {
  content: "" counter(lst-ctn-kix_2uukeutk4mzm-0, decimal) ". "; }

.privacy-policy .lst-kix_2uukeutk4mzm-8 > li:before {
  content: "" counter(lst-ctn-kix_2uukeutk4mzm-0, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-1, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-2, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-3, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-4, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-5, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-6, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-7, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-8, decimal) ". "; }

.privacy-policy .lst-kix_2uukeutk4mzm-1 > li:before {
  content: "" counter(lst-ctn-kix_2uukeutk4mzm-0, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-1, decimal) ". "; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-8 > li {
  counter-increment: lst-ctn-kix_hjhcm8n2s2v7-8; }

.privacy-policy .lst-kix_list_10-3 > li {
  counter-increment: lst-ctn-kix_list_10-3; }

.privacy-policy .lst-kix_xue9v0nlrxl0-7 > li {
  counter-increment: lst-ctn-kix_xue9v0nlrxl0-7; }

.privacy-policy ol.lst-kix_list_1-0.start {
  counter-reset: lst-ctn-kix_list_1-0 0; }

.privacy-policy .lst-kix_list_3-0 > li {
  counter-increment: lst-ctn-kix_list_3-0; }

.privacy-policy ol.lst-kix_list_4-0.start {
  counter-reset: lst-ctn-kix_list_4-0 3; }

.privacy-policy .lst-kix_2uukeutk4mzm-4 > li:before {
  content: "" counter(lst-ctn-kix_2uukeutk4mzm-0, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-1, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-2, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-3, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-4, decimal) ". "; }

.privacy-policy ol.lst-kix_list_2-4.start {
  counter-reset: lst-ctn-kix_list_2-4 0; }

.privacy-policy .lst-kix_2uukeutk4mzm-5 > li:before {
  content: "" counter(lst-ctn-kix_2uukeutk4mzm-0, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-1, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-2, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-3, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-4, decimal) "." counter(lst-ctn-kix_2uukeutk4mzm-5, decimal) ". "; }

.privacy-policy ol.lst-kix_list_1-3 {
  list-style-type: none; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-0 > li {
  counter-increment: lst-ctn-kix_hjhcm8n2s2v7-0; }

.privacy-policy ol.lst-kix_list_1-4 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_2-7 > li:before {
  content: "" counter(lst-ctn-kix_list_2-0, decimal) "." counter(lst-ctn-kix_list_2-1, decimal) "." counter(lst-ctn-kix_list_2-2, decimal) "." counter(lst-ctn-kix_list_2-3, decimal) "." counter(lst-ctn-kix_list_2-4, decimal) "." counter(lst-ctn-kix_list_2-5, decimal) "." counter(lst-ctn-kix_list_2-6, decimal) "." counter(lst-ctn-kix_list_2-7, decimal) ". "; }

.privacy-policy .lst-kix_list_2-7 > li {
  counter-increment: lst-ctn-kix_list_2-7; }

.privacy-policy ol.lst-kix_list_1-5 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_1-6 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_1-0 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_2-5 > li:before {
  content: "" counter(lst-ctn-kix_list_2-0, decimal) "." counter(lst-ctn-kix_list_2-1, decimal) "." counter(lst-ctn-kix_list_2-2, decimal) "." counter(lst-ctn-kix_list_2-3, decimal) "." counter(lst-ctn-kix_list_2-4, decimal) "." counter(lst-ctn-kix_list_2-5, decimal) ". "; }

.privacy-policy ol.lst-kix_list_1-1 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_1-2 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_rfn16hdhkkok-2.start {
  counter-reset: lst-ctn-kix_rfn16hdhkkok-2 0; }

.privacy-policy ol.lst-kix_list_10-3.start {
  counter-reset: lst-ctn-kix_list_10-3 0; }

.privacy-policy ol.lst-kix_list_9-4.start {
  counter-reset: lst-ctn-kix_list_9-4 0; }

.privacy-policy .lst-kix_list_10-1 > li:before {
  content: "" counter(lst-ctn-kix_list_10-0, decimal) "." counter(lst-ctn-kix_list_10-1, decimal) ". "; }

.privacy-policy .lst-kix_list_7-7 > li {
  counter-increment: lst-ctn-kix_list_7-7; }

.privacy-policy ol.lst-kix_list_4-3.start {
  counter-reset: lst-ctn-kix_list_4-3 0; }

.privacy-policy ol.lst-kix_list_1-7 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_1-8 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-7.start {
  counter-reset: lst-ctn-kix_hjhcm8n2s2v7-7 0; }

.privacy-policy .lst-kix_list_10-7 > li:before {
  content: "" counter(lst-ctn-kix_list_10-0, decimal) "." counter(lst-ctn-kix_list_10-1, decimal) "." counter(lst-ctn-kix_list_10-2, decimal) ".(" counter(lst-ctn-kix_list_10-3, lower-latin) ")(" counter(lst-ctn-kix_list_10-4, lower-roman) ")(" counter(lst-ctn-kix_list_10-5, upper-latin) ")" counter(lst-ctn-kix_list_10-6, decimal) "." counter(lst-ctn-kix_list_10-7, decimal) ". "; }

.privacy-policy .lst-kix_list_7-8 > li {
  counter-increment: lst-ctn-kix_list_7-8; }

.privacy-policy .lst-kix_list_10-5 > li:before {
  content: "" counter(lst-ctn-kix_list_10-0, decimal) "." counter(lst-ctn-kix_list_10-1, decimal) "." counter(lst-ctn-kix_list_10-2, decimal) ".(" counter(lst-ctn-kix_list_10-3, lower-latin) ")(" counter(lst-ctn-kix_list_10-4, lower-roman) ")(" counter(lst-ctn-kix_list_10-5, upper-latin) ") "; }

.privacy-policy .lst-kix_list_10-3 > li:before {
  content: "" counter(lst-ctn-kix_list_10-0, decimal) "." counter(lst-ctn-kix_list_10-1, decimal) "." counter(lst-ctn-kix_list_10-2, decimal) ".(" counter(lst-ctn-kix_list_10-3, lower-latin) ") "; }

.privacy-policy .lst-kix_list_2-6 > li {
  counter-increment: lst-ctn-kix_list_2-6; }

.privacy-policy ol.lst-kix_list_7-3.start {
  counter-reset: lst-ctn-kix_list_7-3 0; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-2.start {
  counter-reset: lst-ctn-kix_2uukeutk4mzm-2 0; }

.privacy-policy .lst-kix_mbqmkj3emh5t-8 > li {
  counter-increment: lst-ctn-kix_mbqmkj3emh5t-8; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-7.start {
  counter-reset: lst-ctn-kix_xue9v0nlrxl0-7 0; }

.privacy-policy .lst-kix_list_9-2 > li:before {
  content: "" counter(lst-ctn-kix_list_9-0, decimal) "." counter(lst-ctn-kix_list_9-1, decimal) "." counter(lst-ctn-kix_list_9-2, decimal) ". "; }

.privacy-policy ol.lst-kix_list_5-7.start {
  counter-reset: lst-ctn-kix_list_5-7 0; }

.privacy-policy .lst-kix_list_5-5 > li {
  counter-increment: lst-ctn-kix_list_5-5; }

.privacy-policy .lst-kix_list_9-0 > li:before {
  content: "" counter(lst-ctn-kix_list_9-0, decimal) ". "; }

.privacy-policy .lst-kix_list_3-4 > li {
  counter-increment: lst-ctn-kix_list_3-4; }

.privacy-policy .lst-kix_xue9v0nlrxl0-5 > li:before {
  content: "" counter(lst-ctn-kix_xue9v0nlrxl0-0, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-1, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-2, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-3, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-4, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-5, decimal) ". "; }

.privacy-policy .lst-kix_xue9v0nlrxl0-3 > li:before {
  content: "" counter(lst-ctn-kix_xue9v0nlrxl0-0, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-1, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-2, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-3, decimal) ". "; }

.privacy-policy .lst-kix_xue9v0nlrxl0-7 > li:before {
  content: "" counter(lst-ctn-kix_xue9v0nlrxl0-0, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-1, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-2, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-3, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-4, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-5, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-6, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-7, decimal) ". "; }

.privacy-policy ol.lst-kix_list_10-7 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_9-6 > li:before {
  content: "" counter(lst-ctn-kix_list_9-0, decimal) "." counter(lst-ctn-kix_list_9-1, decimal) "." counter(lst-ctn-kix_list_9-2, decimal) ".(" counter(lst-ctn-kix_list_9-3, lower-latin) ")(" counter(lst-ctn-kix_list_9-4, lower-roman) ")(" counter(lst-ctn-kix_list_9-5, upper-latin) ")" counter(lst-ctn-kix_list_9-6, decimal) ". "; }

.privacy-policy ol.lst-kix_list_10-8 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_10-3 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_9-4 > li:before {
  content: "" counter(lst-ctn-kix_list_9-0, decimal) "." counter(lst-ctn-kix_list_9-1, decimal) "." counter(lst-ctn-kix_list_9-2, decimal) ".(" counter(lst-ctn-kix_list_9-3, lower-latin) ")(" counter(lst-ctn-kix_list_9-4, lower-roman) ") "; }

.privacy-policy ol.lst-kix_list_10-4 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_10-5 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_10-6 {
  list-style-type: none; }

.privacy-policy .lst-kix_list_6-3 > li {
  counter-increment: lst-ctn-kix_list_6-3; }

.privacy-policy ol.lst-kix_list_10-0 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_10-1 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_list_1-3.start {
  counter-reset: lst-ctn-kix_list_1-3 0; }

.privacy-policy ol.lst-kix_list_10-2 {
  list-style-type: none; }

.privacy-policy ol.lst-kix_mbqmkj3emh5t-0.start {
  counter-reset: lst-ctn-kix_mbqmkj3emh5t-0 1; }

.privacy-policy ol.lst-kix_list_1-2.start {
  counter-reset: lst-ctn-kix_list_1-2 0; }

.privacy-policy ol.lst-kix_list_6-1.start {
  counter-reset: lst-ctn-kix_list_6-1 0; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-5.start {
  counter-reset: lst-ctn-kix_xue9v0nlrxl0-5 0; }

.privacy-policy .lst-kix_list_9-8 > li:before {
  content: "" counter(lst-ctn-kix_list_9-0, decimal) "." counter(lst-ctn-kix_list_9-1, decimal) "." counter(lst-ctn-kix_list_9-2, decimal) ".(" counter(lst-ctn-kix_list_9-3, lower-latin) ")(" counter(lst-ctn-kix_list_9-4, lower-roman) ")(" counter(lst-ctn-kix_list_9-5, upper-latin) ")" counter(lst-ctn-kix_list_9-6, decimal) "." counter(lst-ctn-kix_list_9-7, decimal) "." counter(lst-ctn-kix_list_9-8, decimal) ". "; }

.privacy-policy .lst-kix_list_1-1 > li:before {
  content: "" counter(lst-ctn-kix_list_1-0, decimal) "." counter(lst-ctn-kix_list_1-1, decimal) ". "; }

.privacy-policy .lst-kix_list_8-5 > li {
  counter-increment: lst-ctn-kix_list_8-5; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-4.start {
  counter-reset: lst-ctn-kix_2uukeutk4mzm-4 0; }

.privacy-policy .lst-kix_list_1-3 > li:before {
  content: "" counter(lst-ctn-kix_list_1-0, decimal) "." counter(lst-ctn-kix_list_1-1, decimal) "." counter(lst-ctn-kix_list_1-2, decimal) "." counter(lst-ctn-kix_list_1-3, decimal) ". "; }

.privacy-policy ol.lst-kix_list_10-5.start {
  counter-reset: lst-ctn-kix_list_10-5 0; }

.privacy-policy .lst-kix_list_4-8 > li {
  counter-increment: lst-ctn-kix_list_4-8; }

.privacy-policy .lst-kix_list_1-7 > li:before {
  content: "" counter(lst-ctn-kix_list_1-0, decimal) "." counter(lst-ctn-kix_list_1-1, decimal) "." counter(lst-ctn-kix_list_1-2, decimal) "." counter(lst-ctn-kix_list_1-3, decimal) "." counter(lst-ctn-kix_list_1-4, decimal) "." counter(lst-ctn-kix_list_1-5, decimal) "." counter(lst-ctn-kix_list_1-6, decimal) "." counter(lst-ctn-kix_list_1-7, decimal) ". "; }

.privacy-policy ol.lst-kix_list_2-7.start {
  counter-reset: lst-ctn-kix_list_2-7 0; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-5.start {
  counter-reset: lst-ctn-kix_hjhcm8n2s2v7-5 0; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-1 > li {
  counter-increment: lst-ctn-kix_hjhcm8n2s2v7-1; }

.privacy-policy .lst-kix_list_1-5 > li:before {
  content: "" counter(lst-ctn-kix_list_1-0, decimal) "." counter(lst-ctn-kix_list_1-1, decimal) "." counter(lst-ctn-kix_list_1-2, decimal) "." counter(lst-ctn-kix_list_1-3, decimal) "." counter(lst-ctn-kix_list_1-4, decimal) "." counter(lst-ctn-kix_list_1-5, decimal) ". "; }

.privacy-policy ol.lst-kix_list_9-1.start {
  counter-reset: lst-ctn-kix_list_9-1 0; }

.privacy-policy .lst-kix_list_5-6 > li {
  counter-increment: lst-ctn-kix_list_5-6; }

.privacy-policy ol.lst-kix_list_7-5.start {
  counter-reset: lst-ctn-kix_list_7-5 0; }

.privacy-policy .lst-kix_list_2-1 > li:before {
  content: "" counter(lst-ctn-kix_list_2-0, decimal) "." counter(lst-ctn-kix_list_2-1, decimal) ". "; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-7 > li {
  counter-increment: lst-ctn-kix_hjhcm8n2s2v7-7; }

.privacy-policy .lst-kix_xue9v0nlrxl0-1 > li:before {
  content: "" counter(lst-ctn-kix_xue9v0nlrxl0-0, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-1, decimal) ". "; }

.privacy-policy .lst-kix_list_2-3 > li:before {
  content: "" counter(lst-ctn-kix_list_2-0, decimal) "." counter(lst-ctn-kix_list_2-1, decimal) "." counter(lst-ctn-kix_list_2-2, decimal) "." counter(lst-ctn-kix_list_2-3, decimal) ". "; }

.privacy-policy .lst-kix_list_3-1 > li {
  counter-increment: lst-ctn-kix_list_3-1; }

.privacy-policy .lst-kix_list_9-1 > li {
  counter-increment: lst-ctn-kix_list_9-1; }

.privacy-policy ol.lst-kix_list_7-7.start {
  counter-reset: lst-ctn-kix_list_7-7 0; }

.privacy-policy .lst-kix_list_3-1 > li:before {
  content: "4." counter(lst-ctn-kix_list_3-1, decimal) ". "; }

.privacy-policy .lst-kix_list_3-2 > li:before {
  content: "4.1." counter(lst-ctn-kix_list_3-2, decimal) ". "; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-3.start {
  counter-reset: lst-ctn-kix_xue9v0nlrxl0-3 0; }

.privacy-policy .lst-kix_list_8-1 > li:before {
  content: "" counter(lst-ctn-kix_list_8-1, decimal) ". "; }

.privacy-policy ol.lst-kix_list_1-8.start {
  counter-reset: lst-ctn-kix_list_1-8 0; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-6.start {
  counter-reset: lst-ctn-kix_2uukeutk4mzm-6 0; }

.privacy-policy .lst-kix_list_8-2 > li:before {
  content: "\25CF    "; }

.privacy-policy .lst-kix_list_6-0 > li {
  counter-increment: lst-ctn-kix_list_6-0; }

.privacy-policy .lst-kix_list_3-5 > li:before {
  content: "" counter(lst-ctn-kix_list_3-0, decimal) "." counter(lst-ctn-kix_list_3-1, decimal) "." counter(lst-ctn-kix_list_3-2, decimal) "." counter(lst-ctn-kix_list_3-3, decimal) "." counter(lst-ctn-kix_list_3-4, decimal) "." counter(lst-ctn-kix_list_3-5, decimal) ". "; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-5 > li {
  counter-increment: lst-ctn-kix_hjhcm8n2s2v7-5; }

.privacy-policy .lst-kix_mbqmkj3emh5t-2 > li {
  counter-increment: lst-ctn-kix_mbqmkj3emh5t-2; }

.privacy-policy .lst-kix_list_8-5 > li:before {
  content: "" counter(lst-ctn-kix_list_8-5, decimal) ". "; }

.privacy-policy .lst-kix_list_8-6 > li:before {
  content: "" counter(lst-ctn-kix_list_8-6, decimal) ". "; }

.privacy-policy .lst-kix_list_2-0 > li {
  counter-increment: lst-ctn-kix_list_2-0; }

.privacy-policy .lst-kix_list_3-6 > li:before {
  content: "" counter(lst-ctn-kix_list_3-0, decimal) "." counter(lst-ctn-kix_list_3-1, decimal) "." counter(lst-ctn-kix_list_3-2, decimal) "." counter(lst-ctn-kix_list_3-3, decimal) "." counter(lst-ctn-kix_list_3-4, decimal) "." counter(lst-ctn-kix_list_3-5, decimal) "." counter(lst-ctn-kix_list_3-6, decimal) ". "; }

.privacy-policy ol.lst-kix_list_5-0.start {
  counter-reset: lst-ctn-kix_list_5-0 4; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-3.start {
  counter-reset: lst-ctn-kix_hjhcm8n2s2v7-3 0; }

.privacy-policy ol.lst-kix_list_4-2.start {
  counter-reset: lst-ctn-kix_list_4-2 0; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-3 > li {
  counter-increment: lst-ctn-kix_hjhcm8n2s2v7-3; }

.privacy-policy ol.lst-kix_list_10-1.start {
  counter-reset: lst-ctn-kix_list_10-1 0; }

.privacy-policy .lst-kix_list_4-4 > li {
  counter-increment: lst-ctn-kix_list_4-4; }

.privacy-policy ol.lst-kix_list_6-4.start {
  counter-reset: lst-ctn-kix_list_6-4 0; }

.privacy-policy .lst-kix_2uukeutk4mzm-3 > li {
  counter-increment: lst-ctn-kix_2uukeutk4mzm-3; }

.privacy-policy ol.lst-kix_list_5-6.start {
  counter-reset: lst-ctn-kix_list_5-6 0; }

.privacy-policy ol.lst-kix_list_4-1.start {
  counter-reset: lst-ctn-kix_list_4-1 0; }

.privacy-policy .lst-kix_list_7-3 > li {
  counter-increment: lst-ctn-kix_list_7-3; }

.privacy-policy .lst-kix_rfn16hdhkkok-5 > li {
  counter-increment: lst-ctn-kix_rfn16hdhkkok-5; }

.privacy-policy ol.lst-kix_list_7-8.start {
  counter-reset: lst-ctn-kix_list_7-8 0; }

.privacy-policy ol.lst-kix_hjhcm8n2s2v7-2.start {
  counter-reset: lst-ctn-kix_hjhcm8n2s2v7-2 0; }

.privacy-policy .lst-kix_list_3-3 > li {
  counter-increment: lst-ctn-kix_list_3-3; }

.privacy-policy ol.lst-kix_xue9v0nlrxl0-2.start {
  counter-reset: lst-ctn-kix_xue9v0nlrxl0-2 0; }

.privacy-policy ol.lst-kix_list_6-3.start {
  counter-reset: lst-ctn-kix_list_6-3 0; }

.privacy-policy ol.lst-kix_list_10-2.start {
  counter-reset: lst-ctn-kix_list_10-2 0; }

.privacy-policy ol.lst-kix_list_5-5.start {
  counter-reset: lst-ctn-kix_list_5-5 0; }

.privacy-policy .lst-kix_mbqmkj3emh5t-6 > li {
  counter-increment: lst-ctn-kix_mbqmkj3emh5t-6; }

.privacy-policy .lst-kix_list_2-6 > li:before {
  content: "" counter(lst-ctn-kix_list_2-0, decimal) "." counter(lst-ctn-kix_list_2-1, decimal) "." counter(lst-ctn-kix_list_2-2, decimal) "." counter(lst-ctn-kix_list_2-3, decimal) "." counter(lst-ctn-kix_list_2-4, decimal) "." counter(lst-ctn-kix_list_2-5, decimal) "." counter(lst-ctn-kix_list_2-6, decimal) ". "; }

.privacy-policy .lst-kix_list_7-1 > li:before {
  content: "" counter(lst-ctn-kix_list_7-1, decimal) ". "; }

.privacy-policy .lst-kix_list_7-5 > li:before {
  content: "" counter(lst-ctn-kix_list_7-5, decimal) ". "; }

.privacy-policy .lst-kix_list_9-6 > li {
  counter-increment: lst-ctn-kix_list_9-6; }

.privacy-policy ol.lst-kix_list_5-4.start {
  counter-reset: lst-ctn-kix_list_5-4 0; }

.privacy-policy ol.lst-kix_2uukeutk4mzm-7.start {
  counter-reset: lst-ctn-kix_2uukeutk4mzm-7 0; }

.privacy-policy ol.lst-kix_list_5-1.start {
  counter-reset: lst-ctn-kix_list_5-1 0; }

.privacy-policy .lst-kix_list_6-7 > li {
  counter-increment: lst-ctn-kix_list_6-7; }

.privacy-policy .lst-kix_rfn16hdhkkok-7 > li:before {
  content: "" counter(lst-ctn-kix_rfn16hdhkkok-0, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-1, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-2, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-3, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-4, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-5, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-6, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-7, decimal) ". "; }

.privacy-policy .lst-kix_list_10-6 > li {
  counter-increment: lst-ctn-kix_list_10-6; }

.privacy-policy .lst-kix_list_1-7 > li {
  counter-increment: lst-ctn-kix_list_1-7; }

.privacy-policy ol.lst-kix_list_10-0.start {
  counter-reset: lst-ctn-kix_list_10-0 0; }

.privacy-policy .lst-kix_list_7-5 > li {
  counter-increment: lst-ctn-kix_list_7-5; }

.privacy-policy .lst-kix_xue9v0nlrxl0-0 > li {
  counter-increment: lst-ctn-kix_xue9v0nlrxl0-0; }

.privacy-policy .lst-kix_list_3-8 > li {
  counter-increment: lst-ctn-kix_list_3-8; }

.privacy-policy ol.lst-kix_list_6-8.start {
  counter-reset: lst-ctn-kix_list_6-8 0; }

.privacy-policy .lst-kix_list_10-2 > li:before {
  content: "" counter(lst-ctn-kix_list_10-0, decimal) "." counter(lst-ctn-kix_list_10-1, decimal) "." counter(lst-ctn-kix_list_10-2, decimal) ". "; }

.privacy-policy .lst-kix_list_4-6 > li {
  counter-increment: lst-ctn-kix_list_4-6; }

.privacy-policy ol.lst-kix_list_1-7.start {
  counter-reset: lst-ctn-kix_list_1-7 0; }

.privacy-policy .lst-kix_rfn16hdhkkok-3 > li:before {
  content: "" counter(lst-ctn-kix_rfn16hdhkkok-0, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-1, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-2, decimal) "." counter(lst-ctn-kix_rfn16hdhkkok-3, decimal) ". "; }

.privacy-policy .lst-kix_list_1-5 > li {
  counter-increment: lst-ctn-kix_list_1-5; }

.privacy-policy .lst-kix_rfn16hdhkkok-7 > li {
  counter-increment: lst-ctn-kix_rfn16hdhkkok-7; }

.privacy-policy ol.lst-kix_list_6-5.start {
  counter-reset: lst-ctn-kix_list_6-5 0; }

.privacy-policy .lst-kix_list_4-2 > li:before {
  content: "" counter(lst-ctn-kix_list_4-0, decimal) "." counter(lst-ctn-kix_list_4-1, decimal) "." counter(lst-ctn-kix_list_4-2, decimal) ". "; }

.privacy-policy .lst-kix_list_4-6 > li:before {
  content: "" counter(lst-ctn-kix_list_4-0, decimal) "." counter(lst-ctn-kix_list_4-1, decimal) "." counter(lst-ctn-kix_list_4-2, decimal) "." counter(lst-ctn-kix_list_4-3, decimal) "." counter(lst-ctn-kix_list_4-4, decimal) "." counter(lst-ctn-kix_list_4-5, decimal) "." counter(lst-ctn-kix_list_4-6, decimal) ". "; }

.privacy-policy .lst-kix_2uukeutk4mzm-1 > li {
  counter-increment: lst-ctn-kix_2uukeutk4mzm-1; }

.privacy-policy .lst-kix_list_10-8 > li {
  counter-increment: lst-ctn-kix_list_10-8; }

.privacy-policy .lst-kix_list_10-6 > li:before {
  content: "" counter(lst-ctn-kix_list_10-0, decimal) "." counter(lst-ctn-kix_list_10-1, decimal) "." counter(lst-ctn-kix_list_10-2, decimal) ".(" counter(lst-ctn-kix_list_10-3, lower-latin) ")(" counter(lst-ctn-kix_list_10-4, lower-roman) ")(" counter(lst-ctn-kix_list_10-5, upper-latin) ")" counter(lst-ctn-kix_list_10-6, decimal) ". "; }

.privacy-policy .lst-kix_list_9-1 > li:before {
  content: "" counter(lst-ctn-kix_list_9-0, decimal) "." counter(lst-ctn-kix_list_9-1, decimal) ". "; }

.privacy-policy .lst-kix_mbqmkj3emh5t-6 > li:before {
  content: "" counter(lst-ctn-kix_mbqmkj3emh5t-0, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-1, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-2, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-3, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-4, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-5, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-6, decimal) ". "; }

.privacy-policy .lst-kix_xue9v0nlrxl0-4 > li:before {
  content: "" counter(lst-ctn-kix_xue9v0nlrxl0-0, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-1, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-2, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-3, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-4, decimal) ". "; }

.privacy-policy ol.lst-kix_list_6-7.start {
  counter-reset: lst-ctn-kix_list_6-7 0; }

.privacy-policy .lst-kix_mbqmkj3emh5t-2 > li:before {
  content: "" counter(lst-ctn-kix_mbqmkj3emh5t-0, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-1, decimal) "." counter(lst-ctn-kix_mbqmkj3emh5t-2, decimal) ". "; }

.privacy-policy .lst-kix_list_9-5 > li:before {
  content: "" counter(lst-ctn-kix_list_9-0, decimal) "." counter(lst-ctn-kix_list_9-1, decimal) "." counter(lst-ctn-kix_list_9-2, decimal) ".(" counter(lst-ctn-kix_list_9-3, lower-latin) ")(" counter(lst-ctn-kix_list_9-4, lower-roman) ")(" counter(lst-ctn-kix_list_9-5, upper-latin) ") "; }

.privacy-policy .lst-kix_hjhcm8n2s2v7-0 > li:before {
  content: "" counter(lst-ctn-kix_hjhcm8n2s2v7-0, decimal) ". "; }

.privacy-policy .lst-kix_xue9v0nlrxl0-8 > li:before {
  content: "" counter(lst-ctn-kix_xue9v0nlrxl0-0, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-1, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-2, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-3, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-4, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-5, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-6, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-7, decimal) "." counter(lst-ctn-kix_xue9v0nlrxl0-8, decimal) ". "; }

.privacy-policy .lst-kix_mbqmkj3emh5t-4 > li {
  counter-increment: lst-ctn-kix_mbqmkj3emh5t-4; }

.privacy-policy .lst-kix_list_1-2 > li:before {
  content: "" counter(lst-ctn-kix_list_1-0, decimal) "." counter(lst-ctn-kix_list_1-1, decimal) "." counter(lst-ctn-kix_list_1-2, decimal) ". "; }

.privacy-policy .lst-kix_list_10-1 > li {
  counter-increment: lst-ctn-kix_list_10-1; }

.privacy-policy .lst-kix_list_1-0 > li {
  counter-increment: lst-ctn-kix_list_1-0; }

.privacy-policy .lst-kix_list_8-8 > li {
  counter-increment: lst-ctn-kix_list_8-8; }

.privacy-policy .lst-kix_list_1-6 > li:before {
  content: "" counter(lst-ctn-kix_list_1-0, decimal) "." counter(lst-ctn-kix_list_1-1, decimal) "." counter(lst-ctn-kix_list_1-2, decimal) "." counter(lst-ctn-kix_list_1-3, decimal) "." counter(lst-ctn-kix_list_1-4, decimal) "." counter(lst-ctn-kix_list_1-5, decimal) "." counter(lst-ctn-kix_list_1-6, decimal) ". "; }

.privacy-policy .lst-kix_2uukeutk4mzm-8 > li {
  counter-increment: lst-ctn-kix_2uukeutk4mzm-8; }

.privacy-policy .lst-kix_xue9v0nlrxl0-5 > li {
  counter-increment: lst-ctn-kix_xue9v0nlrxl0-5; }

.privacy-policy .lst-kix_list_2-2 > li:before {
  content: "" counter(lst-ctn-kix_list_2-0, decimal) "." counter(lst-ctn-kix_list_2-1, decimal) "." counter(lst-ctn-kix_list_2-2, decimal) ". "; }

.privacy-policy .lst-kix_xue9v0nlrxl0-0 > li:before {
  content: "" counter(lst-ctn-kix_xue9v0nlrxl0-0, decimal) ". "; }

.privacy-policy .lst-kix_rfn16hdhkkok-0 > li {
  counter-increment: lst-ctn-kix_rfn16hdhkkok-0; }

.privacy-policy ol {
  margin: 0;
  padding: 0; }

.privacy-policy table td,
.privacy-policy table th {
  padding: 0; }

.privacy-policy .c4 {
  margin-left: 110.6pt;
  padding-top: 0pt;
  padding-left: -11.2pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.privacy-policy .c5 {
  margin-left: 107.6pt;
  padding-top: 0pt;
  padding-left: -8.2pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.privacy-policy .c6 {
  margin-left: 109.9pt;
  padding-top: 0pt;
  padding-left: -10.5pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.privacy-policy .c8 {
  margin-left: 64.1pt;
  padding-top: 0pt;
  padding-left: 0pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.privacy-policy .c11 {
  margin-left: 28.1pt;
  padding-top: 0pt;
  padding-left: 0pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.privacy-policy .c17 {
  padding-top: 0pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: right;
  height: 10pt; }

.privacy-policy .c1 {
  font-weight: 400;
  text-decoration: none;
  vertical-align: baseline;
  font-style: italic; }

.privacy-policy .c0 {
  font-weight: 400;
  text-decoration: none;
  vertical-align: baseline;
  font-style: normal; }

.privacy-policy .c15 {
  padding-top: 0pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.privacy-policy .c16 {
  padding-top: 0pt;
  padding-bottom: 3pt;
  line-height: 1.15;
  page-break-after: avoid;
  text-align: center; }

.privacy-policy .c19 {
  text-decoration: none;
  vertical-align: baseline;
  font-style: normal; }

.privacy-policy .c13 {
  text-decoration: underline;
  vertical-align: baseline;
  font-style: normal; }

.privacy-policy .c21 {
  text-decoration: underline;
  vertical-align: baseline;
  font-style: normal; }

.privacy-policy .c3 {
  text-decoration: none;
  vertical-align: baseline;
  font-style: normal; }

.privacy-policy .c22 {
  margin-left: 28.5pt;
  padding-left: 0pt; }

.privacy-policy .c2 {
  font-weight: 700; }

.privacy-policy .c10 {
  padding: 0;
  margin: 0; }

.privacy-policy .c9 {
  font-weight: 400; }

.privacy-policy .c12 {
  text-decoration: inherit; }

.privacy-policy .c23 {
  font-size: 18pt; }

.privacy-policy .c18 {
  font-size: 8pt; }

.privacy-policy .c14 {
  font-weight: 700; }

.privacy-policy .c7 {
  font-size: 10pt; }

.privacy-policy .title {
  padding-top: 0pt;
  font-size: 18pt;
  padding-bottom: 3pt;
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: center; }

.privacy-policy .subtitle {
  padding-top: 0pt;
  font-size: 15pt;
  padding-bottom: 16pt;
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left; }

.privacy-policy li {
  font-size: 10pt; }

.privacy-policy p {
  margin: 0;
  font-size: 10pt; }

.privacy-policy h1 {
  padding-top: 20pt;
  font-size: 20pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left; }

.privacy-policy h2 {
  padding-top: 18pt;
  font-size: 16pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left; }

.privacy-policy h3 {
  padding-top: 16pt;
  font-size: 14pt;
  padding-bottom: 4pt;
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left; }

.privacy-policy h4 {
  padding-top: 14pt;
  font-size: 12pt;
  padding-bottom: 4pt;
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left; }

.privacy-policy h5 {
  padding-top: 12pt;
  font-size: 11pt;
  padding-bottom: 4pt;
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left; }

.privacy-policy h6 {
  padding-top: 12pt;
  font-size: 11pt;
  padding-bottom: 4pt;
  line-height: 1.15;
  page-break-after: avoid;
  font-style: italic;
  orphans: 2;
  widows: 2;
  text-align: left; }

.resilience-analysis-page .app-page-title-area {
  padding-right: 20px; }
  .resilience-analysis-page .app-page-title-area .btn {
    float: right;
    height: 48px;
    margin-top: 10px;
    position: relative;
    width: 48px; }
    .resilience-analysis-page .app-page-title-area .btn span {
      font-size: 45px;
      font-weight: 100;
      left: 12px;
      line-height: 48px;
      position: absolute;
      top: -2px; }

.resilience-analysis-page .resilience-sorting {
  padding-bottom: 5px;
  text-align: right; }
  .resilience-analysis-page .resilience-sorting > label {
    color: #353e4c;
    font-weight: 500;
    line-height: 36px;
    margin-right: 10px;
    vertical-align: top; }
  .resilience-analysis-page .resilience-sorting > .ui-select-container {
    display: inline-block;
    min-width: 25%; }

.resilience-analysis-page .document-valid-tooltip td {
  text-align: left; }

.resilience-analysis-page .document-valid-tooltip td:nth-child(2) {
  padding-left: 5px; }

.confirm-delete-wrapper {
  background-color: #FAF7E4;
  border-radius: 4px;
  color: #353e4c;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px; }
  .confirm-delete-wrapper .buttons-wrap {
    text-align: center; }
    .confirm-delete-wrapper .buttons-wrap .btn {
      margin-top: 0;
      padding: 5px 15px; }
    .confirm-delete-wrapper .buttons-wrap .del-btn {
      background-color: #F04864;
      border-color: #F04864;
      color: #FFFFFF;
      margin-left: 20px; }

.resilience-analysis-page .du-cogMenu,
.resilience-sidebar-wrapper .du-cogMenu {
  padding-bottom: 0; }

.du-menu-item .resource-popover-icon {
  color: #3da4f3;
  margin-right: 5px; }

.resource-item-wrapper.dragover-reorder {
  margin-bottom: 40px; }
  .resource-item-wrapper.dragover-reorder .resilience-sorting-droparea {
    bottom: -30px;
    height: 60px;
    position: absolute;
    width: 100%; }
    .resource-item-wrapper.dragover-reorder .resilience-sorting-droparea .resilience-droparea-border {
      border-radius: 5px;
      border: 1px #3da4f3 dashed;
      height: 20px;
      margin-top: 40px; }

.process-item-wrapper .resource-item-wrapper.compact-view > .heading-wrapper {
  cursor: default; }

.resource-item-wrapper.compact-view > .heading-wrapper.ra-cursor-default {
  cursor: default; }

a[ui-sref="home.riskmap"] {
  color: #353e4c;
  font-weight: 400 !important;
  pointer-events: none; }

.app-page-title-area .btn {
  font-weight: 400; }

@media (min-width: 200px) {
  .app-page-title-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 67px;
    line-height: 67px;
    padding-left: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #E5E6E8; } }

@media (max-width: 199px) {
  .app-page-title-area {
    position: static; } }

.app-page-title-area .cap-info-container .icon-info-with-circle {
  font-size: 25px;
  margin-top: -5px; }

@media (min-width: 200px) {
  .app-page-content {
    margin-top: 60px; } }

@media (max-width: 199px) {
  .app-page-content {
    margin-top: 24px; } }

.app-page-content .app-page-fullwidth {
  margin-left: -30px;
  margin-right: -30px; }
  .app-page-content .app-page-fullwidth > div[class^="col-"] {
    padding-left: 30px;
    padding-right: 30px; }
  .app-page-content .app-page-fullwidth .with-right-border {
    border-right: 1px solid #E5E6E8; }

.tmr-subtitle-area {
  margin-top: 50px;
  margin-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid #b4bdcb; }

.app-page-subtitle {
  line-height: 50px;
  font-size: 25px;
  font-weight: 500;
  color: #353e4c; }
  .app-page-subtitle .icon-info-with-circle {
    font-size: 20px; }

.app-page-subtitle .cap-info-container .cap-info-count,
.app-page-title .cap-info-container .cap-info-count {
  color: #353e4c;
  font-weight: 400; }

.app-page-subtitle .cap-info-container .icon-info-with-circle,
.app-page-title .cap-info-container .icon-info-with-circle {
  vertical-align: middle; }

.app-page-subtitle.mfa-subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .app-page-subtitle.mfa-subtitle switch button {
    display: block;
    margin-left: 10px; }

.app-page-subtitle.mfa-subtitle-small {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 10px; }

.settings-content {
  margin-top: 40px; }

.settings-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  display: block; }

.settings-details {
  color: #353e4c; }

.settings-box {
  margin-top: 30px;
  margin-bottom: 10px; }

.tmr-contact-administrators .tmr-permissions .ui-select-choices-row-inner,
.tmr-contact-administrators .tmr-permissions .ui-select-match-text {
  text-transform: uppercase; }

.share-img {
  width: 100%;
  border-radius: 4px; }

.modal-textbox {
  margin-top: 10px;
  min-width: 100%;
  font-style: italic;
  resize: none;
  border-radius: 4px;
  padding: 8px;
  border: 1px #b4bdcb solid;
  font-size: 16px;
  color: #353e4c;
  font-weight: bolder; }

.modal-textbox:focus {
  outline: none;
  border: #3da4f3 1px solid; }

.share-icon {
  position: absolute;
  left: 20px;
  font-size: 1.5em;
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.share-icon-dark {
  padding-left: 10px;
  color: #353e4c; }

.share-icon-dark:hover {
  cursor: pointer;
  color: #353e4c; }

.footer-sc-text {
  color: #949cab; }

.footer-sc {
  text-align: center;
  line-height: 65px;
  padding: 0 !important;
  font-size: 1.2em; }

@media (min-width: 200px) {
  .footer-sc-icons {
    padding-left: 30px; } }

@media (max-width: 199px) {
  .footer-sc-icons {
    padding-left: 8px; } }

.share-img-loader {
  width: 100%;
  height: 300px;
  position: relative; }

.share-footer {
  width: 100%;
  height: 132px;
  margin: 25px 0;
  border: 1px #cdd8ea;
  border-radius: 4px;
  position: relative; }
  @media (min-width: 200px) {
    .share-footer {
      background-image: url(assets/shareBackground.jpg?);
      background-size: 100% 132px; } }
  @media (max-width: 199px) {
    .share-footer {
      background-image: url(assets/shareBackgroundMobile.jpg?);
      background-size: 100% auto; } }

.share-sign-up-box {
  position: absolute;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  text-align: center; }

.share-title {
  color: #353e4c;
  font-weight: 500; }
  @media (min-width: 300px) {
    .share-title {
      font-size: 20px; } }
  @media (max-width: 199px) {
    .share-title {
      font-size: 14px; } }
  @media (max-width: 299px) and (min-width: 200px) {
    .share-title {
      font-size: 16px; } }

.share-btn {
  font-weight: 400;
  padding: 0px 20px 0px 20px;
  -webkit-box-shadow: none;
          box-shadow: none; }
  @media (min-width: 200px) {
    .share-btn {
      font-size: 1.3em; } }
  @media (max-width: 199px) {
    .share-btn {
      font-size: 1.2em; } }

.report-name-share {
  font-size: 22px;
  font-weight: 500;
  color: #353e4c;
  width: auto;
  margin: auto;
  display: inline-block;
  border: 1px solid transparent; }

.share-date {
  position: absolute;
  right: 16px;
  font-size: 12px; }
  @media (min-width: 200px) {
    .share-date {
      top: 14px; } }
  @media (max-width: 199px) {
    .share-date {
      top: 5px; } }

.tmr-logo-top {
  background: url(assets/Logo.svg?) center no-repeat;
  background-size: contain;
  width: 177px;
  height: 48px;
  float: left;
  margin-top: 10px; }

.share-top {
  position: absolute;
  right: 20px;
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%; }

.share-buttons .btn {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.share-login-btn {
  color: var(--base-color-primary); }
  .share-login-btn:hover {
    color: var(--base-color-primary);
    background-color: var(--base-color-primary-lighten3); }

.share-url-box {
  margin-top: 15px;
  border-radius: 4px;
  border: 1px solid #c9d4d8;
  line-height: 32px;
  height: 32px;
  padding-left: 8px;
  padding-right: 8px;
  color: #353e4c;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  font-size: 16px;
  overflow: hidden;
  white-space: nowrap; }

.share-url-title {
  border-right: 1px solid #c9d4d8;
  display: inline-block;
  padding-right: 8px;
  font-weight: 500; }

.share-url-value {
  display: inline;
  padding-left: 8px;
  max-height: 100%;
  overflow: hidden; }

#terms-of-use * {
  line-height: 1.3em !important;
  font-size: 16px !important; }

#terms-of-use li,
#terms-of-use .c23 {
  margin-bottom: 1em;
  margin-top: 1em; }

#terms-of-use .c15 {
  padding-left: 50px; }

#terms-of-use .c9,
#terms-of-use .c13,
#terms-of-use .c18,
#terms-of-use .c19,
#terms-of-use .c21,
#terms-of-use .c26,
#terms-of-use .c30 {
  padding-left: 60px; }

#terms-of-use .c22,
#terms-of-use .c32 {
  padding-left: 70px; }

#terms-of-use .c6,
#terms-of-use .c20,
#terms-of-use .c29 {
  margin-left: 0 !important; }

/* first-level */
#terms-of-use .c3,
#terms-of-use .c11,
#terms-of-use .c14,
#terms-of-use .c28 {
  margin-left: 50px; }

/* second-level */
#terms-of-use .c9,
#terms-of-use .c12,
#terms-of-use .c18,
#terms-of-use .c19,
#terms-of-use .c21,
#terms-of-use .c26,
#terms-of-use .c30,
#terms-of-use .c35 {
  margin-left: 100px; }

#terms-of-use .c13 {
  margin-left: 150px; }

#terms-of-use .c32 {
  margin-left: 160px; }

#terms-of-use .main {
  list-style: none; }
  #terms-of-use .main.start {
    counter-reset: main 0; }
  #terms-of-use .main > li:before {
    content: "" counter(main, decimal) ".";
    counter-increment: main; }

#terms-of-use .c6::before,
#terms-of-use .c20::before,
#terms-of-use .c29::before {
  font-weight: 700; }

#terms-of-use .title {
  margin-bottom: 2em;
  margin-top: 1em;
  text-align: center !important;
  font-size: 24px !important; }

#terms-of-use li {
  position: relative;
  padding-left: 50px; }

#terms-of-use li:before {
  position: absolute;
  left: 0; }

/* Content generated by Google Docs: */
.terms-of-use li,
.terms-of-use p {
  text-align: justify !important; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-2.start {
  counter-reset: lst-ctn-kix_wnmij0cmzu07-2 0; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-6 > li:before {
  content: "" counter(lst-ctn-kix_kbxm1bpcr5lb-6, decimal) ". "; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-4 > li:before {
  content: "(" counter(lst-ctn-kix_kbxm1bpcr5lb-4, lower-latin) ") "; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-8 > li:before {
  content: "" counter(lst-ctn-kix_kbxm1bpcr5lb-8, lower-roman) ". "; }

.terms-of-use .lst-kix_yzeqjqyr2fys-3 > li {
  counter-increment: lst-ctn-kix_yzeqjqyr2fys-3; }

.terms-of-use .lst-kix_22pop9qa6xgz-3 > li {
  counter-increment: lst-ctn-kix_22pop9qa6xgz-3; }

.terms-of-use .lst-kix_qv09rytsrgyh-4 > li {
  counter-increment: lst-ctn-kix_qv09rytsrgyh-4; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-2 > li:before {
  content: "" counter(lst-ctn-kix_kbxm1bpcr5lb-2, lower-roman) ") "; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-3.start {
  counter-reset: lst-ctn-kix_qtyjlfd1csih-3 0; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-7.start {
  counter-reset: lst-ctn-kix_jb80qd27i5ho-7 0; }

.terms-of-use .lst-kix_77jp2vv72q2e-6 > li {
  counter-increment: lst-ctn-kix_77jp2vv72q2e-6; }

.terms-of-use .lst-kix_22pop9qa6xgz-4 > li:before {
  content: "" counter(lst-ctn-kix_22pop9qa6xgz-0, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-1, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-2, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-3, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-4, decimal) ". "; }

.terms-of-use .lst-kix_jl20g3uk09ea-8 > li {
  counter-increment: lst-ctn-kix_jl20g3uk09ea-8; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-0 > li:before {
  content: "" counter(lst-ctn-kix_kbxm1bpcr5lb-0, decimal) ") "; }

.terms-of-use .lst-kix_22pop9qa6xgz-6 > li:before {
  content: "" counter(lst-ctn-kix_22pop9qa6xgz-0, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-1, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-2, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-3, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-4, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-5, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-6, decimal) ". "; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-4 > li {
  counter-increment: lst-ctn-kix_pdkjfeu5u5mg-4; }

.terms-of-use .lst-kix_yndlr6f5dtu-1 > li {
  counter-increment: lst-ctn-kix_yndlr6f5dtu-1; }

.terms-of-use .lst-kix_22pop9qa6xgz-8 > li:before {
  content: "" counter(lst-ctn-kix_22pop9qa6xgz-0, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-1, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-2, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-3, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-4, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-5, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-6, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-7, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-8, decimal) ". "; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-1.start {
  counter-reset: lst-ctn-kix_j7eouqgowf9f-1 0; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-1.start {
  counter-reset: lst-ctn-kix_qdvjpwm2m2b6-1 0; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_jb80qd27i5ho-3 > li {
  counter-increment: lst-ctn-kix_jb80qd27i5ho-3; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_qdft1q5q38jc-5 > li {
  counter-increment: lst-ctn-kix_qdft1q5q38jc-5; }

.terms-of-use .lst-kix_be94xss4lbxh-3 > li {
  counter-increment: lst-ctn-kix_be94xss4lbxh-3; }

.terms-of-use .lst-kix_86e8u1yx210n-0 > li {
  counter-increment: lst-ctn-kix_86e8u1yx210n-0; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-3.start {
  counter-reset: lst-ctn-kix_f3v1vtgjdx5m-3 0; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-5 > li {
  counter-increment: lst-ctn-kix_f3v1vtgjdx5m-5; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-2.start {
  counter-reset: lst-ctn-kix_jb80qd27i5ho-2 0; }

.terms-of-use .lst-kix_vltjg6tv64ze-2 > li {
  counter-increment: lst-ctn-kix_vltjg6tv64ze-2; }

.terms-of-use .lst-kix_jmq6s44ocrcf-6 > li {
  counter-increment: lst-ctn-kix_jmq6s44ocrcf-6; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-2.start {
  counter-reset: lst-ctn-kix_dpn3kl14kxj0-2 0; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_yhc1v6iazz4p-0 > li:before {
  content: "" counter(lst-ctn-kix_yhc1v6iazz4p-0, decimal) ". "; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-2.start {
  counter-reset: lst-ctn-kix_wvszyx9fl4yt-2 0; }

.terms-of-use .lst-kix_exi6qx2d4uml-8 > li {
  counter-increment: lst-ctn-kix_exi6qx2d4uml-8; }

.terms-of-use .lst-kix_yhc1v6iazz4p-2 > li:before {
  content: "" counter(lst-ctn-kix_yhc1v6iazz4p-2, lower-roman) ". "; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-5 > li {
  counter-increment: lst-ctn-kix_4uj4b9kmbxlp-5; }

.terms-of-use .lst-kix_yhc1v6iazz4p-4 > li:before {
  content: "" counter(lst-ctn-kix_yhc1v6iazz4p-4, lower-latin) ". "; }

.terms-of-use .lst-kix_5u8mf6guzj36-7 > li {
  counter-increment: lst-ctn-kix_5u8mf6guzj36-7; }

.terms-of-use .lst-kix_yhc1v6iazz4p-6 > li:before {
  content: "" counter(lst-ctn-kix_yhc1v6iazz4p-6, decimal) ". "; }

.terms-of-use ol.lst-kix_ua66ewr564g1-3.start {
  counter-reset: lst-ctn-kix_ua66ewr564g1-3 0; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-3.start {
  counter-reset: lst-ctn-kix_ozm68jv0adg5-3 0; }

.terms-of-use .lst-kix_gyvrc19ngq4f-0 > li {
  counter-increment: lst-ctn-kix_gyvrc19ngq4f-0; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-1.start {
  counter-reset: lst-ctn-kix_2oqtqd6s45kj-1 0; }

.terms-of-use .lst-kix_yhc1v6iazz4p-8 > li:before {
  content: "" counter(lst-ctn-kix_yhc1v6iazz4p-8, lower-roman) ". "; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-0.start {
  counter-reset: lst-ctn-kix_22pop9qa6xgz-0 0; }

.terms-of-use .lst-kix_otxxhlg4ijs2-6 > li {
  counter-increment: lst-ctn-kix_otxxhlg4ijs2-6; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_ozm68jv0adg5-1 > li {
  counter-increment: lst-ctn-kix_ozm68jv0adg5-1; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-6 {
  list-style-type: none; }

.terms-of-use .lst-kix_yhc1v6iazz4p-7 > li {
  counter-increment: lst-ctn-kix_yhc1v6iazz4p-7; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_xpze7a8jk05n-5 > li {
  counter-increment: lst-ctn-kix_xpze7a8jk05n-5; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-7.start {
  counter-reset: lst-ctn-kix_dpn3kl14kxj0-7 0; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-7.start {
  counter-reset: lst-ctn-kix_wvszyx9fl4yt-7 0; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-6.start {
  counter-reset: lst-ctn-kix_x2xllzoa2aed-6 0; }

.terms-of-use .lst-kix_7k9yp1bgytlo-1 > li {
  counter-increment: lst-ctn-kix_7k9yp1bgytlo-1; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-2.start {
  counter-reset: lst-ctn-kix_jl20g3uk09ea-2 0; }

.terms-of-use .lst-kix_exi6qx2d4uml-1 > li {
  counter-increment: lst-ctn-kix_exi6qx2d4uml-1; }

.terms-of-use .lst-kix_tul2fovx6tmm-0 > li:before {
  content: "12.4." counter(lst-ctn-kix_tul2fovx6tmm-0, decimal) ". "; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-4 > li:before {
  content: "" counter(lst-ctn-kix_j9lwa1xo9iwq-0, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-1, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-2, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-3, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-4, decimal) ". "; }

.terms-of-use ol.lst-kix_ca703es297vb-7.start {
  counter-reset: lst-ctn-kix_ca703es297vb-7 0; }

.terms-of-use .lst-kix_g892krgm1nrl-7 > li {
  counter-increment: lst-ctn-kix_g892krgm1nrl-7; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_jc81tp6on6t7-5 > li {
  counter-increment: lst-ctn-kix_jc81tp6on6t7-5; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-0 > li:before {
  content: "" counter(lst-ctn-kix_j9lwa1xo9iwq-0, decimal) ". "; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-2 > li:before {
  content: "" counter(lst-ctn-kix_j9lwa1xo9iwq-0, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-1, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-2, decimal) ". "; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_dnra8vwir8mr-6 > li {
  counter-increment: lst-ctn-kix_dnra8vwir8mr-6; }

.terms-of-use .lst-kix_5qie7zg80jlv-0 > li {
  counter-increment: lst-ctn-kix_5qie7zg80jlv-0; }

.terms-of-use .lst-kix_y75hn1731udi-4 > li {
  counter-increment: lst-ctn-kix_y75hn1731udi-4; }

.terms-of-use .lst-kix_rdktnl6coqgw-5 > li {
  counter-increment: lst-ctn-kix_rdktnl6coqgw-5; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-0.start {
  counter-reset: lst-ctn-kix_8u4cke4ltdqs-0 0; }

.terms-of-use .lst-kix_5u8mf6guzj36-0 > li {
  counter-increment: lst-ctn-kix_5u8mf6guzj36-0; }

.terms-of-use .lst-kix_hxom0vvb70ua-6 > li {
  counter-increment: lst-ctn-kix_hxom0vvb70ua-6; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-0.start {
  counter-reset: lst-ctn-kix_jc81tp6on6t7-0 0; }

.terms-of-use ol.lst-kix_y75hn1731udi-4.start {
  counter-reset: lst-ctn-kix_y75hn1731udi-4 0; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-8.start {
  counter-reset: lst-ctn-kix_ejqx2zz7tdan-8 0; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-8.start {
  counter-reset: lst-ctn-kix_77jp2vv72q2e-8 0; }

.terms-of-use .lst-kix_ua66ewr564g1-5 > li {
  counter-increment: lst-ctn-kix_ua66ewr564g1-5; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-7.start {
  counter-reset: lst-ctn-kix_jmq6s44ocrcf-7 0; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-5.start {
  counter-reset: lst-ctn-kix_1qrhkgrpibm6-5 0; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-0.start {
  counter-reset: lst-ctn-kix_4uj4b9kmbxlp-0 3; }

.terms-of-use .lst-kix_feuxo8rhdbt0-2 > li {
  counter-increment: lst-ctn-kix_feuxo8rhdbt0-2; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-7.start {
  counter-reset: lst-ctn-kix_gyvrc19ngq4f-7 0; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-3.start {
  counter-reset: lst-ctn-kix_5u8mf6guzj36-3 0; }

.terms-of-use .lst-kix_jl20g3uk09ea-1 > li {
  counter-increment: lst-ctn-kix_jl20g3uk09ea-1; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-5.start {
  counter-reset: lst-ctn-kix_mtnawcnqd6n-5 0; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-6 > li:before {
  content: "" counter(lst-ctn-kix_j9lwa1xo9iwq-0, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-1, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-2, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-3, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-4, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-5, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-6, decimal) ". "; }

.terms-of-use .lst-kix_8cyb65p92zt8-6 > li {
  counter-increment: lst-ctn-kix_8cyb65p92zt8-6; }

.terms-of-use .lst-kix_lkj44s1va27m-5 > li {
  counter-increment: lst-ctn-kix_lkj44s1va27m-5; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-6.start {
  counter-reset: lst-ctn-kix_qdvjpwm2m2b6-6 0; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-8 > li:before {
  content: "" counter(lst-ctn-kix_j9lwa1xo9iwq-0, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-1, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-2, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-3, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-4, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-5, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-6, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-7, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-8, decimal) ". "; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-8.start {
  counter-reset: lst-ctn-kix_r8ii1wx48ejc-8 0; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_g892krgm1nrl-0 > li {
  counter-increment: lst-ctn-kix_g892krgm1nrl-0; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-3 {
  list-style-type: none; }

.terms-of-use .lst-kix_86e8u1yx210n-7 > li {
  counter-increment: lst-ctn-kix_86e8u1yx210n-7; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_2oqtqd6s45kj-0 > li {
  counter-increment: lst-ctn-kix_2oqtqd6s45kj-0; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-6 {
  list-style-type: none; }

.terms-of-use .lst-kix_pbzo2n87xzpj-2 > li {
  counter-increment: lst-ctn-kix_pbzo2n87xzpj-2; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_tul2fovx6tmm-7 > li {
  counter-increment: lst-ctn-kix_tul2fovx6tmm-7; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_be94xss4lbxh-7.start {
  counter-reset: lst-ctn-kix_be94xss4lbxh-7 0; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-0.start {
  counter-reset: lst-ctn-kix_otxxhlg4ijs2-0 0; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-2.start {
  counter-reset: lst-ctn-kix_jmq6s44ocrcf-2 0; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-7.start {
  counter-reset: lst-ctn-kix_8cyb65p92zt8-7 0; }

.terms-of-use .lst-kix_wnmij0cmzu07-8 > li {
  counter-increment: lst-ctn-kix_wnmij0cmzu07-8; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-8.start {
  counter-reset: lst-ctn-kix_pdkjfeu5u5mg-8 0; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-2 > li:before {
  content: "" counter(lst-ctn-kix_f3v1vtgjdx5m-0, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-1, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-2, decimal) ". "; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-7.start {
  counter-reset: lst-ctn-kix_kbxm1bpcr5lb-7 0; }

.terms-of-use ol.lst-kix_4dasw5gw6627-0.start {
  counter-reset: lst-ctn-kix_4dasw5gw6627-0 0; }

.terms-of-use .lst-kix_hy09gnjdhf12-6 > li {
  counter-increment: lst-ctn-kix_hy09gnjdhf12-6; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-0.start {
  counter-reset: lst-ctn-kix_yzeqjqyr2fys-0 0; }

.terms-of-use ol.lst-kix_g892krgm1nrl-7.start {
  counter-reset: lst-ctn-kix_g892krgm1nrl-7 0; }

.terms-of-use .lst-kix_8ni4xzorapao-6 > li {
  counter-increment: lst-ctn-kix_8ni4xzorapao-6; }

.terms-of-use ol.lst-kix_e764bgixpbj9-2.start {
  counter-reset: lst-ctn-kix_e764bgixpbj9-2 0; }

.terms-of-use .lst-kix_j7eouqgowf9f-2 > li {
  counter-increment: lst-ctn-kix_j7eouqgowf9f-2; }

.terms-of-use .lst-kix_e764bgixpbj9-2 > li {
  counter-increment: lst-ctn-kix_e764bgixpbj9-2; }

.terms-of-use .lst-kix_7k9yp1bgytlo-8 > li {
  counter-increment: lst-ctn-kix_7k9yp1bgytlo-8; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-6 > li:before {
  content: "" counter(lst-ctn-kix_f3v1vtgjdx5m-0, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-1, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-2, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-3, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-4, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-5, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-6, decimal) ". "; }

.terms-of-use .lst-kix_lkj44s1va27m-3 > li:before {
  content: "" counter(lst-ctn-kix_lkj44s1va27m-0, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-1, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-2, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-3, decimal) ". "; }

.terms-of-use .lst-kix_2oqtqd6s45kj-2 > li:before {
  content: "" counter(lst-ctn-kix_2oqtqd6s45kj-2, lower-roman) ". "; }

.terms-of-use .lst-kix_2oqtqd6s45kj-6 > li:before {
  content: "" counter(lst-ctn-kix_2oqtqd6s45kj-6, decimal) ". "; }

.terms-of-use .lst-kix_8u4cke4ltdqs-0 > li {
  counter-increment: lst-ctn-kix_8u4cke4ltdqs-0; }

.terms-of-use ol.lst-kix_g892krgm1nrl-2.start {
  counter-reset: lst-ctn-kix_g892krgm1nrl-2 0; }

.terms-of-use .lst-kix_gijfqhf5xkva-8 > li {
  counter-increment: lst-ctn-kix_gijfqhf5xkva-8; }

.terms-of-use ol.lst-kix_8ni4xzorapao-6.start {
  counter-reset: lst-ctn-kix_8ni4xzorapao-6 0; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-1.start {
  counter-reset: lst-ctn-kix_lmfaweys7m5f-1 0; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-4.start {
  counter-reset: lst-ctn-kix_gijfqhf5xkva-4 0; }

.terms-of-use .lst-kix_49u30kkokmge-4 > li {
  counter-increment: lst-ctn-kix_49u30kkokmge-4; }

.terms-of-use .lst-kix_cwc83c9nqybd-4 > li {
  counter-increment: lst-ctn-kix_cwc83c9nqybd-4; }

.terms-of-use .lst-kix_ua66ewr564g1-4 > li:before {
  content: "" counter(lst-ctn-kix_ua66ewr564g1-0, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-1, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-2, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-3, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-4, decimal) ". "; }

.terms-of-use .lst-kix_8ni4xzorapao-8 > li {
  counter-increment: lst-ctn-kix_8ni4xzorapao-8; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-2.start {
  counter-reset: lst-ctn-kix_1mqm6fdbjf9d-2 0; }

.terms-of-use .lst-kix_hy09gnjdhf12-8 > li {
  counter-increment: lst-ctn-kix_hy09gnjdhf12-8; }

.terms-of-use .lst-kix_gijfqhf5xkva-1 > li {
  counter-increment: lst-ctn-kix_gijfqhf5xkva-1; }

.terms-of-use ol.lst-kix_b028ztyzvlep-3.start {
  counter-reset: lst-ctn-kix_b028ztyzvlep-3 0; }

.terms-of-use .lst-kix_ua66ewr564g1-0 > li:before {
  content: "" counter(lst-ctn-kix_ua66ewr564g1-0, decimal) ". "; }

.terms-of-use .lst-kix_ua66ewr564g1-8 > li:before {
  content: "" counter(lst-ctn-kix_ua66ewr564g1-0, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-1, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-2, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-3, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-4, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-5, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-6, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-7, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-8, decimal) ". "; }

.terms-of-use .lst-kix_8u4cke4ltdqs-2 > li {
  counter-increment: lst-ctn-kix_8u4cke4ltdqs-2; }

.terms-of-use .lst-kix_kj86jt9svxha-6 > li {
  counter-increment: lst-ctn-kix_kj86jt9svxha-6; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_b028ztyzvlep-1 > li:before {
  content: "" counter(lst-ctn-kix_b028ztyzvlep-0, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-1, decimal) ". "; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-3.start {
  counter-reset: lst-ctn-kix_exi6qx2d4uml-3 0; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-4 > li {
  counter-increment: lst-ctn-kix_1mqm6fdbjf9d-4; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_1qrhkgrpibm6-7 > li {
  counter-increment: lst-ctn-kix_1qrhkgrpibm6-7; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-3 {
  list-style-type: none; }

.terms-of-use .lst-kix_wnmij0cmzu07-1 > li {
  counter-increment: lst-ctn-kix_wnmij0cmzu07-1; }

.terms-of-use .lst-kix_tul2fovx6tmm-4 > li:before {
  content: "" counter(lst-ctn-kix_tul2fovx6tmm-0, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-1, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-2, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-3, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-4, decimal) ". "; }

.terms-of-use .lst-kix_rvhnci86jkmr-0 > li {
  counter-increment: lst-ctn-kix_rvhnci86jkmr-0; }

.terms-of-use .lst-kix_b028ztyzvlep-5 > li:before {
  content: "" counter(lst-ctn-kix_b028ztyzvlep-0, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-1, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-2, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-3, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-4, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-5, decimal) ". "; }

.terms-of-use ol.lst-kix_8ni4xzorapao-1.start {
  counter-reset: lst-ctn-kix_8ni4xzorapao-1 0; }

.terms-of-use ol.lst-kix_2mckoz4hri27-4.start {
  counter-reset: lst-ctn-kix_2mckoz4hri27-4 0; }

.terms-of-use .lst-kix_tul2fovx6tmm-8 > li:before {
  content: "" counter(lst-ctn-kix_tul2fovx6tmm-0, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-1, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-2, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-3, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-4, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-5, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-6, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-7, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-8, decimal) ". "; }

.terms-of-use .lst-kix_dpn3kl14kxj0-4 > li {
  counter-increment: lst-ctn-kix_dpn3kl14kxj0-4; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-6.start {
  counter-reset: lst-ctn-kix_j9lwa1xo9iwq-6 0; }

.terms-of-use .lst-kix_e764bgixpbj9-4 > li {
  counter-increment: lst-ctn-kix_e764bgixpbj9-4; }

.terms-of-use .lst-kix_ozm68jv0adg5-8 > li {
  counter-increment: lst-ctn-kix_ozm68jv0adg5-8; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-2.start {
  counter-reset: lst-ctn-kix_5qie7zg80jlv-2 0; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-3.start {
  counter-reset: lst-ctn-kix_vltjg6tv64ze-3 0; }

.terms-of-use .lst-kix_77jp2vv72q2e-7 > li:before {
  content: "" counter(lst-ctn-kix_77jp2vv72q2e-0, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-1, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-2, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-3, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-4, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-5, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-6, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-7, decimal) ". "; }

.terms-of-use .lst-kix_8cyb65p92zt8-8 > li {
  counter-increment: lst-ctn-kix_8cyb65p92zt8-8; }

.terms-of-use .lst-kix_8u4cke4ltdqs-1 > li:before {
  content: "" counter(lst-ctn-kix_8u4cke4ltdqs-1, lower-latin) ". "; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-8.start {
  counter-reset: lst-ctn-kix_exi6qx2d4uml-8 0; }

.terms-of-use .lst-kix_qtyjlfd1csih-4 > li {
  counter-increment: lst-ctn-kix_qtyjlfd1csih-4; }

.terms-of-use .lst-kix_8u4cke4ltdqs-5 > li:before {
  content: "" counter(lst-ctn-kix_8u4cke4ltdqs-5, lower-roman) ". "; }

.terms-of-use .lst-kix_r8ii1wx48ejc-5 > li:before {
  content: "" counter(lst-ctn-kix_r8ii1wx48ejc-0, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-1, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-2, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-3, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-4, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-5, decimal) ". "; }

.terms-of-use .lst-kix_vltjg6tv64ze-6 > li:before {
  content: "" counter(lst-ctn-kix_vltjg6tv64ze-0, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-1, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-2, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-3, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-4, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-5, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-6, decimal) ". "; }

.terms-of-use .lst-kix_77jp2vv72q2e-3 > li:before {
  content: "" counter(lst-ctn-kix_77jp2vv72q2e-0, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-1, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-2, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-3, decimal) ". "; }

.terms-of-use .lst-kix_feuxo8rhdbt0-0 > li {
  counter-increment: lst-ctn-kix_feuxo8rhdbt0-0; }

.terms-of-use .lst-kix_vltjg6tv64ze-2 > li:before {
  content: "" counter(lst-ctn-kix_vltjg6tv64ze-0, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-1, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-2, decimal) ". "; }

.terms-of-use ol.lst-kix_be94xss4lbxh-2.start {
  counter-reset: lst-ctn-kix_be94xss4lbxh-2 0; }

.terms-of-use .lst-kix_wvszyx9fl4yt-6 > li {
  counter-increment: lst-ctn-kix_wvszyx9fl4yt-6; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-0.start {
  counter-reset: lst-ctn-kix_mtnawcnqd6n-0 6; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-2.start {
  counter-reset: lst-ctn-kix_gyvrc19ngq4f-2 0; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-6.start {
  counter-reset: lst-ctn-kix_qv09rytsrgyh-6 0; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-4.start {
  counter-reset: lst-ctn-kix_fxz23k1sp8k0-4 0; }

.terms-of-use .lst-kix_8ni4xzorapao-1 > li {
  counter-increment: lst-ctn-kix_8ni4xzorapao-1; }

.terms-of-use .lst-kix_gijfqhf5xkva-3 > li {
  counter-increment: lst-ctn-kix_gijfqhf5xkva-3; }

.terms-of-use .lst-kix_1qrhkgrpibm6-5 > li {
  counter-increment: lst-ctn-kix_1qrhkgrpibm6-5; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-0.start {
  counter-reset: lst-ctn-kix_vltjg6tv64ze-0 0; }

.terms-of-use .lst-kix_r8ii1wx48ejc-1 > li:before {
  content: "" counter(lst-ctn-kix_r8ii1wx48ejc-0, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-1, decimal) ". "; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-3 {
  list-style-type: none; }

.terms-of-use .lst-kix_lmfaweys7m5f-8 > li {
  counter-increment: lst-ctn-kix_lmfaweys7m5f-8; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_r8ii1wx48ejc-1 > li {
  counter-increment: lst-ctn-kix_r8ii1wx48ejc-1; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-1.start {
  counter-reset: lst-ctn-kix_j9lwa1xo9iwq-1 1; }

.terms-of-use .lst-kix_fxz23k1sp8k0-6 > li:before {
  content: "" counter(lst-ctn-kix_fxz23k1sp8k0-0, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-1, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-2, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-3, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-4, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-5, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-6, decimal) ". "; }

.terms-of-use .lst-kix_jmq6s44ocrcf-7 > li:before {
  content: "" counter(lst-ctn-kix_jmq6s44ocrcf-0, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-1, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-2, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-3, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-4, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-5, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-6, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-7, decimal) ". "; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-2.start {
  counter-reset: lst-ctn-kix_8cyb65p92zt8-2 0; }

.terms-of-use .lst-kix_rdktnl6coqgw-3 > li {
  counter-increment: lst-ctn-kix_rdktnl6coqgw-3; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-8.start {
  counter-reset: lst-ctn-kix_qtyjlfd1csih-8 0; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-7.start {
  counter-reset: lst-ctn-kix_wnmij0cmzu07-7 0; }

.terms-of-use .lst-kix_jmq6s44ocrcf-3 > li:before {
  content: "" counter(lst-ctn-kix_jmq6s44ocrcf-0, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-1, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-2, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-3, decimal) ". "; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_gijfqhf5xkva-2 > li:before {
  content: "" counter(lst-ctn-kix_gijfqhf5xkva-0, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-1, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-2, decimal) ". "; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_8u4cke4ltdqs-7 > li {
  counter-increment: lst-ctn-kix_8u4cke4ltdqs-7; }

.terms-of-use .lst-kix_b028ztyzvlep-5 > li {
  counter-increment: lst-ctn-kix_b028ztyzvlep-5; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_ozm68jv0adg5-3 > li {
  counter-increment: lst-ctn-kix_ozm68jv0adg5-3; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_lmfaweys7m5f-1 > li {
  counter-increment: lst-ctn-kix_lmfaweys7m5f-1; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4dasw5gw6627-5.start {
  counter-reset: lst-ctn-kix_4dasw5gw6627-5 0; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-3 > li:before {
  content: "" counter(lst-ctn-kix_qdvjpwm2m2b6-0, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-1, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-2, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-3, decimal) ". "; }

.terms-of-use ol.lst-kix_4coayww806d7-5.start {
  counter-reset: lst-ctn-kix_4coayww806d7-5 0; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-8.start {
  counter-reset: lst-ctn-kix_qv09rytsrgyh-8 0; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-2 > li:before {
  content: "" counter(lst-ctn-kix_pdkjfeu5u5mg-0, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-1, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-2, decimal) ". "; }

.terms-of-use ol.lst-kix_b028ztyzvlep-0.start {
  counter-reset: lst-ctn-kix_b028ztyzvlep-0 0; }

.terms-of-use .lst-kix_r8ii1wx48ejc-8 > li {
  counter-increment: lst-ctn-kix_r8ii1wx48ejc-8; }

.terms-of-use .lst-kix_vw3e5pptfgmp-3 > li {
  counter-increment: lst-ctn-kix_vw3e5pptfgmp-3; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-3.start {
  counter-reset: lst-ctn-kix_j9lwa1xo9iwq-3 0; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-6.start {
  counter-reset: lst-ctn-kix_lmfaweys7m5f-6 0; }

.terms-of-use .lst-kix_1qrhkgrpibm6-0 > li {
  counter-increment: lst-ctn-kix_1qrhkgrpibm6-0; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-4.start {
  counter-reset: lst-ctn-kix_yhc1v6iazz4p-4 0; }

.terms-of-use .lst-kix_lkj44s1va27m-7 > li:before {
  content: "" counter(lst-ctn-kix_lkj44s1va27m-0, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-1, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-2, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-3, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-4, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-5, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-6, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-7, decimal) ". "; }

.terms-of-use .lst-kix_22pop9qa6xgz-2 > li:before {
  content: "" counter(lst-ctn-kix_22pop9qa6xgz-0, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-1, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-2, decimal) ". "; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-0.start {
  counter-reset: lst-ctn-kix_1qrhkgrpibm6-0 0; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-7 > li:before {
  content: "" counter(lst-ctn-kix_qdvjpwm2m2b6-0, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-1, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-2, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-3, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-4, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-5, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-6, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-7, decimal) ". "; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-7 > li {
  counter-increment: lst-ctn-kix_f3v1vtgjdx5m-7; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-5.start {
  counter-reset: lst-ctn-kix_jc81tp6on6t7-5 0; }

.terms-of-use .lst-kix_fxz23k1sp8k0-2 > li:before {
  content: "" counter(lst-ctn-kix_fxz23k1sp8k0-0, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-1, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-2, decimal) ". "; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-5.start {
  counter-reset: lst-ctn-kix_8u4cke4ltdqs-5 0; }

.terms-of-use .lst-kix_hy09gnjdhf12-1 > li {
  counter-increment: lst-ctn-kix_hy09gnjdhf12-1; }

.terms-of-use .lst-kix_gijfqhf5xkva-6 > li:before {
  content: "" counter(lst-ctn-kix_gijfqhf5xkva-0, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-1, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-2, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-3, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-4, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-5, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-6, decimal) ". "; }

.terms-of-use .lst-kix_kj86jt9svxha-3 > li:before {
  content: "" counter(lst-ctn-kix_kj86jt9svxha-0, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-1, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-2, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-3, decimal) ". "; }

.terms-of-use .lst-kix_ozm68jv0adg5-3 > li:before {
  content: "" counter(lst-ctn-kix_ozm68jv0adg5-3, decimal) ". "; }

.terms-of-use ol.lst-kix_ca703es297vb-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_kj86jt9svxha-5 > li:before {
  content: "" counter(lst-ctn-kix_kj86jt9svxha-0, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-1, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-2, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-3, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-4, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-5, decimal) ". "; }

.terms-of-use ol.lst-kix_ca703es297vb-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ca703es297vb-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ca703es297vb-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_ozm68jv0adg5-5 > li:before {
  content: "" counter(lst-ctn-kix_ozm68jv0adg5-5, lower-roman) ". "; }

.terms-of-use .lst-kix_y75hn1731udi-7 > li:before {
  content: "" counter(lst-ctn-kix_y75hn1731udi-0, decimal) "." counter(lst-ctn-kix_y75hn1731udi-1, decimal) "." counter(lst-ctn-kix_y75hn1731udi-2, decimal) "." counter(lst-ctn-kix_y75hn1731udi-3, decimal) "." counter(lst-ctn-kix_y75hn1731udi-4, decimal) "." counter(lst-ctn-kix_y75hn1731udi-5, decimal) "." counter(lst-ctn-kix_y75hn1731udi-6, decimal) "." counter(lst-ctn-kix_y75hn1731udi-7, decimal) ". "; }

.terms-of-use ol.lst-kix_b028ztyzvlep-5.start {
  counter-reset: lst-ctn-kix_b028ztyzvlep-5 0; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_kj86jt9svxha-2.start {
  counter-reset: lst-ctn-kix_kj86jt9svxha-2 0; }

.terms-of-use ol.lst-kix_ca703es297vb-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ca703es297vb-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ca703es297vb-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ca703es297vb-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ca703es297vb-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_1099weaqanok-7 > li:before {
  content: "" counter(lst-ctn-kix_1099weaqanok-0, decimal) "." counter(lst-ctn-kix_1099weaqanok-1, decimal) "." counter(lst-ctn-kix_1099weaqanok-2, decimal) "." counter(lst-ctn-kix_1099weaqanok-3, decimal) "." counter(lst-ctn-kix_1099weaqanok-4, decimal) "." counter(lst-ctn-kix_1099weaqanok-5, decimal) "." counter(lst-ctn-kix_1099weaqanok-6, decimal) "." counter(lst-ctn-kix_1099weaqanok-7, decimal) ". "; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_be94xss4lbxh-5 > li {
  counter-increment: lst-ctn-kix_be94xss4lbxh-5; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_bb2e201r5mnm-7 > li {
  counter-increment: lst-ctn-kix_bb2e201r5mnm-7; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-3.start {
  counter-reset: lst-ctn-kix_feuxo8rhdbt0-3 0; }

.terms-of-use ol.lst-kix_49u30kkokmge-3.start {
  counter-reset: lst-ctn-kix_49u30kkokmge-3 0; }

.terms-of-use .lst-kix_1099weaqanok-5 > li:before {
  content: "" counter(lst-ctn-kix_1099weaqanok-0, decimal) "." counter(lst-ctn-kix_1099weaqanok-1, decimal) "." counter(lst-ctn-kix_1099weaqanok-2, decimal) "." counter(lst-ctn-kix_1099weaqanok-3, decimal) "." counter(lst-ctn-kix_1099weaqanok-4, decimal) "." counter(lst-ctn-kix_1099weaqanok-5, decimal) ". "; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-8 > li {
  counter-increment: lst-ctn-kix_kbxm1bpcr5lb-8; }

.terms-of-use .lst-kix_yzeqjqyr2fys-1 > li {
  counter-increment: lst-ctn-kix_yzeqjqyr2fys-1; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-6 > li:before {
  content: "" counter(lst-ctn-kix_pdkjfeu5u5mg-0, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-1, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-2, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-3, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-4, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-5, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-6, decimal) ". "; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-8.start {
  counter-reset: lst-ctn-kix_hy09gnjdhf12-8 0; }

.terms-of-use .lst-kix_qv09rytsrgyh-2 > li {
  counter-increment: lst-ctn-kix_qv09rytsrgyh-2; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-4.start {
  counter-reset: lst-ctn-kix_lmfaweys7m5f-4 0; }

.terms-of-use .lst-kix_exi6qx2d4uml-6 > li {
  counter-increment: lst-ctn-kix_exi6qx2d4uml-6; }

.terms-of-use .lst-kix_y75hn1731udi-5 > li:before {
  content: "" counter(lst-ctn-kix_y75hn1731udi-0, decimal) "." counter(lst-ctn-kix_y75hn1731udi-1, decimal) "." counter(lst-ctn-kix_y75hn1731udi-2, decimal) "." counter(lst-ctn-kix_y75hn1731udi-3, decimal) "." counter(lst-ctn-kix_y75hn1731udi-4, decimal) "." counter(lst-ctn-kix_y75hn1731udi-5, decimal) ". "; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-8 > li:before {
  content: "" counter(lst-ctn-kix_pdkjfeu5u5mg-0, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-1, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-2, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-3, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-4, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-5, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-6, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-7, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-8, decimal) ". "; }

.terms-of-use .lst-kix_vw3e5pptfgmp-1 > li:before {
  content: "" counter(lst-ctn-kix_vw3e5pptfgmp-0, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-1, decimal) ". "; }

.terms-of-use ol.lst-kix_be94xss4lbxh-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-6.start {
  counter-reset: lst-ctn-kix_bb2e201r5mnm-6 0; }

.terms-of-use .lst-kix_wnmij0cmzu07-6 > li:before {
  content: "" counter(lst-ctn-kix_wnmij0cmzu07-0, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-1, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-2, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-3, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-4, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-5, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-6, decimal) ". "; }

.terms-of-use .lst-kix_lmfaweys7m5f-4 > li:before {
  content: "" counter(lst-ctn-kix_lmfaweys7m5f-0, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-1, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-2, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-3, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-4, decimal) ". "; }

.terms-of-use ol.lst-kix_be94xss4lbxh-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_b028ztyzvlep-7 > li {
  counter-increment: lst-ctn-kix_b028ztyzvlep-7; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-6.start {
  counter-reset: lst-ctn-kix_pdkjfeu5u5mg-6 0; }

.terms-of-use .lst-kix_wnmij0cmzu07-4 > li:before {
  content: "" counter(lst-ctn-kix_wnmij0cmzu07-0, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-1, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-2, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-3, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-4, decimal) ". "; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-3.start {
  counter-reset: lst-ctn-kix_otxxhlg4ijs2-3 0; }

.terms-of-use .lst-kix_b028ztyzvlep-0 > li {
  counter-increment: lst-ctn-kix_b028ztyzvlep-0; }

.terms-of-use .lst-kix_feuxo8rhdbt0-7 > li {
  counter-increment: lst-ctn-kix_feuxo8rhdbt0-7; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-0.start {
  counter-reset: lst-ctn-kix_5u8mf6guzj36-0 0; }

.terms-of-use ol.lst-kix_be94xss4lbxh-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_be94xss4lbxh-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_be94xss4lbxh-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_be94xss4lbxh-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_be94xss4lbxh-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_g892krgm1nrl-2 > li {
  counter-increment: lst-ctn-kix_g892krgm1nrl-2; }

.terms-of-use ol.lst-kix_be94xss4lbxh-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_be94xss4lbxh-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_49u30kkokmge-8 > li:before {
  content: "" counter(lst-ctn-kix_49u30kkokmge-0, decimal) "." counter(lst-ctn-kix_49u30kkokmge-1, decimal) "." counter(lst-ctn-kix_49u30kkokmge-2, decimal) "." counter(lst-ctn-kix_49u30kkokmge-3, decimal) "." counter(lst-ctn-kix_49u30kkokmge-4, decimal) "." counter(lst-ctn-kix_49u30kkokmge-5, decimal) "." counter(lst-ctn-kix_49u30kkokmge-6, decimal) "." counter(lst-ctn-kix_49u30kkokmge-7, decimal) "." counter(lst-ctn-kix_49u30kkokmge-8, decimal) ". "; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-1.start {
  counter-reset: lst-ctn-kix_hy09gnjdhf12-1 0; }

.terms-of-use .lst-kix_bb2e201r5mnm-0 > li {
  counter-increment: lst-ctn-kix_bb2e201r5mnm-0; }

.terms-of-use .lst-kix_7k9yp1bgytlo-5 > li:before {
  content: "" counter(lst-ctn-kix_7k9yp1bgytlo-0, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-1, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-2, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-3, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-4, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-5, decimal) ". "; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-2.start {
  counter-reset: lst-ctn-kix_1qrhkgrpibm6-2 0; }

.terms-of-use ol.lst-kix_4coayww806d7-2.start {
  counter-reset: lst-ctn-kix_4coayww806d7-2 0; }

.terms-of-use .lst-kix_qdft1q5q38jc-3 > li {
  counter-increment: lst-ctn-kix_qdft1q5q38jc-3; }

.terms-of-use .lst-kix_wvszyx9fl4yt-1 > li:before {
  content: "" counter(lst-ctn-kix_wvszyx9fl4yt-0, decimal) "." counter(lst-ctn-kix_4coayww806d7-1, decimal) ". "; }

.terms-of-use .lst-kix_49u30kkokmge-6 > li:before {
  content: "" counter(lst-ctn-kix_49u30kkokmge-0, decimal) "." counter(lst-ctn-kix_49u30kkokmge-1, decimal) "." counter(lst-ctn-kix_49u30kkokmge-2, decimal) "." counter(lst-ctn-kix_49u30kkokmge-3, decimal) "." counter(lst-ctn-kix_49u30kkokmge-4, decimal) "." counter(lst-ctn-kix_49u30kkokmge-5, decimal) "." counter(lst-ctn-kix_49u30kkokmge-6, decimal) ". "; }

.terms-of-use ol.lst-kix_4dasw5gw6627-2.start {
  counter-reset: lst-ctn-kix_4dasw5gw6627-2 0; }

.terms-of-use .lst-kix_86e8u1yx210n-2 > li {
  counter-increment: lst-ctn-kix_86e8u1yx210n-2; }

.terms-of-use ol.lst-kix_8ni4xzorapao-8.start {
  counter-reset: lst-ctn-kix_8ni4xzorapao-8 0; }

.terms-of-use .lst-kix_7k9yp1bgytlo-3 > li:before {
  content: "" counter(lst-ctn-kix_7k9yp1bgytlo-0, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-1, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-2, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-3, decimal) ". "; }

.terms-of-use .lst-kix_yhc1v6iazz4p-5 > li {
  counter-increment: lst-ctn-kix_yhc1v6iazz4p-5; }

.terms-of-use .lst-kix_7k9yp1bgytlo-3 > li {
  counter-increment: lst-ctn-kix_7k9yp1bgytlo-3; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_49u30kkokmge-0 > li:before {
  content: "31." counter(lst-ctn-kix_49u30kkokmge-0, decimal) ". "; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-1 > li {
  counter-increment: lst-ctn-kix_j9lwa1xo9iwq-1; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_x2xllzoa2aed-2 > li {
  counter-increment: lst-ctn-kix_x2xllzoa2aed-2; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_8cyb65p92zt8-1 > li {
  counter-increment: lst-ctn-kix_8cyb65p92zt8-1; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-3 {
  list-style-type: none; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-6 > li {
  counter-increment: lst-ctn-kix_pdkjfeu5u5mg-6; }

.terms-of-use .lst-kix_22pop9qa6xgz-1 > li {
  counter-increment: lst-ctn-kix_22pop9qa6xgz-1; }

.terms-of-use .lst-kix_bb2e201r5mnm-3 > li {
  counter-increment: lst-ctn-kix_bb2e201r5mnm-3; }

.terms-of-use ol.lst-kix_86e8u1yx210n-2.start {
  counter-reset: lst-ctn-kix_86e8u1yx210n-2 0; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_rdktnl6coqgw-2 > li:before {
  content: "" counter(lst-ctn-kix_rdktnl6coqgw-0, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-1, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-2, decimal) ". "; }

.terms-of-use .lst-kix_rdktnl6coqgw-4 > li:before {
  content: "" counter(lst-ctn-kix_rdktnl6coqgw-0, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-1, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-2, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-3, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-4, decimal) ". "; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_qdft1q5q38jc-8 > li:before {
  content: "" counter(lst-ctn-kix_qdft1q5q38jc-0, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-1, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-2, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-3, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-4, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-5, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-6, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-7, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-8, decimal) ". "; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-1.start {
  counter-reset: lst-ctn-kix_pdkjfeu5u5mg-1 0; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-5.start {
  counter-reset: lst-ctn-kix_vltjg6tv64ze-5 0; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-8.start {
  counter-reset: lst-ctn-kix_feuxo8rhdbt0-8 0; }

.terms-of-use .lst-kix_wvszyx9fl4yt-7 > li:before {
  content: "" counter(lst-ctn-kix_wvszyx9fl4yt-0, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-1, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-2, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-3, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-4, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-5, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-6, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-7, decimal) ". "; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_g892krgm1nrl-0.start {
  counter-reset: lst-ctn-kix_g892krgm1nrl-0 18; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-5.start {
  counter-reset: lst-ctn-kix_5u8mf6guzj36-5 0; }

.terms-of-use .lst-kix_g892krgm1nrl-5 > li {
  counter-increment: lst-ctn-kix_g892krgm1nrl-5; }

.terms-of-use .lst-kix_2mckoz4hri27-2 > li {
  counter-increment: lst-ctn-kix_2mckoz4hri27-2; }

.terms-of-use .lst-kix_yzeqjqyr2fys-0 > li:before {
  content: "12." counter(lst-ctn-kix_yzeqjqyr2fys-0, decimal) ". "; }

.terms-of-use .lst-kix_qtyjlfd1csih-6 > li:before {
  content: "" counter(lst-ctn-kix_qtyjlfd1csih-6, decimal) ". "; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-2.start {
  counter-reset: lst-ctn-kix_gijfqhf5xkva-2 0; }

.terms-of-use .lst-kix_yzeqjqyr2fys-6 > li:before {
  content: "" counter(lst-ctn-kix_yzeqjqyr2fys-0, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-1, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-2, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-3, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-4, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-5, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-6, decimal) ". "; }

.terms-of-use .lst-kix_qtyjlfd1csih-0 > li:before {
  content: "" counter(lst-ctn-kix_qtyjlfd1csih-0, decimal) ". "; }

.terms-of-use .lst-kix_qtyjlfd1csih-8 > li:before {
  content: "" counter(lst-ctn-kix_qtyjlfd1csih-8, lower-roman) ". "; }

.terms-of-use .lst-kix_g892krgm1nrl-6 > li:before {
  content: "" counter(lst-ctn-kix_g892krgm1nrl-0, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-1, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-2, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-3, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-4, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-5, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-6, decimal) ". "; }

.terms-of-use .lst-kix_5u8mf6guzj36-4 > li:before {
  content: "" counter(lst-ctn-kix_5u8mf6guzj36-0, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-1, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-2, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-3, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-4, decimal) ". "; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-7.start {
  counter-reset: lst-ctn-kix_1qrhkgrpibm6-7 0; }

.terms-of-use .lst-kix_22pop9qa6xgz-8 > li {
  counter-increment: lst-ctn-kix_22pop9qa6xgz-8; }

.terms-of-use ol.lst-kix_4coayww806d7-0.start {
  counter-reset: lst-ctn-kix_4coayww806d7-0 14; }

.terms-of-use ol.lst-kix_2mckoz4hri27-2.start {
  counter-reset: lst-ctn-kix_2mckoz4hri27-2 0; }

.terms-of-use ol.lst-kix_86e8u1yx210n-4.start {
  counter-reset: lst-ctn-kix_86e8u1yx210n-4 0; }

.terms-of-use .lst-kix_ejqx2zz7tdan-5 > li:before {
  content: "" counter(lst-ctn-kix_ejqx2zz7tdan-0, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-1, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-2, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-3, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-4, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-5, decimal) ". "; }

.terms-of-use .lst-kix_g892krgm1nrl-8 > li:before {
  content: "" counter(lst-ctn-kix_g892krgm1nrl-0, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-1, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-2, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-3, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-4, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-5, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-6, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-7, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-8, decimal) ". "; }

.terms-of-use .lst-kix_5u8mf6guzj36-2 > li:before {
  content: "18.1." counter(lst-ctn-kix_5u8mf6guzj36-2, decimal) ". "; }

.terms-of-use .lst-kix_gyvrc19ngq4f-5 > li {
  counter-increment: lst-ctn-kix_gyvrc19ngq4f-5; }

.terms-of-use .lst-kix_4coayww806d7-3 > li:before {
  content: "" counter(lst-ctn-kix_4coayww806d7-0, decimal) "." counter(lst-ctn-kix_4coayww806d7-1, decimal) "." counter(lst-ctn-kix_4coayww806d7-2, decimal) "." counter(lst-ctn-kix_4coayww806d7-3, decimal) ". "; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_86e8u1yx210n-7.start {
  counter-reset: lst-ctn-kix_86e8u1yx210n-7 0; }

.terms-of-use .lst-kix_jc81tp6on6t7-1 > li:before {
  content: "" counter(lst-ctn-kix_jc81tp6on6t7-0, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-1, decimal) ". "; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-5.start {
  counter-reset: lst-ctn-kix_77jp2vv72q2e-5 0; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-7.start {
  counter-reset: lst-ctn-kix_qdft1q5q38jc-7 0; }

.terms-of-use .lst-kix_vw3e5pptfgmp-5 > li {
  counter-increment: lst-ctn-kix_vw3e5pptfgmp-5; }

.terms-of-use .lst-kix_jc81tp6on6t7-7 > li:before {
  content: "" counter(lst-ctn-kix_jc81tp6on6t7-0, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-1, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-2, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-3, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-4, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-5, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-6, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-7, decimal) ". "; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-3 > li {
  counter-increment: lst-ctn-kix_f3v1vtgjdx5m-3; }

.terms-of-use .lst-kix_8ni4xzorapao-1 > li:before {
  content: "2." counter(lst-ctn-kix_8ni4xzorapao-1, decimal) ". "; }

.terms-of-use .lst-kix_x2xllzoa2aed-4 > li:before {
  content: "" counter(lst-ctn-kix_x2xllzoa2aed-4, lower-latin) ". "; }

.terms-of-use .lst-kix_xpze7a8jk05n-7 > li {
  counter-increment: lst-ctn-kix_xpze7a8jk05n-7; }

.terms-of-use .lst-kix_4coayww806d7-5 > li:before {
  content: "" counter(lst-ctn-kix_4coayww806d7-0, decimal) "." counter(lst-ctn-kix_4coayww806d7-1, decimal) "." counter(lst-ctn-kix_4coayww806d7-2, decimal) "." counter(lst-ctn-kix_4coayww806d7-3, decimal) "." counter(lst-ctn-kix_4coayww806d7-4, decimal) "." counter(lst-ctn-kix_4coayww806d7-5, decimal) ". "; }

.terms-of-use .lst-kix_g892krgm1nrl-0 > li:before {
  content: "" counter(lst-ctn-kix_g892krgm1nrl-0, decimal) ". "; }

.terms-of-use .lst-kix_x2xllzoa2aed-6 > li {
  counter-increment: lst-ctn-kix_x2xllzoa2aed-6; }

.terms-of-use .lst-kix_fxz23k1sp8k0-4 > li {
  counter-increment: lst-ctn-kix_fxz23k1sp8k0-4; }

.terms-of-use .lst-kix_8ni4xzorapao-3 > li:before {
  content: "2." counter(lst-ctn-kix_8ni4xzorapao-3, decimal) ". "; }

.terms-of-use .lst-kix_x2xllzoa2aed-6 > li:before {
  content: "" counter(lst-ctn-kix_x2xllzoa2aed-6, decimal) ". "; }

.terms-of-use .lst-kix_ca703es297vb-1 > li {
  counter-increment: lst-ctn-kix_ca703es297vb-1; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-5.start {
  counter-reset: lst-ctn-kix_wvszyx9fl4yt-5 0; }

.terms-of-use .lst-kix_e764bgixpbj9-0 > li:before {
  content: "35." counter(lst-ctn-kix_e764bgixpbj9-0, decimal) ". "; }

.terms-of-use .lst-kix_lmfaweys7m5f-6 > li:before {
  content: "" counter(lst-ctn-kix_lmfaweys7m5f-0, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-1, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-2, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-3, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-4, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-5, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-6, decimal) ". "; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-8.start {
  counter-reset: lst-ctn-kix_vltjg6tv64ze-8 0; }

.terms-of-use .lst-kix_wvszyx9fl4yt-4 > li {
  counter-increment: lst-ctn-kix_wvszyx9fl4yt-4; }

.terms-of-use ol.lst-kix_e764bgixpbj9-4.start {
  counter-reset: lst-ctn-kix_e764bgixpbj9-4 0; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-5.start {
  counter-reset: lst-ctn-kix_kbxm1bpcr5lb-5 0; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-5.start {
  counter-reset: lst-ctn-kix_dpn3kl14kxj0-5 0; }

.terms-of-use .lst-kix_ejqx2zz7tdan-8 > li {
  counter-increment: lst-ctn-kix_ejqx2zz7tdan-8; }

.terms-of-use .lst-kix_yndlr6f5dtu-6 > li {
  counter-increment: lst-ctn-kix_yndlr6f5dtu-6; }

.terms-of-use .lst-kix_ejqx2zz7tdan-7 > li:before {
  content: "" counter(lst-ctn-kix_ejqx2zz7tdan-0, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-1, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-2, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-3, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-4, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-5, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-6, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-7, decimal) ". "; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-8.start {
  counter-reset: lst-ctn-kix_bb2e201r5mnm-8 0; }

.terms-of-use .lst-kix_e764bgixpbj9-8 > li:before {
  content: "" counter(lst-ctn-kix_e764bgixpbj9-0, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-1, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-2, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-3, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-4, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-5, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-6, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-7, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-8, decimal) ". "; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-4 > li {
  counter-increment: lst-ctn-kix_qdvjpwm2m2b6-4; }

.terms-of-use .lst-kix_e764bgixpbj9-6 > li:before {
  content: "" counter(lst-ctn-kix_e764bgixpbj9-0, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-1, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-2, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-3, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-4, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-5, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-6, decimal) ". "; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-1 > li {
  counter-increment: lst-ctn-kix_kbxm1bpcr5lb-1; }

.terms-of-use .lst-kix_wnmij0cmzu07-6 > li {
  counter-increment: lst-ctn-kix_wnmij0cmzu07-6; }

.terms-of-use ol.lst-kix_49u30kkokmge-1.start {
  counter-reset: lst-ctn-kix_49u30kkokmge-1 0; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-6 > li {
  counter-increment: lst-ctn-kix_1mqm6fdbjf9d-6; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-4.start {
  counter-reset: lst-ctn-kix_1mqm6fdbjf9d-4 0; }

.terms-of-use .lst-kix_1099weaqanok-8 > li {
  counter-increment: lst-ctn-kix_1099weaqanok-8; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-6.start {
  counter-reset: lst-ctn-kix_pbzo2n87xzpj-6 0; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-5 > li:before {
  content: "" counter(lst-ctn-kix_1mqm6fdbjf9d-0, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-1, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-2, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-3, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-4, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-5, decimal) ". "; }

.terms-of-use .lst-kix_rvhnci86jkmr-5 > li:before {
  content: "(" counter(lst-ctn-kix_rvhnci86jkmr-5, upper-latin) ") "; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-7.start {
  counter-reset: lst-ctn-kix_22pop9qa6xgz-7 0; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-4 > li:before {
  content: "" counter(lst-ctn-kix_f3v1vtgjdx5m-0, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-1, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-2, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-3, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-4, decimal) ". "; }

.terms-of-use .lst-kix_feuxo8rhdbt0-4 > li {
  counter-increment: lst-ctn-kix_feuxo8rhdbt0-4; }

.terms-of-use .lst-kix_rvhnci86jkmr-2 > li {
  counter-increment: lst-ctn-kix_rvhnci86jkmr-2; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-1.start {
  counter-reset: lst-ctn-kix_ozm68jv0adg5-1 0; }

.terms-of-use ol.lst-kix_b028ztyzvlep-8.start {
  counter-reset: lst-ctn-kix_b028ztyzvlep-8 0; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-7.start {
  counter-reset: lst-ctn-kix_mtnawcnqd6n-7 0; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-0.start {
  counter-reset: lst-ctn-kix_dpn3kl14kxj0-0 0; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-3.start {
  counter-reset: lst-ctn-kix_77jp2vv72q2e-3 0; }

.terms-of-use .lst-kix_ozm68jv0adg5-6 > li {
  counter-increment: lst-ctn-kix_ozm68jv0adg5-6; }

.terms-of-use .lst-kix_lkj44s1va27m-1 > li:before {
  content: "15.3." counter(lst-ctn-kix_lkj44s1va27m-1, decimal) ". "; }

.terms-of-use .lst-kix_4dasw5gw6627-3 > li {
  counter-increment: lst-ctn-kix_4dasw5gw6627-3; }

.terms-of-use .lst-kix_rdktnl6coqgw-0 > li {
  counter-increment: lst-ctn-kix_rdktnl6coqgw-0; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_ejqx2zz7tdan-1 > li {
  counter-increment: lst-ctn-kix_ejqx2zz7tdan-1; }

.terms-of-use .lst-kix_4dasw5gw6627-3 > li:before {
  content: "" counter(lst-ctn-kix_4dasw5gw6627-0, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-1, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-2, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-3, decimal) ". "; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_dpn3kl14kxj0-2 > li {
  counter-increment: lst-ctn-kix_dpn3kl14kxj0-2; }

.terms-of-use .lst-kix_jb80qd27i5ho-8 > li:before {
  content: "" counter(lst-ctn-kix_jb80qd27i5ho-0, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-1, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-2, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-3, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-4, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-5, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-6, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-7, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-8, decimal) ". "; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-3.start {
  counter-reset: lst-ctn-kix_pdkjfeu5u5mg-3 0; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_2oqtqd6s45kj-4 > li:before {
  content: "" counter(lst-ctn-kix_2oqtqd6s45kj-4, lower-latin) ". "; }

.terms-of-use .lst-kix_ca703es297vb-8 > li {
  counter-increment: lst-ctn-kix_ca703es297vb-8; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-3.start {
  counter-reset: lst-ctn-kix_bb2e201r5mnm-3 0; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-3 {
  list-style-type: none; }

.terms-of-use .lst-kix_2oqtqd6s45kj-7 > li {
  counter-increment: lst-ctn-kix_2oqtqd6s45kj-7; }

.terms-of-use ol.lst-kix_lkj44s1va27m-6.start {
  counter-reset: lst-ctn-kix_lkj44s1va27m-6 0; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-0.start {
  counter-reset: lst-ctn-kix_feuxo8rhdbt0-0 12; }

.terms-of-use ol.lst-kix_49u30kkokmge-6.start {
  counter-reset: lst-ctn-kix_49u30kkokmge-6 0; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-0.start {
  counter-reset: lst-ctn-kix_qtyjlfd1csih-0 11; }

.terms-of-use .lst-kix_mtnawcnqd6n-6 > li:before {
  content: "" counter(lst-ctn-kix_mtnawcnqd6n-0, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-1, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-2, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-3, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-4, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-5, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-6, decimal) ". "; }

.terms-of-use .lst-kix_otxxhlg4ijs2-7 > li:before {
  content: "" counter(lst-ctn-kix_otxxhlg4ijs2-0, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-1, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-2, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-3, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-4, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-5, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-6, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-7, decimal) ". "; }

.terms-of-use .lst-kix_ua66ewr564g1-2 > li:before {
  content: "27.1." counter(lst-ctn-kix_ua66ewr564g1-2, decimal) " "; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_jl20g3uk09ea-6 > li:before {
  content: "2." counter(lst-ctn-kix_jl20g3uk09ea-6, decimal) ". "; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_lkj44s1va27m-7.start {
  counter-reset: lst-ctn-kix_lkj44s1va27m-7 0; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-1.start {
  counter-reset: lst-ctn-kix_ejqx2zz7tdan-1 0; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-3 {
  list-style-type: none; }

.terms-of-use .lst-kix_tul2fovx6tmm-0 > li {
  counter-increment: lst-ctn-kix_tul2fovx6tmm-0; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-5.start {
  counter-reset: lst-ctn-kix_ejqx2zz7tdan-5 0; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-5.start {
  counter-reset: lst-ctn-kix_otxxhlg4ijs2-5 0; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-4.start {
  counter-reset: lst-ctn-kix_j7eouqgowf9f-4 0; }

.terms-of-use .lst-kix_mtnawcnqd6n-3 > li {
  counter-increment: lst-ctn-kix_mtnawcnqd6n-3; }

.terms-of-use .lst-kix_jb80qd27i5ho-0 > li:before {
  content: "2." counter(lst-ctn-kix_jb80qd27i5ho-0, decimal) ". "; }

.terms-of-use .lst-kix_8cyb65p92zt8-4 > li {
  counter-increment: lst-ctn-kix_8cyb65p92zt8-4; }

.terms-of-use .lst-kix_hxom0vvb70ua-6 > li:before {
  content: "" counter(lst-ctn-kix_hxom0vvb70ua-6, decimal) ". "; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-2.start {
  counter-reset: lst-ctn-kix_kbxm1bpcr5lb-2 0; }

.terms-of-use ol.lst-kix_e764bgixpbj9-7.start {
  counter-reset: lst-ctn-kix_e764bgixpbj9-7 0; }

.terms-of-use .lst-kix_2mckoz4hri27-6 > li {
  counter-increment: lst-ctn-kix_2mckoz4hri27-6; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-5 > li {
  counter-increment: lst-ctn-kix_kbxm1bpcr5lb-5; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-1.start {
  counter-reset: lst-ctn-kix_pbzo2n87xzpj-1 0; }

.terms-of-use .lst-kix_b028ztyzvlep-3 > li:before {
  content: "" counter(lst-ctn-kix_b028ztyzvlep-0, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-1, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-2, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-3, decimal) ". "; }

.terms-of-use .lst-kix_tul2fovx6tmm-2 > li:before {
  content: "" counter(lst-ctn-kix_tul2fovx6tmm-0, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-1, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-2, decimal) ". "; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-8.start {
  counter-reset: lst-ctn-kix_qdvjpwm2m2b6-8 0; }

.terms-of-use .lst-kix_7k9yp1bgytlo-6 > li {
  counter-increment: lst-ctn-kix_7k9yp1bgytlo-6; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-8.start {
  counter-reset: lst-ctn-kix_22pop9qa6xgz-8 0; }

.terms-of-use .lst-kix_cwc83c9nqybd-5 > li:before {
  content: "" counter(lst-ctn-kix_cwc83c9nqybd-0, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-1, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-2, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-3, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-4, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-5, decimal) ". "; }

.terms-of-use .lst-kix_rdktnl6coqgw-7 > li {
  counter-increment: lst-ctn-kix_rdktnl6coqgw-7; }

.terms-of-use ol.lst-kix_lkj44s1va27m-1.start {
  counter-reset: lst-ctn-kix_lkj44s1va27m-1 0; }

.terms-of-use .lst-kix_fxz23k1sp8k0-8 > li {
  counter-increment: lst-ctn-kix_fxz23k1sp8k0-8; }

.terms-of-use ol.lst-kix_kj86jt9svxha-4.start {
  counter-reset: lst-ctn-kix_kj86jt9svxha-4 0; }

.terms-of-use .lst-kix_49u30kkokmge-8 > li {
  counter-increment: lst-ctn-kix_49u30kkokmge-8; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-3.start {
  counter-reset: lst-ctn-kix_j7eouqgowf9f-3 0; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-8.start {
  counter-reset: lst-ctn-kix_mtnawcnqd6n-8 0; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-0.start {
  counter-reset: lst-ctn-kix_ejqx2zz7tdan-0 25; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-6.start {
  counter-reset: lst-ctn-kix_ejqx2zz7tdan-6 0; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-7.start {
  counter-reset: lst-ctn-kix_1mqm6fdbjf9d-7 0; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-2.start {
  counter-reset: lst-ctn-kix_22pop9qa6xgz-2 0; }

.terms-of-use .lst-kix_86e8u1yx210n-2 > li:before {
  content: "" counter(lst-ctn-kix_86e8u1yx210n-0, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-1, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-2, decimal) ". "; }

.terms-of-use .lst-kix_77jp2vv72q2e-5 > li:before {
  content: "" counter(lst-ctn-kix_77jp2vv72q2e-0, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-1, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-2, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-3, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-4, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-5, decimal) ". "; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-6.start {
  counter-reset: lst-ctn-kix_2oqtqd6s45kj-6 0; }

.terms-of-use .lst-kix_tul2fovx6tmm-3 > li {
  counter-increment: lst-ctn-kix_tul2fovx6tmm-3; }

.terms-of-use .lst-kix_8u4cke4ltdqs-3 > li:before {
  content: "" counter(lst-ctn-kix_8u4cke4ltdqs-3, decimal) ". "; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-5.start {
  counter-reset: lst-ctn-kix_ozm68jv0adg5-5 0; }

.terms-of-use .lst-kix_kj86jt9svxha-2 > li {
  counter-increment: lst-ctn-kix_kj86jt9svxha-2; }

.terms-of-use .lst-kix_cwc83c9nqybd-0 > li {
  counter-increment: lst-ctn-kix_cwc83c9nqybd-0; }

.terms-of-use ol.lst-kix_lkj44s1va27m-2.start {
  counter-reset: lst-ctn-kix_lkj44s1va27m-2 0; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-3.start {
  counter-reset: lst-ctn-kix_2oqtqd6s45kj-3 0; }

.terms-of-use .lst-kix_r8ii1wx48ejc-3 > li:before {
  content: "" counter(lst-ctn-kix_r8ii1wx48ejc-0, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-1, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-2, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-3, decimal) ". "; }

.terms-of-use .lst-kix_vltjg6tv64ze-8 > li:before {
  content: "" counter(lst-ctn-kix_vltjg6tv64ze-0, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-1, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-2, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-3, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-4, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-5, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-6, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-7, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-8, decimal) ". "; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-0.start {
  counter-reset: lst-ctn-kix_kbxm1bpcr5lb-0 34; }

.terms-of-use .lst-kix_ua66ewr564g1-1 > li {
  counter-increment: lst-ctn-kix_ua66ewr564g1-1; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-8.start {
  counter-reset: lst-ctn-kix_5u8mf6guzj36-8 0; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-3.start {
  counter-reset: lst-ctn-kix_22pop9qa6xgz-3 0; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-6.start {
  counter-reset: lst-ctn-kix_hy09gnjdhf12-6 0; }

.terms-of-use .lst-kix_exi6qx2d4uml-4 > li:before {
  content: "" counter(lst-ctn-kix_exi6qx2d4uml-0, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-1, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-2, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-3, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-4, decimal) ". "; }

.terms-of-use .lst-kix_86e8u1yx210n-5 > li {
  counter-increment: lst-ctn-kix_86e8u1yx210n-5; }

.terms-of-use .lst-kix_qdft1q5q38jc-2 > li:before {
  content: "" counter(lst-ctn-kix_qdft1q5q38jc-0, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-1, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-2, decimal) ". "; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-7 > li:before {
  content: "" counter(lst-ctn-kix_4uj4b9kmbxlp-0, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-1, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-2, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-3, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-4, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-5, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-6, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-7, decimal) ". "; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-4.start {
  counter-reset: lst-ctn-kix_qdft1q5q38jc-4 0; }

.terms-of-use .lst-kix_vltjg6tv64ze-0 > li:before {
  content: "3." counter(lst-ctn-kix_vltjg6tv64ze-0, decimal) ". "; }

.terms-of-use .lst-kix_2oqtqd6s45kj-4 > li {
  counter-increment: lst-ctn-kix_2oqtqd6s45kj-4; }

.terms-of-use .lst-kix_ejqx2zz7tdan-4 > li {
  counter-increment: lst-ctn-kix_ejqx2zz7tdan-4; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-1.start {
  counter-reset: lst-ctn-kix_qdft1q5q38jc-1 0; }

.terms-of-use .lst-kix_ca703es297vb-5 > li {
  counter-increment: lst-ctn-kix_ca703es297vb-5; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-8.start {
  counter-reset: lst-ctn-kix_j7eouqgowf9f-8 0; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-8.start {
  counter-reset: lst-ctn-kix_ozm68jv0adg5-8 0; }

.terms-of-use .lst-kix_jmq6s44ocrcf-1 > li:before {
  content: "" counter(lst-ctn-kix_jmq6s44ocrcf-0, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-1, decimal) ". "; }

.terms-of-use .lst-kix_fxz23k1sp8k0-1 > li {
  counter-increment: lst-ctn-kix_fxz23k1sp8k0-1; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-0 > li {
  counter-increment: lst-ctn-kix_qdvjpwm2m2b6-0; }

.terms-of-use .lst-kix_xpze7a8jk05n-7 > li:before {
  content: "2." counter(lst-ctn-kix_xpze7a8jk05n-7, decimal) ". "; }

.terms-of-use .lst-kix_gijfqhf5xkva-0 > li:before {
  content: "13." counter(lst-ctn-kix_gijfqhf5xkva-0, decimal) ". "; }

.terms-of-use ol.lst-kix_kj86jt9svxha-7.start {
  counter-reset: lst-ctn-kix_kj86jt9svxha-7 0; }

.terms-of-use .lst-kix_fxz23k1sp8k0-8 > li:before {
  content: "" counter(lst-ctn-kix_fxz23k1sp8k0-0, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-1, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-2, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-3, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-4, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-5, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-6, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-7, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-8, decimal) ". "; }

.terms-of-use .lst-kix_hy09gnjdhf12-7 > li:before {
  content: "" counter(lst-ctn-kix_hy09gnjdhf12-0, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-1, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-2, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-3, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-4, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-5, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-6, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-7, decimal) ". "; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-8 > li {
  counter-increment: lst-ctn-kix_j9lwa1xo9iwq-8; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-5.start {
  counter-reset: lst-ctn-kix_22pop9qa6xgz-5 0; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-4.start {
  counter-reset: lst-ctn-kix_pbzo2n87xzpj-4 0; }

.terms-of-use .lst-kix_vw3e5pptfgmp-7 > li:before {
  content: "" counter(lst-ctn-kix_vw3e5pptfgmp-0, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-1, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-2, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-3, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-4, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-5, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-6, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-7, decimal) ". "; }

.terms-of-use .lst-kix_gyvrc19ngq4f-2 > li {
  counter-increment: lst-ctn-kix_gyvrc19ngq4f-2; }

.terms-of-use .lst-kix_gyvrc19ngq4f-4 > li:before {
  content: "" counter(lst-ctn-kix_gyvrc19ngq4f-0, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-1, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-2, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-3, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-4, decimal) ". "; }

.terms-of-use .lst-kix_xpze7a8jk05n-3 > li {
  counter-increment: lst-ctn-kix_xpze7a8jk05n-3; }

.terms-of-use ol.lst-kix_lkj44s1va27m-4.start {
  counter-reset: lst-ctn-kix_lkj44s1va27m-4 0; }

.terms-of-use .lst-kix_feuxo8rhdbt0-7 > li:before {
  content: "" counter(lst-ctn-kix_feuxo8rhdbt0-7, lower-latin) ". "; }

.terms-of-use .lst-kix_4coayww806d7-4 > li {
  counter-increment: lst-ctn-kix_4coayww806d7-4; }

.terms-of-use .lst-kix_5qie7zg80jlv-2 > li {
  counter-increment: lst-ctn-kix_5qie7zg80jlv-2; }

.terms-of-use .lst-kix_2mckoz4hri27-8 > li:before {
  content: "" counter(lst-ctn-kix_2mckoz4hri27-0, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-1, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-2, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-3, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-4, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-5, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-6, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-7, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-8, decimal) ". "; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-1 > li:before {
  content: "4.3." counter(lst-ctn-kix_qdvjpwm2m2b6-1, decimal) " "; }

.terms-of-use .lst-kix_yndlr6f5dtu-3 > li {
  counter-increment: lst-ctn-kix_yndlr6f5dtu-3; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-6.start {
  counter-reset: lst-ctn-kix_j7eouqgowf9f-6 0; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-7 > li {
  counter-increment: lst-ctn-kix_qdvjpwm2m2b6-7; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-0 > li:before {
  content: "35.1." counter(lst-ctn-kix_pdkjfeu5u5mg-0, decimal) ". "; }

.terms-of-use ol.lst-kix_49u30kkokmge-8.start {
  counter-reset: lst-ctn-kix_49u30kkokmge-8 0; }

.terms-of-use .lst-kix_1099weaqanok-1 > li {
  counter-increment: lst-ctn-kix_1099weaqanok-1; }

.terms-of-use .lst-kix_be94xss4lbxh-2 > li:before {
  content: "6.2.1." counter(lst-ctn-kix_be94xss4lbxh-2, decimal) ". "; }

.terms-of-use .lst-kix_5qie7zg80jlv-2 > li:before {
  content: "" counter(lst-ctn-kix_5qie7zg80jlv-0, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-1, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-2, decimal) ". "; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-6.start {
  counter-reset: lst-ctn-kix_ozm68jv0adg5-6 0; }

.terms-of-use .lst-kix_pbzo2n87xzpj-7 > li:before {
  content: "" counter(lst-ctn-kix_pbzo2n87xzpj-0, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-1, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-2, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-3, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-4, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-5, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-6, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-7, decimal) ". "; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-2.start {
  counter-reset: lst-ctn-kix_qdft1q5q38jc-2 0; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-3.start {
  counter-reset: lst-ctn-kix_hy09gnjdhf12-3 0; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-0.start {
  counter-reset: lst-ctn-kix_77jp2vv72q2e-0 0; }

.terms-of-use .lst-kix_jc81tp6on6t7-1 > li {
  counter-increment: lst-ctn-kix_jc81tp6on6t7-1; }

.terms-of-use .lst-kix_y75hn1731udi-0 > li {
  counter-increment: lst-ctn-kix_y75hn1731udi-0; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-8.start {
  counter-reset: lst-ctn-kix_otxxhlg4ijs2-8 0; }

.terms-of-use .lst-kix_yndlr6f5dtu-2 > li:before {
  content: "21.2." counter(lst-ctn-kix_yndlr6f5dtu-2, decimal) " "; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-4.start {
  counter-reset: lst-ctn-kix_2oqtqd6s45kj-4 0; }

.terms-of-use .lst-kix_fxz23k1sp8k0-0 > li:before {
  content: "4." counter(lst-ctn-kix_fxz23k1sp8k0-0, decimal) ". "; }

.terms-of-use .lst-kix_gijfqhf5xkva-8 > li:before {
  content: "" counter(lst-ctn-kix_gijfqhf5xkva-0, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-1, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-2, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-3, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-4, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-5, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-6, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-7, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-8, decimal) ". "; }

.terms-of-use .lst-kix_dnra8vwir8mr-2 > li {
  counter-increment: lst-ctn-kix_dnra8vwir8mr-2; }

.terms-of-use .lst-kix_qv09rytsrgyh-6 > li {
  counter-increment: lst-ctn-kix_qv09rytsrgyh-6; }

.terms-of-use .lst-kix_22pop9qa6xgz-0 > li:before {
  content: "10." counter(lst-ctn-kix_22pop9qa6xgz-0, decimal) ". "; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-5.start {
  counter-reset: lst-ctn-kix_feuxo8rhdbt0-5 0; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-3.start {
  counter-reset: lst-ctn-kix_ejqx2zz7tdan-3 0; }

.terms-of-use .lst-kix_2mckoz4hri27-0 > li:before {
  content: "" counter(lst-ctn-kix_2mckoz4hri27-0, decimal) ". "; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-1.start {
  counter-reset: lst-ctn-kix_bb2e201r5mnm-1 0; }

.terms-of-use ol.lst-kix_4dasw5gw6627-3.start {
  counter-reset: lst-ctn-kix_4dasw5gw6627-3 0; }

.terms-of-use .lst-kix_hxom0vvb70ua-3 > li {
  counter-increment: lst-ctn-kix_hxom0vvb70ua-3; }

.terms-of-use .lst-kix_ua66ewr564g1-8 > li {
  counter-increment: lst-ctn-kix_ua66ewr564g1-8; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-1.start {
  counter-reset: lst-ctn-kix_yndlr6f5dtu-1 0; }

.terms-of-use .lst-kix_1qrhkgrpibm6-7 > li:before {
  content: "" counter(lst-ctn-kix_1qrhkgrpibm6-0, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-1, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-2, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-3, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-4, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-5, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-6, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-7, decimal) ". "; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-2.start {
  counter-reset: lst-ctn-kix_cwc83c9nqybd-2 0; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-3.start {
  counter-reset: lst-ctn-kix_pbzo2n87xzpj-3 0; }

.terms-of-use .lst-kix_mtnawcnqd6n-0 > li {
  counter-increment: lst-ctn-kix_mtnawcnqd6n-0; }

.terms-of-use ol.lst-kix_be94xss4lbxh-0.start {
  counter-reset: lst-ctn-kix_be94xss4lbxh-0 1; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-0.start {
  counter-reset: lst-ctn-kix_bb2e201r5mnm-0 4; }

.terms-of-use .lst-kix_8cyb65p92zt8-7 > li:before {
  content: "" counter(lst-ctn-kix_8cyb65p92zt8-0, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-1, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-2, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-3, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-4, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-5, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-6, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-7, decimal) ". "; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-1.start {
  counter-reset: lst-ctn-kix_5u8mf6guzj36-1 0; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-1.start {
  counter-reset: lst-ctn-kix_exi6qx2d4uml-1 0; }

.terms-of-use .lst-kix_lmfaweys7m5f-4 > li {
  counter-increment: lst-ctn-kix_lmfaweys7m5f-4; }

.terms-of-use .lst-kix_jmq6s44ocrcf-2 > li {
  counter-increment: lst-ctn-kix_jmq6s44ocrcf-2; }

.terms-of-use .lst-kix_8cyb65p92zt8-4 > li:before {
  content: "" counter(lst-ctn-kix_8cyb65p92zt8-0, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-1, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-2, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-3, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-4, decimal) ". "; }

.terms-of-use .lst-kix_8cyb65p92zt8-1 > li:before {
  content: "6.1." counter(lst-ctn-kix_8cyb65p92zt8-1, decimal) ". "; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-1.start {
  counter-reset: lst-ctn-kix_gijfqhf5xkva-1 0; }

.terms-of-use .lst-kix_qtyjlfd1csih-0 > li {
  counter-increment: lst-ctn-kix_qtyjlfd1csih-0; }

.terms-of-use .lst-kix_otxxhlg4ijs2-2 > li {
  counter-increment: lst-ctn-kix_otxxhlg4ijs2-2; }

.terms-of-use .lst-kix_dnra8vwir8mr-7 > li:before {
  content: "" counter(lst-ctn-kix_dnra8vwir8mr-0, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-1, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-2, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-3, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-4, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-5, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-6, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-7, decimal) ". "; }

.terms-of-use .lst-kix_dnra8vwir8mr-8 > li:before {
  content: "" counter(lst-ctn-kix_dnra8vwir8mr-0, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-1, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-2, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-3, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-4, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-5, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-6, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-7, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-8, decimal) ". "; }

.terms-of-use .lst-kix_1qrhkgrpibm6-0 > li:before {
  content: "3.3." counter(lst-ctn-kix_1qrhkgrpibm6-0, decimal) ". "; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-3 > li {
  counter-increment: lst-ctn-kix_j9lwa1xo9iwq-3; }

.terms-of-use .lst-kix_1qrhkgrpibm6-3 > li:before {
  content: "" counter(lst-ctn-kix_1qrhkgrpibm6-0, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-1, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-2, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-3, decimal) ". "; }

.terms-of-use .lst-kix_r8ii1wx48ejc-4 > li {
  counter-increment: lst-ctn-kix_r8ii1wx48ejc-4; }

.terms-of-use .lst-kix_1qrhkgrpibm6-6 > li:before {
  content: "" counter(lst-ctn-kix_1qrhkgrpibm6-0, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-1, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-2, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-3, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-4, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-5, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-6, decimal) ". "; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-5.start {
  counter-reset: lst-ctn-kix_jmq6s44ocrcf-5 0; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-4.start {
  counter-reset: lst-ctn-kix_8cyb65p92zt8-4 0; }

.terms-of-use .lst-kix_j7eouqgowf9f-0 > li:before {
  content: "" counter(lst-ctn-kix_j7eouqgowf9f-0, decimal) ". "; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_5u8mf6guzj36-3 > li {
  counter-increment: lst-ctn-kix_5u8mf6guzj36-3; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-8.start {
  counter-reset: lst-ctn-kix_1qrhkgrpibm6-8 0; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-3 {
  list-style-type: none; }

.terms-of-use .lst-kix_1qrhkgrpibm6-4 > li:before {
  content: "" counter(lst-ctn-kix_1qrhkgrpibm6-0, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-1, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-2, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-3, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-4, decimal) ". "; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-7.start {
  counter-reset: lst-ctn-kix_rdktnl6coqgw-7 0; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_be94xss4lbxh-7 > li {
  counter-increment: lst-ctn-kix_be94xss4lbxh-7; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-6 {
  list-style-type: none; }

.terms-of-use .lst-kix_j7eouqgowf9f-3 > li:before {
  content: "" counter(lst-ctn-kix_j7eouqgowf9f-0, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-1, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-2, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-3, decimal) ". "; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_xpze7a8jk05n-8 > li {
  counter-increment: lst-ctn-kix_xpze7a8jk05n-8; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_j7eouqgowf9f-5 > li {
  counter-increment: lst-ctn-kix_j7eouqgowf9f-5; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-8.start {
  counter-reset: lst-ctn-kix_2oqtqd6s45kj-8 0; }

.terms-of-use ol.lst-kix_4coayww806d7-8.start {
  counter-reset: lst-ctn-kix_4coayww806d7-8 0; }

.terms-of-use .lst-kix_j7eouqgowf9f-2 > li:before {
  content: "7.1." counter(lst-ctn-kix_j7eouqgowf9f-2, decimal) " "; }

.terms-of-use ol.lst-kix_be94xss4lbxh-5.start {
  counter-reset: lst-ctn-kix_be94xss4lbxh-5 0; }

.terms-of-use ol.lst-kix_4dasw5gw6627-8.start {
  counter-reset: lst-ctn-kix_4dasw5gw6627-8 0; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-6 > li {
  counter-increment: lst-ctn-kix_kbxm1bpcr5lb-6; }

.terms-of-use .lst-kix_dnra8vwir8mr-4 > li:before {
  content: "" counter(lst-ctn-kix_dnra8vwir8mr-0, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-1, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-2, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-3, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-4, decimal) ". "; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-5 > li {
  counter-increment: lst-ctn-kix_qdvjpwm2m2b6-5; }

.terms-of-use .lst-kix_dnra8vwir8mr-1 > li:before {
  content: "4.1." counter(lst-ctn-kix_dnra8vwir8mr-1, decimal) " "; }

.terms-of-use .lst-kix_qv09rytsrgyh-8 > li {
  counter-increment: lst-ctn-kix_qv09rytsrgyh-8; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-6.start {
  counter-reset: lst-ctn-kix_5u8mf6guzj36-6 0; }

.terms-of-use .lst-kix_j7eouqgowf9f-6 > li:before {
  content: "" counter(lst-ctn-kix_j7eouqgowf9f-0, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-1, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-2, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-3, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-4, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-5, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-6, decimal) ". "; }

.terms-of-use .lst-kix_4coayww806d7-8 > li {
  counter-increment: lst-ctn-kix_4coayww806d7-8; }

.terms-of-use .lst-kix_ozm68jv0adg5-5 > li {
  counter-increment: lst-ctn-kix_ozm68jv0adg5-5; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-0 > li {
  counter-increment: lst-ctn-kix_pdkjfeu5u5mg-0; }

.terms-of-use .lst-kix_fxz23k1sp8k0-2 > li {
  counter-increment: lst-ctn-kix_fxz23k1sp8k0-2; }

.terms-of-use .lst-kix_rdktnl6coqgw-1 > li {
  counter-increment: lst-ctn-kix_rdktnl6coqgw-1; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-6.start {
  counter-reset: lst-ctn-kix_qdft1q5q38jc-6 0; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-3.start {
  counter-reset: lst-ctn-kix_1qrhkgrpibm6-3 0; }

.terms-of-use .lst-kix_4dasw5gw6627-8 > li {
  counter-increment: lst-ctn-kix_4dasw5gw6627-8; }

.terms-of-use .lst-kix_e764bgixpbj9-7 > li {
  counter-increment: lst-ctn-kix_e764bgixpbj9-7; }

.terms-of-use .lst-kix_bb2e201r5mnm-2 > li {
  counter-increment: lst-ctn-kix_bb2e201r5mnm-2; }

.terms-of-use .lst-kix_bb2e201r5mnm-3 > li:before {
  content: "" counter(lst-ctn-kix_bb2e201r5mnm-0, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-1, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-2, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-3, decimal) ". "; }

.terms-of-use .lst-kix_qv09rytsrgyh-1 > li:before {
  content: "" counter(lst-ctn-kix_qv09rytsrgyh-0, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-1, decimal) ". "; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-0 > li:before {
  content: "4." counter(lst-ctn-kix_4uj4b9kmbxlp-0, decimal) " "; }

.terms-of-use .lst-kix_b028ztyzvlep-2 > li {
  counter-increment: lst-ctn-kix_b028ztyzvlep-2; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_8u4cke4ltdqs-4 > li {
  counter-increment: lst-ctn-kix_8u4cke4ltdqs-4; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_y75hn1731udi-6.start {
  counter-reset: lst-ctn-kix_y75hn1731udi-6 0; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_be94xss4lbxh-5 > li:before {
  content: "" counter(lst-ctn-kix_be94xss4lbxh-0, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-1, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-2, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-3, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-4, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-5, decimal) ". "; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1099weaqanok-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1099weaqanok-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1099weaqanok-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1099weaqanok-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1099weaqanok-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1099weaqanok-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_qv09rytsrgyh-5 > li:before {
  content: "" counter(lst-ctn-kix_qv09rytsrgyh-0, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-1, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-2, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-3, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-4, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-5, decimal) ". "; }

.terms-of-use ol.lst-kix_1099weaqanok-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_be94xss4lbxh-7 > li:before {
  content: "" counter(lst-ctn-kix_be94xss4lbxh-0, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-1, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-2, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-3, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-4, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-5, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-6, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-7, decimal) ". "; }

.terms-of-use ol.lst-kix_1099weaqanok-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1099weaqanok-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-6 > li:before {
  content: "" counter(lst-ctn-kix_4uj4b9kmbxlp-0, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-1, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-2, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-3, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-4, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-5, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-6, decimal) ". "; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-7.start {
  counter-reset: lst-ctn-kix_fxz23k1sp8k0-7 0; }

.terms-of-use .lst-kix_2mckoz4hri27-0 > li {
  counter-increment: lst-ctn-kix_2mckoz4hri27-0; }

.terms-of-use .lst-kix_tul2fovx6tmm-2 > li {
  counter-increment: lst-ctn-kix_tul2fovx6tmm-2; }

.terms-of-use .lst-kix_1qrhkgrpibm6-2 > li {
  counter-increment: lst-ctn-kix_1qrhkgrpibm6-2; }

.terms-of-use .lst-kix_otxxhlg4ijs2-0 > li:before {
  content: "14." counter(lst-ctn-kix_otxxhlg4ijs2-0, decimal) ". "; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-5.start {
  counter-reset: lst-ctn-kix_xpze7a8jk05n-5 0; }

.terms-of-use .lst-kix_jb80qd27i5ho-0 > li {
  counter-increment: lst-ctn-kix_jb80qd27i5ho-0; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-8 > li {
  counter-increment: lst-ctn-kix_pdkjfeu5u5mg-8; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-5.start {
  counter-reset: lst-ctn-kix_gyvrc19ngq4f-5 0; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-3.start {
  counter-reset: lst-ctn-kix_mtnawcnqd6n-3 0; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-0.start {
  counter-reset: lst-ctn-kix_qv09rytsrgyh-0 3; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-5.start {
  counter-reset: lst-ctn-kix_vw3e5pptfgmp-5 0; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_yzeqjqyr2fys-0 > li {
  counter-increment: lst-ctn-kix_yzeqjqyr2fys-0; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-4.start {
  counter-reset: lst-ctn-kix_x2xllzoa2aed-4 0; }

.terms-of-use .lst-kix_yzeqjqyr2fys-6 > li {
  counter-increment: lst-ctn-kix_yzeqjqyr2fys-6; }

.terms-of-use .lst-kix_ca703es297vb-1 > li:before {
  content: "6.4." counter(lst-ctn-kix_ca703es297vb-1, decimal) " "; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-7.start {
  counter-reset: lst-ctn-kix_cwc83c9nqybd-7 0; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_ejqx2zz7tdan-2 > li {
  counter-increment: lst-ctn-kix_ejqx2zz7tdan-2; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_86e8u1yx210n-6.start {
  counter-reset: lst-ctn-kix_86e8u1yx210n-6 0; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_8ni4xzorapao-3 > li {
  counter-increment: lst-ctn-kix_8ni4xzorapao-3; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-1.start {
  counter-reset: lst-ctn-kix_qtyjlfd1csih-1 0; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-0.start {
  counter-reset: lst-ctn-kix_f3v1vtgjdx5m-0 0; }

.terms-of-use .lst-kix_ca703es297vb-5 > li:before {
  content: "" counter(lst-ctn-kix_ca703es297vb-0, decimal) "." counter(lst-ctn-kix_ca703es297vb-1, decimal) "." counter(lst-ctn-kix_ca703es297vb-2, decimal) "." counter(lst-ctn-kix_ca703es297vb-3, decimal) "." counter(lst-ctn-kix_ca703es297vb-4, decimal) "." counter(lst-ctn-kix_ca703es297vb-5, decimal) ". "; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-5.start {
  counter-reset: lst-ctn-kix_1mqm6fdbjf9d-5 0; }

.terms-of-use .lst-kix_x2xllzoa2aed-7 > li {
  counter-increment: lst-ctn-kix_x2xllzoa2aed-7; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-2.start {
  counter-reset: lst-ctn-kix_otxxhlg4ijs2-2 0; }

.terms-of-use .lst-kix_1099weaqanok-4 > li {
  counter-increment: lst-ctn-kix_1099weaqanok-4; }

.terms-of-use .lst-kix_feuxo8rhdbt0-8 > li:before {
  content: "" counter(lst-ctn-kix_feuxo8rhdbt0-8, lower-roman) ". "; }

.terms-of-use .lst-kix_4dasw5gw6627-0 > li {
  counter-increment: lst-ctn-kix_4dasw5gw6627-0; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-0.start {
  counter-reset: lst-ctn-kix_wnmij0cmzu07-0 0; }

.terms-of-use .lst-kix_vltjg6tv64ze-6 > li {
  counter-increment: lst-ctn-kix_vltjg6tv64ze-6; }

.terms-of-use .lst-kix_ca703es297vb-7 > li {
  counter-increment: lst-ctn-kix_ca703es297vb-7; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-3.start {
  counter-reset: lst-ctn-kix_dnra8vwir8mr-3 0; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-4.start {
  counter-reset: lst-ctn-kix_wvszyx9fl4yt-4 0; }

.terms-of-use .lst-kix_hy09gnjdhf12-4 > li {
  counter-increment: lst-ctn-kix_hy09gnjdhf12-4; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-4.start {
  counter-reset: lst-ctn-kix_vw3e5pptfgmp-4 0; }

.terms-of-use .lst-kix_be94xss4lbxh-1 > li:before {
  content: "6.4." counter(lst-ctn-kix_be94xss4lbxh-1, decimal) ". "; }

.terms-of-use .lst-kix_mtnawcnqd6n-8 > li {
  counter-increment: lst-ctn-kix_mtnawcnqd6n-8; }

.terms-of-use .lst-kix_qdft1q5q38jc-1 > li {
  counter-increment: lst-ctn-kix_qdft1q5q38jc-1; }

.terms-of-use .lst-kix_vw3e5pptfgmp-0 > li {
  counter-increment: lst-ctn-kix_vw3e5pptfgmp-0; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_1qrhkgrpibm6-3 > li {
  counter-increment: lst-ctn-kix_1qrhkgrpibm6-3; }

.terms-of-use .lst-kix_xpze7a8jk05n-0 > li {
  counter-increment: lst-ctn-kix_xpze7a8jk05n-0; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_feuxo8rhdbt0-4 > li:before {
  content: "" counter(lst-ctn-kix_feuxo8rhdbt0-4, lower-latin) ". "; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_86e8u1yx210n-5.start {
  counter-reset: lst-ctn-kix_86e8u1yx210n-5 0; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-2.start {
  counter-reset: lst-ctn-kix_rdktnl6coqgw-2 0; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_feuxo8rhdbt0-2 > li:before {
  content: "" counter(lst-ctn-kix_feuxo8rhdbt0-2, lower-roman) ". "; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_qtyjlfd1csih-8 > li {
  counter-increment: lst-ctn-kix_qtyjlfd1csih-8; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_b028ztyzvlep-6.start {
  counter-reset: lst-ctn-kix_b028ztyzvlep-6 0; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-2 > li {
  counter-increment: lst-ctn-kix_1mqm6fdbjf9d-2; }

.terms-of-use .lst-kix_rvhnci86jkmr-3 > li:before {
  content: "(" counter(lst-ctn-kix_rvhnci86jkmr-3, lower-latin) ") "; }

.terms-of-use .lst-kix_y75hn1731udi-8 > li {
  counter-increment: lst-ctn-kix_y75hn1731udi-8; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-7.start {
  counter-reset: lst-ctn-kix_lmfaweys7m5f-7 0; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-2.start {
  counter-reset: lst-ctn-kix_jc81tp6on6t7-2 0; }

.terms-of-use .lst-kix_2mckoz4hri27-8 > li {
  counter-increment: lst-ctn-kix_2mckoz4hri27-8; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-0.start {
  counter-reset: lst-ctn-kix_wvszyx9fl4yt-0 14; }

.terms-of-use .lst-kix_dpn3kl14kxj0-0 > li:before {
  content: "" counter(lst-ctn-kix_dpn3kl14kxj0-0, decimal) ". "; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-4.start {
  counter-reset: lst-ctn-kix_dnra8vwir8mr-4 0; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-0 > li:before {
  content: "" counter(lst-ctn-kix_1mqm6fdbjf9d-0, decimal) ". "; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-7.start {
  counter-reset: lst-ctn-kix_8u4cke4ltdqs-7 0; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-5.start {
  counter-reset: lst-ctn-kix_wnmij0cmzu07-5 0; }

.terms-of-use .lst-kix_wvszyx9fl4yt-1 > li {
  counter-increment: lst-ctn-kix_4coayww806d7-1; }

.terms-of-use .lst-kix_ua66ewr564g1-7 > li {
  counter-increment: lst-ctn-kix_ua66ewr564g1-7; }

.terms-of-use .lst-kix_b028ztyzvlep-8 > li {
  counter-increment: lst-ctn-kix_b028ztyzvlep-8; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-6.start {
  counter-reset: lst-ctn-kix_qtyjlfd1csih-6 0; }

.terms-of-use .lst-kix_5qie7zg80jlv-5 > li {
  counter-increment: lst-ctn-kix_5qie7zg80jlv-5; }

.terms-of-use .lst-kix_dnra8vwir8mr-1 > li {
  counter-increment: lst-ctn-kix_dnra8vwir8mr-1; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-4.start {
  counter-reset: lst-ctn-kix_gyvrc19ngq4f-4 0; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_4dasw5gw6627-0 > li:before {
  content: "11." counter(lst-ctn-kix_4dasw5gw6627-0, decimal) ". "; }

.terms-of-use .lst-kix_4dasw5gw6627-1 > li:before {
  content: "" counter(lst-ctn-kix_4dasw5gw6627-0, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-1, decimal) ". "; }

.terms-of-use .lst-kix_4dasw5gw6627-4 > li:before {
  content: "" counter(lst-ctn-kix_4dasw5gw6627-0, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-1, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-2, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-3, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-4, decimal) ". "; }

.terms-of-use .lst-kix_jb80qd27i5ho-7 > li:before {
  content: "" counter(lst-ctn-kix_jb80qd27i5ho-0, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-1, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-2, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-3, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-4, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-5, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-6, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-7, decimal) ". "; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-1.start {
  counter-reset: lst-ctn-kix_xpze7a8jk05n-1 0; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_y75hn1731udi-7.start {
  counter-reset: lst-ctn-kix_y75hn1731udi-7 0; }

.terms-of-use .lst-kix_5qie7zg80jlv-3 > li {
  counter-increment: lst-ctn-kix_5qie7zg80jlv-3; }

.terms-of-use .lst-kix_mtnawcnqd6n-8 > li:before {
  content: "" counter(lst-ctn-kix_mtnawcnqd6n-0, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-1, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-2, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-3, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-4, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-5, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-6, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-7, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-8, decimal) ". "; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-8.start {
  counter-reset: lst-ctn-kix_x2xllzoa2aed-8 0; }

.terms-of-use .lst-kix_22pop9qa6xgz-0 > li {
  counter-increment: lst-ctn-kix_22pop9qa6xgz-0; }

.terms-of-use .lst-kix_wvszyx9fl4yt-3 > li {
  counter-increment: lst-ctn-kix_wvszyx9fl4yt-3; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-3 > li:before {
  content: "" counter(lst-ctn-kix_1mqm6fdbjf9d-0, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-1, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-2, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-3, decimal) ". "; }

.terms-of-use .lst-kix_xpze7a8jk05n-2 > li {
  counter-increment: lst-ctn-kix_xpze7a8jk05n-2; }

.terms-of-use .lst-kix_jl20g3uk09ea-8 > li:before {
  content: "2." counter(lst-ctn-kix_jl20g3uk09ea-8, decimal) ". "; }

.terms-of-use .lst-kix_lkj44s1va27m-3 > li {
  counter-increment: lst-ctn-kix_lkj44s1va27m-3; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-1.start {
  counter-reset: lst-ctn-kix_fxz23k1sp8k0-1 0; }

.terms-of-use .lst-kix_jc81tp6on6t7-0 > li {
  counter-increment: lst-ctn-kix_jc81tp6on6t7-0; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-2.start {
  counter-reset: lst-ctn-kix_lmfaweys7m5f-2 0; }

.terms-of-use .lst-kix_gyvrc19ngq4f-3 > li {
  counter-increment: lst-ctn-kix_gyvrc19ngq4f-3; }

.terms-of-use .lst-kix_hxom0vvb70ua-8 > li:before {
  content: "" counter(lst-ctn-kix_hxom0vvb70ua-8, lower-roman) ". "; }

.terms-of-use .lst-kix_jl20g3uk09ea-5 > li:before {
  content: "2." counter(lst-ctn-kix_jl20g3uk09ea-5, decimal) ". "; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-7.start {
  counter-reset: lst-ctn-kix_jc81tp6on6t7-7 0; }

.terms-of-use .lst-kix_cwc83c9nqybd-8 > li {
  counter-increment: lst-ctn-kix_cwc83c9nqybd-8; }

.terms-of-use .lst-kix_r8ii1wx48ejc-3 > li {
  counter-increment: lst-ctn-kix_r8ii1wx48ejc-3; }

.terms-of-use .lst-kix_yndlr6f5dtu-4 > li {
  counter-increment: lst-ctn-kix_yndlr6f5dtu-4; }

.terms-of-use ol.lst-kix_b028ztyzvlep-2.start {
  counter-reset: lst-ctn-kix_b028ztyzvlep-2 0; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-4.start {
  counter-reset: lst-ctn-kix_qv09rytsrgyh-4 0; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-2.start {
  counter-reset: lst-ctn-kix_mtnawcnqd6n-2 0; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-8.start {
  counter-reset: lst-ctn-kix_lmfaweys7m5f-8 0; }

.terms-of-use .lst-kix_cwc83c9nqybd-7 > li:before {
  content: "" counter(lst-ctn-kix_cwc83c9nqybd-0, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-1, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-2, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-3, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-4, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-5, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-6, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-7, decimal) ". "; }

.terms-of-use ol.lst-kix_be94xss4lbxh-4.start {
  counter-reset: lst-ctn-kix_be94xss4lbxh-4 0; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-1.start {
  counter-reset: lst-ctn-kix_1mqm6fdbjf9d-1 0; }

.terms-of-use .lst-kix_lmfaweys7m5f-3 > li {
  counter-increment: lst-ctn-kix_lmfaweys7m5f-3; }

.terms-of-use .lst-kix_jmq6s44ocrcf-3 > li {
  counter-increment: lst-ctn-kix_jmq6s44ocrcf-3; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-5.start {
  counter-reset: lst-ctn-kix_qv09rytsrgyh-5 0; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-2.start {
  counter-reset: lst-ctn-kix_8u4cke4ltdqs-2 0; }

.terms-of-use .lst-kix_yzeqjqyr2fys-8 > li:before {
  content: "" counter(lst-ctn-kix_yzeqjqyr2fys-0, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-1, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-2, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-3, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-4, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-5, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-6, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-7, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-8, decimal) ". "; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-0.start {
  counter-reset: lst-ctn-kix_xpze7a8jk05n-0 0; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-8.start {
  counter-reset: lst-ctn-kix_jc81tp6on6t7-8 0; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-8.start {
  counter-reset: lst-ctn-kix_8u4cke4ltdqs-8 0; }

.terms-of-use .lst-kix_rvhnci86jkmr-0 > li:before {
  content: "" counter(lst-ctn-kix_rvhnci86jkmr-0, decimal) ". "; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-6.start {
  counter-reset: lst-ctn-kix_fxz23k1sp8k0-6 0; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-5.start {
  counter-reset: lst-ctn-kix_qtyjlfd1csih-5 0; }

.terms-of-use ol.lst-kix_b028ztyzvlep-1.start {
  counter-reset: lst-ctn-kix_b028ztyzvlep-1 0; }

.terms-of-use .lst-kix_86e8u1yx210n-4 > li:before {
  content: "" counter(lst-ctn-kix_86e8u1yx210n-0, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-1, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-2, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-3, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-4, decimal) ". "; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_g892krgm1nrl-3.start {
  counter-reset: lst-ctn-kix_g892krgm1nrl-3 0; }

.terms-of-use .lst-kix_86e8u1yx210n-8 > li:before {
  content: "" counter(lst-ctn-kix_86e8u1yx210n-0, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-1, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-2, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-3, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-4, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-5, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-6, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-7, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-8, decimal) ". "; }

.terms-of-use .lst-kix_bb2e201r5mnm-0 > li:before {
  content: "12." counter(lst-ctn-kix_bb2e201r5mnm-0, decimal) ". "; }

.terms-of-use .lst-kix_wnmij0cmzu07-3 > li {
  counter-increment: lst-ctn-kix_wnmij0cmzu07-3; }

.terms-of-use ol.lst-kix_4coayww806d7-3.start {
  counter-reset: lst-ctn-kix_4coayww806d7-3 0; }

.terms-of-use .lst-kix_yzeqjqyr2fys-5 > li:before {
  content: "" counter(lst-ctn-kix_yzeqjqyr2fys-0, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-1, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-2, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-3, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-4, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-5, decimal) ". "; }

.terms-of-use .lst-kix_qv09rytsrgyh-2 > li:before {
  content: "" counter(lst-ctn-kix_qv09rytsrgyh-0, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-1, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-2, decimal) ". "; }

.terms-of-use .lst-kix_8ni4xzorapao-0 > li:before {
  content: "" counter(lst-ctn-kix_8ni4xzorapao-0, decimal) ". "; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-0.start {
  counter-reset: lst-ctn-kix_1mqm6fdbjf9d-0 27; }

.terms-of-use .lst-kix_dpn3kl14kxj0-6 > li {
  counter-increment: lst-ctn-kix_dpn3kl14kxj0-6; }

.terms-of-use .lst-kix_vw3e5pptfgmp-8 > li {
  counter-increment: lst-ctn-kix_vw3e5pptfgmp-8; }

.terms-of-use .lst-kix_be94xss4lbxh-4 > li:before {
  content: "" counter(lst-ctn-kix_be94xss4lbxh-0, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-1, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-2, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-3, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-4, decimal) ". "; }

.terms-of-use .lst-kix_be94xss4lbxh-8 > li:before {
  content: "" counter(lst-ctn-kix_be94xss4lbxh-0, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-1, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-2, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-3, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-4, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-5, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-6, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-7, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-8, decimal) ". "; }

.terms-of-use .lst-kix_qdft1q5q38jc-4 > li:before {
  content: "" counter(lst-ctn-kix_qdft1q5q38jc-0, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-1, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-2, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-3, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-4, decimal) ". "; }

.terms-of-use ol.lst-kix_4dasw5gw6627-7.start {
  counter-reset: lst-ctn-kix_4dasw5gw6627-7 0; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-3.start {
  counter-reset: lst-ctn-kix_lmfaweys7m5f-3 0; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-0.start {
  counter-reset: lst-ctn-kix_8cyb65p92zt8-0 0; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-5.start {
  counter-reset: lst-ctn-kix_gijfqhf5xkva-5 0; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-1.start {
  counter-reset: lst-ctn-kix_jmq6s44ocrcf-1 0; }

.terms-of-use .lst-kix_x2xllzoa2aed-7 > li:before {
  content: "" counter(lst-ctn-kix_x2xllzoa2aed-7, lower-latin) ". "; }

.terms-of-use .lst-kix_jl20g3uk09ea-4 > li {
  counter-increment: lst-ctn-kix_jl20g3uk09ea-4; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_x2xllzoa2aed-3 > li:before {
  content: "" counter(lst-ctn-kix_x2xllzoa2aed-3, decimal) ". "; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-8.start {
  counter-reset: lst-ctn-kix_dnra8vwir8mr-8 0; }

.terms-of-use ol.lst-kix_4dasw5gw6627-4.start {
  counter-reset: lst-ctn-kix_4dasw5gw6627-4 0; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_jc81tp6on6t7-2 > li:before {
  content: "" counter(lst-ctn-kix_jc81tp6on6t7-0, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-1, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-2, decimal) ". "; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_exi6qx2d4uml-6 > li:before {
  content: "" counter(lst-ctn-kix_exi6qx2d4uml-0, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-1, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-2, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-3, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-4, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-5, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-6, decimal) ". "; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-3.start {
  counter-reset: lst-ctn-kix_8u4cke4ltdqs-3 0; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-3.start {
  counter-reset: lst-ctn-kix_jc81tp6on6t7-3 0; }

.terms-of-use .lst-kix_ejqx2zz7tdan-0 > li:before {
  content: "" counter(lst-ctn-kix_ejqx2zz7tdan-0, decimal) ". "; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-4.start {
  counter-reset: lst-ctn-kix_wnmij0cmzu07-4 0; }

.terms-of-use .lst-kix_8ni4xzorapao-4 > li:before {
  content: "2." counter(lst-ctn-kix_8ni4xzorapao-4, decimal) ". "; }

.terms-of-use .lst-kix_ua66ewr564g1-2 > li {
  counter-increment: lst-ctn-kix_ua66ewr564g1-2; }

.terms-of-use .lst-kix_1099weaqanok-2 > li {
  counter-increment: lst-ctn-kix_1099weaqanok-2; }

.terms-of-use .lst-kix_otxxhlg4ijs2-8 > li {
  counter-increment: lst-ctn-kix_otxxhlg4ijs2-8; }

.terms-of-use .lst-kix_yndlr6f5dtu-8 > li:before {
  content: "" counter(lst-ctn-kix_yndlr6f5dtu-0, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-1, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-2, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-3, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-4, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-5, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-6, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-7, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-8, decimal) ". "; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-0.start {
  counter-reset: lst-ctn-kix_jmq6s44ocrcf-0 0; }

.terms-of-use ol.lst-kix_be94xss4lbxh-1.start {
  counter-reset: lst-ctn-kix_be94xss4lbxh-1 0; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-7.start {
  counter-reset: lst-ctn-kix_gijfqhf5xkva-7 0; }

.terms-of-use .lst-kix_ca703es297vb-2 > li:before {
  content: "" counter(lst-ctn-kix_ca703es297vb-0, decimal) "." counter(lst-ctn-kix_ca703es297vb-1, decimal) "." counter(lst-ctn-kix_ca703es297vb-2, decimal) ". "; }

.terms-of-use .lst-kix_feuxo8rhdbt0-5 > li:before {
  content: "" counter(lst-ctn-kix_feuxo8rhdbt0-5, lower-roman) ". "; }

.terms-of-use .lst-kix_7k9yp1bgytlo-5 > li {
  counter-increment: lst-ctn-kix_7k9yp1bgytlo-5; }

.terms-of-use .lst-kix_77jp2vv72q2e-4 > li {
  counter-increment: lst-ctn-kix_77jp2vv72q2e-4; }

.terms-of-use .lst-kix_gyvrc19ngq4f-6 > li:before {
  content: "" counter(lst-ctn-kix_gyvrc19ngq4f-0, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-1, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-2, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-3, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-4, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-5, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-6, decimal) ". "; }

.terms-of-use .lst-kix_otxxhlg4ijs2-3 > li {
  counter-increment: lst-ctn-kix_otxxhlg4ijs2-3; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-6.start {
  counter-reset: lst-ctn-kix_exi6qx2d4uml-6 0; }

.terms-of-use .lst-kix_kj86jt9svxha-1 > li {
  counter-increment: lst-ctn-kix_kj86jt9svxha-1; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-5.start {
  counter-reset: lst-ctn-kix_exi6qx2d4uml-5 0; }

.terms-of-use ol.lst-kix_4coayww806d7-4.start {
  counter-reset: lst-ctn-kix_4coayww806d7-4 0; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-2.start {
  counter-reset: lst-ctn-kix_fxz23k1sp8k0-2 0; }

.terms-of-use ol.lst-kix_g892krgm1nrl-4.start {
  counter-reset: lst-ctn-kix_g892krgm1nrl-4 0; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-3.start {
  counter-reset: lst-ctn-kix_8cyb65p92zt8-3 0; }

.terms-of-use .lst-kix_qv09rytsrgyh-0 > li {
  counter-increment: lst-ctn-kix_qv09rytsrgyh-0; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-6.start {
  counter-reset: lst-ctn-kix_gijfqhf5xkva-6 0; }

.terms-of-use .lst-kix_8cyb65p92zt8-3 > li {
  counter-increment: lst-ctn-kix_8cyb65p92zt8-3; }

.terms-of-use .lst-kix_5qie7zg80jlv-4 > li:before {
  content: "" counter(lst-ctn-kix_5qie7zg80jlv-0, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-1, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-2, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-3, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-4, decimal) ". "; }

.terms-of-use .lst-kix_86e8u1yx210n-4 > li {
  counter-increment: lst-ctn-kix_86e8u1yx210n-4; }

.terms-of-use .lst-kix_5qie7zg80jlv-8 > li:before {
  content: "" counter(lst-ctn-kix_5qie7zg80jlv-0, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-1, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-2, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-3, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-4, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-5, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-6, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-7, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-8, decimal) ". "; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-0.start {
  counter-reset: lst-ctn-kix_gyvrc19ngq4f-0 0; }

.terms-of-use .lst-kix_lkj44s1va27m-8 > li {
  counter-increment: lst-ctn-kix_lkj44s1va27m-8; }

.terms-of-use .lst-kix_yndlr6f5dtu-4 > li:before {
  content: "" counter(lst-ctn-kix_yndlr6f5dtu-0, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-1, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-2, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-3, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-4, decimal) ". "; }

.terms-of-use .lst-kix_feuxo8rhdbt0-1 > li:before {
  content: "" counter(lst-ctn-kix_feuxo8rhdbt0-1, lower-latin) ". "; }

.terms-of-use .lst-kix_j7eouqgowf9f-4 > li {
  counter-increment: lst-ctn-kix_j7eouqgowf9f-4; }

.terms-of-use .lst-kix_2oqtqd6s45kj-3 > li {
  counter-increment: lst-ctn-kix_2oqtqd6s45kj-3; }

.terms-of-use .lst-kix_kj86jt9svxha-4 > li:before {
  content: "" counter(lst-ctn-kix_kj86jt9svxha-0, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-1, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-2, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-3, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-4, decimal) ". "; }

.terms-of-use .lst-kix_ozm68jv0adg5-1 > li:before {
  content: "" counter(lst-ctn-kix_ozm68jv0adg5-1, lower-latin) ". "; }

.terms-of-use .lst-kix_lkj44s1va27m-0 > li {
  counter-increment: lst-ctn-kix_lkj44s1va27m-0; }

.terms-of-use .lst-kix_kj86jt9svxha-1 > li:before {
  content: "" counter(lst-ctn-kix_kj86jt9svxha-0, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-1, decimal) ". "; }

.terms-of-use .lst-kix_kj86jt9svxha-7 > li:before {
  content: "" counter(lst-ctn-kix_kj86jt9svxha-0, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-1, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-2, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-3, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-4, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-5, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-6, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-7, decimal) ". "; }

.terms-of-use .lst-kix_cwc83c9nqybd-5 > li {
  counter-increment: lst-ctn-kix_cwc83c9nqybd-5; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-1.start {
  counter-reset: lst-ctn-kix_rdktnl6coqgw-1 0; }

.terms-of-use .lst-kix_ozm68jv0adg5-4 > li:before {
  content: "" counter(lst-ctn-kix_ozm68jv0adg5-4, lower-latin) ". "; }

.terms-of-use .lst-kix_wnmij0cmzu07-0 > li:before {
  content: "30." counter(lst-ctn-kix_wnmij0cmzu07-0, decimal) ". "; }

.terms-of-use ol.lst-kix_4coayww806d7-7.start {
  counter-reset: lst-ctn-kix_4coayww806d7-7 0; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-1.start {
  counter-reset: lst-ctn-kix_gyvrc19ngq4f-1 0; }

.terms-of-use ol.lst-kix_be94xss4lbxh-6.start {
  counter-reset: lst-ctn-kix_be94xss4lbxh-6 0; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-4.start {
  counter-reset: lst-ctn-kix_8u4cke4ltdqs-4 0; }

.terms-of-use .lst-kix_r8ii1wx48ejc-6 > li {
  counter-increment: lst-ctn-kix_r8ii1wx48ejc-6; }

.terms-of-use .lst-kix_ozm68jv0adg5-7 > li:before {
  content: "" counter(lst-ctn-kix_ozm68jv0adg5-7, lower-latin) ". "; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-7.start {
  counter-reset: lst-ctn-kix_yndlr6f5dtu-7 0; }

.terms-of-use .lst-kix_otxxhlg4ijs2-0 > li {
  counter-increment: lst-ctn-kix_otxxhlg4ijs2-0; }

.terms-of-use .lst-kix_1099weaqanok-6 > li:before {
  content: "" counter(lst-ctn-kix_1099weaqanok-0, decimal) "." counter(lst-ctn-kix_1099weaqanok-1, decimal) "." counter(lst-ctn-kix_1099weaqanok-2, decimal) "." counter(lst-ctn-kix_1099weaqanok-3, decimal) "." counter(lst-ctn-kix_1099weaqanok-4, decimal) "." counter(lst-ctn-kix_1099weaqanok-5, decimal) "." counter(lst-ctn-kix_1099weaqanok-6, decimal) ". "; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-4 > li:before {
  content: "" counter(lst-ctn-kix_pdkjfeu5u5mg-0, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-1, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-2, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-3, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-4, decimal) ". "; }

.terms-of-use .lst-kix_feuxo8rhdbt0-3 > li {
  counter-increment: lst-ctn-kix_feuxo8rhdbt0-3; }

.terms-of-use .lst-kix_y75hn1731udi-1 > li:before {
  content: "" counter(lst-ctn-kix_y75hn1731udi-0, decimal) "." counter(lst-ctn-kix_y75hn1731udi-1, decimal) ". "; }

.terms-of-use .lst-kix_vw3e5pptfgmp-0 > li:before {
  content: "35." counter(lst-ctn-kix_vw3e5pptfgmp-0, decimal) " "; }

.terms-of-use .lst-kix_tul2fovx6tmm-8 > li {
  counter-increment: lst-ctn-kix_tul2fovx6tmm-8; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-4.start {
  counter-reset: lst-ctn-kix_f3v1vtgjdx5m-4 0; }

.terms-of-use .lst-kix_1099weaqanok-3 > li:before {
  content: "" counter(lst-ctn-kix_1099weaqanok-0, decimal) "." counter(lst-ctn-kix_1099weaqanok-1, decimal) "." counter(lst-ctn-kix_1099weaqanok-2, decimal) "." counter(lst-ctn-kix_1099weaqanok-3, decimal) ". "; }

.terms-of-use .lst-kix_1qrhkgrpibm6-8 > li {
  counter-increment: lst-ctn-kix_1qrhkgrpibm6-8; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-7 > li:before {
  content: "" counter(lst-ctn-kix_pdkjfeu5u5mg-0, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-1, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-2, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-3, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-4, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-5, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-6, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-7, decimal) ". "; }

.terms-of-use .lst-kix_pbzo2n87xzpj-4 > li {
  counter-increment: lst-ctn-kix_pbzo2n87xzpj-4; }

.terms-of-use .lst-kix_wnmij0cmzu07-7 > li:before {
  content: "" counter(lst-ctn-kix_wnmij0cmzu07-0, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-1, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-2, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-3, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-4, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-5, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-6, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-7, decimal) ". "; }

.terms-of-use .lst-kix_gyvrc19ngq4f-0 > li:before {
  content: "27." counter(lst-ctn-kix_gyvrc19ngq4f-0, decimal) ". "; }

.terms-of-use .lst-kix_y75hn1731udi-4 > li:before {
  content: "" counter(lst-ctn-kix_y75hn1731udi-0, decimal) "." counter(lst-ctn-kix_y75hn1731udi-1, decimal) "." counter(lst-ctn-kix_y75hn1731udi-2, decimal) "." counter(lst-ctn-kix_y75hn1731udi-3, decimal) "." counter(lst-ctn-kix_y75hn1731udi-4, decimal) ". "; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-5.start {
  counter-reset: lst-ctn-kix_x2xllzoa2aed-5 0; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-2 > li {
  counter-increment: lst-ctn-kix_pdkjfeu5u5mg-2; }

.terms-of-use .lst-kix_vw3e5pptfgmp-3 > li:before {
  content: "" counter(lst-ctn-kix_vw3e5pptfgmp-0, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-1, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-2, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-3, decimal) ". "; }

.terms-of-use .lst-kix_lmfaweys7m5f-2 > li:before {
  content: "" counter(lst-ctn-kix_lmfaweys7m5f-0, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-1, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-2, decimal) ". "; }

.terms-of-use .lst-kix_y75hn1731udi-5 > li {
  counter-increment: lst-ctn-kix_y75hn1731udi-5; }

.terms-of-use ol.lst-kix_g892krgm1nrl-5.start {
  counter-reset: lst-ctn-kix_g892krgm1nrl-5 0; }

.terms-of-use .lst-kix_7k9yp1bgytlo-1 > li:before {
  content: "6.1.2." counter(lst-ctn-kix_7k9yp1bgytlo-1, decimal) " "; }

.terms-of-use ol.lst-kix_4dasw5gw6627-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-6.start {
  counter-reset: lst-ctn-kix_rdktnl6coqgw-6 0; }

.terms-of-use ol.lst-kix_4dasw5gw6627-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_be94xss4lbxh-1 > li {
  counter-increment: lst-ctn-kix_be94xss4lbxh-1; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-5.start {
  counter-reset: lst-ctn-kix_8cyb65p92zt8-5 0; }

.terms-of-use .lst-kix_7k9yp1bgytlo-4 > li:before {
  content: "" counter(lst-ctn-kix_7k9yp1bgytlo-0, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-1, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-2, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-3, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-4, decimal) ". "; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4dasw5gw6627-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4dasw5gw6627-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4dasw5gw6627-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4dasw5gw6627-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-2.start {
  counter-reset: lst-ctn-kix_yndlr6f5dtu-2 0; }

.terms-of-use .lst-kix_dnra8vwir8mr-4 > li {
  counter-increment: lst-ctn-kix_dnra8vwir8mr-4; }

.terms-of-use ol.lst-kix_4dasw5gw6627-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_49u30kkokmge-7 > li:before {
  content: "" counter(lst-ctn-kix_49u30kkokmge-0, decimal) "." counter(lst-ctn-kix_49u30kkokmge-1, decimal) "." counter(lst-ctn-kix_49u30kkokmge-2, decimal) "." counter(lst-ctn-kix_49u30kkokmge-3, decimal) "." counter(lst-ctn-kix_49u30kkokmge-4, decimal) "." counter(lst-ctn-kix_49u30kkokmge-5, decimal) "." counter(lst-ctn-kix_49u30kkokmge-6, decimal) "." counter(lst-ctn-kix_49u30kkokmge-7, decimal) ". "; }

.terms-of-use ol.lst-kix_4dasw5gw6627-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-4.start {
  counter-reset: lst-ctn-kix_jmq6s44ocrcf-4 0; }

.terms-of-use .lst-kix_wvszyx9fl4yt-0 > li:before {
  content: "" counter(lst-ctn-kix_wvszyx9fl4yt-0, decimal) ". "; }

.terms-of-use .lst-kix_jc81tp6on6t7-6 > li {
  counter-increment: lst-ctn-kix_jc81tp6on6t7-6; }

.terms-of-use ol.lst-kix_4dasw5gw6627-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_49u30kkokmge-1 > li:before {
  content: "" counter(lst-ctn-kix_49u30kkokmge-0, decimal) "." counter(lst-ctn-kix_49u30kkokmge-1, decimal) ". "; }

.terms-of-use .lst-kix_7k9yp1bgytlo-0 > li {
  counter-increment: lst-ctn-kix_7k9yp1bgytlo-0; }

.terms-of-use .lst-kix_4coayww806d7-2 > li {
  counter-increment: lst-ctn-kix_4coayww806d7-2; }

.terms-of-use .lst-kix_4dasw5gw6627-2 > li {
  counter-increment: lst-ctn-kix_4dasw5gw6627-2; }

.terms-of-use .lst-kix_jb80qd27i5ho-5 > li {
  counter-increment: lst-ctn-kix_jb80qd27i5ho-5; }

.terms-of-use .lst-kix_49u30kkokmge-4 > li:before {
  content: "" counter(lst-ctn-kix_49u30kkokmge-0, decimal) "." counter(lst-ctn-kix_49u30kkokmge-1, decimal) "." counter(lst-ctn-kix_49u30kkokmge-2, decimal) "." counter(lst-ctn-kix_49u30kkokmge-3, decimal) "." counter(lst-ctn-kix_49u30kkokmge-4, decimal) ". "; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-1.start {
  counter-reset: lst-ctn-kix_vw3e5pptfgmp-1 0; }

.terms-of-use .lst-kix_wvszyx9fl4yt-3 > li:before {
  content: "" counter(lst-ctn-kix_wvszyx9fl4yt-0, decimal) "." counter(lst-ctn-kix_4coayww806d7-1, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-2, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-3, decimal) ". "; }

.terms-of-use .lst-kix_7k9yp1bgytlo-7 > li:before {
  content: "" counter(lst-ctn-kix_7k9yp1bgytlo-0, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-1, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-2, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-3, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-4, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-5, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-6, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-7, decimal) ". "; }

.terms-of-use .lst-kix_lmfaweys7m5f-6 > li {
  counter-increment: lst-ctn-kix_lmfaweys7m5f-6; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-3.start {
  counter-reset: lst-ctn-kix_wnmij0cmzu07-3 0; }

.terms-of-use .lst-kix_rdktnl6coqgw-3 > li:before {
  content: "" counter(lst-ctn-kix_rdktnl6coqgw-0, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-1, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-2, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-3, decimal) ". "; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-2.start {
  counter-reset: lst-ctn-kix_exi6qx2d4uml-2 0; }

.terms-of-use .lst-kix_jmq6s44ocrcf-0 > li {
  counter-increment: lst-ctn-kix_jmq6s44ocrcf-0; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-8.start {
  counter-reset: lst-ctn-kix_vw3e5pptfgmp-8 0; }

.terms-of-use ol.lst-kix_2mckoz4hri27-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-0.start {
  counter-reset: lst-ctn-kix_dnra8vwir8mr-0 0; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-7.start {
  counter-reset: lst-ctn-kix_dnra8vwir8mr-7 0; }

.terms-of-use ol.lst-kix_2mckoz4hri27-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_2mckoz4hri27-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_2mckoz4hri27-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_rdktnl6coqgw-0 > li:before {
  content: "" counter(lst-ctn-kix_rdktnl6coqgw-0, decimal) ". "; }

.terms-of-use ol.lst-kix_2mckoz4hri27-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_2mckoz4hri27-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_2mckoz4hri27-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_2mckoz4hri27-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_gijfqhf5xkva-7 > li {
  counter-increment: lst-ctn-kix_gijfqhf5xkva-7; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-0.start {
  counter-reset: lst-ctn-kix_x2xllzoa2aed-0 0; }

.terms-of-use ol.lst-kix_2mckoz4hri27-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_rdktnl6coqgw-6 > li {
  counter-increment: lst-ctn-kix_rdktnl6coqgw-6; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_y75hn1731udi-2 > li {
  counter-increment: lst-ctn-kix_y75hn1731udi-2; }

.terms-of-use .lst-kix_jmq6s44ocrcf-8 > li {
  counter-increment: lst-ctn-kix_jmq6s44ocrcf-8; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_gijfqhf5xkva-4 > li {
  counter-increment: lst-ctn-kix_gijfqhf5xkva-4; }

.terms-of-use .lst-kix_jc81tp6on6t7-3 > li {
  counter-increment: lst-ctn-kix_jc81tp6on6t7-3; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-2.start {
  counter-reset: lst-ctn-kix_xpze7a8jk05n-2 0; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_qtyjlfd1csih-2 > li:before {
  content: "" counter(lst-ctn-kix_qtyjlfd1csih-2, lower-roman) ". "; }

.terms-of-use .lst-kix_g892krgm1nrl-2 > li:before {
  content: "21.3." counter(lst-ctn-kix_g892krgm1nrl-2, decimal) " "; }

.terms-of-use .lst-kix_rdktnl6coqgw-6 > li:before {
  content: "" counter(lst-ctn-kix_rdktnl6coqgw-0, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-1, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-2, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-3, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-4, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-5, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-6, decimal) ". "; }

.terms-of-use .lst-kix_86e8u1yx210n-1 > li:before {
  content: "" counter(lst-ctn-kix_86e8u1yx210n-0, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-1, decimal) ". "; }

.terms-of-use .lst-kix_rvhnci86jkmr-7 > li {
  counter-increment: lst-ctn-kix_rvhnci86jkmr-7; }

.terms-of-use .lst-kix_5u8mf6guzj36-6 > li:before {
  content: "" counter(lst-ctn-kix_5u8mf6guzj36-0, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-1, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-2, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-3, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-4, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-5, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-6, decimal) ". "; }

.terms-of-use .lst-kix_ozm68jv0adg5-0 > li {
  counter-increment: lst-ctn-kix_ozm68jv0adg5-0; }

.terms-of-use .lst-kix_r8ii1wx48ejc-2 > li:before {
  content: "" counter(lst-ctn-kix_r8ii1wx48ejc-0, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-1, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-2, decimal) ". "; }

.terms-of-use .lst-kix_vltjg6tv64ze-7 > li:before {
  content: "" counter(lst-ctn-kix_vltjg6tv64ze-0, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-1, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-2, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-3, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-4, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-5, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-6, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-7, decimal) ". "; }

.terms-of-use .lst-kix_ejqx2zz7tdan-3 > li:before {
  content: "" counter(lst-ctn-kix_ejqx2zz7tdan-0, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-1, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-2, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-3, decimal) ". "; }

.terms-of-use .lst-kix_hxom0vvb70ua-8 > li {
  counter-increment: lst-ctn-kix_hxom0vvb70ua-8; }

.terms-of-use .lst-kix_x2xllzoa2aed-0 > li:before {
  content: "" counter(lst-ctn-kix_x2xllzoa2aed-0, decimal) ". "; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-2.start {
  counter-reset: lst-ctn-kix_f3v1vtgjdx5m-2 0; }

.terms-of-use .lst-kix_exi6qx2d4uml-3 > li:before {
  content: "" counter(lst-ctn-kix_exi6qx2d4uml-0, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-1, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-2, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-3, decimal) ". "; }

.terms-of-use .lst-kix_qdft1q5q38jc-1 > li:before {
  content: "" counter(lst-ctn-kix_qdft1q5q38jc-0, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-1, decimal) ". "; }

.terms-of-use .lst-kix_yzeqjqyr2fys-2 > li:before {
  content: "" counter(lst-ctn-kix_yzeqjqyr2fys-0, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-1, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-2, decimal) ". "; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_vltjg6tv64ze-1 > li:before {
  content: "" counter(lst-ctn-kix_vltjg6tv64ze-0, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-1, decimal) ". "; }

.terms-of-use .lst-kix_pbzo2n87xzpj-7 > li {
  counter-increment: lst-ctn-kix_pbzo2n87xzpj-7; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-3.start {
  counter-reset: lst-ctn-kix_qv09rytsrgyh-3 0; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-8.start {
  counter-reset: lst-ctn-kix_8cyb65p92zt8-8 0; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-6.start {
  counter-reset: lst-ctn-kix_vw3e5pptfgmp-6 0; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-6.start {
  counter-reset: lst-ctn-kix_cwc83c9nqybd-6 0; }

.terms-of-use .lst-kix_77jp2vv72q2e-1 > li {
  counter-increment: lst-ctn-kix_77jp2vv72q2e-1; }

.terms-of-use ol.lst-kix_y75hn1731udi-3.start {
  counter-reset: lst-ctn-kix_y75hn1731udi-3 0; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-0.start {
  counter-reset: lst-ctn-kix_exi6qx2d4uml-0 0; }

.terms-of-use .lst-kix_8ni4xzorapao-7 > li:before {
  content: "2." counter(lst-ctn-kix_8ni4xzorapao-7, decimal) ". "; }

.terms-of-use .lst-kix_jc81tp6on6t7-5 > li:before {
  content: "" counter(lst-ctn-kix_jc81tp6on6t7-0, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-1, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-2, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-3, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-4, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-5, decimal) ". "; }

.terms-of-use ol.lst-kix_g892krgm1nrl-8.start {
  counter-reset: lst-ctn-kix_g892krgm1nrl-8 0; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-5.start {
  counter-reset: lst-ctn-kix_dnra8vwir8mr-5 0; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-8.start {
  counter-reset: lst-ctn-kix_gyvrc19ngq4f-8 0; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-2.start {
  counter-reset: lst-ctn-kix_dnra8vwir8mr-2 0; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-1.start {
  counter-reset: lst-ctn-kix_wnmij0cmzu07-1 0; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-8.start {
  counter-reset: lst-ctn-kix_7k9yp1bgytlo-8 0; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-3.start {
  counter-reset: lst-ctn-kix_vw3e5pptfgmp-3 0; }

.terms-of-use .lst-kix_xpze7a8jk05n-6 > li:before {
  content: "2." counter(lst-ctn-kix_xpze7a8jk05n-6, decimal) ". "; }

.terms-of-use .lst-kix_hy09gnjdhf12-6 > li:before {
  content: "" counter(lst-ctn-kix_hy09gnjdhf12-0, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-1, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-2, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-3, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-4, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-5, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-6, decimal) ". "; }

.terms-of-use ol.lst-kix_be94xss4lbxh-8.start {
  counter-reset: lst-ctn-kix_be94xss4lbxh-8 0; }

.terms-of-use .lst-kix_jmq6s44ocrcf-2 > li:before {
  content: "" counter(lst-ctn-kix_jmq6s44ocrcf-0, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-1, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-2, decimal) ". "; }

.terms-of-use .lst-kix_hy09gnjdhf12-0 > li:before {
  content: "" counter(lst-ctn-kix_hy09gnjdhf12-0, decimal) ". "; }

.terms-of-use .lst-kix_vw3e5pptfgmp-6 > li:before {
  content: "" counter(lst-ctn-kix_vw3e5pptfgmp-0, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-1, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-2, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-3, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-4, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-5, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-6, decimal) ". "; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-0 > li {
  counter-increment: lst-ctn-kix_4uj4b9kmbxlp-0; }

.terms-of-use .lst-kix_gyvrc19ngq4f-3 > li:before {
  content: "" counter(lst-ctn-kix_gyvrc19ngq4f-0, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-1, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-2, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-3, decimal) ". "; }

.terms-of-use .lst-kix_2mckoz4hri27-7 > li:before {
  content: "" counter(lst-ctn-kix_2mckoz4hri27-0, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-1, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-2, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-3, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-4, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-5, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-6, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-7, decimal) ". "; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-3.start {
  counter-reset: lst-ctn-kix_rdktnl6coqgw-3 0; }

.terms-of-use .lst-kix_lmfaweys7m5f-8 > li:before {
  content: "" counter(lst-ctn-kix_lmfaweys7m5f-0, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-1, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-2, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-3, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-4, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-5, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-6, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-7, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-8, decimal) ". "; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-4.start {
  counter-reset: lst-ctn-kix_xpze7a8jk05n-4 0; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-2 > li:before {
  content: "" counter(lst-ctn-kix_qdvjpwm2m2b6-0, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-1, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-2, decimal) ". "; }

.terms-of-use .lst-kix_jmq6s44ocrcf-8 > li:before {
  content: "" counter(lst-ctn-kix_jmq6s44ocrcf-0, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-1, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-2, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-3, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-4, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-5, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-6, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-7, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-8, decimal) ". "; }

.terms-of-use .lst-kix_x2xllzoa2aed-1 > li {
  counter-increment: lst-ctn-kix_x2xllzoa2aed-1; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-6 {
  list-style-type: none; }

.terms-of-use .lst-kix_qdft1q5q38jc-7 > li {
  counter-increment: lst-ctn-kix_qdft1q5q38jc-7; }

.terms-of-use .lst-kix_vltjg6tv64ze-0 > li {
  counter-increment: lst-ctn-kix_vltjg6tv64ze-0; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-1 > li:before {
  content: "" counter(lst-ctn-kix_pdkjfeu5u5mg-0, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-1, decimal) ". "; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-0.start {
  counter-reset: lst-ctn-kix_yndlr6f5dtu-0 18; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-8.start {
  counter-reset: lst-ctn-kix_cwc83c9nqybd-8 0; }

.terms-of-use .lst-kix_kj86jt9svxha-4 > li {
  counter-increment: lst-ctn-kix_kj86jt9svxha-4; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_j7eouqgowf9f-7 > li {
  counter-increment: lst-ctn-kix_j7eouqgowf9f-7; }

.terms-of-use .lst-kix_5qie7zg80jlv-1 > li:before {
  content: "" counter(lst-ctn-kix_5qie7zg80jlv-0, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-1, decimal) ". "; }

.terms-of-use .lst-kix_49u30kkokmge-6 > li {
  counter-increment: lst-ctn-kix_49u30kkokmge-6; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-1.start {
  counter-reset: lst-ctn-kix_qv09rytsrgyh-1 0; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-3.start {
  counter-reset: lst-ctn-kix_x2xllzoa2aed-3 0; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_pbzo2n87xzpj-0 > li:before {
  content: "4.3." counter(lst-ctn-kix_pbzo2n87xzpj-0, decimal) ". "; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-4 > li {
  counter-increment: lst-ctn-kix_f3v1vtgjdx5m-4; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-6.start {
  counter-reset: lst-ctn-kix_jmq6s44ocrcf-6 0; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-6.start {
  counter-reset: lst-ctn-kix_gyvrc19ngq4f-6 0; }

.terms-of-use .lst-kix_pbzo2n87xzpj-6 > li:before {
  content: "" counter(lst-ctn-kix_pbzo2n87xzpj-0, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-1, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-2, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-3, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-4, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-5, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-6, decimal) ". "; }

.terms-of-use .lst-kix_49u30kkokmge-0 > li {
  counter-increment: lst-ctn-kix_49u30kkokmge-0; }

.terms-of-use .lst-kix_mtnawcnqd6n-2 > li {
  counter-increment: lst-ctn-kix_mtnawcnqd6n-2; }

.terms-of-use .lst-kix_yndlr6f5dtu-1 > li:before {
  content: "21.1." counter(lst-ctn-kix_yndlr6f5dtu-1, decimal) " "; }

.terms-of-use .lst-kix_g892krgm1nrl-6 > li {
  counter-increment: lst-ctn-kix_g892krgm1nrl-6; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-8 > li:before {
  content: "" counter(lst-ctn-kix_qdvjpwm2m2b6-0, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-1, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-2, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-3, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-4, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-5, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-6, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-7, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-8, decimal) ". "; }

.terms-of-use .lst-kix_qtyjlfd1csih-2 > li {
  counter-increment: lst-ctn-kix_qtyjlfd1csih-2; }

.terms-of-use .lst-kix_2mckoz4hri27-1 > li:before {
  content: "" counter(lst-ctn-kix_2mckoz4hri27-0, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-1, decimal) ". "; }

.terms-of-use ol.lst-kix_y75hn1731udi-5.start {
  counter-reset: lst-ctn-kix_y75hn1731udi-5 0; }

.terms-of-use .lst-kix_2oqtqd6s45kj-6 > li {
  counter-increment: lst-ctn-kix_2oqtqd6s45kj-6; }

.terms-of-use .lst-kix_e764bgixpbj9-4 > li:before {
  content: "" counter(lst-ctn-kix_e764bgixpbj9-0, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-1, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-2, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-3, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-4, decimal) ". "; }

.terms-of-use .lst-kix_be94xss4lbxh-4 > li {
  counter-increment: lst-ctn-kix_be94xss4lbxh-4; }

.terms-of-use .lst-kix_bb2e201r5mnm-8 > li {
  counter-increment: lst-ctn-kix_bb2e201r5mnm-8; }

.terms-of-use .lst-kix_dpn3kl14kxj0-3 > li:before {
  content: "" counter(lst-ctn-kix_dpn3kl14kxj0-3, decimal) ". "; }

.terms-of-use .lst-kix_rvhnci86jkmr-6 > li:before {
  content: "" counter(lst-ctn-kix_rvhnci86jkmr-6, decimal) ". "; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-6 > li:before {
  content: "" counter(lst-ctn-kix_1mqm6fdbjf9d-0, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-1, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-2, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-3, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-4, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-5, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-6, decimal) ". "; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-0 > li:before {
  content: "" counter(lst-ctn-kix_f3v1vtgjdx5m-0, decimal) ". "; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-2.start {
  counter-reset: lst-ctn-kix_x2xllzoa2aed-2 0; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-4.start {
  counter-reset: lst-ctn-kix_rdktnl6coqgw-4 0; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-4.start {
  counter-reset: lst-ctn-kix_yndlr6f5dtu-4 0; }

.terms-of-use .lst-kix_lkj44s1va27m-2 > li:before {
  content: "" counter(lst-ctn-kix_lkj44s1va27m-0, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-1, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-2, decimal) ". "; }

.terms-of-use .lst-kix_yhc1v6iazz4p-0 > li {
  counter-increment: lst-ctn-kix_yhc1v6iazz4p-0; }

.terms-of-use .lst-kix_lkj44s1va27m-5 > li:before {
  content: "" counter(lst-ctn-kix_lkj44s1va27m-0, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-1, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-2, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-3, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-4, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-5, decimal) ". "; }

.terms-of-use .lst-kix_exi6qx2d4uml-7 > li {
  counter-increment: lst-ctn-kix_exi6qx2d4uml-7; }

.terms-of-use .lst-kix_pbzo2n87xzpj-1 > li {
  counter-increment: lst-ctn-kix_pbzo2n87xzpj-1; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-1.start {
  counter-reset: lst-ctn-kix_7k9yp1bgytlo-1 0; }

.terms-of-use .lst-kix_jl20g3uk09ea-7 > li {
  counter-increment: lst-ctn-kix_jl20g3uk09ea-7; }

.terms-of-use .lst-kix_feuxo8rhdbt0-6 > li {
  counter-increment: lst-ctn-kix_feuxo8rhdbt0-6; }

.terms-of-use .lst-kix_jb80qd27i5ho-4 > li:before {
  content: "" counter(lst-ctn-kix_jb80qd27i5ho-0, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-1, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-2, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-3, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-4, decimal) ". "; }

.terms-of-use .lst-kix_2oqtqd6s45kj-5 > li:before {
  content: "" counter(lst-ctn-kix_2oqtqd6s45kj-5, lower-roman) ". "; }

.terms-of-use .lst-kix_jb80qd27i5ho-1 > li:before {
  content: "" counter(lst-ctn-kix_jb80qd27i5ho-0, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-1, decimal) ". "; }

.terms-of-use .lst-kix_xpze7a8jk05n-0 > li:before {
  content: "2." counter(lst-ctn-kix_xpze7a8jk05n-0, decimal) " "; }

.terms-of-use .lst-kix_dpn3kl14kxj0-0 > li {
  counter-increment: lst-ctn-kix_dpn3kl14kxj0-0; }

.terms-of-use .lst-kix_mtnawcnqd6n-5 > li:before {
  content: "" counter(lst-ctn-kix_mtnawcnqd6n-0, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-1, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-2, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-3, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-4, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-5, decimal) ". "; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-0 > li {
  counter-increment: lst-ctn-kix_kbxm1bpcr5lb-0; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-8.start {
  counter-reset: lst-ctn-kix_jmq6s44ocrcf-8 0; }

.terms-of-use .lst-kix_4dasw5gw6627-7 > li:before {
  content: "" counter(lst-ctn-kix_4dasw5gw6627-0, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-1, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-2, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-3, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-4, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-5, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-6, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-7, decimal) ". "; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-1.start {
  counter-reset: lst-ctn-kix_f3v1vtgjdx5m-1 0; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-5 > li {
  counter-increment: lst-ctn-kix_pdkjfeu5u5mg-5; }

.terms-of-use .lst-kix_2oqtqd6s45kj-8 > li:before {
  content: "" counter(lst-ctn-kix_2oqtqd6s45kj-8, lower-roman) ". "; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-6 > li {
  counter-increment: lst-ctn-kix_j9lwa1xo9iwq-6; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-7.start {
  counter-reset: lst-ctn-kix_7k9yp1bgytlo-7 0; }

.terms-of-use .lst-kix_otxxhlg4ijs2-6 > li:before {
  content: "" counter(lst-ctn-kix_otxxhlg4ijs2-0, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-1, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-2, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-3, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-4, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-5, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-6, decimal) ". "; }

.terms-of-use .lst-kix_cwc83c9nqybd-2 > li {
  counter-increment: lst-ctn-kix_cwc83c9nqybd-2; }

.terms-of-use .lst-kix_otxxhlg4ijs2-3 > li:before {
  content: "" counter(lst-ctn-kix_otxxhlg4ijs2-0, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-1, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-2, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-3, decimal) ". "; }

.terms-of-use .lst-kix_hxom0vvb70ua-5 > li:before {
  content: "" counter(lst-ctn-kix_hxom0vvb70ua-5, lower-roman) ". "; }

.terms-of-use .lst-kix_jl20g3uk09ea-2 > li:before {
  content: "2." counter(lst-ctn-kix_jl20g3uk09ea-2, decimal) ". "; }

.terms-of-use .lst-kix_hxom0vvb70ua-2 > li:before {
  content: "" counter(lst-ctn-kix_hxom0vvb70ua-2, lower-roman) ". "; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-1.start {
  counter-reset: lst-ctn-kix_x2xllzoa2aed-1 0; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-7.start {
  counter-reset: lst-ctn-kix_xpze7a8jk05n-7 0; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-4.start {
  counter-reset: lst-ctn-kix_cwc83c9nqybd-4 0; }

.terms-of-use ol.lst-kix_y75hn1731udi-1.start {
  counter-reset: lst-ctn-kix_y75hn1731udi-1 0; }

.terms-of-use .lst-kix_jb80qd27i5ho-8 > li {
  counter-increment: lst-ctn-kix_jb80qd27i5ho-8; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-6.start {
  counter-reset: lst-ctn-kix_7k9yp1bgytlo-6 0; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_5u8mf6guzj36-0 > li:before {
  content: "18." counter(lst-ctn-kix_5u8mf6guzj36-0, decimal) ". "; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-5.start {
  counter-reset: lst-ctn-kix_rdktnl6coqgw-5 0; }

.terms-of-use .lst-kix_cwc83c9nqybd-4 > li:before {
  content: "" counter(lst-ctn-kix_cwc83c9nqybd-0, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-1, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-2, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-3, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-4, decimal) ". "; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_b028ztyzvlep-7 > li:before {
  content: "" counter(lst-ctn-kix_b028ztyzvlep-0, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-1, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-2, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-3, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-4, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-5, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-6, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-7, decimal) ". "; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-6.start {
  counter-reset: lst-ctn-kix_xpze7a8jk05n-6 0; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-3.start {
  counter-reset: lst-ctn-kix_yndlr6f5dtu-3 0; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-5.start {
  counter-reset: lst-ctn-kix_cwc83c9nqybd-5 0; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_y75hn1731udi-2.start {
  counter-reset: lst-ctn-kix_y75hn1731udi-2 0; }

.terms-of-use .lst-kix_4dasw5gw6627-5 > li {
  counter-increment: lst-ctn-kix_4dasw5gw6627-5; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-0.start {
  counter-reset: lst-ctn-kix_7k9yp1bgytlo-0 0; }

.terms-of-use .lst-kix_dnra8vwir8mr-7 > li {
  counter-increment: lst-ctn-kix_dnra8vwir8mr-7; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-8 > li {
  counter-increment: lst-ctn-kix_1mqm6fdbjf9d-8; }

.terms-of-use .lst-kix_exi6qx2d4uml-0 > li:before {
  content: "8." counter(lst-ctn-kix_exi6qx2d4uml-0, decimal) ". "; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-8.start {
  counter-reset: lst-ctn-kix_f3v1vtgjdx5m-8 0; }

.terms-of-use .lst-kix_qv09rytsrgyh-8 > li:before {
  content: "" counter(lst-ctn-kix_qv09rytsrgyh-0, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-1, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-2, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-3, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-4, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-5, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-6, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-7, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-8, decimal) ". "; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-3 > li {
  counter-increment: lst-ctn-kix_kbxm1bpcr5lb-3; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-3 > li {
  counter-increment: lst-ctn-kix_4uj4b9kmbxlp-3; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-0.start {
  counter-reset: lst-ctn-kix_vw3e5pptfgmp-0 0; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-2.start {
  counter-reset: lst-ctn-kix_7k9yp1bgytlo-2 0; }

.terms-of-use .lst-kix_5u8mf6guzj36-3 > li:before {
  content: "8.1.2." counter(lst-ctn-kix_5u8mf6guzj36-3, decimal) ". "; }

.terms-of-use .lst-kix_cwc83c9nqybd-1 > li:before {
  content: "" counter(lst-ctn-kix_cwc83c9nqybd-0, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-1, decimal) ". "; }

.terms-of-use .lst-kix_8u4cke4ltdqs-7 > li:before {
  content: "" counter(lst-ctn-kix_8u4cke4ltdqs-7, lower-latin) ". "; }

.terms-of-use .lst-kix_8ni4xzorapao-0 > li {
  counter-increment: lst-ctn-kix_8ni4xzorapao-0; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-8.start {
  counter-reset: lst-ctn-kix_rdktnl6coqgw-8 0; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-5.start {
  counter-reset: lst-ctn-kix_f3v1vtgjdx5m-5 0; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-2 > li {
  counter-increment: lst-ctn-kix_qdvjpwm2m2b6-2; }

.terms-of-use .lst-kix_ejqx2zz7tdan-6 > li:before {
  content: "" counter(lst-ctn-kix_ejqx2zz7tdan-0, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-1, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-2, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-3, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-4, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-5, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-6, decimal) ". "; }

.terms-of-use .lst-kix_vltjg6tv64ze-4 > li:before {
  content: "" counter(lst-ctn-kix_vltjg6tv64ze-0, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-1, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-2, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-3, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-4, decimal) ". "; }

.terms-of-use .lst-kix_x2xllzoa2aed-4 > li {
  counter-increment: lst-ctn-kix_x2xllzoa2aed-4; }

.terms-of-use .lst-kix_tul2fovx6tmm-5 > li {
  counter-increment: lst-ctn-kix_tul2fovx6tmm-5; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-5.start {
  counter-reset: lst-ctn-kix_yndlr6f5dtu-5 0; }

.terms-of-use ol.lst-kix_y75hn1731udi-0.start {
  counter-reset: lst-ctn-kix_y75hn1731udi-0 0; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-5.start {
  counter-reset: lst-ctn-kix_7k9yp1bgytlo-5 0; }

.terms-of-use .lst-kix_jc81tp6on6t7-8 > li:before {
  content: "" counter(lst-ctn-kix_jc81tp6on6t7-0, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-1, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-2, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-3, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-4, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-5, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-6, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-7, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-8, decimal) ". "; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-8.start {
  counter-reset: lst-ctn-kix_yndlr6f5dtu-8 0; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-0.start {
  counter-reset: lst-ctn-kix_cwc83c9nqybd-0 9; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-3.start {
  counter-reset: lst-ctn-kix_cwc83c9nqybd-3 0; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-3 > li:before {
  content: "" counter(lst-ctn-kix_4uj4b9kmbxlp-0, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-1, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-2, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-3, decimal) ". "; }

.terms-of-use .lst-kix_bb2e201r5mnm-6 > li:before {
  content: "" counter(lst-ctn-kix_bb2e201r5mnm-0, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-1, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-2, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-3, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-4, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-5, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-6, decimal) ". "; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-8.start {
  counter-reset: lst-ctn-kix_xpze7a8jk05n-8 0; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-6.start {
  counter-reset: lst-ctn-kix_yndlr6f5dtu-6 0; }

.terms-of-use .lst-kix_jmq6s44ocrcf-5 > li:before {
  content: "" counter(lst-ctn-kix_jmq6s44ocrcf-0, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-1, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-2, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-3, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-4, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-5, decimal) ". "; }

.terms-of-use .lst-kix_hy09gnjdhf12-3 > li:before {
  content: "" counter(lst-ctn-kix_hy09gnjdhf12-0, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-1, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-2, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-3, decimal) ". "; }

.terms-of-use .lst-kix_bb2e201r5mnm-5 > li {
  counter-increment: lst-ctn-kix_bb2e201r5mnm-5; }

.terms-of-use .lst-kix_lmfaweys7m5f-5 > li:before {
  content: "" counter(lst-ctn-kix_lmfaweys7m5f-0, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-1, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-2, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-3, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-4, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-5, decimal) ". "; }

.terms-of-use .lst-kix_22pop9qa6xgz-6 > li {
  counter-increment: lst-ctn-kix_22pop9qa6xgz-6; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-7.start {
  counter-reset: lst-ctn-kix_f3v1vtgjdx5m-7 0; }

.terms-of-use .lst-kix_mtnawcnqd6n-2 > li:before {
  content: "" counter(lst-ctn-kix_mtnawcnqd6n-0, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-1, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-2, decimal) ". "; }

.terms-of-use .lst-kix_rvhnci86jkmr-4 > li {
  counter-increment: lst-ctn-kix_rvhnci86jkmr-4; }

.terms-of-use .lst-kix_ca703es297vb-8 > li:before {
  content: "" counter(lst-ctn-kix_ca703es297vb-0, decimal) "." counter(lst-ctn-kix_ca703es297vb-1, decimal) "." counter(lst-ctn-kix_ca703es297vb-2, decimal) "." counter(lst-ctn-kix_ca703es297vb-3, decimal) "." counter(lst-ctn-kix_ca703es297vb-4, decimal) "." counter(lst-ctn-kix_ca703es297vb-5, decimal) "." counter(lst-ctn-kix_ca703es297vb-6, decimal) "." counter(lst-ctn-kix_ca703es297vb-7, decimal) "." counter(lst-ctn-kix_ca703es297vb-8, decimal) ". "; }

.terms-of-use .lst-kix_xpze7a8jk05n-3 > li:before {
  content: "2." counter(lst-ctn-kix_xpze7a8jk05n-3, decimal) ". "; }

.terms-of-use .lst-kix_exi6qx2d4uml-4 > li {
  counter-increment: lst-ctn-kix_exi6qx2d4uml-4; }

.terms-of-use .lst-kix_yhc1v6iazz4p-3 > li {
  counter-increment: lst-ctn-kix_yhc1v6iazz4p-3; }

.terms-of-use .lst-kix_8u4cke4ltdqs-1 > li {
  counter-increment: lst-ctn-kix_8u4cke4ltdqs-1; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-4.start {
  counter-reset: lst-ctn-kix_7k9yp1bgytlo-4 0; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-6 {
  list-style-type: none; }

.terms-of-use .lst-kix_vltjg6tv64ze-3 > li {
  counter-increment: lst-ctn-kix_vltjg6tv64ze-3; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_qdft1q5q38jc-4 > li {
  counter-increment: lst-ctn-kix_qdft1q5q38jc-4; }

.terms-of-use .lst-kix_49u30kkokmge-3 > li {
  counter-increment: lst-ctn-kix_49u30kkokmge-3; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_pbzo2n87xzpj-3 > li:before {
  content: "" counter(lst-ctn-kix_pbzo2n87xzpj-0, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-1, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-2, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-3, decimal) ". "; }

.terms-of-use .lst-kix_mtnawcnqd6n-5 > li {
  counter-increment: lst-ctn-kix_mtnawcnqd6n-5; }

.terms-of-use .lst-kix_hy09gnjdhf12-7 > li {
  counter-increment: lst-ctn-kix_hy09gnjdhf12-7; }

.terms-of-use ol.lst-kix_cwc83c9nqybd-1.start {
  counter-reset: lst-ctn-kix_cwc83c9nqybd-1 0; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-1 > li {
  counter-increment: lst-ctn-kix_f3v1vtgjdx5m-1; }

.terms-of-use .lst-kix_2mckoz4hri27-4 > li:before {
  content: "" counter(lst-ctn-kix_2mckoz4hri27-0, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-1, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-2, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-3, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-4, decimal) ". "; }

.terms-of-use .lst-kix_kj86jt9svxha-7 > li {
  counter-increment: lst-ctn-kix_kj86jt9svxha-7; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-5 > li:before {
  content: "" counter(lst-ctn-kix_qdvjpwm2m2b6-0, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-1, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-2, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-3, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-4, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-5, decimal) ". "; }

.terms-of-use .lst-kix_e764bgixpbj9-7 > li:before {
  content: "" counter(lst-ctn-kix_e764bgixpbj9-0, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-1, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-2, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-3, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-4, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-5, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-6, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-7, decimal) ". "; }

.terms-of-use .lst-kix_g892krgm1nrl-3 > li {
  counter-increment: lst-ctn-kix_g892krgm1nrl-3; }

.terms-of-use .lst-kix_dpn3kl14kxj0-6 > li:before {
  content: "" counter(lst-ctn-kix_dpn3kl14kxj0-6, decimal) ". "; }

.terms-of-use .lst-kix_gijfqhf5xkva-4 > li:before {
  content: "" counter(lst-ctn-kix_gijfqhf5xkva-0, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-1, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-2, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-3, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-4, decimal) ". "; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-3.start {
  counter-reset: lst-ctn-kix_7k9yp1bgytlo-3 0; }

.terms-of-use .lst-kix_qtyjlfd1csih-5 > li {
  counter-increment: lst-ctn-kix_qtyjlfd1csih-5; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_f3v1vtgjdx5m-6.start {
  counter-reset: lst-ctn-kix_f3v1vtgjdx5m-6 0; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-7 > li:before {
  content: "" counter(lst-ctn-kix_kbxm1bpcr5lb-7, lower-latin) ". "; }

.terms-of-use ol.lst-kix_86e8u1yx210n-8.start {
  counter-reset: lst-ctn-kix_86e8u1yx210n-8 0; }

.terms-of-use .lst-kix_2oqtqd6s45kj-8 > li {
  counter-increment: lst-ctn-kix_2oqtqd6s45kj-8; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-5 > li:before {
  content: "(" counter(lst-ctn-kix_kbxm1bpcr5lb-5, lower-roman) ") "; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-2.start {
  counter-reset: lst-ctn-kix_hy09gnjdhf12-2 0; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-3 > li:before {
  content: "(" counter(lst-ctn-kix_kbxm1bpcr5lb-3, decimal) ") "; }

.terms-of-use .lst-kix_22pop9qa6xgz-3 > li:before {
  content: "" counter(lst-ctn-kix_22pop9qa6xgz-0, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-1, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-2, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-3, decimal) ". "; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-2.start {
  counter-reset: lst-ctn-kix_qv09rytsrgyh-2 0; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_22pop9qa6xgz-5 > li:before {
  content: "" counter(lst-ctn-kix_22pop9qa6xgz-0, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-1, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-2, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-3, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-4, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-5, decimal) ". "; }

.terms-of-use .lst-kix_rvhnci86jkmr-1 > li {
  counter-increment: lst-ctn-kix_rvhnci86jkmr-1; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-3 {
  list-style-type: none; }

.terms-of-use .lst-kix_49u30kkokmge-5 > li {
  counter-increment: lst-ctn-kix_49u30kkokmge-5; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-1 > li:before {
  content: "" counter(lst-ctn-kix_kbxm1bpcr5lb-1, lower-latin) ") "; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-2.start {
  counter-reset: lst-ctn-kix_j9lwa1xo9iwq-2 0; }

.terms-of-use .lst-kix_1099weaqanok-7 > li {
  counter-increment: lst-ctn-kix_1099weaqanok-7; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-1.start {
  counter-reset: lst-ctn-kix_dnra8vwir8mr-1 0; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_wnmij0cmzu07-7 > li {
  counter-increment: lst-ctn-kix_wnmij0cmzu07-7; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_22pop9qa6xgz-7 > li:before {
  content: "" counter(lst-ctn-kix_22pop9qa6xgz-0, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-1, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-2, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-3, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-4, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-5, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-6, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-7, decimal) ". "; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-7.start {
  counter-reset: lst-ctn-kix_vw3e5pptfgmp-7 0; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-8.start {
  counter-reset: lst-ctn-kix_hxom0vvb70ua-8 0; }

.terms-of-use .lst-kix_e764bgixpbj9-3 > li {
  counter-increment: lst-ctn-kix_e764bgixpbj9-3; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-4.start {
  counter-reset: lst-ctn-kix_vltjg6tv64ze-4 0; }

.terms-of-use .lst-kix_4dasw5gw6627-4 > li {
  counter-increment: lst-ctn-kix_4dasw5gw6627-4; }

.terms-of-use .lst-kix_vw3e5pptfgmp-4 > li {
  counter-increment: lst-ctn-kix_vw3e5pptfgmp-4; }

.terms-of-use .lst-kix_tul2fovx6tmm-6 > li {
  counter-increment: lst-ctn-kix_tul2fovx6tmm-6; }

.terms-of-use ol.lst-kix_86e8u1yx210n-3.start {
  counter-reset: lst-ctn-kix_86e8u1yx210n-3 0; }

.terms-of-use .lst-kix_8u4cke4ltdqs-8 > li {
  counter-increment: lst-ctn-kix_8u4cke4ltdqs-8; }

.terms-of-use .lst-kix_mtnawcnqd6n-4 > li {
  counter-increment: lst-ctn-kix_mtnawcnqd6n-4; }

.terms-of-use .lst-kix_kj86jt9svxha-5 > li {
  counter-increment: lst-ctn-kix_kj86jt9svxha-5; }

.terms-of-use .lst-kix_feuxo8rhdbt0-1 > li {
  counter-increment: lst-ctn-kix_feuxo8rhdbt0-1; }

.terms-of-use ol.lst-kix_8ni4xzorapao-2.start {
  counter-reset: lst-ctn-kix_8ni4xzorapao-2 0; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-7.start {
  counter-reset: lst-ctn-kix_hy09gnjdhf12-7 0; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-5 > li {
  counter-increment: lst-ctn-kix_1mqm6fdbjf9d-5; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-2.start {
  counter-reset: lst-ctn-kix_vw3e5pptfgmp-2 0; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-7.start {
  counter-reset: lst-ctn-kix_j9lwa1xo9iwq-7 0; }

.terms-of-use .lst-kix_1099weaqanok-0 > li {
  counter-increment: lst-ctn-kix_1099weaqanok-0; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-4.start {
  counter-reset: lst-ctn-kix_tul2fovx6tmm-4 0; }

.terms-of-use ol.lst-kix_dnra8vwir8mr-6.start {
  counter-reset: lst-ctn-kix_dnra8vwir8mr-6 0; }

.terms-of-use ol.lst-kix_g892krgm1nrl-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_g892krgm1nrl-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_g892krgm1nrl-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_g892krgm1nrl-3 {
  list-style-type: none; }

.terms-of-use .lst-kix_yhc1v6iazz4p-1 > li:before {
  content: "" counter(lst-ctn-kix_yhc1v6iazz4p-1, lower-latin) ". "; }

.terms-of-use .lst-kix_yhc1v6iazz4p-3 > li:before {
  content: "" counter(lst-ctn-kix_yhc1v6iazz4p-3, decimal) ". "; }

.terms-of-use ol.lst-kix_g892krgm1nrl-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_g892krgm1nrl-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_g892krgm1nrl-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_g892krgm1nrl-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_lmfaweys7m5f-0 > li {
  counter-increment: lst-ctn-kix_lmfaweys7m5f-0; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-3.start {
  counter-reset: lst-ctn-kix_hxom0vvb70ua-3 0; }

.terms-of-use .lst-kix_yhc1v6iazz4p-5 > li:before {
  content: "" counter(lst-ctn-kix_yhc1v6iazz4p-5, lower-roman) ". "; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-7 > li {
  counter-increment: lst-ctn-kix_j9lwa1xo9iwq-7; }

.terms-of-use ol.lst-kix_g892krgm1nrl-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_fxz23k1sp8k0-5 > li {
  counter-increment: lst-ctn-kix_fxz23k1sp8k0-5; }

.terms-of-use .lst-kix_yhc1v6iazz4p-7 > li:before {
  content: "" counter(lst-ctn-kix_yhc1v6iazz4p-7, lower-latin) ". "; }

.terms-of-use ol.lst-kix_4coayww806d7-1.start {
  counter-reset: lst-ctn-kix_4coayww806d7-1 0; }

.terms-of-use .lst-kix_lkj44s1va27m-6 > li {
  counter-increment: lst-ctn-kix_lkj44s1va27m-6; }

.terms-of-use .lst-kix_8u4cke4ltdqs-0 > li:before {
  content: "" counter(lst-ctn-kix_8u4cke4ltdqs-0, decimal) ". "; }

.terms-of-use .lst-kix_8u4cke4ltdqs-2 > li:before {
  content: "" counter(lst-ctn-kix_8u4cke4ltdqs-2, lower-roman) ". "; }

.terms-of-use .lst-kix_77jp2vv72q2e-2 > li:before {
  content: "25.1.3." counter(lst-ctn-kix_77jp2vv72q2e-2, decimal) ". "; }

.terms-of-use .lst-kix_77jp2vv72q2e-6 > li:before {
  content: "" counter(lst-ctn-kix_77jp2vv72q2e-0, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-1, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-2, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-3, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-4, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-5, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-6, decimal) ". "; }

.terms-of-use .lst-kix_j7eouqgowf9f-8 > li {
  counter-increment: lst-ctn-kix_j7eouqgowf9f-8; }

.terms-of-use .lst-kix_8u4cke4ltdqs-4 > li:before {
  content: "" counter(lst-ctn-kix_8u4cke4ltdqs-4, lower-latin) ". "; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-7.start {
  counter-reset: lst-ctn-kix_bb2e201r5mnm-7 0; }

.terms-of-use .lst-kix_77jp2vv72q2e-0 > li:before {
  content: "25." counter(lst-ctn-kix_77jp2vv72q2e-0, decimal) ". "; }

.terms-of-use .lst-kix_77jp2vv72q2e-8 > li:before {
  content: "" counter(lst-ctn-kix_77jp2vv72q2e-0, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-1, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-2, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-3, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-4, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-5, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-6, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-7, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-8, decimal) ". "; }

.terms-of-use .lst-kix_exi6qx2d4uml-0 > li {
  counter-increment: lst-ctn-kix_exi6qx2d4uml-0; }

.terms-of-use .lst-kix_8u4cke4ltdqs-8 > li:before {
  content: "" counter(lst-ctn-kix_8u4cke4ltdqs-8, lower-roman) ". "; }

.terms-of-use .lst-kix_8cyb65p92zt8-7 > li {
  counter-increment: lst-ctn-kix_8cyb65p92zt8-7; }

.terms-of-use .lst-kix_r8ii1wx48ejc-0 > li {
  counter-increment: lst-ctn-kix_r8ii1wx48ejc-0; }

.terms-of-use .lst-kix_7k9yp1bgytlo-2 > li {
  counter-increment: lst-ctn-kix_7k9yp1bgytlo-2; }

.terms-of-use .lst-kix_rvhnci86jkmr-8 > li {
  counter-increment: lst-ctn-kix_rvhnci86jkmr-8; }

.terms-of-use .lst-kix_8u4cke4ltdqs-6 > li:before {
  content: "" counter(lst-ctn-kix_8u4cke4ltdqs-6, decimal) ". "; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-0.start {
  counter-reset: lst-ctn-kix_lmfaweys7m5f-0 18; }

.terms-of-use .lst-kix_2oqtqd6s45kj-1 > li {
  counter-increment: lst-ctn-kix_2oqtqd6s45kj-1; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-4.start {
  counter-reset: lst-ctn-kix_otxxhlg4ijs2-4 0; }

.terms-of-use .lst-kix_yhc1v6iazz4p-6 > li {
  counter-increment: lst-ctn-kix_yhc1v6iazz4p-6; }

.terms-of-use ol.lst-kix_49u30kkokmge-2.start {
  counter-reset: lst-ctn-kix_49u30kkokmge-2 0; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-5.start {
  counter-reset: lst-ctn-kix_rvhnci86jkmr-5 0; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-2 > li {
  counter-increment: lst-ctn-kix_kbxm1bpcr5lb-2; }

.terms-of-use .lst-kix_77jp2vv72q2e-4 > li:before {
  content: "" counter(lst-ctn-kix_77jp2vv72q2e-0, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-1, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-2, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-3, decimal) "." counter(lst-ctn-kix_77jp2vv72q2e-4, decimal) ". "; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-0.start {
  counter-reset: lst-ctn-kix_rdktnl6coqgw-0 4; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-3.start {
  counter-reset: lst-ctn-kix_1mqm6fdbjf9d-3 0; }

.terms-of-use .lst-kix_qtyjlfd1csih-3 > li {
  counter-increment: lst-ctn-kix_qtyjlfd1csih-3; }

.terms-of-use ol.lst-kix_8ni4xzorapao-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8ni4xzorapao-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8ni4xzorapao-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8ni4xzorapao-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_b028ztyzvlep-4.start {
  counter-reset: lst-ctn-kix_b028ztyzvlep-4 0; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-0 > li {
  counter-increment: lst-ctn-kix_j9lwa1xo9iwq-0; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_kj86jt9svxha-3.start {
  counter-reset: lst-ctn-kix_kj86jt9svxha-3 0; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_otxxhlg4ijs2-5 > li {
  counter-increment: lst-ctn-kix_otxxhlg4ijs2-5; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4dasw5gw6627-1.start {
  counter-reset: lst-ctn-kix_4dasw5gw6627-1 0; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-6 {
  list-style-type: none; }

.terms-of-use .lst-kix_hxom0vvb70ua-0 > li {
  counter-increment: lst-ctn-kix_hxom0vvb70ua-0; }

.terms-of-use .lst-kix_gijfqhf5xkva-1 > li:before {
  content: "" counter(lst-ctn-kix_gijfqhf5xkva-0, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-1, decimal) ". "; }

.terms-of-use .lst-kix_5u8mf6guzj36-6 > li {
  counter-increment: lst-ctn-kix_5u8mf6guzj36-6; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-6 > li {
  counter-increment: lst-ctn-kix_4uj4b9kmbxlp-6; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-1.start {
  counter-reset: lst-ctn-kix_yzeqjqyr2fys-1 0; }

.terms-of-use .lst-kix_gijfqhf5xkva-3 > li:before {
  content: "" counter(lst-ctn-kix_gijfqhf5xkva-0, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-1, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-2, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-3, decimal) ". "; }

.terms-of-use .lst-kix_wnmij0cmzu07-0 > li {
  counter-increment: lst-ctn-kix_wnmij0cmzu07-0; }

.terms-of-use .lst-kix_dpn3kl14kxj0-3 > li {
  counter-increment: lst-ctn-kix_dpn3kl14kxj0-3; }

.terms-of-use .lst-kix_feuxo8rhdbt0-8 > li {
  counter-increment: lst-ctn-kix_feuxo8rhdbt0-8; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8ni4xzorapao-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8ni4xzorapao-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_cwc83c9nqybd-3 > li {
  counter-increment: lst-ctn-kix_cwc83c9nqybd-3; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8ni4xzorapao-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8ni4xzorapao-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-6 {
  list-style-type: none; }

.terms-of-use .lst-kix_ua66ewr564g1-4 > li {
  counter-increment: lst-ctn-kix_ua66ewr564g1-4; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8ni4xzorapao-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_8cyb65p92zt8-0 > li {
  counter-increment: lst-ctn-kix_8cyb65p92zt8-0; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-8.start {
  counter-reset: lst-ctn-kix_qdft1q5q38jc-8 0; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-6.start {
  counter-reset: lst-ctn-kix_5qie7zg80jlv-6 0; }

.terms-of-use .lst-kix_j7eouqgowf9f-1 > li {
  counter-increment: lst-ctn-kix_j7eouqgowf9f-1; }

.terms-of-use ol.lst-kix_xpze7a8jk05n-3.start {
  counter-reset: lst-ctn-kix_xpze7a8jk05n-3 0; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-6.start {
  counter-reset: lst-ctn-kix_1qrhkgrpibm6-6 0; }

.terms-of-use .lst-kix_hxom0vvb70ua-7 > li {
  counter-increment: lst-ctn-kix_hxom0vvb70ua-7; }

.terms-of-use .lst-kix_lkj44s1va27m-6 > li:before {
  content: "" counter(lst-ctn-kix_lkj44s1va27m-0, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-1, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-2, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-3, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-4, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-5, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-6, decimal) ". "; }

.terms-of-use .lst-kix_lkj44s1va27m-8 > li:before {
  content: "" counter(lst-ctn-kix_lkj44s1va27m-0, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-1, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-2, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-3, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-4, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-5, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-6, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-7, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-8, decimal) ". "; }

.terms-of-use .lst-kix_y75hn1731udi-3 > li {
  counter-increment: lst-ctn-kix_y75hn1731udi-3; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_gijfqhf5xkva-7 > li:before {
  content: "" counter(lst-ctn-kix_gijfqhf5xkva-0, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-1, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-2, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-3, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-4, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-5, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-6, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-7, decimal) ". "; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_e764bgixpbj9-3.start {
  counter-reset: lst-ctn-kix_e764bgixpbj9-3 0; }

.terms-of-use .lst-kix_dnra8vwir8mr-5 > li {
  counter-increment: lst-ctn-kix_dnra8vwir8mr-5; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_gijfqhf5xkva-5 > li:before {
  content: "" counter(lst-ctn-kix_gijfqhf5xkva-0, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-1, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-2, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-3, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-4, decimal) "." counter(lst-ctn-kix_gijfqhf5xkva-5, decimal) ". "; }

.terms-of-use .lst-kix_jc81tp6on6t7-4 > li {
  counter-increment: lst-ctn-kix_jc81tp6on6t7-4; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_22pop9qa6xgz-1 > li:before {
  content: "" counter(lst-ctn-kix_22pop9qa6xgz-0, decimal) "." counter(lst-ctn-kix_22pop9qa6xgz-1, decimal) ". "; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-6.start {
  counter-reset: lst-ctn-kix_kbxm1bpcr5lb-6 0; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_be94xss4lbxh-3.start {
  counter-reset: lst-ctn-kix_be94xss4lbxh-3 0; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-3 > li:before {
  content: "" counter(lst-ctn-kix_f3v1vtgjdx5m-0, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-1, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-2, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-3, decimal) ". "; }

.terms-of-use .lst-kix_jb80qd27i5ho-4 > li {
  counter-increment: lst-ctn-kix_jb80qd27i5ho-4; }

.terms-of-use .lst-kix_lkj44s1va27m-0 > li:before {
  content: "15." counter(lst-ctn-kix_lkj44s1va27m-0, decimal) ". "; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-4.start {
  counter-reset: lst-ctn-kix_exi6qx2d4uml-4 0; }

.terms-of-use .lst-kix_22pop9qa6xgz-2 > li {
  counter-increment: lst-ctn-kix_22pop9qa6xgz-2; }

.terms-of-use .lst-kix_qv09rytsrgyh-5 > li {
  counter-increment: lst-ctn-kix_qv09rytsrgyh-5; }

.terms-of-use .lst-kix_lkj44s1va27m-4 > li:before {
  content: "" counter(lst-ctn-kix_lkj44s1va27m-0, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-1, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-2, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-3, decimal) "." counter(lst-ctn-kix_lkj44s1va27m-4, decimal) ". "; }

.terms-of-use .lst-kix_77jp2vv72q2e-7 > li {
  counter-increment: lst-ctn-kix_77jp2vv72q2e-7; }

.terms-of-use .lst-kix_pbzo2n87xzpj-3 > li {
  counter-increment: lst-ctn-kix_pbzo2n87xzpj-3; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-7 > li:before {
  content: "" counter(lst-ctn-kix_f3v1vtgjdx5m-0, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-1, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-2, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-3, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-4, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-5, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-6, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-7, decimal) ". "; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-8 > li {
  counter-increment: lst-ctn-kix_qdvjpwm2m2b6-8; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-0 > li:before {
  content: "" counter(lst-ctn-kix_qdvjpwm2m2b6-0, decimal) ". "; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_2oqtqd6s45kj-3 > li:before {
  content: "" counter(lst-ctn-kix_2oqtqd6s45kj-3, decimal) ". "; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-1.start {
  counter-reset: lst-ctn-kix_5qie7zg80jlv-1 0; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-0.start {
  counter-reset: lst-ctn-kix_yhc1v6iazz4p-0 0; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-3 {
  list-style-type: none; }

.terms-of-use .lst-kix_gyvrc19ngq4f-1 > li {
  counter-increment: lst-ctn-kix_gyvrc19ngq4f-1; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_2mckoz4hri27-3.start {
  counter-reset: lst-ctn-kix_2mckoz4hri27-3 0; }

.terms-of-use .lst-kix_2oqtqd6s45kj-7 > li:before {
  content: "" counter(lst-ctn-kix_2oqtqd6s45kj-7, lower-latin) ". "; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-1.start {
  counter-reset: lst-ctn-kix_8cyb65p92zt8-1 0; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_yndlr6f5dtu-2 > li {
  counter-increment: lst-ctn-kix_yndlr6f5dtu-2; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_vw3e5pptfgmp-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_gyvrc19ngq4f-3.start {
  counter-reset: lst-ctn-kix_gyvrc19ngq4f-3 0; }

.terms-of-use .lst-kix_ua66ewr564g1-1 > li:before {
  content: "28." counter(lst-ctn-kix_ua66ewr564g1-1, decimal) " "; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-1.start {
  counter-reset: lst-ctn-kix_jl20g3uk09ea-1 0; }

.terms-of-use ol.lst-kix_49u30kkokmge-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-7.start {
  counter-reset: lst-ctn-kix_x2xllzoa2aed-7 0; }

.terms-of-use ol.lst-kix_49u30kkokmge-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_49u30kkokmge-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_b028ztyzvlep-0 > li:before {
  content: "32." counter(lst-ctn-kix_b028ztyzvlep-0, decimal) ". "; }

.terms-of-use ol.lst-kix_49u30kkokmge-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_g892krgm1nrl-1.start {
  counter-reset: lst-ctn-kix_g892krgm1nrl-1 0; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-5.start {
  counter-reset: lst-ctn-kix_fxz23k1sp8k0-5 0; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-1.start {
  counter-reset: lst-ctn-kix_8u4cke4ltdqs-1 0; }

.terms-of-use .lst-kix_b028ztyzvlep-4 > li:before {
  content: "" counter(lst-ctn-kix_b028ztyzvlep-0, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-1, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-2, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-3, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-4, decimal) ". "; }

.terms-of-use .lst-kix_4coayww806d7-5 > li {
  counter-increment: lst-ctn-kix_4coayww806d7-5; }

.terms-of-use .lst-kix_5qie7zg80jlv-1 > li {
  counter-increment: lst-ctn-kix_5qie7zg80jlv-1; }

.terms-of-use .lst-kix_b028ztyzvlep-8 > li:before {
  content: "" counter(lst-ctn-kix_b028ztyzvlep-0, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-1, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-2, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-3, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-4, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-5, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-6, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-7, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-8, decimal) ". "; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-3.start {
  counter-reset: lst-ctn-kix_jb80qd27i5ho-3 0; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-1.start {
  counter-reset: lst-ctn-kix_jc81tp6on6t7-1 0; }

.terms-of-use .lst-kix_bb2e201r5mnm-6 > li {
  counter-increment: lst-ctn-kix_bb2e201r5mnm-6; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-7.start {
  counter-reset: lst-ctn-kix_pdkjfeu5u5mg-7 0; }

.terms-of-use ol.lst-kix_y75hn1731udi-8.start {
  counter-reset: lst-ctn-kix_y75hn1731udi-8 0; }

.terms-of-use ol.lst-kix_g892krgm1nrl-6.start {
  counter-reset: lst-ctn-kix_g892krgm1nrl-6 0; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-0.start {
  counter-reset: lst-ctn-kix_fxz23k1sp8k0-0 0; }

.terms-of-use ol.lst-kix_49u30kkokmge-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_49u30kkokmge-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_tul2fovx6tmm-5 > li:before {
  content: "" counter(lst-ctn-kix_tul2fovx6tmm-0, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-1, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-2, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-3, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-4, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-5, decimal) ". "; }

.terms-of-use ol.lst-kix_49u30kkokmge-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-3.start {
  counter-reset: lst-ctn-kix_gijfqhf5xkva-3 0; }

.terms-of-use ol.lst-kix_49u30kkokmge-3 {
  list-style-type: none; }

.terms-of-use .lst-kix_jb80qd27i5ho-2 > li {
  counter-increment: lst-ctn-kix_jb80qd27i5ho-2; }

.terms-of-use ol.lst-kix_49u30kkokmge-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-3.start {
  counter-reset: lst-ctn-kix_jmq6s44ocrcf-3 0; }

.terms-of-use ol.lst-kix_8cyb65p92zt8-6.start {
  counter-reset: lst-ctn-kix_8cyb65p92zt8-6 0; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-1.start {
  counter-reset: lst-ctn-kix_4coayww806d7-1 0; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-1.start {
  counter-reset: lst-ctn-kix_mtnawcnqd6n-1 0; }

.terms-of-use .lst-kix_ua66ewr564g1-5 > li:before {
  content: "" counter(lst-ctn-kix_ua66ewr564g1-0, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-1, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-2, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-3, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-4, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-5, decimal) ". "; }

.terms-of-use .lst-kix_qtyjlfd1csih-1 > li:before {
  content: "" counter(lst-ctn-kix_qtyjlfd1csih-1, lower-latin) ". "; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-2.start {
  counter-reset: lst-ctn-kix_qdvjpwm2m2b6-2 0; }

.terms-of-use ol.lst-kix_8ni4xzorapao-7.start {
  counter-reset: lst-ctn-kix_8ni4xzorapao-7 0; }

.terms-of-use .lst-kix_g892krgm1nrl-5 > li:before {
  content: "" counter(lst-ctn-kix_g892krgm1nrl-0, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-1, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-2, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-3, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-4, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-5, decimal) ". "; }

.terms-of-use .lst-kix_ejqx2zz7tdan-5 > li {
  counter-increment: lst-ctn-kix_ejqx2zz7tdan-5; }

.terms-of-use .lst-kix_tul2fovx6tmm-1 > li:before {
  content: "" counter(lst-ctn-kix_tul2fovx6tmm-0, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-1, decimal) ". "; }

.terms-of-use .lst-kix_ca703es297vb-4 > li {
  counter-increment: lst-ctn-kix_ca703es297vb-4; }

.terms-of-use .lst-kix_5u8mf6guzj36-8 > li {
  counter-increment: lst-ctn-kix_5u8mf6guzj36-8; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-4 > li {
  counter-increment: lst-ctn-kix_4uj4b9kmbxlp-4; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-5 > li:before {
  content: "" counter(lst-ctn-kix_j9lwa1xo9iwq-0, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-1, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-2, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-3, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-4, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-5, decimal) ". "; }

.terms-of-use .lst-kix_4coayww806d7-2 > li:before {
  content: "" counter(lst-ctn-kix_4coayww806d7-0, decimal) "." counter(lst-ctn-kix_4coayww806d7-1, decimal) "." counter(lst-ctn-kix_4coayww806d7-2, decimal) ". "; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-6.start {
  counter-reset: lst-ctn-kix_jc81tp6on6t7-6 0; }

.terms-of-use ol.lst-kix_8u4cke4ltdqs-6.start {
  counter-reset: lst-ctn-kix_8u4cke4ltdqs-6 0; }

.terms-of-use .lst-kix_2mckoz4hri27-3 > li {
  counter-increment: lst-ctn-kix_2mckoz4hri27-3; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-8.start {
  counter-reset: lst-ctn-kix_gijfqhf5xkva-8 0; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-1 > li:before {
  content: "6." counter(lst-ctn-kix_j9lwa1xo9iwq-1, decimal) ". "; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-1.start {
  counter-reset: lst-ctn-kix_1qrhkgrpibm6-1 0; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-7.start {
  counter-reset: lst-ctn-kix_qtyjlfd1csih-7 0; }

.terms-of-use ol.lst-kix_4coayww806d7-6.start {
  counter-reset: lst-ctn-kix_4coayww806d7-6 0; }

.terms-of-use .lst-kix_x2xllzoa2aed-3 > li {
  counter-increment: lst-ctn-kix_x2xllzoa2aed-3; }

.terms-of-use .lst-kix_4coayww806d7-6 > li:before {
  content: "" counter(lst-ctn-kix_4coayww806d7-0, decimal) "." counter(lst-ctn-kix_4coayww806d7-1, decimal) "." counter(lst-ctn-kix_4coayww806d7-2, decimal) "." counter(lst-ctn-kix_4coayww806d7-3, decimal) "." counter(lst-ctn-kix_4coayww806d7-4, decimal) "." counter(lst-ctn-kix_4coayww806d7-5, decimal) "." counter(lst-ctn-kix_4coayww806d7-6, decimal) ". "; }

.terms-of-use .lst-kix_g892krgm1nrl-1 > li:before {
  content: "22.5." counter(lst-ctn-kix_g892krgm1nrl-1, decimal) " "; }

.terms-of-use .lst-kix_xpze7a8jk05n-4 > li {
  counter-increment: lst-ctn-kix_xpze7a8jk05n-4; }

.terms-of-use .lst-kix_jmq6s44ocrcf-5 > li {
  counter-increment: lst-ctn-kix_jmq6s44ocrcf-5; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-0.start {
  counter-reset: lst-ctn-kix_qdvjpwm2m2b6-0 4; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-7.start {
  counter-reset: lst-ctn-kix_qv09rytsrgyh-7 0; }

.terms-of-use .lst-kix_4coayww806d7-3 > li {
  counter-increment: lst-ctn-kix_4coayww806d7-3; }

.terms-of-use .lst-kix_e764bgixpbj9-1 > li:before {
  content: "" counter(lst-ctn-kix_e764bgixpbj9-0, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-1, decimal) ". "; }

.terms-of-use ol.lst-kix_lmfaweys7m5f-5.start {
  counter-reset: lst-ctn-kix_lmfaweys7m5f-5 0; }

.terms-of-use ol.lst-kix_jc81tp6on6t7-4.start {
  counter-reset: lst-ctn-kix_jc81tp6on6t7-4 0; }

.terms-of-use .lst-kix_bb2e201r5mnm-4 > li {
  counter-increment: lst-ctn-kix_bb2e201r5mnm-4; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-5.start {
  counter-reset: lst-ctn-kix_yhc1v6iazz4p-5 0; }

.terms-of-use .lst-kix_5qie7zg80jlv-8 > li {
  counter-increment: lst-ctn-kix_5qie7zg80jlv-8; }

.terms-of-use .lst-kix_gyvrc19ngq4f-8 > li {
  counter-increment: lst-ctn-kix_gyvrc19ngq4f-8; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-1 > li {
  counter-increment: lst-ctn-kix_qdvjpwm2m2b6-1; }

.terms-of-use ol.lst-kix_2mckoz4hri27-8.start {
  counter-reset: lst-ctn-kix_2mckoz4hri27-8 0; }

.terms-of-use ol.lst-kix_4dasw5gw6627-6.start {
  counter-reset: lst-ctn-kix_4dasw5gw6627-6 0; }

.terms-of-use ol.lst-kix_y75hn1731udi-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-6.start {
  counter-reset: lst-ctn-kix_wnmij0cmzu07-6 0; }

.terms-of-use ol.lst-kix_y75hn1731udi-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_y75hn1731udi-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-4 > li {
  counter-increment: lst-ctn-kix_kbxm1bpcr5lb-4; }

.terms-of-use ol.lst-kix_y75hn1731udi-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_y75hn1731udi-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_y75hn1731udi-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_qtyjlfd1csih-5 > li:before {
  content: "" counter(lst-ctn-kix_qtyjlfd1csih-5, lower-roman) ". "; }

.terms-of-use ol.lst-kix_y75hn1731udi-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_e764bgixpbj9-5 > li:before {
  content: "" counter(lst-ctn-kix_e764bgixpbj9-0, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-1, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-2, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-3, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-4, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-5, decimal) ". "; }

.terms-of-use ol.lst-kix_y75hn1731udi-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_y75hn1731udi-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-3.start {
  counter-reset: lst-ctn-kix_wvszyx9fl4yt-3 0; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_kj86jt9svxha-2 > li:before {
  content: "" counter(lst-ctn-kix_kj86jt9svxha-0, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-1, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-2, decimal) ". "; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-3.start {
  counter-reset: lst-ctn-kix_fxz23k1sp8k0-3 0; }

.terms-of-use .lst-kix_dpn3kl14kxj0-1 > li {
  counter-increment: lst-ctn-kix_dpn3kl14kxj0-1; }

.terms-of-use .lst-kix_ozm68jv0adg5-6 > li:before {
  content: "" counter(lst-ctn-kix_ozm68jv0adg5-6, decimal) ". "; }

.terms-of-use .lst-kix_yhc1v6iazz4p-1 > li {
  counter-increment: lst-ctn-kix_yhc1v6iazz4p-1; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_hy09gnjdhf12-5 > li {
  counter-increment: lst-ctn-kix_hy09gnjdhf12-5; }

.terms-of-use .lst-kix_kj86jt9svxha-0 > li:before {
  content: "3.9." counter(lst-ctn-kix_kj86jt9svxha-0, decimal) ". "; }

.terms-of-use .lst-kix_kj86jt9svxha-8 > li:before {
  content: "" counter(lst-ctn-kix_kj86jt9svxha-0, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-1, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-2, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-3, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-4, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-5, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-6, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-7, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-8, decimal) ". "; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_wnmij0cmzu07-1 > li:before {
  content: "" counter(lst-ctn-kix_wnmij0cmzu07-0, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-1, decimal) ". "; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-5 > li {
  counter-increment: lst-ctn-kix_j9lwa1xo9iwq-5; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-4.start {
  counter-reset: lst-ctn-kix_mtnawcnqd6n-4 0; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_rdktnl6coqgw-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-1.start {
  counter-reset: lst-ctn-kix_jb80qd27i5ho-1 0; }

.terms-of-use .lst-kix_y75hn1731udi-8 > li:before {
  content: "" counter(lst-ctn-kix_y75hn1731udi-0, decimal) "." counter(lst-ctn-kix_y75hn1731udi-1, decimal) "." counter(lst-ctn-kix_y75hn1731udi-2, decimal) "." counter(lst-ctn-kix_y75hn1731udi-3, decimal) "." counter(lst-ctn-kix_y75hn1731udi-4, decimal) "." counter(lst-ctn-kix_y75hn1731udi-5, decimal) "." counter(lst-ctn-kix_y75hn1731udi-6, decimal) "." counter(lst-ctn-kix_y75hn1731udi-7, decimal) "." counter(lst-ctn-kix_y75hn1731udi-8, decimal) ". "; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-2.start {
  counter-reset: lst-ctn-kix_2oqtqd6s45kj-2 0; }

.terms-of-use .lst-kix_ozm68jv0adg5-8 > li:before {
  content: "" counter(lst-ctn-kix_ozm68jv0adg5-8, lower-roman) ". "; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_1099weaqanok-8 > li:before {
  content: "" counter(lst-ctn-kix_1099weaqanok-0, decimal) "." counter(lst-ctn-kix_1099weaqanok-1, decimal) "." counter(lst-ctn-kix_1099weaqanok-2, decimal) "." counter(lst-ctn-kix_1099weaqanok-3, decimal) "." counter(lst-ctn-kix_1099weaqanok-4, decimal) "." counter(lst-ctn-kix_1099weaqanok-5, decimal) "." counter(lst-ctn-kix_1099weaqanok-6, decimal) "." counter(lst-ctn-kix_1099weaqanok-7, decimal) "." counter(lst-ctn-kix_1099weaqanok-8, decimal) ". "; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-3 > li:before {
  content: "" counter(lst-ctn-kix_pdkjfeu5u5mg-0, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-1, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-2, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-3, decimal) ". "; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-0.start {
  counter-reset: lst-ctn-kix_qdft1q5q38jc-0 20; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-4.start {
  counter-reset: lst-ctn-kix_ozm68jv0adg5-4 0; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-8.start {
  counter-reset: lst-ctn-kix_wnmij0cmzu07-8 0; }

.terms-of-use .lst-kix_y75hn1731udi-0 > li:before {
  content: "1." counter(lst-ctn-kix_y75hn1731udi-0, decimal) ". "; }

.terms-of-use .lst-kix_1099weaqanok-2 > li:before {
  content: "" counter(lst-ctn-kix_1099weaqanok-0, decimal) "." counter(lst-ctn-kix_1099weaqanok-1, decimal) "." counter(lst-ctn-kix_1099weaqanok-2, decimal) ". "; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-5 > li:before {
  content: "" counter(lst-ctn-kix_pdkjfeu5u5mg-0, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-1, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-2, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-3, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-4, decimal) "." counter(lst-ctn-kix_pdkjfeu5u5mg-5, decimal) ". "; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-8.start {
  counter-reset: lst-ctn-kix_dpn3kl14kxj0-8 0; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-4.start {
  counter-reset: lst-ctn-kix_22pop9qa6xgz-4 0; }

.terms-of-use .lst-kix_vw3e5pptfgmp-4 > li:before {
  content: "" counter(lst-ctn-kix_vw3e5pptfgmp-0, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-1, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-2, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-3, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-4, decimal) ". "; }

.terms-of-use ol.lst-kix_lkj44s1va27m-3.start {
  counter-reset: lst-ctn-kix_lkj44s1va27m-3 0; }

.terms-of-use .lst-kix_5qie7zg80jlv-6 > li {
  counter-increment: lst-ctn-kix_5qie7zg80jlv-6; }

.terms-of-use .lst-kix_vw3e5pptfgmp-2 > li {
  counter-increment: lst-ctn-kix_vw3e5pptfgmp-2; }

.terms-of-use .lst-kix_gyvrc19ngq4f-1 > li:before {
  content: "" counter(lst-ctn-kix_gyvrc19ngq4f-0, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-1, decimal) ". "; }

.terms-of-use .lst-kix_fxz23k1sp8k0-7 > li {
  counter-increment: lst-ctn-kix_fxz23k1sp8k0-7; }

.terms-of-use .lst-kix_wvszyx9fl4yt-0 > li {
  counter-increment: lst-ctn-kix_wvszyx9fl4yt-0; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-7.start {
  counter-reset: lst-ctn-kix_exi6qx2d4uml-7 0; }

.terms-of-use .lst-kix_y75hn1731udi-2 > li:before {
  content: "" counter(lst-ctn-kix_y75hn1731udi-0, decimal) "." counter(lst-ctn-kix_y75hn1731udi-1, decimal) "." counter(lst-ctn-kix_y75hn1731udi-2, decimal) ". "; }

.terms-of-use .lst-kix_wnmij0cmzu07-3 > li:before {
  content: "" counter(lst-ctn-kix_wnmij0cmzu07-0, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-1, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-2, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-3, decimal) ". "; }

.terms-of-use .lst-kix_lmfaweys7m5f-3 > li:before {
  content: "" counter(lst-ctn-kix_lmfaweys7m5f-0, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-1, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-2, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-3, decimal) ". "; }

.terms-of-use .lst-kix_vw3e5pptfgmp-2 > li:before {
  content: "" counter(lst-ctn-kix_vw3e5pptfgmp-0, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-1, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-2, decimal) ". "; }

.terms-of-use .lst-kix_1099weaqanok-0 > li:before {
  content: "" counter(lst-ctn-kix_1099weaqanok-0, decimal) ". "; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-7.start {
  counter-reset: lst-ctn-kix_5u8mf6guzj36-7 0; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-8.start {
  counter-reset: lst-ctn-kix_yhc1v6iazz4p-8 0; }

.terms-of-use .lst-kix_lmfaweys7m5f-1 > li:before {
  content: "" counter(lst-ctn-kix_lmfaweys7m5f-0, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-1, decimal) ". "; }

.terms-of-use .lst-kix_7k9yp1bgytlo-0 > li:before {
  content: "6.1." counter(lst-ctn-kix_7k9yp1bgytlo-0, decimal) " "; }

.terms-of-use .lst-kix_wnmij0cmzu07-5 > li {
  counter-increment: lst-ctn-kix_wnmij0cmzu07-5; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-8.start {
  counter-reset: lst-ctn-kix_wvszyx9fl4yt-8 0; }

.terms-of-use .lst-kix_2mckoz4hri27-5 > li {
  counter-increment: lst-ctn-kix_2mckoz4hri27-5; }

.terms-of-use .lst-kix_7k9yp1bgytlo-6 > li:before {
  content: "" counter(lst-ctn-kix_7k9yp1bgytlo-0, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-1, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-2, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-3, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-4, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-5, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-6, decimal) ". "; }

.terms-of-use .lst-kix_5u8mf6guzj36-1 > li {
  counter-increment: lst-ctn-kix_5u8mf6guzj36-1; }

.terms-of-use .lst-kix_hxom0vvb70ua-5 > li {
  counter-increment: lst-ctn-kix_hxom0vvb70ua-5; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-5.start {
  counter-reset: lst-ctn-kix_qdft1q5q38jc-5 0; }

.terms-of-use .lst-kix_yhc1v6iazz4p-8 > li {
  counter-increment: lst-ctn-kix_yhc1v6iazz4p-8; }

.terms-of-use .lst-kix_rvhnci86jkmr-3 > li {
  counter-increment: lst-ctn-kix_rvhnci86jkmr-3; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-7.start {
  counter-reset: lst-ctn-kix_2oqtqd6s45kj-7 0; }

.terms-of-use .lst-kix_r8ii1wx48ejc-8 > li:before {
  content: "" counter(lst-ctn-kix_r8ii1wx48ejc-0, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-1, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-2, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-3, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-4, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-5, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-6, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-7, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-8, decimal) ". "; }

.terms-of-use .lst-kix_exi6qx2d4uml-2 > li {
  counter-increment: lst-ctn-kix_exi6qx2d4uml-2; }

.terms-of-use .lst-kix_wvszyx9fl4yt-6 > li:before {
  content: "" counter(lst-ctn-kix_wvszyx9fl4yt-0, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-1, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-2, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-3, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-4, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-5, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-6, decimal) ". "; }

.terms-of-use .lst-kix_49u30kkokmge-5 > li:before {
  content: "" counter(lst-ctn-kix_49u30kkokmge-0, decimal) "." counter(lst-ctn-kix_49u30kkokmge-1, decimal) "." counter(lst-ctn-kix_49u30kkokmge-2, decimal) "." counter(lst-ctn-kix_49u30kkokmge-3, decimal) "." counter(lst-ctn-kix_49u30kkokmge-4, decimal) "." counter(lst-ctn-kix_49u30kkokmge-5, decimal) ". "; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-3.start {
  counter-reset: lst-ctn-kix_dpn3kl14kxj0-3 0; }

.terms-of-use .lst-kix_49u30kkokmge-3 > li:before {
  content: "" counter(lst-ctn-kix_49u30kkokmge-0, decimal) "." counter(lst-ctn-kix_49u30kkokmge-1, decimal) "." counter(lst-ctn-kix_49u30kkokmge-2, decimal) "." counter(lst-ctn-kix_49u30kkokmge-3, decimal) ". "; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-3.start {
  counter-reset: lst-ctn-kix_kbxm1bpcr5lb-3 0; }

.terms-of-use .lst-kix_wvszyx9fl4yt-4 > li:before {
  content: "" counter(lst-ctn-kix_wvszyx9fl4yt-0, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-1, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-2, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-3, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-4, decimal) ". "; }

.terms-of-use .lst-kix_x2xllzoa2aed-5 > li {
  counter-increment: lst-ctn-kix_x2xllzoa2aed-5; }

.terms-of-use .lst-kix_qdft1q5q38jc-7 > li:before {
  content: "" counter(lst-ctn-kix_qdft1q5q38jc-0, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-1, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-2, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-3, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-4, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-5, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-6, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-7, decimal) ". "; }

.terms-of-use .lst-kix_7k9yp1bgytlo-8 > li:before {
  content: "" counter(lst-ctn-kix_7k9yp1bgytlo-0, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-1, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-2, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-3, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-4, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-5, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-6, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-7, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-8, decimal) ". "; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_e764bgixpbj9-1 > li {
  counter-increment: lst-ctn-kix_e764bgixpbj9-1; }

.terms-of-use ol.lst-kix_lkj44s1va27m-8.start {
  counter-reset: lst-ctn-kix_lkj44s1va27m-8 0; }

.terms-of-use .lst-kix_rdktnl6coqgw-1 > li:before {
  content: "12.6." counter(lst-ctn-kix_rdktnl6coqgw-1, decimal) ". "; }

.terms-of-use .lst-kix_8ni4xzorapao-5 > li {
  counter-increment: lst-ctn-kix_8ni4xzorapao-5; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_ejqx2zz7tdan-0 > li {
  counter-increment: lst-ctn-kix_ejqx2zz7tdan-0; }

.terms-of-use ol.lst-kix_7k9yp1bgytlo-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_e764bgixpbj9-6.start {
  counter-reset: lst-ctn-kix_e764bgixpbj9-6 0; }

.terms-of-use .lst-kix_77jp2vv72q2e-0 > li {
  counter-increment: lst-ctn-kix_77jp2vv72q2e-0; }

.terms-of-use .lst-kix_86e8u1yx210n-7 > li:before {
  content: "" counter(lst-ctn-kix_86e8u1yx210n-0, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-1, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-2, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-3, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-4, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-5, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-6, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-7, decimal) ". "; }

.terms-of-use .lst-kix_gyvrc19ngq4f-6 > li {
  counter-increment: lst-ctn-kix_gyvrc19ngq4f-6; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-2.start {
  counter-reset: lst-ctn-kix_j7eouqgowf9f-2 0; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-4.start {
  counter-reset: lst-ctn-kix_pdkjfeu5u5mg-4 0; }

.terms-of-use .lst-kix_qdft1q5q38jc-5 > li:before {
  content: "" counter(lst-ctn-kix_qdft1q5q38jc-0, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-1, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-2, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-3, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-4, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-5, decimal) ". "; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-5.start {
  counter-reset: lst-ctn-kix_qdvjpwm2m2b6-5 0; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-2.start {
  counter-reset: lst-ctn-kix_ozm68jv0adg5-2 0; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-7 > li {
  counter-increment: lst-ctn-kix_1mqm6fdbjf9d-7; }

.terms-of-use .lst-kix_yndlr6f5dtu-7 > li {
  counter-increment: lst-ctn-kix_yndlr6f5dtu-7; }

.terms-of-use .lst-kix_r8ii1wx48ejc-6 > li:before {
  content: "" counter(lst-ctn-kix_r8ii1wx48ejc-0, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-1, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-2, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-3, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-4, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-5, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-6, decimal) ". "; }

.terms-of-use .lst-kix_vltjg6tv64ze-5 > li:before {
  content: "" counter(lst-ctn-kix_vltjg6tv64ze-0, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-1, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-2, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-3, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-4, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-5, decimal) ". "; }

.terms-of-use .lst-kix_xpze7a8jk05n-6 > li {
  counter-increment: lst-ctn-kix_xpze7a8jk05n-6; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-7.start {
  counter-reset: lst-ctn-kix_ejqx2zz7tdan-7 0; }

.terms-of-use .lst-kix_exi6qx2d4uml-1 > li:before {
  content: "" counter(lst-ctn-kix_exi6qx2d4uml-0, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-1, decimal) ". "; }

.terms-of-use .lst-kix_dpn3kl14kxj0-8 > li {
  counter-increment: lst-ctn-kix_dpn3kl14kxj0-8; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-4.start {
  counter-reset: lst-ctn-kix_1qrhkgrpibm6-4 0; }

.terms-of-use .lst-kix_vltjg6tv64ze-3 > li:before {
  content: "" counter(lst-ctn-kix_vltjg6tv64ze-0, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-1, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-2, decimal) "." counter(lst-ctn-kix_vltjg6tv64ze-3, decimal) ". "; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-4.start {
  counter-reset: lst-ctn-kix_qtyjlfd1csih-4 0; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-0.start {
  counter-reset: lst-ctn-kix_2oqtqd6s45kj-0 13; }

.terms-of-use ol.lst-kix_b028ztyzvlep-7.start {
  counter-reset: lst-ctn-kix_b028ztyzvlep-7 0; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-8.start {
  counter-reset: lst-ctn-kix_kbxm1bpcr5lb-8 0; }

.terms-of-use .lst-kix_ejqx2zz7tdan-7 > li {
  counter-increment: lst-ctn-kix_ejqx2zz7tdan-7; }

.terms-of-use .lst-kix_e764bgixpbj9-5 > li {
  counter-increment: lst-ctn-kix_e764bgixpbj9-5; }

.terms-of-use .lst-kix_ca703es297vb-2 > li {
  counter-increment: lst-ctn-kix_ca703es297vb-2; }

.terms-of-use .lst-kix_jl20g3uk09ea-2 > li {
  counter-increment: lst-ctn-kix_jl20g3uk09ea-2; }

.terms-of-use .lst-kix_exi6qx2d4uml-7 > li:before {
  content: "" counter(lst-ctn-kix_exi6qx2d4uml-0, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-1, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-2, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-3, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-4, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-5, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-6, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-7, decimal) ". "; }

.terms-of-use .lst-kix_r8ii1wx48ejc-0 > li:before {
  content: "" counter(lst-ctn-kix_r8ii1wx48ejc-0, decimal) ". "; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-8.start {
  counter-reset: lst-ctn-kix_jb80qd27i5ho-8 0; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-3 > li {
  counter-increment: lst-ctn-kix_qdvjpwm2m2b6-3; }

.terms-of-use .lst-kix_8u4cke4ltdqs-3 > li {
  counter-increment: lst-ctn-kix_8u4cke4ltdqs-3; }

.terms-of-use ol.lst-kix_mtnawcnqd6n-6.start {
  counter-reset: lst-ctn-kix_mtnawcnqd6n-6 0; }

.terms-of-use .lst-kix_86e8u1yx210n-5 > li:before {
  content: "" counter(lst-ctn-kix_86e8u1yx210n-0, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-1, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-2, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-3, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-4, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-5, decimal) ". "; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-7.start {
  counter-reset: lst-ctn-kix_qdvjpwm2m2b6-7 0; }

.terms-of-use .lst-kix_jmq6s44ocrcf-6 > li:before {
  content: "" counter(lst-ctn-kix_jmq6s44ocrcf-0, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-1, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-2, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-3, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-4, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-5, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-6, decimal) ". "; }

.terms-of-use .lst-kix_hy09gnjdhf12-4 > li:before {
  content: "" counter(lst-ctn-kix_hy09gnjdhf12-0, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-1, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-2, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-3, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-4, decimal) ". "; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-8.start {
  counter-reset: lst-ctn-kix_fxz23k1sp8k0-8 0; }

.terms-of-use .lst-kix_1099weaqanok-5 > li {
  counter-increment: lst-ctn-kix_1099weaqanok-5; }

.terms-of-use ol.lst-kix_gijfqhf5xkva-0.start {
  counter-reset: lst-ctn-kix_gijfqhf5xkva-0 0; }

.terms-of-use .lst-kix_hy09gnjdhf12-2 > li:before {
  content: "" counter(lst-ctn-kix_hy09gnjdhf12-0, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-1, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-2, decimal) ". "; }

.terms-of-use .lst-kix_4dasw5gw6627-6 > li {
  counter-increment: lst-ctn-kix_4dasw5gw6627-6; }

.terms-of-use .lst-kix_yndlr6f5dtu-7 > li:before {
  content: "" counter(lst-ctn-kix_yndlr6f5dtu-0, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-1, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-2, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-3, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-4, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-5, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-6, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-7, decimal) ". "; }

.terms-of-use .lst-kix_fxz23k1sp8k0-5 > li:before {
  content: "" counter(lst-ctn-kix_fxz23k1sp8k0-0, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-1, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-2, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-3, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-4, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-5, decimal) ". "; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-0.start {
  counter-reset: lst-ctn-kix_j7eouqgowf9f-0 10; }

.terms-of-use ol.lst-kix_2mckoz4hri27-0.start {
  counter-reset: lst-ctn-kix_2mckoz4hri27-0 3; }

.terms-of-use .lst-kix_xpze7a8jk05n-2 > li:before {
  content: "2." counter(lst-ctn-kix_xpze7a8jk05n-2, decimal) ". "; }

.terms-of-use .lst-kix_jmq6s44ocrcf-4 > li:before {
  content: "" counter(lst-ctn-kix_jmq6s44ocrcf-0, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-1, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-2, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-3, decimal) "." counter(lst-ctn-kix_jmq6s44ocrcf-4, decimal) ". "; }

.terms-of-use ol.lst-kix_kj86jt9svxha-0.start {
  counter-reset: lst-ctn-kix_kj86jt9svxha-0 0; }

.terms-of-use .lst-kix_2mckoz4hri27-5 > li:before {
  content: "" counter(lst-ctn-kix_2mckoz4hri27-0, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-1, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-2, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-3, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-4, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-5, decimal) ". "; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-6.start {
  counter-reset: lst-ctn-kix_jb80qd27i5ho-6 0; }

.terms-of-use .lst-kix_mtnawcnqd6n-1 > li:before {
  content: "" counter(lst-ctn-kix_mtnawcnqd6n-0, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-1, decimal) ". "; }

.terms-of-use .lst-kix_gyvrc19ngq4f-7 > li:before {
  content: "" counter(lst-ctn-kix_gyvrc19ngq4f-0, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-1, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-2, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-3, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-4, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-5, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-6, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-7, decimal) ". "; }

.terms-of-use .lst-kix_xpze7a8jk05n-4 > li:before {
  content: "2." counter(lst-ctn-kix_xpze7a8jk05n-4, decimal) ". "; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-7.start {
  counter-reset: lst-ctn-kix_77jp2vv72q2e-7 0; }

.terms-of-use .lst-kix_yndlr6f5dtu-0 > li {
  counter-increment: lst-ctn-kix_yndlr6f5dtu-0; }

.terms-of-use .lst-kix_pbzo2n87xzpj-4 > li:before {
  content: "" counter(lst-ctn-kix_pbzo2n87xzpj-0, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-1, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-2, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-3, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-4, decimal) ". "; }

.terms-of-use ol.lst-kix_qtyjlfd1csih-2.start {
  counter-reset: lst-ctn-kix_qtyjlfd1csih-2 0; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-1.start {
  counter-reset: lst-ctn-kix_otxxhlg4ijs2-1 0; }

.terms-of-use .lst-kix_2mckoz4hri27-3 > li:before {
  content: "" counter(lst-ctn-kix_2mckoz4hri27-0, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-1, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-2, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-3, decimal) ". "; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-4 > li:before {
  content: "" counter(lst-ctn-kix_qdvjpwm2m2b6-0, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-1, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-2, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-3, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-4, decimal) ". "; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-0 > li {
  counter-increment: lst-ctn-kix_1mqm6fdbjf9d-0; }

.terms-of-use .lst-kix_5qie7zg80jlv-7 > li:before {
  content: "" counter(lst-ctn-kix_5qie7zg80jlv-0, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-1, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-2, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-3, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-4, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-5, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-6, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-7, decimal) ". "; }

.terms-of-use .lst-kix_86e8u1yx210n-1 > li {
  counter-increment: lst-ctn-kix_86e8u1yx210n-1; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-6 > li:before {
  content: "" counter(lst-ctn-kix_qdvjpwm2m2b6-0, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-1, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-2, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-3, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-4, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-5, decimal) "." counter(lst-ctn-kix_qdvjpwm2m2b6-6, decimal) ". "; }

.terms-of-use .lst-kix_5qie7zg80jlv-5 > li:before {
  content: "" counter(lst-ctn-kix_5qie7zg80jlv-0, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-1, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-2, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-3, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-4, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-5, decimal) ". "; }

.terms-of-use .lst-kix_yndlr6f5dtu-5 > li:before {
  content: "" counter(lst-ctn-kix_yndlr6f5dtu-0, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-1, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-2, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-3, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-4, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-5, decimal) ". "; }

.terms-of-use .lst-kix_fxz23k1sp8k0-3 > li:before {
  content: "" counter(lst-ctn-kix_fxz23k1sp8k0-0, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-1, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-2, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-3, decimal) ". "; }

.terms-of-use .lst-kix_vw3e5pptfgmp-6 > li {
  counter-increment: lst-ctn-kix_vw3e5pptfgmp-6; }

.terms-of-use .lst-kix_qv09rytsrgyh-3 > li {
  counter-increment: lst-ctn-kix_qv09rytsrgyh-3; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-6.start {
  counter-reset: lst-ctn-kix_dpn3kl14kxj0-6 0; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-2.start {
  counter-reset: lst-ctn-kix_5u8mf6guzj36-2 0; }

.terms-of-use .lst-kix_pbzo2n87xzpj-2 > li:before {
  content: "" counter(lst-ctn-kix_pbzo2n87xzpj-0, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-1, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-2, decimal) ". "; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-1 > li:before {
  content: "" counter(lst-ctn-kix_f3v1vtgjdx5m-0, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-1, decimal) ". "; }

.terms-of-use .lst-kix_rvhnci86jkmr-2 > li:before {
  content: "" counter(lst-ctn-kix_rvhnci86jkmr-0, decimal) "." counter(lst-ctn-kix_rvhnci86jkmr-1, decimal) "." counter(lst-ctn-kix_rvhnci86jkmr-2, decimal) " "; }

.terms-of-use .lst-kix_dpn3kl14kxj0-2 > li:before {
  content: "" counter(lst-ctn-kix_dpn3kl14kxj0-2, lower-roman) ". "; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-2 > li:before {
  content: "" counter(lst-ctn-kix_1mqm6fdbjf9d-0, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-1, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-2, decimal) ". "; }

.terms-of-use ol.lst-kix_kj86jt9svxha-5.start {
  counter-reset: lst-ctn-kix_kj86jt9svxha-5 0; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-3.start {
  counter-reset: lst-ctn-kix_qdft1q5q38jc-3 0; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-6.start {
  counter-reset: lst-ctn-kix_feuxo8rhdbt0-6 0; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_qdft1q5q38jc-6 > li {
  counter-increment: lst-ctn-kix_qdft1q5q38jc-6; }

.terms-of-use .lst-kix_4coayww806d7-7 > li {
  counter-increment: lst-ctn-kix_4coayww806d7-7; }

.terms-of-use .lst-kix_2oqtqd6s45kj-1 > li:before {
  content: "" counter(lst-ctn-kix_2oqtqd6s45kj-1, lower-latin) ". "; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-4.start {
  counter-reset: lst-ctn-kix_5u8mf6guzj36-4 0; }

.terms-of-use .lst-kix_g892krgm1nrl-1 > li {
  counter-increment: lst-ctn-kix_g892krgm1nrl-1; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-1.start {
  counter-reset: lst-ctn-kix_22pop9qa6xgz-1 0; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-6.start {
  counter-reset: lst-ctn-kix_otxxhlg4ijs2-6 0; }

.terms-of-use .lst-kix_yzeqjqyr2fys-4 > li {
  counter-increment: lst-ctn-kix_yzeqjqyr2fys-4; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-6 > li {
  counter-increment: lst-ctn-kix_f3v1vtgjdx5m-6; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_r8ii1wx48ejc-7 > li {
  counter-increment: lst-ctn-kix_r8ii1wx48ejc-7; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_4dasw5gw6627-6 > li:before {
  content: "" counter(lst-ctn-kix_4dasw5gw6627-0, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-1, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-2, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-3, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-4, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-5, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-6, decimal) ". "; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_vltjg6tv64ze-1 > li {
  counter-increment: lst-ctn-kix_vltjg6tv64ze-1; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_86e8u1yx210n-0.start {
  counter-reset: lst-ctn-kix_86e8u1yx210n-0 0; }

.terms-of-use ol.lst-kix_e764bgixpbj9-8.start {
  counter-reset: lst-ctn-kix_e764bgixpbj9-8 0; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_wvszyx9fl4yt-6.start {
  counter-reset: lst-ctn-kix_wvszyx9fl4yt-6 0; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_jb80qd27i5ho-5 > li:before {
  content: "" counter(lst-ctn-kix_jb80qd27i5ho-0, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-1, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-2, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-3, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-4, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-5, decimal) ". "; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-1.start {
  counter-reset: lst-ctn-kix_kbxm1bpcr5lb-1 0; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-5.start {
  counter-reset: lst-ctn-kix_hy09gnjdhf12-5 0; }

.terms-of-use .lst-kix_g892krgm1nrl-8 > li {
  counter-increment: lst-ctn-kix_g892krgm1nrl-8; }

.terms-of-use ol.lst-kix_lkj44s1va27m-0.start {
  counter-reset: lst-ctn-kix_lkj44s1va27m-0 0; }

.terms-of-use .lst-kix_hy09gnjdhf12-2 > li {
  counter-increment: lst-ctn-kix_hy09gnjdhf12-2; }

.terms-of-use .lst-kix_ua66ewr564g1-7 > li:before {
  content: "" counter(lst-ctn-kix_ua66ewr564g1-0, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-1, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-2, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-3, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-4, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-5, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-6, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-7, decimal) ". "; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-7.start {
  counter-reset: lst-ctn-kix_feuxo8rhdbt0-7 0; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-6.start {
  counter-reset: lst-ctn-kix_1mqm6fdbjf9d-6 0; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-2.start {
  counter-reset: lst-ctn-kix_pdkjfeu5u5mg-2 0; }

.terms-of-use .lst-kix_jl20g3uk09ea-3 > li:before {
  content: "2." counter(lst-ctn-kix_jl20g3uk09ea-3, decimal) ". "; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-1.start {
  counter-reset: lst-ctn-kix_feuxo8rhdbt0-1 0; }

.terms-of-use .lst-kix_86e8u1yx210n-8 > li {
  counter-increment: lst-ctn-kix_86e8u1yx210n-8; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-3 > li {
  counter-increment: lst-ctn-kix_pdkjfeu5u5mg-3; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-0.start {
  counter-reset: lst-ctn-kix_pbzo2n87xzpj-0 0; }

.terms-of-use .lst-kix_rvhnci86jkmr-6 > li {
  counter-increment: lst-ctn-kix_rvhnci86jkmr-6; }

.terms-of-use .lst-kix_b028ztyzvlep-6 > li:before {
  content: "" counter(lst-ctn-kix_b028ztyzvlep-0, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-1, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-2, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-3, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-4, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-5, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-6, decimal) ". "; }

.terms-of-use .lst-kix_ozm68jv0adg5-2 > li {
  counter-increment: lst-ctn-kix_ozm68jv0adg5-2; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-7.start {
  counter-reset: lst-ctn-kix_pbzo2n87xzpj-7 0; }

.terms-of-use .lst-kix_hxom0vvb70ua-1 > li:before {
  content: "" counter(lst-ctn-kix_hxom0vvb70ua-1, lower-latin) ". "; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_tul2fovx6tmm-7 > li:before {
  content: "" counter(lst-ctn-kix_tul2fovx6tmm-0, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-1, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-2, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-3, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-4, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-5, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-6, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-7, decimal) ". "; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_49u30kkokmge-5.start {
  counter-reset: lst-ctn-kix_49u30kkokmge-5 0; }

.terms-of-use .lst-kix_hxom0vvb70ua-2 > li {
  counter-increment: lst-ctn-kix_hxom0vvb70ua-2; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_22pop9qa6xgz-4 > li {
  counter-increment: lst-ctn-kix_22pop9qa6xgz-4; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_5u8mf6guzj36-4 > li {
  counter-increment: lst-ctn-kix_5u8mf6guzj36-4; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-3 {
  list-style-type: none; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-8 > li {
  counter-increment: lst-ctn-kix_4uj4b9kmbxlp-8; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_rdktnl6coqgw-4 > li {
  counter-increment: lst-ctn-kix_rdktnl6coqgw-4; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-4.start {
  counter-reset: lst-ctn-kix_77jp2vv72q2e-4 0; }

.terms-of-use .lst-kix_vltjg6tv64ze-8 > li {
  counter-increment: lst-ctn-kix_vltjg6tv64ze-8; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-0.start {
  counter-reset: lst-ctn-kix_hy09gnjdhf12-0 4; }

.terms-of-use ol.lst-kix_fxz23k1sp8k0-6 {
  list-style-type: none; }

.terms-of-use .lst-kix_8ni4xzorapao-2 > li {
  counter-increment: lst-ctn-kix_8ni4xzorapao-2; }

.terms-of-use .lst-kix_cwc83c9nqybd-8 > li:before {
  content: "" counter(lst-ctn-kix_cwc83c9nqybd-0, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-1, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-2, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-3, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-4, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-5, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-6, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-7, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-8, decimal) ". "; }

.terms-of-use ol.lst-kix_86e8u1yx210n-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_86e8u1yx210n-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_qv09rytsrgyh-4 > li:before {
  content: "" counter(lst-ctn-kix_qv09rytsrgyh-0, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-1, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-2, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-3, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-4, decimal) ". "; }

.terms-of-use .lst-kix_bb2e201r5mnm-2 > li:before {
  content: "" counter(lst-ctn-kix_bb2e201r5mnm-0, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-1, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-2, decimal) ". "; }

.terms-of-use .lst-kix_qtyjlfd1csih-3 > li:before {
  content: "" counter(lst-ctn-kix_qtyjlfd1csih-3, decimal) ". "; }

.terms-of-use ol.lst-kix_86e8u1yx210n-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_lkj44s1va27m-5.start {
  counter-reset: lst-ctn-kix_lkj44s1va27m-5 0; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-4.start {
  counter-reset: lst-ctn-kix_bb2e201r5mnm-4 0; }

.terms-of-use ol.lst-kix_86e8u1yx210n-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_86e8u1yx210n-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_86e8u1yx210n-1.start {
  counter-reset: lst-ctn-kix_86e8u1yx210n-1 0; }

.terms-of-use ol.lst-kix_86e8u1yx210n-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_5u8mf6guzj36-7 > li:before {
  content: "" counter(lst-ctn-kix_5u8mf6guzj36-0, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-1, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-2, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-3, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-4, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-5, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-6, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-7, decimal) ". "; }

.terms-of-use .lst-kix_rdktnl6coqgw-7 > li:before {
  content: "" counter(lst-ctn-kix_rdktnl6coqgw-0, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-1, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-2, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-3, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-4, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-5, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-6, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-7, decimal) ". "; }

.terms-of-use ol.lst-kix_86e8u1yx210n-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_86e8u1yx210n-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_g892krgm1nrl-3 > li:before {
  content: "18.1.2." counter(lst-ctn-kix_g892krgm1nrl-3, decimal) " "; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-5.start {
  counter-reset: lst-ctn-kix_j7eouqgowf9f-5 0; }

.terms-of-use ol.lst-kix_86e8u1yx210n-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-2.start {
  counter-reset: lst-ctn-kix_feuxo8rhdbt0-2 0; }

.terms-of-use .lst-kix_ejqx2zz7tdan-2 > li:before {
  content: "" counter(lst-ctn-kix_ejqx2zz7tdan-0, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-1, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-2, decimal) ". "; }

.terms-of-use .lst-kix_x2xllzoa2aed-1 > li:before {
  content: "" counter(lst-ctn-kix_x2xllzoa2aed-1, lower-latin) ". "; }

.terms-of-use .lst-kix_yzeqjqyr2fys-3 > li:before {
  content: "" counter(lst-ctn-kix_yzeqjqyr2fys-0, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-1, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-2, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-3, decimal) ". "; }

.terms-of-use ol.lst-kix_otxxhlg4ijs2-7.start {
  counter-reset: lst-ctn-kix_otxxhlg4ijs2-7 0; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-8.start {
  counter-reset: lst-ctn-kix_1mqm6fdbjf9d-8 0; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-2.start {
  counter-reset: lst-ctn-kix_ejqx2zz7tdan-2 0; }

.terms-of-use ol.lst-kix_kj86jt9svxha-6.start {
  counter-reset: lst-ctn-kix_kj86jt9svxha-6 0; }

.terms-of-use .lst-kix_b028ztyzvlep-4 > li {
  counter-increment: lst-ctn-kix_b028ztyzvlep-4; }

.terms-of-use .lst-kix_dpn3kl14kxj0-5 > li {
  counter-increment: lst-ctn-kix_dpn3kl14kxj0-5; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-3 > li:before {
  content: "" counter(lst-ctn-kix_j9lwa1xo9iwq-0, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-1, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-2, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-3, decimal) ". "; }

.terms-of-use .lst-kix_8ni4xzorapao-6 > li:before {
  content: "2." counter(lst-ctn-kix_8ni4xzorapao-6, decimal) ". "; }

.terms-of-use .lst-kix_4coayww806d7-0 > li:before {
  content: "" counter(lst-ctn-kix_4coayww806d7-0, decimal) ". "; }

.terms-of-use .lst-kix_4coayww806d7-8 > li:before {
  content: "" counter(lst-ctn-kix_4coayww806d7-0, decimal) "." counter(lst-ctn-kix_4coayww806d7-1, decimal) "." counter(lst-ctn-kix_4coayww806d7-2, decimal) "." counter(lst-ctn-kix_4coayww806d7-3, decimal) "." counter(lst-ctn-kix_4coayww806d7-4, decimal) "." counter(lst-ctn-kix_4coayww806d7-5, decimal) "." counter(lst-ctn-kix_4coayww806d7-6, decimal) "." counter(lst-ctn-kix_4coayww806d7-7, decimal) "." counter(lst-ctn-kix_4coayww806d7-8, decimal) ". "; }

.terms-of-use .lst-kix_e764bgixpbj9-8 > li {
  counter-increment: lst-ctn-kix_e764bgixpbj9-8; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-2.start {
  counter-reset: lst-ctn-kix_pbzo2n87xzpj-2 0; }

.terms-of-use .lst-kix_jc81tp6on6t7-4 > li:before {
  content: "" counter(lst-ctn-kix_jc81tp6on6t7-0, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-1, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-2, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-3, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-4, decimal) ". "; }

.terms-of-use .lst-kix_wnmij0cmzu07-2 > li {
  counter-increment: lst-ctn-kix_wnmij0cmzu07-2; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-5.start {
  counter-reset: lst-ctn-kix_pbzo2n87xzpj-5 0; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-2.start {
  counter-reset: lst-ctn-kix_77jp2vv72q2e-2 0; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-1.start {
  counter-reset: lst-ctn-kix_dpn3kl14kxj0-1 0; }

.terms-of-use .lst-kix_8u4cke4ltdqs-6 > li {
  counter-increment: lst-ctn-kix_8u4cke4ltdqs-6; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-1.start {
  counter-reset: lst-ctn-kix_77jp2vv72q2e-1 0; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_77jp2vv72q2e-3 > li {
  counter-increment: lst-ctn-kix_77jp2vv72q2e-3; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_j7eouqgowf9f-7.start {
  counter-reset: lst-ctn-kix_j7eouqgowf9f-7 0; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_hy09gnjdhf12-4.start {
  counter-reset: lst-ctn-kix_hy09gnjdhf12-4 0; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-2.start {
  counter-reset: lst-ctn-kix_bb2e201r5mnm-2 0; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yndlr6f5dtu-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_jl20g3uk09ea-5 > li {
  counter-increment: lst-ctn-kix_jl20g3uk09ea-5; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-7.start {
  counter-reset: lst-ctn-kix_ozm68jv0adg5-7 0; }

.terms-of-use .lst-kix_gijfqhf5xkva-2 > li {
  counter-increment: lst-ctn-kix_gijfqhf5xkva-2; }

.terms-of-use .lst-kix_ca703es297vb-4 > li:before {
  content: "" counter(lst-ctn-kix_ca703es297vb-0, decimal) "." counter(lst-ctn-kix_ca703es297vb-1, decimal) "." counter(lst-ctn-kix_ca703es297vb-2, decimal) "." counter(lst-ctn-kix_ca703es297vb-3, decimal) "." counter(lst-ctn-kix_ca703es297vb-4, decimal) ". "; }

.terms-of-use ol.lst-kix_ejqx2zz7tdan-4.start {
  counter-reset: lst-ctn-kix_ejqx2zz7tdan-4 0; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-5.start {
  counter-reset: lst-ctn-kix_2oqtqd6s45kj-5 0; }

.terms-of-use .lst-kix_lmfaweys7m5f-7 > li {
  counter-increment: lst-ctn-kix_lmfaweys7m5f-7; }

.terms-of-use .lst-kix_be94xss4lbxh-2 > li {
  counter-increment: lst-ctn-kix_be94xss4lbxh-2; }

.terms-of-use ol.lst-kix_feuxo8rhdbt0-4.start {
  counter-reset: lst-ctn-kix_feuxo8rhdbt0-4 0; }

.terms-of-use ol.lst-kix_22pop9qa6xgz-6.start {
  counter-reset: lst-ctn-kix_22pop9qa6xgz-6 0; }

.terms-of-use ol.lst-kix_49u30kkokmge-7.start {
  counter-reset: lst-ctn-kix_49u30kkokmge-7 0; }

.terms-of-use .lst-kix_lkj44s1va27m-2 > li {
  counter-increment: lst-ctn-kix_lkj44s1va27m-2; }

.terms-of-use ol.lst-kix_kj86jt9svxha-8.start {
  counter-reset: lst-ctn-kix_kj86jt9svxha-8 0; }

.terms-of-use .lst-kix_1qrhkgrpibm6-6 > li {
  counter-increment: lst-ctn-kix_1qrhkgrpibm6-6; }

.terms-of-use .lst-kix_8cyb65p92zt8-8 > li:before {
  content: "" counter(lst-ctn-kix_8cyb65p92zt8-0, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-1, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-2, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-3, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-4, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-5, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-6, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-7, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-8, decimal) ". "; }

.terms-of-use .lst-kix_wvszyx9fl4yt-7 > li {
  counter-increment: lst-ctn-kix_wvszyx9fl4yt-7; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-3 > li {
  counter-increment: lst-ctn-kix_1mqm6fdbjf9d-3; }

.terms-of-use .lst-kix_e764bgixpbj9-3 > li:before {
  content: "" counter(lst-ctn-kix_e764bgixpbj9-0, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-1, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-2, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-3, decimal) ". "; }

.terms-of-use .lst-kix_ozm68jv0adg5-0 > li:before {
  content: "" counter(lst-ctn-kix_ozm68jv0adg5-0, decimal) ". "; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_kbxm1bpcr5lb-4.start {
  counter-reset: lst-ctn-kix_kbxm1bpcr5lb-4 0; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_wvszyx9fl4yt-2 > li {
  counter-increment: lst-ctn-kix_wvszyx9fl4yt-2; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-3.start {
  counter-reset: lst-ctn-kix_yzeqjqyr2fys-3 0; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qv09rytsrgyh-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-4.start {
  counter-reset: lst-ctn-kix_5qie7zg80jlv-4 0; }

.terms-of-use .lst-kix_1qrhkgrpibm6-8 > li:before {
  content: "" counter(lst-ctn-kix_1qrhkgrpibm6-0, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-1, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-2, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-3, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-4, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-5, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-6, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-7, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-8, decimal) ". "; }

.terms-of-use .lst-kix_8cyb65p92zt8-6 > li:before {
  content: "" counter(lst-ctn-kix_8cyb65p92zt8-0, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-1, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-2, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-3, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-4, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-5, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-6, decimal) ". "; }

.terms-of-use .lst-kix_8cyb65p92zt8-5 > li:before {
  content: "" counter(lst-ctn-kix_8cyb65p92zt8-0, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-1, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-2, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-3, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-4, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-5, decimal) ". "; }

.terms-of-use ol.lst-kix_77jp2vv72q2e-6.start {
  counter-reset: lst-ctn-kix_77jp2vv72q2e-6 0; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-2.start {
  counter-reset: lst-ctn-kix_4uj4b9kmbxlp-2 0; }

.terms-of-use .lst-kix_feuxo8rhdbt0-5 > li {
  counter-increment: lst-ctn-kix_feuxo8rhdbt0-5; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-1 > li {
  counter-increment: lst-ctn-kix_1mqm6fdbjf9d-1; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-7.start {
  counter-reset: lst-ctn-kix_rvhnci86jkmr-7 0; }

.terms-of-use ol.lst-kix_2mckoz4hri27-6.start {
  counter-reset: lst-ctn-kix_2mckoz4hri27-6 0; }

.terms-of-use ol.lst-kix_e764bgixpbj9-5.start {
  counter-reset: lst-ctn-kix_e764bgixpbj9-5 0; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-0.start {
  counter-reset: lst-ctn-kix_pdkjfeu5u5mg-0 0; }

.terms-of-use .lst-kix_8cyb65p92zt8-3 > li:before {
  content: "" counter(lst-ctn-kix_8cyb65p92zt8-0, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-1, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-2, decimal) "." counter(lst-ctn-kix_8cyb65p92zt8-3, decimal) ". "; }

.terms-of-use .lst-kix_cwc83c9nqybd-7 > li {
  counter-increment: lst-ctn-kix_cwc83c9nqybd-7; }

.terms-of-use .lst-kix_8cyb65p92zt8-2 > li:before {
  content: "6.1.2." counter(lst-ctn-kix_8cyb65p92zt8-2, decimal) ". "; }

.terms-of-use ol.lst-kix_lkj44s1va27m-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_lkj44s1va27m-3 {
  list-style-type: none; }

.terms-of-use .lst-kix_dnra8vwir8mr-6 > li:before {
  content: "" counter(lst-ctn-kix_dnra8vwir8mr-0, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-1, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-2, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-3, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-4, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-5, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-6, decimal) ". "; }

.terms-of-use ol.lst-kix_lkj44s1va27m-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_lkj44s1va27m-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_lkj44s1va27m-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_lkj44s1va27m-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_8cyb65p92zt8-0 > li:before {
  content: "6." counter(lst-ctn-kix_8cyb65p92zt8-0, decimal) ". "; }

.terms-of-use .lst-kix_1qrhkgrpibm6-1 > li:before {
  content: "" counter(lst-ctn-kix_1qrhkgrpibm6-0, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-1, decimal) ". "; }

.terms-of-use .lst-kix_x2xllzoa2aed-0 > li {
  counter-increment: lst-ctn-kix_x2xllzoa2aed-0; }

.terms-of-use ol.lst-kix_lkj44s1va27m-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_lkj44s1va27m-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_1qrhkgrpibm6-2 > li:before {
  content: "" counter(lst-ctn-kix_1qrhkgrpibm6-0, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-1, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-2, decimal) ". "; }

.terms-of-use .lst-kix_jc81tp6on6t7-8 > li {
  counter-increment: lst-ctn-kix_jc81tp6on6t7-8; }

.terms-of-use ol.lst-kix_lkj44s1va27m-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_1qrhkgrpibm6-5 > li:before {
  content: "" counter(lst-ctn-kix_1qrhkgrpibm6-0, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-1, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-2, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-3, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-4, decimal) "." counter(lst-ctn-kix_1qrhkgrpibm6-5, decimal) ". "; }

.terms-of-use .lst-kix_y75hn1731udi-7 > li {
  counter-increment: lst-ctn-kix_y75hn1731udi-7; }

.terms-of-use .lst-kix_xpze7a8jk05n-1 > li {
  counter-increment: lst-ctn-kix_xpze7a8jk05n-1; }

.terms-of-use .lst-kix_j7eouqgowf9f-4 > li:before {
  content: "" counter(lst-ctn-kix_j7eouqgowf9f-0, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-1, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-2, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-3, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-4, decimal) ". "; }

.terms-of-use .lst-kix_j7eouqgowf9f-5 > li:before {
  content: "" counter(lst-ctn-kix_j7eouqgowf9f-0, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-1, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-2, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-3, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-4, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-5, decimal) ". "; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_j7eouqgowf9f-1 > li:before {
  content: "9." counter(lst-ctn-kix_j7eouqgowf9f-1, decimal) " "; }

.terms-of-use .lst-kix_dnra8vwir8mr-0 > li:before {
  content: "4.3." counter(lst-ctn-kix_dnra8vwir8mr-0, decimal) " "; }

.terms-of-use ol.lst-kix_49u30kkokmge-4.start {
  counter-reset: lst-ctn-kix_49u30kkokmge-4 0; }

.terms-of-use ol.lst-kix_pbzo2n87xzpj-8.start {
  counter-reset: lst-ctn-kix_pbzo2n87xzpj-8 0; }

.terms-of-use .lst-kix_dnra8vwir8mr-3 > li:before {
  content: "" counter(lst-ctn-kix_dnra8vwir8mr-0, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-1, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-2, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-3, decimal) ". "; }

.terms-of-use .lst-kix_dnra8vwir8mr-2 > li:before {
  content: "" counter(lst-ctn-kix_dnra8vwir8mr-0, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-1, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-2, decimal) ". "; }

.terms-of-use ol.lst-kix_kj86jt9svxha-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_kj86jt9svxha-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_dnra8vwir8mr-5 > li:before {
  content: "" counter(lst-ctn-kix_dnra8vwir8mr-0, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-1, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-2, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-3, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-4, decimal) "." counter(lst-ctn-kix_dnra8vwir8mr-5, decimal) ". "; }

.terms-of-use ol.lst-kix_kj86jt9svxha-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_qtyjlfd1csih-7 > li {
  counter-increment: lst-ctn-kix_qtyjlfd1csih-7; }

.terms-of-use ol.lst-kix_kj86jt9svxha-6 {
  list-style-type: none; }

.terms-of-use .lst-kix_hy09gnjdhf12-3 > li {
  counter-increment: lst-ctn-kix_hy09gnjdhf12-3; }

.terms-of-use ol.lst-kix_kj86jt9svxha-3 {
  list-style-type: none; }

.terms-of-use .lst-kix_pbzo2n87xzpj-6 > li {
  counter-increment: lst-ctn-kix_pbzo2n87xzpj-6; }

.terms-of-use ol.lst-kix_kj86jt9svxha-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_j7eouqgowf9f-8 > li:before {
  content: "" counter(lst-ctn-kix_j7eouqgowf9f-0, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-1, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-2, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-3, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-4, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-5, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-6, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-7, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-8, decimal) ". "; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_kj86jt9svxha-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_kj86jt9svxha-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_j7eouqgowf9f-7 > li:before {
  content: "" counter(lst-ctn-kix_j7eouqgowf9f-0, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-1, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-2, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-3, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-4, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-5, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-6, decimal) "." counter(lst-ctn-kix_j7eouqgowf9f-7, decimal) ". "; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_kj86jt9svxha-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ca703es297vb-5.start {
  counter-reset: lst-ctn-kix_ca703es297vb-5 0; }

.terms-of-use ol.lst-kix_2oqtqd6s45kj-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_bb2e201r5mnm-5.start {
  counter-reset: lst-ctn-kix_bb2e201r5mnm-5 0; }

.terms-of-use .lst-kix_5qie7zg80jlv-4 > li {
  counter-increment: lst-ctn-kix_5qie7zg80jlv-4; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-2 > li {
  counter-increment: lst-ctn-kix_4uj4b9kmbxlp-2; }

.terms-of-use ol.lst-kix_ca703es297vb-0.start {
  counter-reset: lst-ctn-kix_ca703es297vb-0 2; }

.terms-of-use ol.lst-kix_e764bgixpbj9-0.start {
  counter-reset: lst-ctn-kix_e764bgixpbj9-0 0; }

.terms-of-use .lst-kix_22pop9qa6xgz-7 > li {
  counter-increment: lst-ctn-kix_22pop9qa6xgz-7; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-2.start {
  counter-reset: lst-ctn-kix_rvhnci86jkmr-2 0; }

.terms-of-use .lst-kix_ca703es297vb-0 > li {
  counter-increment: lst-ctn-kix_ca703es297vb-0; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_vltjg6tv64ze-5 > li {
  counter-increment: lst-ctn-kix_vltjg6tv64ze-5; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_77jp2vv72q2e-2 > li {
  counter-increment: lst-ctn-kix_77jp2vv72q2e-2; }

.terms-of-use .lst-kix_qv09rytsrgyh-3 > li:before {
  content: "" counter(lst-ctn-kix_qv09rytsrgyh-0, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-1, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-2, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-3, decimal) ". "; }

.terms-of-use ol.lst-kix_dpn3kl14kxj0-4.start {
  counter-reset: lst-ctn-kix_dpn3kl14kxj0-4 0; }

.terms-of-use .lst-kix_vw3e5pptfgmp-7 > li {
  counter-increment: lst-ctn-kix_vw3e5pptfgmp-7; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_mtnawcnqd6n-7 > li {
  counter-increment: lst-ctn-kix_mtnawcnqd6n-7; }

.terms-of-use .lst-kix_bb2e201r5mnm-7 > li:before {
  content: "" counter(lst-ctn-kix_bb2e201r5mnm-0, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-1, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-2, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-3, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-4, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-5, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-6, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-7, decimal) ". "; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_8u4cke4ltdqs-5 > li {
  counter-increment: lst-ctn-kix_8u4cke4ltdqs-5; }

.terms-of-use .lst-kix_bb2e201r5mnm-1 > li:before {
  content: "" counter(lst-ctn-kix_bb2e201r5mnm-0, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-1, decimal) ". "; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_cwc83c9nqybd-2 > li:before {
  content: "" counter(lst-ctn-kix_cwc83c9nqybd-0, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-1, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-2, decimal) ". "; }

.terms-of-use .lst-kix_4coayww806d7-0 > li {
  counter-increment: lst-ctn-kix_4coayww806d7-0; }

.terms-of-use .lst-kix_1099weaqanok-3 > li {
  counter-increment: lst-ctn-kix_1099weaqanok-3; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-1.start {
  counter-reset: lst-ctn-kix_tul2fovx6tmm-1 0; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_e764bgixpbj9-6 > li {
  counter-increment: lst-ctn-kix_e764bgixpbj9-6; }

.terms-of-use .lst-kix_bb2e201r5mnm-1 > li {
  counter-increment: lst-ctn-kix_bb2e201r5mnm-1; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_gijfqhf5xkva-5 > li {
  counter-increment: lst-ctn-kix_gijfqhf5xkva-5; }

.terms-of-use .lst-kix_4coayww806d7-1 > li {
  counter-increment: lst-ctn-kix_4coayww806d7-1; }

.terms-of-use .lst-kix_qv09rytsrgyh-7 > li:before {
  content: "" counter(lst-ctn-kix_qv09rytsrgyh-0, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-1, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-2, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-3, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-4, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-5, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-6, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-7, decimal) ". "; }

.terms-of-use .lst-kix_cwc83c9nqybd-0 > li:before {
  content: "3." counter(lst-ctn-kix_cwc83c9nqybd-0, decimal) ". "; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-6.start {
  counter-reset: lst-ctn-kix_vltjg6tv64ze-6 0; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-6.start {
  counter-reset: lst-ctn-kix_r8ii1wx48ejc-6 0; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-8 > li:before {
  content: "" counter(lst-ctn-kix_4uj4b9kmbxlp-0, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-1, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-2, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-3, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-4, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-5, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-6, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-7, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-8, decimal) ". "; }

.terms-of-use .lst-kix_yzeqjqyr2fys-7 > li {
  counter-increment: lst-ctn-kix_yzeqjqyr2fys-7; }

.terms-of-use .lst-kix_b028ztyzvlep-1 > li {
  counter-increment: lst-ctn-kix_b028ztyzvlep-1; }

.terms-of-use .lst-kix_gijfqhf5xkva-6 > li {
  counter-increment: lst-ctn-kix_gijfqhf5xkva-6; }

.terms-of-use .lst-kix_gyvrc19ngq4f-4 > li {
  counter-increment: lst-ctn-kix_gyvrc19ngq4f-4; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_qdft1q5q38jc-2 > li {
  counter-increment: lst-ctn-kix_qdft1q5q38jc-2; }

.terms-of-use .lst-kix_yndlr6f5dtu-5 > li {
  counter-increment: lst-ctn-kix_yndlr6f5dtu-5; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-2 > li:before {
  content: "" counter(lst-ctn-kix_4uj4b9kmbxlp-0, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-1, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-2, decimal) ". "; }

.terms-of-use .lst-kix_otxxhlg4ijs2-2 > li:before {
  content: "" counter(lst-ctn-kix_otxxhlg4ijs2-0, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-1, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-2, decimal) ". "; }

.terms-of-use .lst-kix_be94xss4lbxh-0 > li {
  counter-increment: lst-ctn-kix_be94xss4lbxh-0; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-5.start {
  counter-reset: lst-ctn-kix_jb80qd27i5ho-5 0; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-4 > li:before {
  content: "" counter(lst-ctn-kix_4uj4b9kmbxlp-0, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-1, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-2, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-3, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-4, decimal) ". "; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_49u30kkokmge-1 > li {
  counter-increment: lst-ctn-kix_49u30kkokmge-1; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_bb2e201r5mnm-5 > li:before {
  content: "" counter(lst-ctn-kix_bb2e201r5mnm-0, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-1, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-2, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-3, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-4, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-5, decimal) ". "; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ua66ewr564g1-1.start {
  counter-reset: lst-ctn-kix_ua66ewr564g1-1 0; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_ca703es297vb-3 > li:before {
  content: "" counter(lst-ctn-kix_ca703es297vb-0, decimal) "." counter(lst-ctn-kix_ca703es297vb-1, decimal) "." counter(lst-ctn-kix_ca703es297vb-2, decimal) "." counter(lst-ctn-kix_ca703es297vb-3, decimal) ". "; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_x2xllzoa2aed-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_jb80qd27i5ho-7 > li {
  counter-increment: lst-ctn-kix_jb80qd27i5ho-7; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-1 > li {
  counter-increment: lst-ctn-kix_pdkjfeu5u5mg-1; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-1 > li {
  counter-increment: lst-ctn-kix_4uj4b9kmbxlp-1; }

.terms-of-use .lst-kix_ca703es297vb-7 > li:before {
  content: "" counter(lst-ctn-kix_ca703es297vb-0, decimal) "." counter(lst-ctn-kix_ca703es297vb-1, decimal) "." counter(lst-ctn-kix_ca703es297vb-2, decimal) "." counter(lst-ctn-kix_ca703es297vb-3, decimal) "." counter(lst-ctn-kix_ca703es297vb-4, decimal) "." counter(lst-ctn-kix_ca703es297vb-5, decimal) "." counter(lst-ctn-kix_ca703es297vb-6, decimal) "." counter(lst-ctn-kix_ca703es297vb-7, decimal) ". "; }

.terms-of-use .lst-kix_4dasw5gw6627-7 > li {
  counter-increment: lst-ctn-kix_4dasw5gw6627-7; }

.terms-of-use .lst-kix_feuxo8rhdbt0-6 > li:before {
  content: "" counter(lst-ctn-kix_feuxo8rhdbt0-6, decimal) ". "; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-4.start {
  counter-reset: lst-ctn-kix_jl20g3uk09ea-4 0; }

.terms-of-use .lst-kix_pdkjfeu5u5mg-7 > li {
  counter-increment: lst-ctn-kix_pdkjfeu5u5mg-7; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-5.start {
  counter-reset: lst-ctn-kix_hxom0vvb70ua-5 0; }

.terms-of-use .lst-kix_r8ii1wx48ejc-5 > li {
  counter-increment: lst-ctn-kix_r8ii1wx48ejc-5; }

.terms-of-use ol.lst-kix_pdkjfeu5u5mg-5.start {
  counter-reset: lst-ctn-kix_pdkjfeu5u5mg-5 0; }

.terms-of-use ol.lst-kix_ua66ewr564g1-0.start {
  counter-reset: lst-ctn-kix_ua66ewr564g1-0 29; }

.terms-of-use ol.lst-kix_kj86jt9svxha-1.start {
  counter-reset: lst-ctn-kix_kj86jt9svxha-1 0; }

.terms-of-use .lst-kix_be94xss4lbxh-3 > li:before {
  content: "" counter(lst-ctn-kix_be94xss4lbxh-0, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-1, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-2, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-3, decimal) ". "; }

.terms-of-use .lst-kix_kbxm1bpcr5lb-7 > li {
  counter-increment: lst-ctn-kix_kbxm1bpcr5lb-7; }

.terms-of-use .lst-kix_2mckoz4hri27-7 > li {
  counter-increment: lst-ctn-kix_2mckoz4hri27-7; }

.terms-of-use ol.lst-kix_ozm68jv0adg5-0.start {
  counter-reset: lst-ctn-kix_ozm68jv0adg5-0 0; }

.terms-of-use .lst-kix_dpn3kl14kxj0-7 > li:before {
  content: "" counter(lst-ctn-kix_dpn3kl14kxj0-7, lower-latin) ". "; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-6.start {
  counter-reset: lst-ctn-kix_hxom0vvb70ua-6 0; }

.terms-of-use .lst-kix_feuxo8rhdbt0-0 > li:before {
  content: "" counter(lst-ctn-kix_feuxo8rhdbt0-0, decimal) ". "; }

.terms-of-use .lst-kix_dpn3kl14kxj0-5 > li:before {
  content: "" counter(lst-ctn-kix_dpn3kl14kxj0-5, lower-roman) ". "; }

.terms-of-use ol.lst-kix_2mckoz4hri27-1.start {
  counter-reset: lst-ctn-kix_2mckoz4hri27-1 0; }

.terms-of-use .lst-kix_dpn3kl14kxj0-1 > li:before {
  content: "" counter(lst-ctn-kix_dpn3kl14kxj0-1, lower-latin) ". "; }

.terms-of-use .lst-kix_rvhnci86jkmr-4 > li:before {
  content: "(" counter(lst-ctn-kix_rvhnci86jkmr-4, lower-roman) ") "; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-4 > li:before {
  content: "" counter(lst-ctn-kix_1mqm6fdbjf9d-0, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-1, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-2, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-3, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-4, decimal) ". "; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-4.start {
  counter-reset: lst-ctn-kix_jb80qd27i5ho-4 0; }

.terms-of-use ol.lst-kix_8ni4xzorapao-0.start {
  counter-reset: lst-ctn-kix_8ni4xzorapao-0 0; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-8 > li:before {
  content: "" counter(lst-ctn-kix_1mqm6fdbjf9d-0, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-1, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-2, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-3, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-4, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-5, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-6, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-7, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-8, decimal) ". "; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-7 > li:before {
  content: "" counter(lst-ctn-kix_1mqm6fdbjf9d-0, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-1, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-2, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-3, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-4, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-5, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-6, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-7, decimal) ". "; }

.terms-of-use .lst-kix_dpn3kl14kxj0-8 > li:before {
  content: "" counter(lst-ctn-kix_dpn3kl14kxj0-8, lower-roman) ". "; }

.terms-of-use .lst-kix_cwc83c9nqybd-6 > li {
  counter-increment: lst-ctn-kix_cwc83c9nqybd-6; }

.terms-of-use .lst-kix_rvhnci86jkmr-7 > li:before {
  content: "" counter(lst-ctn-kix_rvhnci86jkmr-7, decimal) ". "; }

.terms-of-use .lst-kix_rvhnci86jkmr-8 > li:before {
  content: "" counter(lst-ctn-kix_rvhnci86jkmr-8, decimal) ". "; }

.terms-of-use .lst-kix_vw3e5pptfgmp-1 > li {
  counter-increment: lst-ctn-kix_vw3e5pptfgmp-1; }

.terms-of-use .lst-kix_jb80qd27i5ho-6 > li:before {
  content: "" counter(lst-ctn-kix_jb80qd27i5ho-0, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-1, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-2, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-3, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-4, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-5, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-6, decimal) ". "; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-5.start {
  counter-reset: lst-ctn-kix_j9lwa1xo9iwq-5 0; }

.terms-of-use .lst-kix_4dasw5gw6627-5 > li:before {
  content: "" counter(lst-ctn-kix_4dasw5gw6627-0, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-1, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-2, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-3, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-4, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-5, decimal) ". "; }

.terms-of-use .lst-kix_jb80qd27i5ho-3 > li:before {
  content: "" counter(lst-ctn-kix_jb80qd27i5ho-0, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-1, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-2, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-3, decimal) ". "; }

.terms-of-use .lst-kix_jb80qd27i5ho-2 > li:before {
  content: "" counter(lst-ctn-kix_jb80qd27i5ho-0, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-1, decimal) "." counter(lst-ctn-kix_jb80qd27i5ho-2, decimal) ". "; }

.terms-of-use .lst-kix_8ni4xzorapao-4 > li {
  counter-increment: lst-ctn-kix_8ni4xzorapao-4; }

.terms-of-use .lst-kix_dnra8vwir8mr-3 > li {
  counter-increment: lst-ctn-kix_dnra8vwir8mr-3; }

.terms-of-use .lst-kix_be94xss4lbxh-6 > li {
  counter-increment: lst-ctn-kix_be94xss4lbxh-6; }

.terms-of-use .lst-kix_mtnawcnqd6n-3 > li:before {
  content: "" counter(lst-ctn-kix_mtnawcnqd6n-0, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-1, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-2, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-3, decimal) ". "; }

.terms-of-use .lst-kix_e764bgixpbj9-0 > li {
  counter-increment: lst-ctn-kix_e764bgixpbj9-0; }

.terms-of-use ol.lst-kix_49u30kkokmge-0.start {
  counter-reset: lst-ctn-kix_49u30kkokmge-0 0; }

.terms-of-use .lst-kix_mtnawcnqd6n-4 > li:before {
  content: "" counter(lst-ctn-kix_mtnawcnqd6n-0, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-1, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-2, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-3, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-4, decimal) ". "; }

.terms-of-use .lst-kix_lkj44s1va27m-1 > li {
  counter-increment: lst-ctn-kix_lkj44s1va27m-1; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-4.start {
  counter-reset: lst-ctn-kix_qdvjpwm2m2b6-4 0; }

.terms-of-use .lst-kix_4dasw5gw6627-8 > li:before {
  content: "" counter(lst-ctn-kix_4dasw5gw6627-0, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-1, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-2, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-3, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-4, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-5, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-6, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-7, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-8, decimal) ". "; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-7.start {
  counter-reset: lst-ctn-kix_vltjg6tv64ze-7 0; }

.terms-of-use .lst-kix_qdvjpwm2m2b6-6 > li {
  counter-increment: lst-ctn-kix_qdvjpwm2m2b6-6; }

.terms-of-use .lst-kix_qdft1q5q38jc-8 > li {
  counter-increment: lst-ctn-kix_qdft1q5q38jc-8; }

.terms-of-use .lst-kix_kj86jt9svxha-8 > li {
  counter-increment: lst-ctn-kix_kj86jt9svxha-8; }

.terms-of-use .lst-kix_mtnawcnqd6n-1 > li {
  counter-increment: lst-ctn-kix_mtnawcnqd6n-1; }

.terms-of-use .lst-kix_jb80qd27i5ho-6 > li {
  counter-increment: lst-ctn-kix_jb80qd27i5ho-6; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-6.start {
  counter-reset: lst-ctn-kix_yhc1v6iazz4p-6 0; }

.terms-of-use .lst-kix_mtnawcnqd6n-7 > li:before {
  content: "" counter(lst-ctn-kix_mtnawcnqd6n-0, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-1, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-2, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-3, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-4, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-5, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-6, decimal) "." counter(lst-ctn-kix_mtnawcnqd6n-7, decimal) ". "; }

.terms-of-use .lst-kix_qv09rytsrgyh-7 > li {
  counter-increment: lst-ctn-kix_qv09rytsrgyh-7; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-1.start {
  counter-reset: lst-ctn-kix_yhc1v6iazz4p-1 0; }

.terms-of-use .lst-kix_2oqtqd6s45kj-5 > li {
  counter-increment: lst-ctn-kix_2oqtqd6s45kj-5; }

.terms-of-use ol.lst-kix_e764bgixpbj9-1.start {
  counter-reset: lst-ctn-kix_e764bgixpbj9-1 0; }

.terms-of-use .lst-kix_jl20g3uk09ea-4 > li:before {
  content: "2." counter(lst-ctn-kix_jl20g3uk09ea-4, decimal) ". "; }

.terms-of-use .lst-kix_otxxhlg4ijs2-5 > li:before {
  content: "" counter(lst-ctn-kix_otxxhlg4ijs2-0, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-1, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-2, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-3, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-4, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-5, decimal) ". "; }

.terms-of-use .lst-kix_hxom0vvb70ua-7 > li:before {
  content: "" counter(lst-ctn-kix_hxom0vvb70ua-7, lower-latin) ". "; }

.terms-of-use .lst-kix_otxxhlg4ijs2-4 > li:before {
  content: "" counter(lst-ctn-kix_otxxhlg4ijs2-0, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-1, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-2, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-3, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-4, decimal) ". "; }

.terms-of-use .lst-kix_qtyjlfd1csih-1 > li {
  counter-increment: lst-ctn-kix_qtyjlfd1csih-1; }

.terms-of-use .lst-kix_hxom0vvb70ua-4 > li:before {
  content: "" counter(lst-ctn-kix_hxom0vvb70ua-4, lower-latin) ". "; }

.terms-of-use .lst-kix_jl20g3uk09ea-0 > li:before {
  content: "" counter(lst-ctn-kix_jl20g3uk09ea-0, decimal) ". "; }

.terms-of-use .lst-kix_jl20g3uk09ea-1 > li:before {
  content: "2." counter(lst-ctn-kix_jl20g3uk09ea-1, decimal) ". "; }

.terms-of-use .lst-kix_j7eouqgowf9f-6 > li {
  counter-increment: lst-ctn-kix_j7eouqgowf9f-6; }

.terms-of-use .lst-kix_ua66ewr564g1-0 > li {
  counter-increment: lst-ctn-kix_ua66ewr564g1-0; }

.terms-of-use .lst-kix_49u30kkokmge-2 > li {
  counter-increment: lst-ctn-kix_49u30kkokmge-2; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-0.start {
  counter-reset: lst-ctn-kix_j9lwa1xo9iwq-0 0; }

.terms-of-use .lst-kix_hxom0vvb70ua-3 > li:before {
  content: "" counter(lst-ctn-kix_hxom0vvb70ua-3, decimal) ". "; }

.terms-of-use .lst-kix_otxxhlg4ijs2-8 > li:before {
  content: "" counter(lst-ctn-kix_otxxhlg4ijs2-0, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-1, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-2, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-3, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-4, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-5, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-6, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-7, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-8, decimal) ". "; }

.terms-of-use ol.lst-kix_qdvjpwm2m2b6-3.start {
  counter-reset: lst-ctn-kix_qdvjpwm2m2b6-3 0; }

.terms-of-use .lst-kix_x2xllzoa2aed-8 > li {
  counter-increment: lst-ctn-kix_x2xllzoa2aed-8; }

.terms-of-use .lst-kix_yhc1v6iazz4p-2 > li {
  counter-increment: lst-ctn-kix_yhc1v6iazz4p-2; }

.terms-of-use .lst-kix_exi6qx2d4uml-5 > li {
  counter-increment: lst-ctn-kix_exi6qx2d4uml-5; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-7.start {
  counter-reset: lst-ctn-kix_yhc1v6iazz4p-7 0; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-4 > li {
  counter-increment: lst-ctn-kix_j9lwa1xo9iwq-4; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-0.start {
  counter-reset: lst-ctn-kix_jl20g3uk09ea-0 2; }

.terms-of-use .lst-kix_cwc83c9nqybd-6 > li:before {
  content: "" counter(lst-ctn-kix_cwc83c9nqybd-0, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-1, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-2, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-3, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-4, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-5, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-6, decimal) ". "; }

.terms-of-use .lst-kix_ca703es297vb-6 > li {
  counter-increment: lst-ctn-kix_ca703es297vb-6; }

.terms-of-use .lst-kix_hxom0vvb70ua-0 > li:before {
  content: "4." counter(lst-ctn-kix_hxom0vvb70ua-0, decimal) " "; }

.terms-of-use .lst-kix_yzeqjqyr2fys-8 > li {
  counter-increment: lst-ctn-kix_yzeqjqyr2fys-8; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_otxxhlg4ijs2-1 > li {
  counter-increment: lst-ctn-kix_otxxhlg4ijs2-1; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_qdft1q5q38jc-3 {
  list-style-type: none; }

.terms-of-use .lst-kix_ejqx2zz7tdan-3 > li {
  counter-increment: lst-ctn-kix_ejqx2zz7tdan-3; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ua66ewr564g1-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ua66ewr564g1-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_bb2e201r5mnm-4 > li:before {
  content: "" counter(lst-ctn-kix_bb2e201r5mnm-0, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-1, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-2, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-3, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-4, decimal) ". "; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ua66ewr564g1-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ua66ewr564g1-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_qdft1q5q38jc-0 > li:before {
  content: "" counter(lst-ctn-kix_qdft1q5q38jc-0, decimal) ". "; }

.terms-of-use ol.lst-kix_ua66ewr564g1-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ua66ewr564g1-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_vltjg6tv64ze-4 > li {
  counter-increment: lst-ctn-kix_vltjg6tv64ze-4; }

.terms-of-use ol.lst-kix_ua66ewr564g1-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_86e8u1yx210n-0 > li:before {
  content: "33." counter(lst-ctn-kix_86e8u1yx210n-0, decimal) ". "; }

.terms-of-use ol.lst-kix_ua66ewr564g1-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_bb2e201r5mnm-8 > li:before {
  content: "" counter(lst-ctn-kix_bb2e201r5mnm-0, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-1, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-2, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-3, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-4, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-5, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-6, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-7, decimal) "." counter(lst-ctn-kix_bb2e201r5mnm-8, decimal) ". "; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ua66ewr564g1-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-6 {
  list-style-type: none; }

.terms-of-use .lst-kix_rdktnl6coqgw-5 > li:before {
  content: "" counter(lst-ctn-kix_rdktnl6coqgw-0, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-1, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-2, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-3, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-4, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-5, decimal) ". "; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-0.start {
  counter-reset: lst-ctn-kix_5qie7zg80jlv-0 0; }

.terms-of-use ol.lst-kix_5u8mf6guzj36-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_5u8mf6guzj36-1 > li:before {
  content: "" counter(lst-ctn-kix_5u8mf6guzj36-0, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-1, decimal) ". "; }

.terms-of-use .lst-kix_5u8mf6guzj36-5 > li:before {
  content: "" counter(lst-ctn-kix_5u8mf6guzj36-0, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-1, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-2, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-3, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-4, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-5, decimal) ". "; }

.terms-of-use .lst-kix_ejqx2zz7tdan-4 > li:before {
  content: "" counter(lst-ctn-kix_ejqx2zz7tdan-0, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-1, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-2, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-3, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-4, decimal) ". "; }

.terms-of-use .lst-kix_cwc83c9nqybd-3 > li:before {
  content: "" counter(lst-ctn-kix_cwc83c9nqybd-0, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-1, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-2, decimal) "." counter(lst-ctn-kix_cwc83c9nqybd-3, decimal) ". "; }

.terms-of-use .lst-kix_wvszyx9fl4yt-8 > li {
  counter-increment: lst-ctn-kix_wvszyx9fl4yt-8; }

.terms-of-use ol.lst-kix_2mckoz4hri27-5.start {
  counter-reset: lst-ctn-kix_2mckoz4hri27-5 0; }

.terms-of-use .lst-kix_yzeqjqyr2fys-1 > li:before {
  content: "" counter(lst-ctn-kix_yzeqjqyr2fys-0, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-1, decimal) ". "; }

.terms-of-use .lst-kix_qv09rytsrgyh-6 > li:before {
  content: "" counter(lst-ctn-kix_qv09rytsrgyh-0, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-1, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-2, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-3, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-4, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-5, decimal) "." counter(lst-ctn-kix_qv09rytsrgyh-6, decimal) ". "; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-2 > li {
  counter-increment: lst-ctn-kix_f3v1vtgjdx5m-2; }

.terms-of-use .lst-kix_mtnawcnqd6n-6 > li {
  counter-increment: lst-ctn-kix_mtnawcnqd6n-6; }

.terms-of-use .lst-kix_exi6qx2d4uml-2 > li:before {
  content: "" counter(lst-ctn-kix_exi6qx2d4uml-0, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-1, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-2, decimal) ". "; }

.terms-of-use .lst-kix_qtyjlfd1csih-6 > li {
  counter-increment: lst-ctn-kix_qtyjlfd1csih-6; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-2.start {
  counter-reset: lst-ctn-kix_yhc1v6iazz4p-2 0; }

.terms-of-use .lst-kix_cwc83c9nqybd-1 > li {
  counter-increment: lst-ctn-kix_cwc83c9nqybd-1; }

.terms-of-use .lst-kix_g892krgm1nrl-4 > li {
  counter-increment: lst-ctn-kix_g892krgm1nrl-4; }

.terms-of-use .lst-kix_8ni4xzorapao-8 > li:before {
  content: "2." counter(lst-ctn-kix_8ni4xzorapao-8, decimal) ". "; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-1 > li:before {
  content: "4.1." counter(lst-ctn-kix_4uj4b9kmbxlp-1, decimal) " "; }

.terms-of-use .lst-kix_jc81tp6on6t7-2 > li {
  counter-increment: lst-ctn-kix_jc81tp6on6t7-2; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-0 > li {
  counter-increment: lst-ctn-kix_f3v1vtgjdx5m-0; }

.terms-of-use .lst-kix_y75hn1731udi-1 > li {
  counter-increment: lst-ctn-kix_y75hn1731udi-1; }

.terms-of-use .lst-kix_rdktnl6coqgw-8 > li {
  counter-increment: lst-ctn-kix_rdktnl6coqgw-8; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-5 > li:before {
  content: "" counter(lst-ctn-kix_4uj4b9kmbxlp-0, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-1, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-2, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-3, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-4, decimal) "." counter(lst-ctn-kix_4uj4b9kmbxlp-5, decimal) ". "; }

.terms-of-use .lst-kix_otxxhlg4ijs2-1 > li:before {
  content: "" counter(lst-ctn-kix_otxxhlg4ijs2-0, decimal) "." counter(lst-ctn-kix_otxxhlg4ijs2-1, decimal) ". "; }

.terms-of-use .lst-kix_jc81tp6on6t7-6 > li:before {
  content: "" counter(lst-ctn-kix_jc81tp6on6t7-0, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-1, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-2, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-3, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-4, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-5, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-6, decimal) ". "; }

.terms-of-use ol.lst-kix_2mckoz4hri27-7.start {
  counter-reset: lst-ctn-kix_2mckoz4hri27-7 0; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-4.start {
  counter-reset: lst-ctn-kix_j9lwa1xo9iwq-4 0; }

.terms-of-use ol.lst-kix_8ni4xzorapao-5.start {
  counter-reset: lst-ctn-kix_8ni4xzorapao-5 0; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-2 > li {
  counter-increment: lst-ctn-kix_j9lwa1xo9iwq-2; }

.terms-of-use .lst-kix_rvhnci86jkmr-5 > li {
  counter-increment: lst-ctn-kix_rvhnci86jkmr-5; }

.terms-of-use .lst-kix_yhc1v6iazz4p-4 > li {
  counter-increment: lst-ctn-kix_yhc1v6iazz4p-4; }

.terms-of-use .lst-kix_xpze7a8jk05n-1 > li:before {
  content: "2." counter(lst-ctn-kix_xpze7a8jk05n-1, decimal) ". "; }

.terms-of-use .lst-kix_fxz23k1sp8k0-0 > li {
  counter-increment: lst-ctn-kix_fxz23k1sp8k0-0; }

.terms-of-use .lst-kix_exi6qx2d4uml-3 > li {
  counter-increment: lst-ctn-kix_exi6qx2d4uml-3; }

.terms-of-use .lst-kix_hy09gnjdhf12-1 > li:before {
  content: "" counter(lst-ctn-kix_hy09gnjdhf12-0, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-1, decimal) ". "; }

.terms-of-use .lst-kix_2mckoz4hri27-6 > li:before {
  content: "" counter(lst-ctn-kix_2mckoz4hri27-0, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-1, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-2, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-3, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-4, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-5, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-6, decimal) ". "; }

.terms-of-use .lst-kix_yndlr6f5dtu-0 > li:before {
  content: "" counter(lst-ctn-kix_yndlr6f5dtu-0, decimal) ". "; }

.terms-of-use .lst-kix_lmfaweys7m5f-7 > li:before {
  content: "" counter(lst-ctn-kix_lmfaweys7m5f-0, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-1, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-2, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-3, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-4, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-5, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-6, decimal) "." counter(lst-ctn-kix_lmfaweys7m5f-7, decimal) ". "; }

.terms-of-use .lst-kix_y75hn1731udi-6 > li {
  counter-increment: lst-ctn-kix_y75hn1731udi-6; }

.terms-of-use .lst-kix_mtnawcnqd6n-0 > li:before {
  content: "" counter(lst-ctn-kix_mtnawcnqd6n-0, decimal) ". "; }

.terms-of-use .lst-kix_be94xss4lbxh-8 > li {
  counter-increment: lst-ctn-kix_be94xss4lbxh-8; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-1.start {
  counter-reset: lst-ctn-kix_vltjg6tv64ze-1 0; }

.terms-of-use .lst-kix_xpze7a8jk05n-5 > li:before {
  content: "2." counter(lst-ctn-kix_xpze7a8jk05n-5, decimal) ". "; }

.terms-of-use .lst-kix_hy09gnjdhf12-5 > li:before {
  content: "" counter(lst-ctn-kix_hy09gnjdhf12-0, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-1, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-2, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-3, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-4, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-5, decimal) ". "; }

.terms-of-use .lst-kix_22pop9qa6xgz-5 > li {
  counter-increment: lst-ctn-kix_22pop9qa6xgz-5; }

.terms-of-use .lst-kix_ca703es297vb-6 > li:before {
  content: "" counter(lst-ctn-kix_ca703es297vb-0, decimal) "." counter(lst-ctn-kix_ca703es297vb-1, decimal) "." counter(lst-ctn-kix_ca703es297vb-2, decimal) "." counter(lst-ctn-kix_ca703es297vb-3, decimal) "." counter(lst-ctn-kix_ca703es297vb-4, decimal) "." counter(lst-ctn-kix_ca703es297vb-5, decimal) "." counter(lst-ctn-kix_ca703es297vb-6, decimal) ". "; }

.terms-of-use .lst-kix_5qie7zg80jlv-0 > li:before {
  content: "29." counter(lst-ctn-kix_5qie7zg80jlv-0, decimal) ". "; }

.terms-of-use .lst-kix_pbzo2n87xzpj-1 > li:before {
  content: "" counter(lst-ctn-kix_pbzo2n87xzpj-0, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-1, decimal) ". "; }

.terms-of-use .lst-kix_be94xss4lbxh-0 > li:before {
  content: "6." counter(lst-ctn-kix_be94xss4lbxh-0, decimal) ". "; }

.terms-of-use .lst-kix_ejqx2zz7tdan-8 > li:before {
  content: "" counter(lst-ctn-kix_ejqx2zz7tdan-0, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-1, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-2, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-3, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-4, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-5, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-6, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-7, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-8, decimal) ". "; }

.terms-of-use .lst-kix_2mckoz4hri27-2 > li:before {
  content: "" counter(lst-ctn-kix_2mckoz4hri27-0, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-1, decimal) "." counter(lst-ctn-kix_2mckoz4hri27-2, decimal) ". "; }

.terms-of-use .lst-kix_pbzo2n87xzpj-5 > li:before {
  content: "" counter(lst-ctn-kix_pbzo2n87xzpj-0, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-1, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-2, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-3, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-4, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-5, decimal) ". "; }

.terms-of-use .lst-kix_dnra8vwir8mr-8 > li {
  counter-increment: lst-ctn-kix_dnra8vwir8mr-8; }

.terms-of-use .lst-kix_tul2fovx6tmm-4 > li {
  counter-increment: lst-ctn-kix_tul2fovx6tmm-4; }

.terms-of-use .lst-kix_jc81tp6on6t7-7 > li {
  counter-increment: lst-ctn-kix_jc81tp6on6t7-7; }

.terms-of-use ol.lst-kix_8ni4xzorapao-4.start {
  counter-reset: lst-ctn-kix_8ni4xzorapao-4 0; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_wnmij0cmzu07-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_pbzo2n87xzpj-5 > li {
  counter-increment: lst-ctn-kix_pbzo2n87xzpj-5; }

.terms-of-use ol.lst-kix_vltjg6tv64ze-2.start {
  counter-reset: lst-ctn-kix_vltjg6tv64ze-2 0; }

.terms-of-use ol.lst-kix_jb80qd27i5ho-0.start {
  counter-reset: lst-ctn-kix_jb80qd27i5ho-0 0; }

.terms-of-use .lst-kix_dpn3kl14kxj0-4 > li:before {
  content: "" counter(lst-ctn-kix_dpn3kl14kxj0-4, lower-latin) ". "; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-1.start {
  counter-reset: lst-ctn-kix_rvhnci86jkmr-1 0; }

.terms-of-use .lst-kix_ozm68jv0adg5-2 > li:before {
  content: "" counter(lst-ctn-kix_ozm68jv0adg5-2, lower-roman) ". "; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-5.start {
  counter-reset: lst-ctn-kix_tul2fovx6tmm-5 0; }

.terms-of-use .lst-kix_kj86jt9svxha-6 > li:before {
  content: "" counter(lst-ctn-kix_kj86jt9svxha-0, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-1, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-2, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-3, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-4, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-5, decimal) "." counter(lst-ctn-kix_kj86jt9svxha-6, decimal) ". "; }

.terms-of-use .lst-kix_7k9yp1bgytlo-7 > li {
  counter-increment: lst-ctn-kix_7k9yp1bgytlo-7; }

.terms-of-use ol.lst-kix_yhc1v6iazz4p-3.start {
  counter-reset: lst-ctn-kix_yhc1v6iazz4p-3 0; }

.terms-of-use .lst-kix_ozm68jv0adg5-7 > li {
  counter-increment: lst-ctn-kix_ozm68jv0adg5-7; }

.terms-of-use .lst-kix_j7eouqgowf9f-3 > li {
  counter-increment: lst-ctn-kix_j7eouqgowf9f-3; }

.terms-of-use ol.lst-kix_8ni4xzorapao-3.start {
  counter-reset: lst-ctn-kix_8ni4xzorapao-3 0; }

.terms-of-use .lst-kix_pbzo2n87xzpj-8 > li:before {
  content: "" counter(lst-ctn-kix_pbzo2n87xzpj-0, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-1, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-2, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-3, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-4, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-5, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-6, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-7, decimal) "." counter(lst-ctn-kix_pbzo2n87xzpj-8, decimal) ". "; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-8.start {
  counter-reset: lst-ctn-kix_4uj4b9kmbxlp-8 0; }

.terms-of-use .lst-kix_gijfqhf5xkva-0 > li {
  counter-increment: lst-ctn-kix_gijfqhf5xkva-0; }

.terms-of-use .lst-kix_1099weaqanok-4 > li:before {
  content: "" counter(lst-ctn-kix_1099weaqanok-0, decimal) "." counter(lst-ctn-kix_1099weaqanok-1, decimal) "." counter(lst-ctn-kix_1099weaqanok-2, decimal) "." counter(lst-ctn-kix_1099weaqanok-3, decimal) "." counter(lst-ctn-kix_1099weaqanok-4, decimal) ". "; }

.terms-of-use .lst-kix_wnmij0cmzu07-8 > li:before {
  content: "" counter(lst-ctn-kix_wnmij0cmzu07-0, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-1, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-2, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-3, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-4, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-5, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-6, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-7, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-8, decimal) ". "; }

.terms-of-use .lst-kix_dnra8vwir8mr-0 > li {
  counter-increment: lst-ctn-kix_dnra8vwir8mr-0; }

.terms-of-use .lst-kix_gyvrc19ngq4f-2 > li:before {
  content: "27.1." counter(lst-ctn-kix_gyvrc19ngq4f-2, decimal) ". "; }

.terms-of-use .lst-kix_y75hn1731udi-6 > li:before {
  content: "" counter(lst-ctn-kix_y75hn1731udi-0, decimal) "." counter(lst-ctn-kix_y75hn1731udi-1, decimal) "." counter(lst-ctn-kix_y75hn1731udi-2, decimal) "." counter(lst-ctn-kix_y75hn1731udi-3, decimal) "." counter(lst-ctn-kix_y75hn1731udi-4, decimal) "." counter(lst-ctn-kix_y75hn1731udi-5, decimal) "." counter(lst-ctn-kix_y75hn1731udi-6, decimal) ". "; }

.terms-of-use .lst-kix_wnmij0cmzu07-5 > li:before {
  content: "" counter(lst-ctn-kix_wnmij0cmzu07-0, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-1, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-2, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-3, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-4, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-5, decimal) ". "; }

.terms-of-use .lst-kix_4coayww806d7-6 > li {
  counter-increment: lst-ctn-kix_4coayww806d7-6; }

.terms-of-use .lst-kix_vw3e5pptfgmp-5 > li:before {
  content: "" counter(lst-ctn-kix_vw3e5pptfgmp-0, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-1, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-2, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-3, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-4, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-5, decimal) ". "; }

.terms-of-use .lst-kix_wnmij0cmzu07-2 > li:before {
  content: "" counter(lst-ctn-kix_wnmij0cmzu07-0, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-1, decimal) "." counter(lst-ctn-kix_wnmij0cmzu07-2, decimal) ". "; }

.terms-of-use .lst-kix_y75hn1731udi-3 > li:before {
  content: "" counter(lst-ctn-kix_y75hn1731udi-0, decimal) "." counter(lst-ctn-kix_y75hn1731udi-1, decimal) "." counter(lst-ctn-kix_y75hn1731udi-2, decimal) "." counter(lst-ctn-kix_y75hn1731udi-3, decimal) ". "; }

.terms-of-use .lst-kix_1099weaqanok-1 > li:before {
  content: "" counter(lst-ctn-kix_1099weaqanok-0, decimal) "." counter(lst-ctn-kix_1099weaqanok-1, decimal) ". "; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-0.start {
  counter-reset: lst-ctn-kix_tul2fovx6tmm-0 0; }

.terms-of-use .lst-kix_jmq6s44ocrcf-4 > li {
  counter-increment: lst-ctn-kix_jmq6s44ocrcf-4; }

.terms-of-use .lst-kix_49u30kkokmge-7 > li {
  counter-increment: lst-ctn-kix_49u30kkokmge-7; }

.terms-of-use .lst-kix_lmfaweys7m5f-2 > li {
  counter-increment: lst-ctn-kix_lmfaweys7m5f-2; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-2.start {
  counter-reset: lst-ctn-kix_hxom0vvb70ua-2 0; }

.terms-of-use .lst-kix_8cyb65p92zt8-5 > li {
  counter-increment: lst-ctn-kix_8cyb65p92zt8-5; }

.terms-of-use .lst-kix_1qrhkgrpibm6-1 > li {
  counter-increment: lst-ctn-kix_1qrhkgrpibm6-1; }

.terms-of-use .lst-kix_lmfaweys7m5f-0 > li:before {
  content: "" counter(lst-ctn-kix_lmfaweys7m5f-0, decimal) ". "; }

.terms-of-use ol.lst-kix_ua66ewr564g1-4.start {
  counter-reset: lst-ctn-kix_ua66ewr564g1-4 0; }

.terms-of-use .lst-kix_kj86jt9svxha-0 > li {
  counter-increment: lst-ctn-kix_kj86jt9svxha-0; }

.terms-of-use .lst-kix_7k9yp1bgytlo-2 > li:before {
  content: "" counter(lst-ctn-kix_7k9yp1bgytlo-0, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-1, decimal) "." counter(lst-ctn-kix_7k9yp1bgytlo-2, decimal) ". "; }

.terms-of-use .lst-kix_pbzo2n87xzpj-0 > li {
  counter-increment: lst-ctn-kix_pbzo2n87xzpj-0; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_wvszyx9fl4yt-5 > li:before {
  content: "" counter(lst-ctn-kix_wvszyx9fl4yt-0, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-1, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-2, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-3, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-4, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-5, decimal) ". "; }

.terms-of-use .lst-kix_49u30kkokmge-2 > li:before {
  content: "" counter(lst-ctn-kix_49u30kkokmge-0, decimal) "." counter(lst-ctn-kix_49u30kkokmge-1, decimal) "." counter(lst-ctn-kix_49u30kkokmge-2, decimal) ". "; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_wvszyx9fl4yt-2 > li:before {
  content: "" counter(lst-ctn-kix_wvszyx9fl4yt-0, decimal) "." counter(lst-ctn-kix_4coayww806d7-1, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-2, decimal) ". "; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-1 {
  list-style-type: none; }

.terms-of-use .lst-kix_ua66ewr564g1-6 > li {
  counter-increment: lst-ctn-kix_ua66ewr564g1-6; }

.terms-of-use .lst-kix_otxxhlg4ijs2-4 > li {
  counter-increment: lst-ctn-kix_otxxhlg4ijs2-4; }

.terms-of-use .lst-kix_qdft1q5q38jc-6 > li:before {
  content: "" counter(lst-ctn-kix_qdft1q5q38jc-0, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-1, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-2, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-3, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-4, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-5, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-6, decimal) ". "; }

.terms-of-use .lst-kix_77jp2vv72q2e-8 > li {
  counter-increment: lst-ctn-kix_77jp2vv72q2e-8; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-3.start {
  counter-reset: lst-ctn-kix_4uj4b9kmbxlp-3 0; }

.terms-of-use .lst-kix_jl20g3uk09ea-6 > li {
  counter-increment: lst-ctn-kix_jl20g3uk09ea-6; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ca703es297vb-6.start {
  counter-reset: lst-ctn-kix_ca703es297vb-6 0; }

.terms-of-use ol.lst-kix_1qrhkgrpibm6-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_yzeqjqyr2fys-5 > li {
  counter-increment: lst-ctn-kix_yzeqjqyr2fys-5; }

.terms-of-use .lst-kix_wvszyx9fl4yt-8 > li:before {
  content: "" counter(lst-ctn-kix_wvszyx9fl4yt-0, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-1, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-2, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-3, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-4, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-5, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-6, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-7, decimal) "." counter(lst-ctn-kix_wvszyx9fl4yt-8, decimal) ". "; }

.terms-of-use .lst-kix_86e8u1yx210n-3 > li:before {
  content: "" counter(lst-ctn-kix_86e8u1yx210n-0, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-1, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-2, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-3, decimal) ". "; }

.terms-of-use .lst-kix_5u8mf6guzj36-8 > li:before {
  content: "" counter(lst-ctn-kix_5u8mf6guzj36-0, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-1, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-2, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-3, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-4, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-5, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-6, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-7, decimal) "." counter(lst-ctn-kix_5u8mf6guzj36-8, decimal) ". "; }

.terms-of-use .lst-kix_fxz23k1sp8k0-3 > li {
  counter-increment: lst-ctn-kix_fxz23k1sp8k0-3; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-8.start {
  counter-reset: lst-ctn-kix_rvhnci86jkmr-8 0; }

.terms-of-use .lst-kix_86e8u1yx210n-6 > li {
  counter-increment: lst-ctn-kix_86e8u1yx210n-6; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-7.start {
  counter-reset: lst-ctn-kix_hxom0vvb70ua-7 0; }

.terms-of-use .lst-kix_g892krgm1nrl-4 > li:before {
  content: "" counter(lst-ctn-kix_g892krgm1nrl-0, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-1, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-2, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-3, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-4, decimal) ". "; }

.terms-of-use .lst-kix_b028ztyzvlep-3 > li {
  counter-increment: lst-ctn-kix_b028ztyzvlep-3; }

.terms-of-use ol.lst-kix_4coayww806d7-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_e764bgixpbj9-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4coayww806d7-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_e764bgixpbj9-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4coayww806d7-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_e764bgixpbj9-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4coayww806d7-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_exi6qx2d4uml-5 > li:before {
  content: "" counter(lst-ctn-kix_exi6qx2d4uml-0, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-1, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-2, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-3, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-4, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-5, decimal) ". "; }

.terms-of-use .lst-kix_otxxhlg4ijs2-7 > li {
  counter-increment: lst-ctn-kix_otxxhlg4ijs2-7; }

.terms-of-use ol.lst-kix_e764bgixpbj9-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_r8ii1wx48ejc-4 > li:before {
  content: "" counter(lst-ctn-kix_r8ii1wx48ejc-0, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-1, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-2, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-3, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-4, decimal) ". "; }

.terms-of-use ol.lst-kix_e764bgixpbj9-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4coayww806d7-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_e764bgixpbj9-4 {
  list-style-type: none; }

.terms-of-use .lst-kix_yzeqjqyr2fys-4 > li:before {
  content: "" counter(lst-ctn-kix_yzeqjqyr2fys-0, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-1, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-2, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-3, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-4, decimal) ". "; }

.terms-of-use ol.lst-kix_4coayww806d7-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_e764bgixpbj9-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_qdft1q5q38jc-3 > li:before {
  content: "" counter(lst-ctn-kix_qdft1q5q38jc-0, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-1, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-2, decimal) "." counter(lst-ctn-kix_qdft1q5q38jc-3, decimal) ". "; }

.terms-of-use .lst-kix_rdktnl6coqgw-8 > li:before {
  content: "" counter(lst-ctn-kix_rdktnl6coqgw-0, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-1, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-2, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-3, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-4, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-5, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-6, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-7, decimal) "." counter(lst-ctn-kix_rdktnl6coqgw-8, decimal) ". "; }

.terms-of-use .lst-kix_qdft1q5q38jc-0 > li {
  counter-increment: lst-ctn-kix_qdft1q5q38jc-0; }

.terms-of-use ol.lst-kix_4coayww806d7-6 {
  list-style-type: none; }

.terms-of-use .lst-kix_kj86jt9svxha-3 > li {
  counter-increment: lst-ctn-kix_kj86jt9svxha-3; }

.terms-of-use .lst-kix_1qrhkgrpibm6-4 > li {
  counter-increment: lst-ctn-kix_1qrhkgrpibm6-4; }

.terms-of-use ol.lst-kix_4coayww806d7-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4coayww806d7-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_4coayww806d7-1 > li:before {
  content: "17." counter(lst-ctn-kix_4coayww806d7-1, decimal) ". "; }

.terms-of-use ol.lst-kix_ua66ewr564g1-2.start {
  counter-reset: lst-ctn-kix_ua66ewr564g1-2 0; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-3.start {
  counter-reset: lst-ctn-kix_5qie7zg80jlv-3 0; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-1.start {
  counter-reset: lst-ctn-kix_4uj4b9kmbxlp-1 0; }

.terms-of-use .lst-kix_x2xllzoa2aed-8 > li:before {
  content: "" counter(lst-ctn-kix_x2xllzoa2aed-8, lower-roman) ". "; }

.terms-of-use .lst-kix_4coayww806d7-7 > li:before {
  content: "" counter(lst-ctn-kix_4coayww806d7-0, decimal) "." counter(lst-ctn-kix_4coayww806d7-1, decimal) "." counter(lst-ctn-kix_4coayww806d7-2, decimal) "." counter(lst-ctn-kix_4coayww806d7-3, decimal) "." counter(lst-ctn-kix_4coayww806d7-4, decimal) "." counter(lst-ctn-kix_4coayww806d7-5, decimal) "." counter(lst-ctn-kix_4coayww806d7-6, decimal) "." counter(lst-ctn-kix_4coayww806d7-7, decimal) ". "; }

.terms-of-use .lst-kix_jc81tp6on6t7-3 > li:before {
  content: "" counter(lst-ctn-kix_jc81tp6on6t7-0, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-1, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-2, decimal) "." counter(lst-ctn-kix_jc81tp6on6t7-3, decimal) ". "; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-5.start {
  counter-reset: lst-ctn-kix_jl20g3uk09ea-5 0; }

.terms-of-use .lst-kix_x2xllzoa2aed-2 > li:before {
  content: "" counter(lst-ctn-kix_x2xllzoa2aed-2, lower-roman) ". "; }

.terms-of-use .lst-kix_ejqx2zz7tdan-1 > li:before {
  content: "" counter(lst-ctn-kix_ejqx2zz7tdan-0, decimal) "." counter(lst-ctn-kix_ejqx2zz7tdan-1, decimal) ". "; }

.terms-of-use .lst-kix_lkj44s1va27m-4 > li {
  counter-increment: lst-ctn-kix_lkj44s1va27m-4; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-4.start {
  counter-reset: lst-ctn-kix_hxom0vvb70ua-4 0; }

.terms-of-use .lst-kix_8ni4xzorapao-5 > li:before {
  content: "2." counter(lst-ctn-kix_8ni4xzorapao-5, decimal) ". "; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-3.start {
  counter-reset: lst-ctn-kix_tul2fovx6tmm-3 0; }

.terms-of-use .lst-kix_jmq6s44ocrcf-7 > li {
  counter-increment: lst-ctn-kix_jmq6s44ocrcf-7; }

.terms-of-use .lst-kix_jmq6s44ocrcf-0 > li:before {
  content: "20." counter(lst-ctn-kix_jmq6s44ocrcf-0, decimal) ". "; }

.terms-of-use ol.lst-kix_1099weaqanok-0.start {
  counter-reset: lst-ctn-kix_1099weaqanok-0 8; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-4.start {
  counter-reset: lst-ctn-kix_yzeqjqyr2fys-4 0; }

.terms-of-use .lst-kix_fxz23k1sp8k0-7 > li:before {
  content: "" counter(lst-ctn-kix_fxz23k1sp8k0-0, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-1, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-2, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-3, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-4, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-5, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-6, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-7, decimal) ". "; }

.terms-of-use .lst-kix_xpze7a8jk05n-8 > li:before {
  content: "2." counter(lst-ctn-kix_xpze7a8jk05n-8, decimal) ". "; }

.terms-of-use .lst-kix_jb80qd27i5ho-1 > li {
  counter-increment: lst-ctn-kix_jb80qd27i5ho-1; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-7.start {
  counter-reset: lst-ctn-kix_r8ii1wx48ejc-7 0; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-6.start {
  counter-reset: lst-ctn-kix_rvhnci86jkmr-6 0; }

.terms-of-use .lst-kix_hy09gnjdhf12-8 > li:before {
  content: "" counter(lst-ctn-kix_hy09gnjdhf12-0, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-1, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-2, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-3, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-4, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-5, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-6, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-7, decimal) "." counter(lst-ctn-kix_hy09gnjdhf12-8, decimal) ". "; }

.terms-of-use .lst-kix_vw3e5pptfgmp-8 > li:before {
  content: "" counter(lst-ctn-kix_vw3e5pptfgmp-0, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-1, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-2, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-3, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-4, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-5, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-6, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-7, decimal) "." counter(lst-ctn-kix_vw3e5pptfgmp-8, decimal) ". "; }

.terms-of-use .lst-kix_e764bgixpbj9-2 > li:before {
  content: "" counter(lst-ctn-kix_e764bgixpbj9-0, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-1, decimal) "." counter(lst-ctn-kix_e764bgixpbj9-2, decimal) ". "; }

.terms-of-use .lst-kix_vltjg6tv64ze-7 > li {
  counter-increment: lst-ctn-kix_vltjg6tv64ze-7; }

.terms-of-use ol.lst-kix_ca703es297vb-8.start {
  counter-reset: lst-ctn-kix_ca703es297vb-8 0; }

.terms-of-use ol.lst-kix_j9lwa1xo9iwq-8.start {
  counter-reset: lst-ctn-kix_j9lwa1xo9iwq-8 0; }

.terms-of-use .lst-kix_4uj4b9kmbxlp-7 > li {
  counter-increment: lst-ctn-kix_4uj4b9kmbxlp-7; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_gyvrc19ngq4f-5 > li:before {
  content: "" counter(lst-ctn-kix_gyvrc19ngq4f-0, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-1, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-2, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-3, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-4, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-5, decimal) ". "; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_5u8mf6guzj36-5 > li {
  counter-increment: lst-ctn-kix_5u8mf6guzj36-5; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-2 {
  list-style-type: none; }

.terms-of-use .lst-kix_hxom0vvb70ua-1 > li {
  counter-increment: lst-ctn-kix_hxom0vvb70ua-1; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_exi6qx2d4uml-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_5qie7zg80jlv-3 > li:before {
  content: "" counter(lst-ctn-kix_5qie7zg80jlv-0, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-1, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-2, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-3, decimal) ". "; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-2.start {
  counter-reset: lst-ctn-kix_yzeqjqyr2fys-2 0; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-2.start {
  counter-reset: lst-ctn-kix_tul2fovx6tmm-2 0; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-5.start {
  counter-reset: lst-ctn-kix_5qie7zg80jlv-5 0; }

.terms-of-use .lst-kix_tul2fovx6tmm-1 > li {
  counter-increment: lst-ctn-kix_tul2fovx6tmm-1; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-3.start {
  counter-reset: lst-ctn-kix_jl20g3uk09ea-3 0; }

.terms-of-use .lst-kix_yndlr6f5dtu-3 > li:before {
  content: "18.1.2." counter(lst-ctn-kix_yndlr6f5dtu-3, decimal) " "; }

.terms-of-use .lst-kix_fxz23k1sp8k0-1 > li:before {
  content: "4.1." counter(lst-ctn-kix_fxz23k1sp8k0-1, decimal) ". "; }

.terms-of-use .lst-kix_pbzo2n87xzpj-8 > li {
  counter-increment: lst-ctn-kix_pbzo2n87xzpj-8; }

.terms-of-use .lst-kix_2mckoz4hri27-1 > li {
  counter-increment: lst-ctn-kix_2mckoz4hri27-1; }

.terms-of-use .lst-kix_qtyjlfd1csih-4 > li:before {
  content: "" counter(lst-ctn-kix_qtyjlfd1csih-4, lower-latin) ". "; }

.terms-of-use .lst-kix_8cyb65p92zt8-2 > li {
  counter-increment: lst-ctn-kix_8cyb65p92zt8-2; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-6.start {
  counter-reset: lst-ctn-kix_jl20g3uk09ea-6 0; }

.terms-of-use .lst-kix_rvhnci86jkmr-1 > li:before {
  content: "" counter(lst-ctn-kix_rvhnci86jkmr-0, decimal) "." counter(lst-ctn-kix_rvhnci86jkmr-1, decimal) " "; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-8 > li {
  counter-increment: lst-ctn-kix_f3v1vtgjdx5m-8; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_1mqm6fdbjf9d-1 > li:before {
  content: "" counter(lst-ctn-kix_1mqm6fdbjf9d-0, decimal) "." counter(lst-ctn-kix_1mqm6fdbjf9d-1, decimal) ". "; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_ua66ewr564g1-6.start {
  counter-reset: lst-ctn-kix_ua66ewr564g1-6 0; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-6.start {
  counter-reset: lst-ctn-kix_yzeqjqyr2fys-6 0; }

.terms-of-use ol.lst-kix_ca703es297vb-3.start {
  counter-reset: lst-ctn-kix_ca703es297vb-3 0; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_jmq6s44ocrcf-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-5.start {
  counter-reset: lst-ctn-kix_4uj4b9kmbxlp-5 0; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-8 > li:before {
  content: "" counter(lst-ctn-kix_f3v1vtgjdx5m-0, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-1, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-2, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-3, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-4, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-5, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-6, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-7, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-8, decimal) ". "; }

.terms-of-use .lst-kix_hxom0vvb70ua-4 > li {
  counter-increment: lst-ctn-kix_hxom0vvb70ua-4; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-0.start {
  counter-reset: lst-ctn-kix_hxom0vvb70ua-0 0; }

.terms-of-use .lst-kix_f3v1vtgjdx5m-5 > li:before {
  content: "" counter(lst-ctn-kix_f3v1vtgjdx5m-0, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-1, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-2, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-3, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-4, decimal) "." counter(lst-ctn-kix_f3v1vtgjdx5m-5, decimal) ". "; }

.terms-of-use .lst-kix_2oqtqd6s45kj-0 > li:before {
  content: "" counter(lst-ctn-kix_2oqtqd6s45kj-0, decimal) ". "; }

.terms-of-use .lst-kix_4dasw5gw6627-2 > li:before {
  content: "" counter(lst-ctn-kix_4dasw5gw6627-0, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-1, decimal) "." counter(lst-ctn-kix_4dasw5gw6627-2, decimal) ". "; }

.terms-of-use ol.lst-kix_1099weaqanok-7.start {
  counter-reset: lst-ctn-kix_1099weaqanok-7 0; }

.terms-of-use .lst-kix_jmq6s44ocrcf-1 > li {
  counter-increment: lst-ctn-kix_jmq6s44ocrcf-1; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-4.start {
  counter-reset: lst-ctn-kix_rvhnci86jkmr-4 0; }

.terms-of-use .lst-kix_4dasw5gw6627-1 > li {
  counter-increment: lst-ctn-kix_4dasw5gw6627-1; }

.terms-of-use .lst-kix_rdktnl6coqgw-2 > li {
  counter-increment: lst-ctn-kix_rdktnl6coqgw-2; }

.terms-of-use .lst-kix_lmfaweys7m5f-5 > li {
  counter-increment: lst-ctn-kix_lmfaweys7m5f-5; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-7.start {
  counter-reset: lst-ctn-kix_5qie7zg80jlv-7 0; }

.terms-of-use .lst-kix_ua66ewr564g1-3 > li:before {
  content: "" counter(lst-ctn-kix_ua66ewr564g1-0, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-1, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-2, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-3, decimal) ". "; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-0.start {
  counter-reset: lst-ctn-kix_r8ii1wx48ejc-0 34; }

.terms-of-use ol.lst-kix_1099weaqanok-8.start {
  counter-reset: lst-ctn-kix_1099weaqanok-8 0; }

.terms-of-use .lst-kix_jl20g3uk09ea-0 > li {
  counter-increment: lst-ctn-kix_jl20g3uk09ea-0; }

.terms-of-use .lst-kix_jl20g3uk09ea-7 > li:before {
  content: "2." counter(lst-ctn-kix_jl20g3uk09ea-7, decimal) ". "; }

.terms-of-use ol.lst-kix_1099weaqanok-1.start {
  counter-reset: lst-ctn-kix_1099weaqanok-1 0; }

.terms-of-use .lst-kix_b028ztyzvlep-6 > li {
  counter-increment: lst-ctn-kix_b028ztyzvlep-6; }

.terms-of-use .lst-kix_86e8u1yx210n-3 > li {
  counter-increment: lst-ctn-kix_86e8u1yx210n-3; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-3.start {
  counter-reset: lst-ctn-kix_rvhnci86jkmr-3 0; }

.terms-of-use .lst-kix_j7eouqgowf9f-0 > li {
  counter-increment: lst-ctn-kix_j7eouqgowf9f-0; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-4.start {
  counter-reset: lst-ctn-kix_4uj4b9kmbxlp-4 0; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-5.start {
  counter-reset: lst-ctn-kix_yzeqjqyr2fys-5 0; }

.terms-of-use .lst-kix_wvszyx9fl4yt-5 > li {
  counter-increment: lst-ctn-kix_wvszyx9fl4yt-5; }

.terms-of-use .lst-kix_b028ztyzvlep-2 > li:before {
  content: "" counter(lst-ctn-kix_b028ztyzvlep-0, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-1, decimal) "." counter(lst-ctn-kix_b028ztyzvlep-2, decimal) ". "; }

.terms-of-use .lst-kix_qv09rytsrgyh-1 > li {
  counter-increment: lst-ctn-kix_qv09rytsrgyh-1; }

.terms-of-use ol.lst-kix_5qie7zg80jlv-8.start {
  counter-reset: lst-ctn-kix_5qie7zg80jlv-8 0; }

.terms-of-use .lst-kix_tul2fovx6tmm-3 > li:before {
  content: "" counter(lst-ctn-kix_tul2fovx6tmm-0, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-1, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-2, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-3, decimal) ". "; }

.terms-of-use .lst-kix_wnmij0cmzu07-4 > li {
  counter-increment: lst-ctn-kix_wnmij0cmzu07-4; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-7.start {
  counter-reset: lst-ctn-kix_jl20g3uk09ea-7 0; }

.terms-of-use .lst-kix_5qie7zg80jlv-7 > li {
  counter-increment: lst-ctn-kix_5qie7zg80jlv-7; }

.terms-of-use .lst-kix_ua66ewr564g1-3 > li {
  counter-increment: lst-ctn-kix_ua66ewr564g1-3; }

.terms-of-use ol.lst-kix_e764bgixpbj9-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_tul2fovx6tmm-6 > li:before {
  content: "" counter(lst-ctn-kix_tul2fovx6tmm-0, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-1, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-2, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-3, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-4, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-5, decimal) "." counter(lst-ctn-kix_tul2fovx6tmm-6, decimal) ". "; }

.terms-of-use ol.lst-kix_e764bgixpbj9-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1099weaqanok-2.start {
  counter-reset: lst-ctn-kix_1099weaqanok-2 0; }

.terms-of-use .lst-kix_ca703es297vb-3 > li {
  counter-increment: lst-ctn-kix_ca703es297vb-3; }

.terms-of-use .lst-kix_1099weaqanok-6 > li {
  counter-increment: lst-ctn-kix_1099weaqanok-6; }

.terms-of-use .lst-kix_yzeqjqyr2fys-7 > li:before {
  content: "" counter(lst-ctn-kix_yzeqjqyr2fys-0, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-1, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-2, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-3, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-4, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-5, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-6, decimal) "." counter(lst-ctn-kix_yzeqjqyr2fys-7, decimal) ". "; }

.terms-of-use .lst-kix_77jp2vv72q2e-5 > li {
  counter-increment: lst-ctn-kix_77jp2vv72q2e-5; }

.terms-of-use .lst-kix_yzeqjqyr2fys-2 > li {
  counter-increment: lst-ctn-kix_yzeqjqyr2fys-2; }

.terms-of-use .lst-kix_ejqx2zz7tdan-6 > li {
  counter-increment: lst-ctn-kix_ejqx2zz7tdan-6; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-5.start {
  counter-reset: lst-ctn-kix_r8ii1wx48ejc-5 0; }

.terms-of-use .lst-kix_jl20g3uk09ea-3 > li {
  counter-increment: lst-ctn-kix_jl20g3uk09ea-3; }

.terms-of-use .lst-kix_ua66ewr564g1-6 > li:before {
  content: "" counter(lst-ctn-kix_ua66ewr564g1-0, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-1, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-2, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-3, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-4, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-5, decimal) "." counter(lst-ctn-kix_ua66ewr564g1-6, decimal) ". "; }

.terms-of-use .lst-kix_dpn3kl14kxj0-7 > li {
  counter-increment: lst-ctn-kix_dpn3kl14kxj0-7; }

.terms-of-use .lst-kix_2oqtqd6s45kj-2 > li {
  counter-increment: lst-ctn-kix_2oqtqd6s45kj-2; }

.terms-of-use .lst-kix_qv09rytsrgyh-0 > li:before {
  content: "3." counter(lst-ctn-kix_qv09rytsrgyh-0, decimal) ". "; }

.terms-of-use ol.lst-kix_1099weaqanok-6.start {
  counter-reset: lst-ctn-kix_1099weaqanok-6 0; }

.terms-of-use .lst-kix_qtyjlfd1csih-7 > li:before {
  content: "" counter(lst-ctn-kix_qtyjlfd1csih-7, lower-latin) ". "; }

.terms-of-use .lst-kix_77jp2vv72q2e-1 > li:before {
  content: "25.1." counter(lst-ctn-kix_77jp2vv72q2e-1, decimal) ". "; }

.terms-of-use .lst-kix_be94xss4lbxh-6 > li:before {
  content: "" counter(lst-ctn-kix_be94xss4lbxh-0, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-1, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-2, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-3, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-4, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-5, decimal) "." counter(lst-ctn-kix_be94xss4lbxh-6, decimal) ". "; }

.terms-of-use .lst-kix_g892krgm1nrl-7 > li:before {
  content: "" counter(lst-ctn-kix_g892krgm1nrl-0, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-1, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-2, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-3, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-4, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-5, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-6, decimal) "." counter(lst-ctn-kix_g892krgm1nrl-7, decimal) ". "; }

.terms-of-use .lst-kix_hy09gnjdhf12-0 > li {
  counter-increment: lst-ctn-kix_hy09gnjdhf12-0; }

.terms-of-use .lst-kix_r8ii1wx48ejc-7 > li:before {
  content: "" counter(lst-ctn-kix_r8ii1wx48ejc-0, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-1, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-2, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-3, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-4, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-5, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-6, decimal) "." counter(lst-ctn-kix_r8ii1wx48ejc-7, decimal) ". "; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-1.start {
  counter-reset: lst-ctn-kix_r8ii1wx48ejc-1 0; }

.terms-of-use ol.lst-kix_hxom0vvb70ua-1.start {
  counter-reset: lst-ctn-kix_hxom0vvb70ua-1 0; }

.terms-of-use .lst-kix_gyvrc19ngq4f-7 > li {
  counter-increment: lst-ctn-kix_gyvrc19ngq4f-7; }

.terms-of-use .lst-kix_jc81tp6on6t7-0 > li:before {
  content: "34." counter(lst-ctn-kix_jc81tp6on6t7-0, decimal) ". "; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-7.start {
  counter-reset: lst-ctn-kix_yzeqjqyr2fys-7 0; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-6.start {
  counter-reset: lst-ctn-kix_tul2fovx6tmm-6 0; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-4.start {
  counter-reset: lst-ctn-kix_r8ii1wx48ejc-4 0; }

.terms-of-use .lst-kix_lkj44s1va27m-7 > li {
  counter-increment: lst-ctn-kix_lkj44s1va27m-7; }

.terms-of-use .lst-kix_8ni4xzorapao-2 > li:before {
  content: "2." counter(lst-ctn-kix_8ni4xzorapao-2, decimal) ". "; }

.terms-of-use ol.lst-kix_ca703es297vb-4.start {
  counter-reset: lst-ctn-kix_ca703es297vb-4 0; }

.terms-of-use .lst-kix_yndlr6f5dtu-8 > li {
  counter-increment: lst-ctn-kix_yndlr6f5dtu-8; }

.terms-of-use ol.lst-kix_ua66ewr564g1-5.start {
  counter-reset: lst-ctn-kix_ua66ewr564g1-5 0; }

.terms-of-use ol.lst-kix_1099weaqanok-3.start {
  counter-reset: lst-ctn-kix_1099weaqanok-3 0; }

.terms-of-use .lst-kix_exi6qx2d4uml-8 > li:before {
  content: "" counter(lst-ctn-kix_exi6qx2d4uml-0, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-1, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-2, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-3, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-4, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-5, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-6, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-7, decimal) "." counter(lst-ctn-kix_exi6qx2d4uml-8, decimal) ". "; }

.terms-of-use ol.lst-kix_jl20g3uk09ea-8.start {
  counter-reset: lst-ctn-kix_jl20g3uk09ea-8 0; }

.terms-of-use .lst-kix_86e8u1yx210n-6 > li:before {
  content: "" counter(lst-ctn-kix_86e8u1yx210n-0, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-1, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-2, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-3, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-4, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-5, decimal) "." counter(lst-ctn-kix_86e8u1yx210n-6, decimal) ". "; }

.terms-of-use .lst-kix_x2xllzoa2aed-5 > li:before {
  content: "" counter(lst-ctn-kix_x2xllzoa2aed-5, lower-roman) ". "; }

.terms-of-use .lst-kix_4coayww806d7-4 > li:before {
  content: "" counter(lst-ctn-kix_4coayww806d7-0, decimal) "." counter(lst-ctn-kix_4coayww806d7-1, decimal) "." counter(lst-ctn-kix_4coayww806d7-2, decimal) "." counter(lst-ctn-kix_4coayww806d7-3, decimal) "." counter(lst-ctn-kix_4coayww806d7-4, decimal) ". "; }

.terms-of-use ol.lst-kix_ua66ewr564g1-8.start {
  counter-reset: lst-ctn-kix_ua66ewr564g1-8 0; }

.terms-of-use .lst-kix_fxz23k1sp8k0-6 > li {
  counter-increment: lst-ctn-kix_fxz23k1sp8k0-6; }

.terms-of-use ol.lst-kix_ca703es297vb-1.start {
  counter-reset: lst-ctn-kix_ca703es297vb-1 0; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-7.start {
  counter-reset: lst-ctn-kix_4uj4b9kmbxlp-7 0; }

.terms-of-use .lst-kix_yndlr6f5dtu-6 > li:before {
  content: "" counter(lst-ctn-kix_yndlr6f5dtu-0, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-1, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-2, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-3, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-4, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-5, decimal) "." counter(lst-ctn-kix_yndlr6f5dtu-6, decimal) ". "; }

.terms-of-use .lst-kix_fxz23k1sp8k0-4 > li:before {
  content: "" counter(lst-ctn-kix_fxz23k1sp8k0-0, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-1, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-2, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-3, decimal) "." counter(lst-ctn-kix_fxz23k1sp8k0-4, decimal) ". "; }

.terms-of-use ol.lst-kix_b028ztyzvlep-7 {
  list-style-type: none; }

.terms-of-use .lst-kix_ca703es297vb-0 > li:before {
  content: "6." counter(lst-ctn-kix_ca703es297vb-0, decimal) " "; }

.terms-of-use ol.lst-kix_b028ztyzvlep-8 {
  list-style-type: none; }

.terms-of-use .lst-kix_ozm68jv0adg5-4 > li {
  counter-increment: lst-ctn-kix_ozm68jv0adg5-4; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-7.start {
  counter-reset: lst-ctn-kix_tul2fovx6tmm-7 0; }

.terms-of-use .lst-kix_7k9yp1bgytlo-4 > li {
  counter-increment: lst-ctn-kix_7k9yp1bgytlo-4; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1099weaqanok-4.start {
  counter-reset: lst-ctn-kix_1099weaqanok-4 0; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-5 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-3.start {
  counter-reset: lst-ctn-kix_r8ii1wx48ejc-3 0; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-8 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-7 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_b028ztyzvlep-5 {
  list-style-type: none; }

.terms-of-use .lst-kix_8ni4xzorapao-7 > li {
  counter-increment: lst-ctn-kix_8ni4xzorapao-7; }

.terms-of-use ol.lst-kix_b028ztyzvlep-6 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_b028ztyzvlep-3 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_b028ztyzvlep-4 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_b028ztyzvlep-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_yzeqjqyr2fys-8.start {
  counter-reset: lst-ctn-kix_yzeqjqyr2fys-8 0; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-0 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_rvhnci86jkmr-0.start {
  counter-reset: lst-ctn-kix_rvhnci86jkmr-0 0; }

.terms-of-use ol.lst-kix_b028ztyzvlep-2 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_1mqm6fdbjf9d-1 {
  list-style-type: none; }

.terms-of-use ol.lst-kix_b028ztyzvlep-0 {
  list-style-type: none; }

.terms-of-use .lst-kix_r8ii1wx48ejc-2 > li {
  counter-increment: lst-ctn-kix_r8ii1wx48ejc-2; }

.terms-of-use ol.lst-kix_ua66ewr564g1-7.start {
  counter-reset: lst-ctn-kix_ua66ewr564g1-7 0; }

.terms-of-use .lst-kix_gyvrc19ngq4f-8 > li:before {
  content: "" counter(lst-ctn-kix_gyvrc19ngq4f-0, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-1, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-2, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-3, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-4, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-5, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-6, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-7, decimal) "." counter(lst-ctn-kix_gyvrc19ngq4f-8, decimal) ". "; }

.terms-of-use .lst-kix_5u8mf6guzj36-2 > li {
  counter-increment: lst-ctn-kix_5u8mf6guzj36-2; }

.terms-of-use .lst-kix_j9lwa1xo9iwq-7 > li:before {
  content: "" counter(lst-ctn-kix_j9lwa1xo9iwq-0, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-1, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-2, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-3, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-4, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-5, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-6, decimal) "." counter(lst-ctn-kix_j9lwa1xo9iwq-7, decimal) ". "; }

.terms-of-use ol.lst-kix_ca703es297vb-2.start {
  counter-reset: lst-ctn-kix_ca703es297vb-2 0; }

.terms-of-use .lst-kix_feuxo8rhdbt0-3 > li:before {
  content: "" counter(lst-ctn-kix_feuxo8rhdbt0-3, decimal) ". "; }

.terms-of-use .lst-kix_5qie7zg80jlv-6 > li:before {
  content: "" counter(lst-ctn-kix_5qie7zg80jlv-0, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-1, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-2, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-3, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-4, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-5, decimal) "." counter(lst-ctn-kix_5qie7zg80jlv-6, decimal) ". "; }

.terms-of-use .lst-kix_2mckoz4hri27-4 > li {
  counter-increment: lst-ctn-kix_2mckoz4hri27-4; }

.terms-of-use ol.lst-kix_tul2fovx6tmm-8.start {
  counter-reset: lst-ctn-kix_tul2fovx6tmm-8 0; }

.terms-of-use ol.lst-kix_1099weaqanok-5.start {
  counter-reset: lst-ctn-kix_1099weaqanok-5 0; }

.terms-of-use ol.lst-kix_r8ii1wx48ejc-2.start {
  counter-reset: lst-ctn-kix_r8ii1wx48ejc-2 0; }

.terms-of-use ol.lst-kix_4uj4b9kmbxlp-6.start {
  counter-reset: lst-ctn-kix_4uj4b9kmbxlp-6 0; }

.terms-of-use ol {
  margin: 0;
  padding: 0; }

.terms-of-use table td,
.terms-of-use table th {
  padding: 0; }

.terms-of-use .c11 {
  margin-left: 32.2pt;
  padding-top: 6pt;
  padding-left: 3.8pt;
  padding-bottom: 6pt;
  line-height: 1.0;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c30 {
  margin-left: 82.5pt;
  padding-top: 6pt;
  padding-left: -10.5pt;
  padding-bottom: 6pt;
  line-height: 1.0;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c19 {
  margin-left: 82.5pt;
  padding-top: 6pt;
  padding-left: -11.2pt;
  padding-bottom: 6pt;
  line-height: 1.0;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c9 {
  margin-left: 82.5pt;
  padding-top: 6pt;
  padding-left: -4.5pt;
  padding-bottom: 6pt;
  line-height: 1.0;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c5 {
  margin-left: 75pt;
  padding-top: 6pt;
  padding-left: -3.8pt;
  padding-bottom: 6pt;
  line-height: 1.0;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c20 {
  margin-left: 25.5pt;
  padding-top: 6pt;
  padding-left: 10.5pt;
  padding-bottom: 6pt;
  line-height: 1.0;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c13 {
  margin-left: 124.5pt;
  padding-top: 6pt;
  padding-left: -10.5pt;
  padding-bottom: 6pt;
  line-height: 1.0;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c21 {
  margin-left: 81.8pt;
  padding-top: 0pt;
  padding-left: -3.8pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c12 {
  margin-left: 82.5pt;
  padding-top: 0pt;
  padding-left: -10.5pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c6 {
  margin-left: 25.5pt;
  padding-top: 0pt;
  padding-left: 10.5pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c17 {
  margin-left: 74.6pt;
  padding-top: 0pt;
  padding-left: -2.6pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c3 {
  margin-left: 32.2pt;
  padding-top: 0pt;
  padding-left: 3.8pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c18 {
  margin-left: 82.5pt;
  padding-top: 0pt;
  padding-left: -4.5pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c14 {
  margin-left: 36pt;
  padding-top: 0pt;
  padding-left: 0pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c22 {
  margin-left: 132pt;
  padding-top: 0pt;
  padding-left: -11.2pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c2 {
  font-weight: 400;
  text-decoration: none;
  vertical-align: baseline;
  font-size: 8pt;
  font-style: normal; }

.terms-of-use .c34 {
  padding-top: 0pt;
  padding-bottom: 0pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: right;
  height: 11pt; }

.terms-of-use .c8 {
  margin-left: 72pt;
  padding-top: 6pt;
  padding-bottom: 6pt;
  line-height: 1.0;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c15 {
  margin-left: 36pt;
  padding-top: 0pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c4 {
  font-weight: 400;
  text-decoration: none;
  vertical-align: baseline;
  font-style: normal; }

.terms-of-use .c27 {
  padding-top: 6pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c32 {
  padding-top: 6pt;
  padding-bottom: 6pt;
  line-height: 1.0;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c23 {
  padding-top: 0pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use .c10 {
  text-decoration: none;
  vertical-align: baseline;
  font-style: normal; }

.terms-of-use .c25 {
  padding-top: 0pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  page-break-after: avoid;
  text-align: center; }

.terms-of-use .c33 {
  padding: 70.9pt 70.9pt 70.9pt 70.9pt; }

.terms-of-use .c0 {
  padding: 0;
  margin: 0; }

.terms-of-use .c29 {
  margin-left: 11.2pt;
  padding-left: 24.8pt; }

.terms-of-use .c35 {
  margin-left: 124.5pt;
  padding-left: -3.8pt; }

.terms-of-use .c31 {
  text-decoration: underline; }

.terms-of-use .c28 {
  margin-left: 31.9pt;
  padding-left: 4.1pt; }

.terms-of-use .c26 {
  margin-left: 82.5pt;
  padding-left: -11.2pt; }

.terms-of-use .c7 {
  font-weight: 700; }

.terms-of-use .c16 {
  font-size: 12pt; }

.terms-of-use .c24 {
  font-size: 18pt; }

.terms-of-use .c1 {
  font-size: 10pt; }

.terms-of-use .title {
  padding-top: 0pt;
  font-size: 18pt;
  padding-bottom: 3pt;
  line-height: 2.0;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: center; }

.terms-of-use .subtitle {
  padding-top: 0pt;
  font-size: 15pt;
  padding-bottom: 16pt;
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use li {
  font-size: 11pt; }

.terms-of-use p {
  margin: 0;
  font-size: 11pt; }

.terms-of-use h1 {
  padding-top: 0pt;
  font-weight: 700;
  font-size: 12pt;
  padding-bottom: 0pt;
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use h2 {
  padding-top: 18pt;
  font-size: 16pt;
  padding-bottom: 6pt;
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use h3 {
  padding-top: 16pt;
  font-size: 14pt;
  padding-bottom: 4pt;
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use h4 {
  padding-top: 14pt;
  font-size: 12pt;
  padding-bottom: 4pt;
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use h5 {
  padding-top: 12pt;
  font-size: 11pt;
  padding-bottom: 4pt;
  line-height: 1.15;
  page-break-after: avoid;
  orphans: 2;
  widows: 2;
  text-align: left; }

.terms-of-use h6 {
  padding-top: 12pt;
  font-size: 11pt;
  padding-bottom: 4pt;
  line-height: 1.15;
  page-break-after: avoid;
  font-style: italic;
  orphans: 2;
  widows: 2;
  text-align: left; }

.user-manager .col-permission {
  text-transform: uppercase; }

.user-profile-photo-background {
  width: 186px;
  height: 186px;
  background: #3da4f3;
  border-radius: 50%;
  border: 3px solid #e5e6e8;
  position: relative;
  overflow: hidden;
  margin-top: 10px; }
  @media (max-width: 299px) {
    .user-profile-photo-background {
      margin-top: 15px; } }

.user-profile-photo-background.drop-box, .user-profile-photo-background.no-image {
  border: #b5dcfa solid 10px; }

button[ng-click*="popoverIsOpen"] {
  width: 39px;
  height: 39px;
  line-height: 43px;
  border-radius: 100%;
  border: 1px solid var(--base-color-secondary-lighten2);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #FFFFFF; }
  button[ng-click*="popoverIsOpen"]:active {
    border: 1px solid var(--base-color-secondary-lighten2); }
  button[ng-click*="popoverIsOpen"]:focus {
    border: 1px solid var(--base-color-secondary-lighten2); }
  button[ng-click*="popoverIsOpen"]:hover {
    border: 1px solid var(--base-color-secondary-lighten2); }
  button[ng-click*="popoverIsOpen"].tmr-button--danger {
    border: 1px solid var(--base-color-red); }
    button[ng-click*="popoverIsOpen"].tmr-button--danger .icon-trash2 {
      position: relative;
      top: -2px; }
    button[ng-click*="popoverIsOpen"].tmr-button--danger:active {
      border: 1px solid var(--base-color-red) !important; }
    button[ng-click*="popoverIsOpen"].tmr-button--danger:focus {
      border: 1px solid var(--base-color-red); }
    button[ng-click*="popoverIsOpen"].tmr-button--danger:hover {
      border: 1px solid var(--base-color-red); }

.user-profile-file-photo {
  width: 186px;
  height: 186px;
  margin-top: -93px;
  margin-left: -93px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%; }

.profile-photo-empty {
  font-size: 76px;
  color: #b5dcfa;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%); }

.user-profile-photo-background.drag-over-photo {
  -webkit-transition: all .51s;
  transition: all .51s;
  width: 186px;
  height: 186px;
  background: #0c71be;
  border-radius: 50%;
  border: #6dbbf6 solid 10px;
  position: relative;
  overflow: hidden; }

.user-profile-photo-background.drop-box {
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 0.9em; }

.user-profile-photo {
  width: 96px;
  margin-top: -48px;
  margin-left: -48px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%; }

.user-profile-photo.private-photo {
  margin-top: 0;
  margin-left: 0;
  overflow: hidden;
  position: static;
  width: 100%;
  height: 100%; }

.add-photo {
  padding-top: 13.71429px;
  height: 48px;
  position: absolute;
  left: 0;
  bottom: 10%;
  width: 100%;
  background: #06385e;
  opacity: 0.5;
  text-align: center;
  overflow: hidden;
  color: #9dd1f9;
  font-weight: bold;
  font-size: 0.9em; }

.add-photo:hover {
  opacity: 0.9;
  cursor: pointer; }

.photo-icon-position {
  font-size: 24px;
  position: absolute;
  left: 24px;
  bottom: 13.71429px; }

.photo-text-position {
  position: absolute;
  right: 42px;
  bottom: 14px; }

.drop-icon {
  margin-top: 24px;
  font-size: 2em;
  color: #0f8dee; }

.drag-over-photo .drop-icon {
  -webkit-transition: all .51s;
  transition: all .51s;
  color: #9dd1f9; }

.presentation-field .text-field:hover {
  cursor: text;
  color: #3da4f3;
  border-bottom: #3da4f3 1px solid; }

.presentation-field .text-field:hover a span {
  color: #3da4f3; }

#password-div.tmr-div-form {
  border: 1px solid #9dd1f9;
  background-color: #F1F4F9; }

#password-div a {
  font-weight: 400; }

#phone-number:focus + .dropdown .form-control, #phone-number:focus + .dropdown tags-input .tags, tags-input #phone-number:focus + .dropdown .tags,
#phone-number:hover + .dropdown .form-control,
#phone-number:hover + .dropdown tags-input .tags,
tags-input #phone-number:hover + .dropdown .tags {
  border-color: #3da4f3; }

.tmr-phone-padding {
  padding-left: 110px !important; }

.phone-prefix-container {
  min-width: 100px; }
  .phone-prefix-container > .ui-select-toggle,
  .phone-prefix-container + .ui-select-search {
    height: 42px;
    line-height: 42px; }

.confirm-popover-anchor {
  float: right;
  width: 0;
  height: 23px; }

.account-tooltip-obj {
  padding: 6px 12px;
  text-align: left;
  font-size: 14px; }

.normal-text {
  color: #353e4c; }

@media (min-width: 200px) {
  .user-extra-padding-left {
    padding-left: 4px; } }

.special-info {
  padding: 5px 0 25px;
  font-style: italic; }

/*# sourceMappingURL=style.fd057b82df9bd374c976.css.map*/