@charset "UTF-8";
:root,
::before {
  /*
    These static variables should not be overwritten
    --contract-static-font-family Overrides initial Proxima Nova from legacy bootstrap style which includes backups
  */
  --contract-static-text-color: #555a6e;
  --contract-static-font-family: 'Proxima Nova', sans-serif;
  --contract-static-font-size: 14px;
  --contract-static-max-font-size: 24px;
  --contract-static-min-font-size: 8px;
  /*
    Variables for formatting
    --formatting-font-family Overrides initial Proxima Nova from legacy bootstrap style which includes backups
  */
  --formatting-font-family: 'Proxima Nova', sans-serif;
  --formatting-font-color: #000;
  --formatting-font-color-70-percent: rgba(0, 0, 0, 0.7);
  /* HEX to RGBA should be implemented along with the functionality of the formatting component */
  --formatting-font-size: 14px;
  /* 70% of the base font size. Clamp gives us a min, max and preference. */
  --seventy-percent-font-size: clamp(var(--contract-static-min-font-size), 0.7em, calc(var(--contract-static-max-font-size) * 0.7));
}
/* Agreement body */
header,
.body > header,
h1,
h2,
h3,
h4,
h5,
h6,
textarea,
input,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
label,
button {
  font-size: var(--contract-static-font-size);
}
/* TO COME: SIDEBAR, TOPBAR, MODALS */
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  box-sizing: border-box;
}
.alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 20px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  border-radius: 4px;
}
.alert,
.alert h4 {
  color: #c09853;
}
.alert h4 {
  margin: 0;
}
.alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 20px;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
}
.alert-success h4 {
  color: #468847;
}
.alert-danger,
.alert-error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
}
.alert-danger h4,
.alert-error h4 {
  color: #b94a48;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #3a87ad;
}
.alert-info h4 {
  color: #3a87ad;
}
.alert-block {
  padding-top: 14px;
  padding-bottom: 14px;
}
.alert-block > p,
.alert-block > ul {
  margin-bottom: 0;
}
.alert-block p + p {
  margin-top: 5px;
}
/*!
 * Bootstrap Modal
 *
 * Copyright Jordan Schroter
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.modal-open {
  overflow: hidden;
}
/* add a scroll bar to stop page from jerking around */
.modal-open.page-overflow .page-container,
.modal-open.page-overflow .page-container .navbar-fixed-top,
.modal-open.page-overflow .page-container .navbar-fixed-bottom,
.modal-open.page-overflow .modal-scrollable {
  overflow-y: scroll;
}
@media (max-width: 979px) {
  .modal-open.page-overflow .page-container .navbar-fixed-top,
  .modal-open.page-overflow .page-container .navbar-fixed-bottom {
    overflow-y: visible;
  }
}
.modal-scrollable {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
}
.modal {
  outline: none;
  position: absolute;
  margin-top: 0;
  top: 50%;
  overflow: visible;
  /* allow content to popup out (i.e tooltips) */
}
.modal.fade {
  top: -100%;
  transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;
}
.modal.fade.in {
  top: 50%;
}
.modal-body {
  max-height: none;
  overflow: visible;
}
.modal.modal-absolute {
  position: absolute;
  z-index: 950;
}
.modal .loading-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 6px;
}
.modal-backdrop.modal-absolute {
  position: absolute;
  z-index: 940;
}
.modal-backdrop,
.modal-backdrop.fade.in {
  opacity: 0.7;
  filter: alpha(opacity=70);
  background: #fff;
}
.modal.container {
  width: 940px;
  margin-left: -470px;
}
/* Modal Overflow */
.modal-overflow.modal {
  top: 1%;
}
.modal-overflow.modal.fade {
  top: -100%;
}
.modal-overflow.modal.fade.in {
  top: 1%;
}
.modal-overflow .modal-body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/* Responsive */
@media (min-width: 1200px) {
  .modal.container {
    width: 1170px;
    margin-left: -585px;
  }
}
@media (max-width: 979px) {
  .modal,
  .modal.container,
  .modal.modal-overflow {
    top: 1%;
    right: 1%;
    left: 1%;
    bottom: auto;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .modal.fade.in,
  .modal.container.fade.in,
  .modal.modal-overflow.fade.in {
    top: 1%;
    bottom: auto;
  }
  .modal-body,
  .modal-overflow .modal-body {
    position: static;
    margin: 0;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
  .modal-footer,
  .modal-overflow .modal-footer {
    position: static;
  }
}
.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -12px 0 0 -12px;
}
/*
Animate.css - http://daneden.me/animate
Licensed under the ☺ license (http://licence.visualidiot.com/)

Copyright (c) 2012 Dan Eden*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}
.shake {
  animation-name: shake;
}
/*!
 * Datepicker for Bootstrap v1.6.1 (https://github.com/eternicode/bootstrap-datepicker)
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */
.datepicker {
  padding: 4px;
  border-radius: 4px;
  direction: ltr;
}
.datepicker-inline {
  width: 220px;
}
.datepicker.datepicker-rtl {
  direction: rtl;
}
.datepicker.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #999999;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999999;
}
.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #ffffff;
}
.datepicker > div {
  display: none;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.datepicker td,
.datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.day.guideflow_hovered,
.datepicker table tr td.day.focused {
  background: #eeeeee;
  cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999999;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled.guideflow_hovered {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td.highlighted {
  background: #d9edf7;
  border-radius: 0;
}
.datepicker table tr td.today,
.datepicker table tr td.today.guideflow_hovered,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled.guideflow_hovered {
  background-color: #fde19a;
  background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #000;
}
.datepicker table tr td.today.guideflow_hovered,
.datepicker table tr td.today.guideflow_hovered.guideflow_hovered,
.datepicker table tr td.today.disabled.guideflow_hovered,
.datepicker table tr td.today.disabled.guideflow_hovered.guideflow_hovered,
.datepicker table tr td.today:active,
.datepicker table tr td.today.guideflow_hovered:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled.guideflow_hovered:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today.guideflow_hovered.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled.guideflow_hovered.active,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.guideflow_hovered.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled.guideflow_hovered.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today.guideflow_hovered[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled.guideflow_hovered[disabled] {
  background-color: #fdf59a;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today.guideflow_hovered:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled.guideflow_hovered:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today.guideflow_hovered.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled.guideflow_hovered.active {
  background-color: #fbf069 \9;
}
.datepicker table tr td.today.guideflow_hovered.guideflow_hovered {
  color: #000;
}
.datepicker table tr td.today.active.guideflow_hovered {
  color: #fff;
}
.datepicker table tr td.range,
.datepicker table tr td.range.guideflow_hovered,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled.guideflow_hovered {
  background: #eeeeee;
  border-radius: 0;
}
.datepicker table tr td.range.today,
.datepicker table tr td.range.today.guideflow_hovered,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled.guideflow_hovered {
  background-color: #f3d17a;
  background-image: linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
  border-color: #f3e97a #f3e97a #edde34;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border-radius: 0;
}
.datepicker table tr td.range.today.guideflow_hovered,
.datepicker table tr td.range.today.guideflow_hovered.guideflow_hovered,
.datepicker table tr td.range.today.disabled.guideflow_hovered,
.datepicker table tr td.range.today.disabled.guideflow_hovered.guideflow_hovered,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today.guideflow_hovered:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled.guideflow_hovered:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today.guideflow_hovered.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled.guideflow_hovered.active,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.guideflow_hovered.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled.guideflow_hovered.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today.guideflow_hovered[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled.guideflow_hovered[disabled] {
  background-color: #f3e97a;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today.guideflow_hovered:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled.guideflow_hovered:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today.guideflow_hovered.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled.guideflow_hovered.active {
  background-color: #efe24b \9;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected.guideflow_hovered,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled.guideflow_hovered {
  background-color: #9e9e9e;
  background-image: linear-gradient(to bottom, #b3b3b3, #808080);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
  border-color: #808080 #808080 #595959;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected.guideflow_hovered,
.datepicker table tr td.selected.guideflow_hovered.guideflow_hovered,
.datepicker table tr td.selected.disabled.guideflow_hovered,
.datepicker table tr td.selected.disabled.guideflow_hovered.guideflow_hovered,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected.guideflow_hovered:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled.guideflow_hovered:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected.guideflow_hovered.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled.guideflow_hovered.active,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.guideflow_hovered.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled.guideflow_hovered.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected.guideflow_hovered[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled.guideflow_hovered[disabled] {
  background-color: #808080;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected.guideflow_hovered:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled.guideflow_hovered:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected.guideflow_hovered.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled.guideflow_hovered.active {
  background-color: #666666 \9;
}
.datepicker table tr td.active,
.datepicker table tr td.active.guideflow_hovered,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled.guideflow_hovered {
  background-color: #006dcc;
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active.guideflow_hovered,
.datepicker table tr td.active.guideflow_hovered.guideflow_hovered,
.datepicker table tr td.active.disabled.guideflow_hovered,
.datepicker table tr td.active.disabled.guideflow_hovered.guideflow_hovered,
.datepicker table tr td.active:active,
.datepicker table tr td.active.guideflow_hovered:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled.guideflow_hovered:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.guideflow_hovered.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.guideflow_hovered.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.guideflow_hovered.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled.guideflow_hovered.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active.guideflow_hovered[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled.guideflow_hovered[disabled] {
  background-color: #0044cc;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active.guideflow_hovered:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled.guideflow_hovered:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.guideflow_hovered.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.guideflow_hovered.active {
  background-color: #003399 \9;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}
.datepicker table tr td span.guideflow_hovered,
.datepicker table tr td span.focused {
  background: #eeeeee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled.guideflow_hovered {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active.guideflow_hovered,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled.guideflow_hovered {
  background-color: #006dcc;
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active.guideflow_hovered,
.datepicker table tr td span.active.guideflow_hovered.guideflow_hovered,
.datepicker table tr td span.active.disabled.guideflow_hovered,
.datepicker table tr td span.active.disabled.guideflow_hovered.guideflow_hovered,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active.guideflow_hovered:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled.guideflow_hovered:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active.guideflow_hovered.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled.guideflow_hovered.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.guideflow_hovered.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled.guideflow_hovered.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active.guideflow_hovered[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled.guideflow_hovered[disabled] {
  background-color: #0044cc;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active.guideflow_hovered:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled.guideflow_hovered:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active.guideflow_hovered.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled.guideflow_hovered.active {
  background-color: #003399 \9;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999999;
}
.datepicker .datepicker-switch {
  width: 145px;
}
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker .datepicker-switch.guideflow_hovered,
.datepicker .prev.guideflow_hovered,
.datepicker .next.guideflow_hovered,
.datepicker tfoot tr th.guideflow_hovered {
  background: #eeeeee;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.input-append.date .add-on,
.input-prepend.date .add-on {
  cursor: pointer;
}
.input-append.date .add-on i,
.input-prepend.date .add-on i {
  margin-top: 3px;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}
.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 18px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #ffffff;
  vertical-align: middle;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}

/*
Version: 3.4.6 Timestamp: Sat Mar 22 22:30:15 EDT 2014
*/
.select2-container {
  margin: 0;
  position: relative;
  display: inline-block;
  /* inline-block for ie7 */
  zoom: 1;
  *display: inline;
  vertical-align: middle;
}
.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
      Force border-box so that % widths fit the parent
      container without overlap because of margin/padding.
      More Info : http://www.quirksmode.org/css/box.html
    */
  /* webkit */
  /* firefox */
  box-sizing: border-box;
  /* css3 */
}
.select2-container .select2-choice {
  display: block;
  height: 26px;
  padding: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #aaa;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  border-radius: 4px;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  background-color: #fff;
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}
.select2-container.select2-drop-above .select2-choice {
  border-bottom-color: #aaa;
  border-radius: 0 0 4px 4px;
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}
.select2-container.select2-allowclear .select2-choice .select2-chosen {
  margin-right: 42px;
}
.select2-container .select2-choice > .select2-chosen {
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  float: none;
  width: auto;
}
.select2-container .select2-choice abbr {
  display: none;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 8px;
  font-size: 1px;
  text-decoration: none;
  border: 0;
  background: url(https://html-assets-prod.guideflow.com/0be4589918c1095244c6caa91530f2eb20889531) right top no-repeat;
  cursor: pointer;
  outline: 0;
}
.select2-container.select2-allowclear .select2-choice abbr {
  display: inline-block;
}
.select2-container .select2-choice abbr.guideflow_hovered {
  background-position: right -11px;
  cursor: pointer;
}
.select2-drop-mask {
  border: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 9998;
  /* styles required for IE to work */
  background-color: #fff;
  filter: alpha(opacity=0);
}
.select2-drop {
  width: 100%;
  margin-top: -1px;
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.select2-drop.select2-drop-above {
  margin-top: 1px;
  border-top: 1px solid #aaa;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}
.select2-drop-active {
  border: 1px solid #5897fb;
  border-top: none;
}
.select2-drop.select2-drop-above.select2-drop-active {
  border-top: 1px solid #5897fb;
}
.select2-drop-auto-width {
  border-top: 1px solid #aaa;
  width: auto;
}
.select2-drop-auto-width .select2-search {
  padding-top: 4px;
}
.select2-container .select2-choice .select2-arrow {
  display: inline-block;
  width: 18px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid #aaa;
  border-radius: 0 4px 4px 0;
  background-clip: padding-box;
  background: #ccc;
  background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);
  background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}
.select2-container .select2-choice .select2-arrow b {
  display: block;
  width: 100%;
  height: 100%;
  background: url(https://html-assets-prod.guideflow.com/0be4589918c1095244c6caa91530f2eb20889531) no-repeat 0 1px;
}
.select2-search {
  display: inline-block;
  width: 100%;
  min-height: 26px;
  margin: 0;
  padding-left: 4px;
  padding-right: 4px;
  position: relative;
  z-index: 10000;
  white-space: nowrap;
}
.select2-search input {
  width: 100%;
  height: auto !important;
  min-height: 26px;
  padding: 4px 20px 4px 5px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  font-size: 1em;
  border: 1px solid #aaa;
  border-radius: 0;
  box-shadow: none;
  background: #fff url(https://html-assets-prod.guideflow.com/0be4589918c1095244c6caa91530f2eb20889531) no-repeat 100% -22px;
  background: url(https://html-assets-prod.guideflow.com/0be4589918c1095244c6caa91530f2eb20889531) no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}
.select2-drop.select2-drop-above .select2-search input {
  margin-top: 4px;
}
.select2-search input.select2-active {
  background: #fff url(https://html-assets-prod.guideflow.com/85ac5631a50558e802a28b0730ca05befd32e303) no-repeat 100%;
  background: url(https://html-assets-prod.guideflow.com/85ac5631a50558e802a28b0730ca05befd32e303) no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}
.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  border: 1px solid #5897fb;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.select2-dropdown-open .select2-choice {
  border-bottom-color: transparent;
  box-shadow: 0 1px 0 #fff inset;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #eee;
  background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}
.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
  border: 1px solid #5897fb;
  border-top-color: transparent;
  background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}
.select2-dropdown-open .select2-choice .select2-arrow {
  background: transparent;
  border-left: none;
  filter: none;
}
.select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -18px 1px;
}
.select2-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* results */
.select2-results {
  max-height: 200px;
  padding: 0 0 0 4px;
  margin: 4px 4px 4px 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.select2-results ul.select2-result-sub {
  margin: 0;
  padding-left: 0;
}
.select2-results ul.select2-result-sub > li .select2-result-label {
  padding-left: 20px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 40px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 60px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 80px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 100px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 110px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 120px;
}
.select2-results li {
  list-style: none;
  display: list-item;
  background-image: none;
}
.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: bold;
}
.select2-results .select2-result-label {
  padding: 3px 7px 4px;
  margin: 0;
  cursor: pointer;
  min-height: 1em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.select2-results .select2-highlighted {
  background: #3875d7;
  color: #fff;
}
.select2-results li em {
  background: #feffde;
  font-style: normal;
}
.select2-results .select2-highlighted em {
  background: transparent;
}
.select2-results .select2-highlighted ul {
  background: #fff;
  color: #000;
}
.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
  background: #f4f4f4;
  display: list-item;
  padding-left: 5px;
}
/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
  color: #666;
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}
.select2-results .select2-selected {
  display: none;
}
.select2-more-results.select2-active {
  background: #f4f4f4 url(https://html-assets-prod.guideflow.com/85ac5631a50558e802a28b0730ca05befd32e303) no-repeat 100%;
}
.select2-more-results {
  background: #f4f4f4;
  display: list-item;
}
/* disabled styles */
.select2-container.select2-container-disabled .select2-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}
.select2-container.select2-container-disabled .select2-choice .select2-arrow {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0;
}
.select2-container.select2-container-disabled .select2-choice abbr {
  display: none;
}
/* multiselect */
.select2-container-multi .select2-choices {
  height: auto !important;
  height: 1%;
  margin: 0;
  padding: 0;
  position: relative;
  border: 1px solid #aaa;
  cursor: text;
  overflow: hidden;
  background-color: #fff;
  background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}
.select2-locked {
  padding: 3px 5px 3px 5px !important;
}
.select2-container-multi .select2-choices {
  min-height: 26px;
}
.select2-container-multi.select2-container-active .select2-choices {
  border: 1px solid #5897fb;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.select2-container-multi .select2-choices li {
  float: left;
  list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li {
  float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.select2-container-multi .select2-choices .select2-search-field input {
  padding: 5px;
  margin: 1px 0;
  font-family: sans-serif;
  font-size: 100%;
  color: #666;
  outline: 0;
  border: 0;
  box-shadow: none;
  background: transparent !important;
}
.select2-container-multi .select2-choices .select2-search-field input.select2-active {
  background: #fff url(https://html-assets-prod.guideflow.com/85ac5631a50558e802a28b0730ca05befd32e303) no-repeat 100% !important;
}
.select2-default {
  color: #999 !important;
}
.select2-container-multi .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 18px;
  margin: 3px 0 3px 5px;
  position: relative;
  line-height: 13px;
  color: #333;
  cursor: default;
  border: 1px solid #aaaaaa;
  border-radius: 3px;
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  background-color: #e4e4e4;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
  background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice {
  margin-left: 0;
  margin-right: 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
  cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
  background: #d4d4d4;
}
.select2-search-choice-close {
  display: block;
  width: 12px;
  height: 13px;
  position: absolute;
  right: 3px;
  top: 4px;
  font-size: 1px;
  outline: none;
  background: url(https://html-assets-prod.guideflow.com/0be4589918c1095244c6caa91530f2eb20889531) right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
  right: auto;
  left: 3px;
}
.select2-container-multi .select2-search-choice-close {
  left: 3px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close.guideflow_hovered {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  background-position: right -11px;
}
/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 5px;
  border: 1px solid #ddd;
  background-image: none;
  background-color: #f4f4f4;
}
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  display: none;
  background: none;
}
/* end multiselect */
.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
  text-decoration: underline;
}
.select2-offscreen,
.select2-offscreen:focus {
  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;
}
.select2-display-none {
  display: none;
}
.select2-measure-scrollbar {
  position: absolute;
  top: -10000px;
  left: -10000px;
  width: 100px;
  height: 100px;
  overflow: scroll;
}
/* Retina-ize icons */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx) {
  .select2-search input,
  .select2-search-choice-close,
  .select2-container .select2-choice abbr,
  .select2-container .select2-choice .select2-arrow b {
    background-image: url(https://html-assets-prod.guideflow.com/199f5cb7c5adedc7d8315a097f3d1a2a518c20c8) !important;
    background-repeat: no-repeat !important;
    background-size: 60px 40px !important;
  }
  .select2-search input {
    background-position: 100% -21px !important;
  }
}
/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/
.Select {
  position: relative;
}
.Select,
.Select div,
.Select input,
.Select span {
  box-sizing: border-box;
}
.Select.is-disabled > .Select-control {
  background-color: #f9f9f9;
}
.Select.is-disabled > .Select-control.guideflow_hovered {
  box-shadow: none;
}
.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
  opacity: 0.35;
}
.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.Select-control.guideflow_hovered {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.Select-control .Select-input:focus {
  outline: none;
}
.is-searchable.is-open > .Select-control {
  cursor: text;
}
.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9;
}
.is-open > .Select-control .Select-arrow {
  top: -2px;
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}
.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text;
}
.is-focused:not(.is-open) > .Select-control {
  border-color: #007eff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(0, 126, 255, 0.1);
}
.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.has-value.Select--single > .Select-control .Select-value .Select-value-label,
.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
  color: #333;
}
.has-value.Select--single > .Select-control .Select-value a.Select-value-label,
.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none;
}
.has-value.Select--single > .Select-control .Select-value a.Select-value-label.guideflow_hovered,
.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label.guideflow_hovered,
.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  color: #007eff;
  outline: none;
  text-decoration: underline;
}
.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}
.Select-input > input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  line-height: 14px;
  /* For IE 8 compatibility */
  padding: 8px 0 12px;
  /* For IE 8 compatibility */
  -webkit-appearance: none;
}
.is-focused .Select-input > input {
  cursor: text;
}
.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select-control:not(.is-searchable) > .Select-input {
  outline: none;
}
.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px;
}
.Select-loading {
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.Select-clear-zone {
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px;
}
.Select-clear-zone.guideflow_hovered {
  color: #D0021B;
}
.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}
.Select--multi .Select-clear-zone {
  width: 17px;
}
.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px;
}
.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative;
}
.is-open .Select-arrow,
.Select-arrow-zone.guideflow_hovered > .Select-arrow {
  border-top-color: #666;
}
.Select--multi .Select-multi-value-wrapper {
  display: inline-block;
}
.Select .Select-aria-only {
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left;
}
@keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}
.Select-menu {
  max-height: 198px;
  overflow-y: auto;
}
.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px;
}
.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.Select-option.is-selected {
  background-color: #f5faff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.04);
  color: #333;
}
.Select-option.is-focused {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  color: #333;
}
.Select-option.is-disabled {
  color: #cccccc;
  cursor: default;
}
.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px;
}
.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0;
}
.Select--multi.has-value .Select-input {
  margin-left: 5px;
}
.Select--multi .Select-value {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  border-radius: 2px;
  border: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border: 1px solid rgba(0, 126, 255, 0.24);
  color: #007eff;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top;
}
.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle;
}
.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px;
}
.Select--multi a.Select-value-label {
  color: #007eff;
  cursor: pointer;
  text-decoration: none;
}
.Select--multi a.Select-value-label.guideflow_hovered {
  text-decoration: underline;
}
.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-right: 1px solid rgba(0, 126, 255, 0.24);
  padding: 1px 5px 3px;
}
.Select--multi .Select-value-icon.guideflow_hovered,
.Select--multi .Select-value-icon:focus {
  background-color: #d8eafd;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 113, 230, 0.08);
  color: #0071e6;
}
.Select--multi .Select-value-icon:active {
  background-color: #c2e0ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.24);
}
.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333;
}
.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3;
}
.Select--multi.is-disabled .Select-value-icon.guideflow_hovered,
.Select--multi.is-disabled .Select-value-icon:focus,
.Select--multi.is-disabled .Select-value-icon:active {
  background-color: #fcfcfc;
}
@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn);
  }
}
/* Collection default theme */
/* Grid default theme */
/* Table default theme */
.ReactVirtualized__Table__headerRow {
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.ReactVirtualized__Table__row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.ReactVirtualized__Table__headerTruncatedText {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ReactVirtualized__Table__headerColumn,
.ReactVirtualized__Table__rowColumn {
  margin-right: 10px;
  min-width: 0px;
}
.ReactVirtualized__Table__rowColumn {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ReactVirtualized__Table__headerColumn:first-of-type,
.ReactVirtualized__Table__rowColumn:first-of-type {
  margin-left: 10px;
}
.ReactVirtualized__Table__sortableHeaderColumn {
  cursor: pointer;
}
.ReactVirtualized__Table__sortableHeaderIconContainer {
  display: flex;
  align-items: center;
}
.ReactVirtualized__Table__sortableHeaderIcon {
  flex: 0 0 24px;
  height: 1em;
  width: 1em;
  fill: currentColor;
}
/* List default theme */
.VirtualSelectGrid {
  z-index: 1;
}
.VirtualizedSelectOption {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
}
.VirtualizedSelectFocusedOption {
  background-color: rgba(0, 126, 255, 0.1);
}
.VirtualizedSelectDisabledOption {
  opacity: 0.5;
}
.VirtualizedSelectSelectedOption {
  font-weight: bold;
}
.tippy-touch {
  cursor: pointer !important;
}
.tippy-notransition {
  transition: none !important;
}
.tippy-popper {
  max-width: 400px;
  perspective: 800px;
  z-index: 9999;
  outline: 0;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}
.tippy-popper.html-template {
  max-width: 96%;
  max-width: calc(100% - 20px);
}
.tippy-popper[x-placement^=top] [x-arrow] {
  border-top: 7px solid #333;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  bottom: -7px;
  margin: 0 9px;
}
.tippy-popper[x-placement^=top] [x-arrow].arrow-small {
  border-top: 5px solid #333;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  bottom: -5px;
}
.tippy-popper[x-placement^=top] [x-arrow].arrow-big {
  border-top: 10px solid #333;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  bottom: -10px;
}
.tippy-popper[x-placement^=top] [x-circle] {
  transform-origin: 0 33%;
}
.tippy-popper[x-placement^=top] [x-circle].enter {
  transform: scale(1) translate(-50%, -55%);
  opacity: 1;
}
.tippy-popper[x-placement^=top] [x-circle].leave {
  transform: scale(0.15) translate(-50%, -50%);
  opacity: 0;
}
.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-circle] {
  background-color: #fff;
}
.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow] {
  border-top: 7px solid #fff;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}
.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-small {
  border-top: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-big {
  border-top: 10px solid #fff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-circle] {
  background-color: rgba(0, 0, 0, 0.7);
}
.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow] {
  border-top: 7px solid rgba(0, 0, 0, 0.7);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}
.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
  border-top: 5px solid rgba(0, 0, 0, 0.7);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
  border-top: 10px solid rgba(0, 0, 0, 0.7);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.tippy-popper[x-placement^=top] [data-animation=perspective] {
  transform-origin: bottom;
}
.tippy-popper[x-placement^=top] [data-animation=perspective].enter {
  opacity: 1;
  transform: translateY(-10px) rotateX(0);
}
.tippy-popper[x-placement^=top] [data-animation=perspective].leave {
  opacity: 0;
  transform: translateY(0) rotateX(90deg);
}
.tippy-popper[x-placement^=top] [data-animation=fade].enter {
  opacity: 1;
  transform: translateY(-10px);
}
.tippy-popper[x-placement^=top] [data-animation=fade].leave {
  opacity: 0;
  transform: translateY(-10px);
}
.tippy-popper[x-placement^=top] [data-animation=shift].enter {
  opacity: 1;
  transform: translateY(-10px);
}
.tippy-popper[x-placement^=top] [data-animation=shift].leave {
  opacity: 0;
  transform: translateY(0);
}
.tippy-popper[x-placement^=top] [data-animation=scale].enter {
  opacity: 1;
  transform: translateY(-10px) scale(1);
}
.tippy-popper[x-placement^=top] [data-animation=scale].leave {
  opacity: 0;
  transform: translateY(0) scale(0);
}
.tippy-popper[x-placement^=bottom] [x-arrow] {
  border-bottom: 7px solid #333;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  top: -7px;
  margin: 0 9px;
}
.tippy-popper[x-placement^=bottom] [x-arrow].arrow-small {
  border-bottom: 5px solid #333;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  top: -5px;
}
.tippy-popper[x-placement^=bottom] [x-arrow].arrow-big {
  border-bottom: 10px solid #333;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  top: -10px;
}
.tippy-popper[x-placement^=bottom] [x-circle] {
  transform-origin: 0 -50%;
}
.tippy-popper[x-placement^=bottom] [x-circle].enter {
  transform: scale(1) translate(-50%, -45%);
  opacity: 1;
}
.tippy-popper[x-placement^=bottom] [x-circle].leave {
  transform: scale(0.15) translate(-50%, -5%);
  opacity: 0;
}
.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-circle] {
  background-color: #fff;
}
.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow] {
  border-bottom: 7px solid #fff;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}
.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-small {
  border-bottom: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-big {
  border-bottom: 10px solid #fff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-circle] {
  background-color: rgba(0, 0, 0, 0.7);
}
.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow] {
  border-bottom: 7px solid rgba(0, 0, 0, 0.7);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}
.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
  border-bottom: 5px solid rgba(0, 0, 0, 0.7);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
  border-bottom: 10px solid rgba(0, 0, 0, 0.7);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.tippy-popper[x-placement^=bottom] [data-animation=perspective] {
  transform-origin: top;
}
.tippy-popper[x-placement^=bottom] [data-animation=perspective].enter {
  opacity: 1;
  transform: translateY(10px) rotateX(0);
}
.tippy-popper[x-placement^=bottom] [data-animation=perspective].leave {
  opacity: 0;
  transform: translateY(0) rotateX(-90deg);
}
.tippy-popper[x-placement^=bottom] [data-animation=fade].enter {
  opacity: 1;
  transform: translateY(10px);
}
.tippy-popper[x-placement^=bottom] [data-animation=fade].leave {
  opacity: 0;
  transform: translateY(10px);
}
.tippy-popper[x-placement^=bottom] [data-animation=shift].enter {
  opacity: 1;
  transform: translateY(10px);
}
.tippy-popper[x-placement^=bottom] [data-animation=shift].leave {
  opacity: 0;
  transform: translateY(0);
}
.tippy-popper[x-placement^=bottom] [data-animation=scale].enter {
  opacity: 1;
  transform: translateY(10px) scale(1);
}
.tippy-popper[x-placement^=bottom] [data-animation=scale].leave {
  opacity: 0;
  transform: translateY(0) scale(0);
}
.tippy-popper[x-placement^=left] [x-arrow] {
  border-left: 7px solid #333;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  right: -7px;
  margin: 6px 0;
}
.tippy-popper[x-placement^=left] [x-arrow].arrow-small {
  border-left: 5px solid #333;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  right: -5px;
}
.tippy-popper[x-placement^=left] [x-arrow].arrow-big {
  border-left: 10px solid #333;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  right: -10px;
}
.tippy-popper[x-placement^=left] [x-circle] {
  transform-origin: 50% 0;
}
.tippy-popper[x-placement^=left] [x-circle].enter {
  transform: scale(1) translate(-50%, -50%);
  opacity: 1;
}
.tippy-popper[x-placement^=left] [x-circle].leave {
  transform: scale(0.15) translate(-50%, -50%);
  opacity: 0;
}
.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-circle] {
  background-color: #fff;
}
.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow] {
  border-left: 7px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-small {
  border-left: 5px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-big {
  border-left: 10px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-circle] {
  background-color: rgba(0, 0, 0, 0.7);
}
.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow] {
  border-left: 7px solid rgba(0, 0, 0, 0.7);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
  border-left: 5px solid rgba(0, 0, 0, 0.7);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
  border-left: 10px solid rgba(0, 0, 0, 0.7);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.tippy-popper[x-placement^=left] [data-animation=perspective] {
  transform-origin: right;
}
.tippy-popper[x-placement^=left] [data-animation=perspective].enter {
  opacity: 1;
  transform: translateX(-10px) rotateY(0);
}
.tippy-popper[x-placement^=left] [data-animation=perspective].leave {
  opacity: 0;
  transform: translateX(0) rotateY(-90deg);
}
.tippy-popper[x-placement^=left] [data-animation=fade].enter {
  opacity: 1;
  transform: translateX(-10px);
}
.tippy-popper[x-placement^=left] [data-animation=fade].leave {
  opacity: 0;
  transform: translateX(-10px);
}
.tippy-popper[x-placement^=left] [data-animation=shift].enter {
  opacity: 1;
  transform: translateX(-10px);
}
.tippy-popper[x-placement^=left] [data-animation=shift].leave {
  opacity: 0;
  transform: translateX(0);
}
.tippy-popper[x-placement^=left] [data-animation=scale].enter {
  opacity: 1;
  transform: translateX(-10px) scale(1);
}
.tippy-popper[x-placement^=left] [data-animation=scale].leave {
  opacity: 0;
  transform: translateX(0) scale(0);
}
.tippy-popper[x-placement^=right] [x-arrow] {
  border-right: 7px solid #333;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  left: -7px;
  margin: 6px 0;
}
.tippy-popper[x-placement^=right] [x-arrow].arrow-small {
  border-right: 5px solid #333;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  left: -5px;
}
.tippy-popper[x-placement^=right] [x-arrow].arrow-big {
  border-right: 10px solid #333;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  left: -10px;
}
.tippy-popper[x-placement^=right] [x-circle] {
  transform-origin: -50% 0;
}
.tippy-popper[x-placement^=right] [x-circle].enter {
  transform: scale(1) translate(-50%, -50%);
  opacity: 1;
}
.tippy-popper[x-placement^=right] [x-circle].leave {
  transform: scale(0.15) translate(-50%, -50%);
  opacity: 0;
}
.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-circle] {
  background-color: #fff;
}
.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow] {
  border-right: 7px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-small {
  border-right: 5px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-big {
  border-right: 10px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-circle] {
  background-color: rgba(0, 0, 0, 0.7);
}
.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow] {
  border-right: 7px solid rgba(0, 0, 0, 0.7);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
  border-right: 5px solid rgba(0, 0, 0, 0.7);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
  border-right: 10px solid rgba(0, 0, 0, 0.7);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.tippy-popper[x-placement^=right] [data-animation=perspective] {
  transform-origin: left;
}
.tippy-popper[x-placement^=right] [data-animation=perspective].enter {
  opacity: 1;
  transform: translateX(10px) rotateY(0);
}
.tippy-popper[x-placement^=right] [data-animation=perspective].leave {
  opacity: 0;
  transform: translateX(0) rotateY(90deg);
}
.tippy-popper[x-placement^=right] [data-animation=fade].enter {
  opacity: 1;
  transform: translateX(10px);
}
.tippy-popper[x-placement^=right] [data-animation=fade].leave {
  opacity: 0;
  transform: translateX(10px);
}
.tippy-popper[x-placement^=right] [data-animation=shift].enter {
  opacity: 1;
  transform: translateX(10px);
}
.tippy-popper[x-placement^=right] [data-animation=shift].leave {
  opacity: 0;
  transform: translateX(0);
}
.tippy-popper[x-placement^=right] [data-animation=scale].enter {
  opacity: 1;
  transform: translateX(10px) scale(1);
}
.tippy-popper[x-placement^=right] [data-animation=scale].leave {
  opacity: 0;
  transform: translateX(0) scale(0);
}
.tippy-popper .tippy-tooltip.transparent-theme {
  background-color: rgba(0, 0, 0, 0.7);
}
.tippy-popper .tippy-tooltip.transparent-theme[data-animatefill] {
  background-color: transparent;
}
.tippy-popper .tippy-tooltip.light-theme {
  color: #26323d;
  box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.1), 0 4px 80px -8px rgba(0, 20, 60, 0.2);
  background-color: #fff;
}
.tippy-popper .tippy-tooltip.light-theme[data-animatefill] {
  background-color: transparent;
}
.tippy-tooltip {
  position: relative;
  color: #fff;
  border-radius: 4px;
  font-size: 0.95rem;
  padding: 0.4rem 0.8rem;
  text-align: center;
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #333;
}
.tippy-tooltip--small {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}
.tippy-tooltip--big {
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
}
.tippy-tooltip[data-animatefill] {
  overflow: hidden;
  background-color: transparent;
}
.tippy-tooltip[data-interactive] {
  pointer-events: auto;
}
.tippy-tooltip[data-inertia] {
  transition-timing-function: cubic-bezier(0.53, 2, 0.36, 0.85);
}
.tippy-tooltip [x-arrow] {
  position: absolute;
  width: 0;
  height: 0;
}
.tippy-tooltip [x-circle] {
  position: absolute;
  will-change: transform;
  background-color: #333;
  border-radius: 50%;
  width: 130%;
  width: calc(110% + 2rem);
  left: 50%;
  top: 50%;
  z-index: -1;
  overflow: hidden;
  transition: all ease;
}
.tippy-tooltip [x-circle]:before {
  content: "";
  padding-top: 90%;
  float: left;
}
@media (max-width: 450px) {
  .tippy-popper {
    max-width: 96%;
    max-width: calc(100% - 20px);
  }
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(https://html-assets-prod.guideflow.com/c235b5ad1cc728157ce4c37ba153b1e27021b0cb);
  src: url(fonts/8b43027f47b20503057d.eot?#iefix&v=4.7.0) format('embedded-opentype'), url(https://html-assets-prod.guideflow.com/7a4d25cad3140d0e271909aecb73d59d7c0896f7) format('woff2'), url(https://html-assets-prod.guideflow.com/ff12930eb228672fb6de23795c134e829771d0cc) format('woff'), url(https://html-assets-prod.guideflow.com/09eb569766033b40b14d32e6b8c1b109d6d04a13) format('truetype'), url(img/c1e38fd9e0e74ba58f7a.svg?v=4.7.0#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.vjs-modal-dialog .vjs-modal-dialog-content,
.video-js .vjs-modal-dialog,
.vjs-button > .vjs-icon-placeholder:before,
.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vjs-button > .vjs-icon-placeholder:before,
.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  text-align: center;
}
@font-face {
  font-family: VideoJS;
  src: url(https://html-assets-prod.guideflow.com/280e80e1204fb969d5903dd40c226e4b82130bbb) format("woff");
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play,
.video-js .vjs-play-control .vjs-icon-placeholder,
.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play:before,
.video-js .vjs-play-control .vjs-icon-placeholder:before,
.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f101";
}
.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play-circle:before {
  content: "\f102";
}
.vjs-icon-pause,
.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-pause:before,
.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
  content: "\f103";
}
.vjs-icon-volume-mute,
.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-mute:before,
.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
  content: "\f104";
}
.vjs-icon-volume-low,
.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-low:before,
.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
  content: "\f105";
}
.vjs-icon-volume-mid,
.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-mid:before,
.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
  content: "\f106";
}
.vjs-icon-volume-high,
.video-js .vjs-mute-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-high:before,
.video-js .vjs-mute-control .vjs-icon-placeholder:before {
  content: "\f107";
}
.vjs-icon-fullscreen-enter,
.video-js .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-fullscreen-enter:before,
.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f108";
}
.vjs-icon-fullscreen-exit,
.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-fullscreen-exit:before,
.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f109";
}
.vjs-icon-square {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-square:before {
  content: "\f10a";
}
.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-spinner:before {
  content: "\f10b";
}
.vjs-icon-subtitles,
.video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js .vjs-subtitles-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-subtitles:before,
.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js .vjs-subtitles-button .vjs-icon-placeholder:before {
  content: "\f10c";
}
.vjs-icon-captions,
.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js .vjs-captions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-captions:before,
.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js .vjs-captions-button .vjs-icon-placeholder:before {
  content: "\f10d";
}
.vjs-icon-chapters,
.video-js .vjs-chapters-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-chapters:before,
.video-js .vjs-chapters-button .vjs-icon-placeholder:before {
  content: "\f10e";
}
.vjs-icon-share {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-share:before {
  content: "\f10f";
}
.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-cog:before {
  content: "\f110";
}
.vjs-icon-circle,
.vjs-seek-to-live-control .vjs-icon-placeholder,
.video-js .vjs-volume-level,
.video-js .vjs-play-progress {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-circle:before,
.vjs-seek-to-live-control .vjs-icon-placeholder:before,
.video-js .vjs-volume-level:before,
.video-js .vjs-play-progress:before {
  content: "\f111";
}
.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-circle-outline:before {
  content: "\f112";
}
.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-circle-inner-circle:before {
  content: "\f113";
}
.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-hd:before {
  content: "\f114";
}
.vjs-icon-cancel,
.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-cancel:before,
.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
  content: "\f115";
}
.vjs-icon-replay,
.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-replay:before,
.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
  content: "\f116";
}
.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-facebook:before {
  content: "\f117";
}
.vjs-icon-gplus {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-gplus:before {
  content: "\f118";
}
.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-linkedin:before {
  content: "\f119";
}
.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-twitter:before {
  content: "\f11a";
}
.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-tumblr:before {
  content: "\f11b";
}
.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-pinterest:before {
  content: "\f11c";
}
.vjs-icon-audio-description,
.video-js .vjs-descriptions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-audio-description:before,
.video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
  content: "\f11d";
}
.vjs-icon-audio,
.video-js .vjs-audio-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-audio:before,
.video-js .vjs-audio-button .vjs-icon-placeholder:before {
  content: "\f11e";
}
.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-next-item:before {
  content: "\f11f";
}
.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-previous-item:before {
  content: "\f120";
}
.vjs-icon-picture-in-picture-enter,
.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-picture-in-picture-enter:before,
.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f121";
}
.vjs-icon-picture-in-picture-exit,
.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-picture-in-picture-exit:before,
.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f122";
}
.video-js {
  display: block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  word-break: initial;
}
.video-js:-moz-full-screen {
  position: absolute;
}
.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}
.video-js[tabindex="-1"] {
  outline: none;
}
.video-js *,
.video-js *:before,
.video-js *:after {
  box-sizing: inherit;
}
.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3 {
  width: 100%;
  max-width: 100%;
  height: 0;
}
.video-js.vjs-16-9 {
  padding-top: 56.25%;
}
.video-js.vjs-4-3 {
  padding-top: 75%;
}
.video-js.vjs-fill {
  width: 100%;
  height: 100%;
}
.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
}
.vjs-full-window .video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.video-js.vjs-fullscreen {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
}
.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}
.vjs-hidden {
  display: none !important;
}
.vjs-disabled {
  opacity: 0.5;
  cursor: default;
}
.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}
.vjs-lock-showing {
  display: block !important;
  opacity: 1;
  visibility: visible;
}
.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto;
}
.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66A8CC;
}
.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 1.5em;
  height: 1.63332em;
  width: 3em;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  border-radius: 0.3em;
  transition: all 0.4s;
}
.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-top: -0.81666em;
  margin-left: -1.5em;
}
.video-js.guideflow_hovered .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  border-color: #fff;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  transition: all 0s;
}
.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none;
}
.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
  display: block;
}
.video-js button {
  background: none;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  appearance: none;
}
.vjs-control .vjs-button {
  width: 100%;
  height: 100%;
}
.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}
.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto;
}
.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}
.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}
.vjs-menu-button {
  cursor: pointer;
}
.vjs-menu-button.vjs-disabled {
  cursor: default;
}
.vjs-workinghover .vjs-menu-button.vjs-disabled.guideflow_hovered .vjs-menu {
  display: none;
}
.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto;
}
.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box;
}
.vjs-scrubbing .vjs-control.vjs-menu-button.guideflow_hovered .vjs-menu {
  display: none;
}
.vjs-menu li {
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}
.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item.guideflow_hovered,
.js-focus-visible .vjs-menu li.vjs-menu-item.guideflow_hovered {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}
.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected.guideflow_hovered,
.js-focus-visible .vjs-menu li.vjs-selected.guideflow_hovered {
  background-color: #fff;
  color: #2B333F;
}
.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}
.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0em;
  margin-bottom: 1.5em;
  border-top-color: rgba(43, 51, 63, 0.7);
}
.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em;
}
.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em;
}
.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em;
}
.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em;
}
.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em;
}
.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block;
}
.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden;
}
.video-js .vjs-menu-button-inline:before {
  width: 2.22222222em;
}
.video-js .vjs-menu-button-inline.guideflow_hovered,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 12em;
}
.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s;
}
.vjs-menu-button-inline.guideflow_hovered .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1;
}
.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
  display: block;
  opacity: 1;
  position: relative;
  width: auto;
}
.vjs-no-flex .vjs-menu-button-inline.guideflow_hovered .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  width: auto;
}
.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.video-js .vjs-control-bar {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}
.vjs-has-started .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s;
}
.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}
.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important;
}
.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
}
.vjs-has-started.vjs-no-flex .vjs-control-bar {
  display: table;
}
.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none;
}
.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}
.video-js .vjs-control:focus:before,
.video-js .vjs-control.guideflow_hovered:before,
.video-js .vjs-control:focus {
  text-shadow: 0em 0em 1em white;
}
.video-js .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.vjs-no-flex .vjs-control {
  display: table-cell;
  vertical-align: middle;
}
.video-js .vjs-custom-control-spacer {
  display: none;
}
.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none;
}
.video-js .vjs-progress-control.disabled {
  cursor: default;
}
.vjs-live .vjs-progress-control {
  display: none;
}
.vjs-liveui .vjs-progress-control {
  display: flex;
  align-items: center;
}
.vjs-no-flex .vjs-progress-control {
  width: auto;
}
.video-js .vjs-progress-holder {
  flex: auto;
  transition: all 0.2s;
  height: 0.3em;
}
.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}
.video-js .vjs-progress-control.guideflow_hovered .vjs-progress-holder {
  font-size: 1.66666667em;
}
.video-js .vjs-progress-control.guideflow_hovered .vjs-progress-holder.disabled {
  font-size: 1em;
}
.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0;
}
.video-js .vjs-play-progress {
  background-color: #fff;
}
.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  top: -0.33333333em;
  z-index: 1;
}
.video-js .vjs-load-progress {
  background: rgba(115, 133, 159, 0.5);
}
.video-js .vjs-load-progress div {
  background: rgba(115, 133, 159, 0.75);
}
.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}
.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}
.video-js .vjs-progress-control.guideflow_hovered .vjs-time-tooltip,
.video-js .vjs-progress-control.guideflow_hovered .vjs-progress-holder:focus .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible;
}
.video-js .vjs-progress-control.disabled.guideflow_hovered .vjs-time-tooltip {
  font-size: 1em;
}
.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}
.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  z-index: 0;
}
.video-js .vjs-progress-control.guideflow_hovered .vjs-mouse-display {
  display: block;
}
.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}
.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  display: none;
}
.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}
.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em 0 0.45em;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari */
  -webkit-user-select: none;
  /* Konqueror HTML */
  /* Firefox */
  /* Internet Explorer/Edge */
  /* Non-prefixed version, currently supported by Chrome and Opera */
  user-select: none;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}
.video-js .vjs-slider.disabled {
  cursor: default;
}
.video-js .vjs-slider:focus {
  text-shadow: 0em 0em 1em white;
  box-shadow: 0 0 1em #fff;
}
.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none;
}
.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex;
}
.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}
.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px;
}
.video-js .vjs-volume-panel {
  transition: width 1s;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control,
.video-js .vjs-volume-panel:active .vjs-volume-control,
.video-js .vjs-volume-panel:focus .vjs-volume-control,
.video-js .vjs-volume-panel .vjs-volume-control:active,
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control,
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  margin-right: 0;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical,
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical {
  left: -3.5em;
  transition: left 0s;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: 10em;
  transition: width 0.1s;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}
.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3000em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
}
.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;
}
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: none;
}
.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  position: absolute;
  bottom: 3em;
  left: 0.5em;
}
.video-js .vjs-volume-panel {
  display: flex;
}
.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}
.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em;
}
.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto;
}
.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}
.video-js .vjs-volume-level:before {
  position: absolute;
  font-size: 0.9em;
}
.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}
.vjs-slider-vertical .vjs-volume-level:before {
  top: -0.5em;
  left: -0.3em;
}
.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}
.vjs-slider-horizontal .vjs-volume-level:before {
  top: -0.3em;
  right: -0.5em;
}
.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}
.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}
.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}
.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}
.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}
.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}
.vjs-has-started .vjs-poster {
  display: none;
}
.vjs-audio.vjs-has-started .vjs-poster {
  display: block;
}
.vjs-using-native-controls .vjs-poster {
  display: none;
}
.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}
.vjs-no-flex .vjs-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}
.video-js:not(.vjs-live) .vjs-live-control,
.video-js.vjs-liveui .vjs-live-control {
  display: none;
}
.video-js .vjs-seek-to-live-control {
  cursor: pointer;
  flex: none;
  display: inline-flex;
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 1em;
  line-height: 3em;
  width: auto;
  min-width: 4em;
}
.vjs-no-flex .vjs-seek-to-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}
.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
  display: none;
}
.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
  cursor: auto;
}
.vjs-seek-to-live-control .vjs-icon-placeholder {
  margin-right: 0.5em;
  color: #888;
}
.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
  color: red;
}
.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}
.vjs-live .vjs-time-control {
  display: none;
}
.video-js .vjs-current-time,
.vjs-no-flex .vjs-current-time {
  display: none;
}
.video-js .vjs-duration,
.vjs-no-flex .vjs-duration {
  display: none;
}
.vjs-time-divider {
  display: none;
  line-height: 3em;
}
.vjs-live .vjs-time-divider {
  display: none;
}
.video-js .vjs-play-control {
  cursor: pointer;
}
.video-js .vjs-play-control .vjs-icon-placeholder {
  flex: none;
}
.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}
.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
}
.vjs-subtitles {
  color: #fff;
}
.vjs-captions {
  color: #fc6;
}
.vjs-tt-cue {
  display: block;
}
video::-webkit-media-text-track-display {
  transform: translateY(-3em);
}
.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  transform: translateY(-1.5em);
}
.video-js .vjs-picture-in-picture-control {
  cursor: pointer;
  flex: none;
}
.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none;
}
.vjs-playback-rate > .vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center;
}
.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0em;
}
.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}
.vjs-error .vjs-error-display:before {
  color: #fff;
  content: "X";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center;
  top: 50%;
  vertical-align: middle;
  width: 100%;
}
.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  text-align: left;
  border: 6px solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  visibility: hidden;
}
.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: block;
  animation: vjs-spinner-show 0s linear 0.3s forwards;
}
.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
  content: "";
  position: absolute;
  margin: -6px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white;
}
.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}
.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: white;
}
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: white;
  animation-delay: 0.44s;
}
@keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@keyframes vjs-spinner-spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}
.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}
.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}
.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "";
  font-size: 1.5em;
  line-height: inherit;
}
.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}
.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " ";
  font-size: 1.5em;
  line-height: inherit;
}
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-control,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-control,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-control {
  display: none;
}
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.guideflow_hovered,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.guideflow_hovered,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.guideflow_hovered,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: auto;
  width: initial;
}
.video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-liveui) .vjs-subs-caps-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-live) .vjs-subs-caps-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subs-caps-button {
  display: none;
}
.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-custom-control-spacer,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-custom-control-spacer {
  flex: auto;
  display: block;
}
.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui.vjs-no-flex .vjs-custom-control-spacer,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny.vjs-no-flex .vjs-custom-control-spacer {
  width: auto;
}
.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-progress-control,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-progress-control {
  display: none;
}
.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%;
}
.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}
.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
  display: table-cell;
}
.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}
@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0px 24px;
  }
  .vjs-track-settings-controls .vjs-default-button {
    margin-bottom: 20px;
  }
  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: -1;
  }
  .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content {
    grid-template-columns: 1fr;
  }
}
.vjs-track-setting > select {
  margin-right: 1em;
  margin-bottom: 0.5em;
}
.vjs-text-track-settings fieldset {
  margin: 5px;
  padding: 3px;
  border: none;
}
.vjs-text-track-settings fieldset span {
  display: inline-block;
}
.vjs-text-track-settings fieldset span > select {
  max-width: 7.3em;
}
.vjs-text-track-settings legend {
  color: #fff;
  margin: 0 0 5px 0;
}
.vjs-text-track-settings .vjs-label {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, #73859f 100%);
}
.vjs-track-settings-controls button.guideflow_hovered {
  color: rgba(43, 51, 63, 0.75);
}
.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, #73859f 100%);
  color: #2B333F;
  cursor: pointer;
  border-radius: 2px;
}
.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}
@media print {
  .video-js > *:not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}
.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000;
}
.js-focus-visible .video-js *:focus:not(.focus-visible) {
  outline: none;
  background: none;
}
.video-js *:focus:not(:focus-visible),
.video-js .vjs-menu *:focus:not(:focus-visible) {
  outline: none;
  background: none;
}
.react-tel-input {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  position: relative;
  width: 100%;
}
.react-tel-input :disabled {
  cursor: not-allowed;
}
.react-tel-input .flag {
  width: 16px;
  height: 11px;
  background-image: url(https://html-assets-prod.guideflow.com/6761dd09e2527e864db6722b830d586f06a46585);
}
.react-tel-input .ad {
  background-position: -16px 0;
}
.react-tel-input .ae {
  background-position: -32px 0;
}
.react-tel-input .af {
  background-position: -48px 0;
}
.react-tel-input .ag {
  background-position: -64px 0;
}
.react-tel-input .ai {
  background-position: -80px 0;
}
.react-tel-input .al {
  background-position: -96px 0;
}
.react-tel-input .am {
  background-position: -112px 0;
}
.react-tel-input .ao {
  background-position: -128px 0;
}
.react-tel-input .ar {
  background-position: -144px 0;
}
.react-tel-input .as {
  background-position: -160px 0;
}
.react-tel-input .at {
  background-position: -176px 0;
}
.react-tel-input .au {
  background-position: -192px 0;
}
.react-tel-input .aw {
  background-position: -208px 0;
}
.react-tel-input .az {
  background-position: -224px 0;
}
.react-tel-input .ba {
  background-position: -240px 0;
}
.react-tel-input .bb {
  background-position: 0 -11px;
}
.react-tel-input .bd {
  background-position: -16px -11px;
}
.react-tel-input .be {
  background-position: -32px -11px;
}
.react-tel-input .bf {
  background-position: -48px -11px;
}
.react-tel-input .bg {
  background-position: -64px -11px;
}
.react-tel-input .bh {
  background-position: -80px -11px;
}
.react-tel-input .bi {
  background-position: -96px -11px;
}
.react-tel-input .bj {
  background-position: -112px -11px;
}
.react-tel-input .bm {
  background-position: -128px -11px;
}
.react-tel-input .bn {
  background-position: -144px -11px;
}
.react-tel-input .bo {
  background-position: -160px -11px;
}
.react-tel-input .br {
  background-position: -176px -11px;
}
.react-tel-input .bs {
  background-position: -192px -11px;
}
.react-tel-input .bt {
  background-position: -208px -11px;
}
.react-tel-input .bw {
  background-position: -224px -11px;
}
.react-tel-input .by {
  background-position: -240px -11px;
}
.react-tel-input .bz {
  background-position: 0 -22px;
}
.react-tel-input .ca {
  background-position: -16px -22px;
}
.react-tel-input .cd {
  background-position: -32px -22px;
}
.react-tel-input .cf {
  background-position: -48px -22px;
}
.react-tel-input .cg {
  background-position: -64px -22px;
}
.react-tel-input .ch {
  background-position: -80px -22px;
}
.react-tel-input .ci {
  background-position: -96px -22px;
}
.react-tel-input .ck {
  background-position: -112px -22px;
}
.react-tel-input .cl {
  background-position: -128px -22px;
}
.react-tel-input .cm {
  background-position: -144px -22px;
}
.react-tel-input .cn {
  background-position: -160px -22px;
}
.react-tel-input .co {
  background-position: -176px -22px;
}
.react-tel-input .cr {
  background-position: -192px -22px;
}
.react-tel-input .cu {
  background-position: -208px -22px;
}
.react-tel-input .cv {
  background-position: -224px -22px;
}
.react-tel-input .cw {
  background-position: -240px -22px;
}
.react-tel-input .cy {
  background-position: 0 -33px;
}
.react-tel-input .cz {
  background-position: -16px -33px;
}
.react-tel-input .de {
  background-position: -32px -33px;
}
.react-tel-input .dj {
  background-position: -48px -33px;
}
.react-tel-input .dk {
  background-position: -64px -33px;
}
.react-tel-input .dm {
  background-position: -80px -33px;
}
.react-tel-input .do {
  background-position: -96px -33px;
}
.react-tel-input .dz {
  background-position: -112px -33px;
}
.react-tel-input .ec {
  background-position: -128px -33px;
}
.react-tel-input .ee {
  background-position: -144px -33px;
}
.react-tel-input .eg {
  background-position: -160px -33px;
}
.react-tel-input .er {
  background-position: -176px -33px;
}
.react-tel-input .es {
  background-position: -192px -33px;
}
.react-tel-input .et {
  background-position: -208px -33px;
}
.react-tel-input .fi {
  background-position: -224px -33px;
}
.react-tel-input .fj {
  background-position: -240px -33px;
}
.react-tel-input .fk {
  background-position: 0 -44px;
}
.react-tel-input .fm {
  background-position: -16px -44px;
}
.react-tel-input .fo {
  background-position: -32px -44px;
}
.react-tel-input .fr,
.react-tel-input .bl,
.react-tel-input .mf {
  background-position: -48px -44px;
}
.react-tel-input .ga {
  background-position: -64px -44px;
}
.react-tel-input .gb {
  background-position: -80px -44px;
}
.react-tel-input .gd {
  background-position: -96px -44px;
}
.react-tel-input .ge {
  background-position: -112px -44px;
}
.react-tel-input .gf {
  background-position: -128px -44px;
}
.react-tel-input .gh {
  background-position: -144px -44px;
}
.react-tel-input .gi {
  background-position: -160px -44px;
}
.react-tel-input .gl {
  background-position: -176px -44px;
}
.react-tel-input .gm {
  background-position: -192px -44px;
}
.react-tel-input .gn {
  background-position: -208px -44px;
}
.react-tel-input .gp {
  background-position: -224px -44px;
}
.react-tel-input .gq {
  background-position: -240px -44px;
}
.react-tel-input .gr {
  background-position: 0 -55px;
}
.react-tel-input .gt {
  background-position: -16px -55px;
}
.react-tel-input .gu {
  background-position: -32px -55px;
}
.react-tel-input .gw {
  background-position: -48px -55px;
}
.react-tel-input .gy {
  background-position: -64px -55px;
}
.react-tel-input .hk {
  background-position: -80px -55px;
}
.react-tel-input .hn {
  background-position: -96px -55px;
}
.react-tel-input .hr {
  background-position: -112px -55px;
}
.react-tel-input .ht {
  background-position: -128px -55px;
}
.react-tel-input .hu {
  background-position: -144px -55px;
}
.react-tel-input .id {
  background-position: -160px -55px;
}
.react-tel-input .ie {
  background-position: -176px -55px;
}
.react-tel-input .il {
  background-position: -192px -55px;
}
.react-tel-input .in {
  background-position: -208px -55px;
}
.react-tel-input .io {
  background-position: -224px -55px;
}
.react-tel-input .iq {
  background-position: -240px -55px;
}
.react-tel-input .ir {
  background-position: 0 -66px;
}
.react-tel-input .is {
  background-position: -16px -66px;
}
.react-tel-input .it {
  background-position: -32px -66px;
}
.react-tel-input .je {
  background-position: -144px -154px;
}
.react-tel-input .jm {
  background-position: -48px -66px;
}
.react-tel-input .jo {
  background-position: -64px -66px;
}
.react-tel-input .jp {
  background-position: -80px -66px;
}
.react-tel-input .ke {
  background-position: -96px -66px;
}
.react-tel-input .kg {
  background-position: -112px -66px;
}
.react-tel-input .kh {
  background-position: -128px -66px;
}
.react-tel-input .ki {
  background-position: -144px -66px;
}
.react-tel-input .xk {
  background-position: -128px -154px;
}
.react-tel-input .km {
  background-position: -160px -66px;
}
.react-tel-input .kn {
  background-position: -176px -66px;
}
.react-tel-input .kp {
  background-position: -192px -66px;
}
.react-tel-input .kr {
  background-position: -208px -66px;
}
.react-tel-input .kw {
  background-position: -224px -66px;
}
.react-tel-input .ky {
  background-position: -240px -66px;
}
.react-tel-input .kz {
  background-position: 0 -77px;
}
.react-tel-input .la {
  background-position: -16px -77px;
}
.react-tel-input .lb {
  background-position: -32px -77px;
}
.react-tel-input .lc {
  background-position: -48px -77px;
}
.react-tel-input .li {
  background-position: -64px -77px;
}
.react-tel-input .lk {
  background-position: -80px -77px;
}
.react-tel-input .lr {
  background-position: -96px -77px;
}
.react-tel-input .ls {
  background-position: -112px -77px;
}
.react-tel-input .lt {
  background-position: -128px -77px;
}
.react-tel-input .lu {
  background-position: -144px -77px;
}
.react-tel-input .lv {
  background-position: -160px -77px;
}
.react-tel-input .ly {
  background-position: -176px -77px;
}
.react-tel-input .ma {
  background-position: -192px -77px;
}
.react-tel-input .mc {
  background-position: -208px -77px;
}
.react-tel-input .md {
  background-position: -224px -77px;
}
.react-tel-input .me {
  background-position: -112px -154px;
  height: 12px;
}
.react-tel-input .mg {
  background-position: 0 -88px;
}
.react-tel-input .mh {
  background-position: -16px -88px;
}
.react-tel-input .mk {
  background-position: -32px -88px;
}
.react-tel-input .ml {
  background-position: -48px -88px;
}
.react-tel-input .mm {
  background-position: -64px -88px;
}
.react-tel-input .mn {
  background-position: -80px -88px;
}
.react-tel-input .mo {
  background-position: -96px -88px;
}
.react-tel-input .mp {
  background-position: -112px -88px;
}
.react-tel-input .mq {
  background-position: -128px -88px;
}
.react-tel-input .mr {
  background-position: -144px -88px;
}
.react-tel-input .ms {
  background-position: -160px -88px;
}
.react-tel-input .mt {
  background-position: -176px -88px;
}
.react-tel-input .mu {
  background-position: -192px -88px;
}
.react-tel-input .mv {
  background-position: -208px -88px;
}
.react-tel-input .mw {
  background-position: -224px -88px;
}
.react-tel-input .mx {
  background-position: -240px -88px;
}
.react-tel-input .my {
  background-position: 0 -99px;
}
.react-tel-input .mz {
  background-position: -16px -99px;
}
.react-tel-input .na {
  background-position: -32px -99px;
}
.react-tel-input .nc {
  background-position: -48px -99px;
}
.react-tel-input .ne {
  background-position: -64px -99px;
}
.react-tel-input .nf {
  background-position: -80px -99px;
}
.react-tel-input .ng {
  background-position: -96px -99px;
}
.react-tel-input .ni {
  background-position: -112px -99px;
}
.react-tel-input .nl,
.react-tel-input .bq {
  background-position: -128px -99px;
}
.react-tel-input .no {
  background-position: -144px -99px;
}
.react-tel-input .np {
  background-position: -160px -99px;
}
.react-tel-input .nr {
  background-position: -176px -99px;
}
.react-tel-input .nu {
  background-position: -192px -99px;
}
.react-tel-input .nz {
  background-position: -208px -99px;
}
.react-tel-input .om {
  background-position: -224px -99px;
}
.react-tel-input .pa {
  background-position: -240px -99px;
}
.react-tel-input .pe {
  background-position: 0 -110px;
}
.react-tel-input .pf {
  background-position: -16px -110px;
}
.react-tel-input .pg {
  background-position: -32px -110px;
}
.react-tel-input .ph {
  background-position: -48px -110px;
}
.react-tel-input .pk {
  background-position: -64px -110px;
}
.react-tel-input .pl {
  background-position: -80px -110px;
}
.react-tel-input .pm {
  background-position: -96px -110px;
}
.react-tel-input .pr {
  background-position: -112px -110px;
}
.react-tel-input .ps {
  background-position: -128px -110px;
}
.react-tel-input .pt {
  background-position: -144px -110px;
}
.react-tel-input .pw {
  background-position: -160px -110px;
}
.react-tel-input .py {
  background-position: -176px -110px;
}
.react-tel-input .qa {
  background-position: -192px -110px;
}
.react-tel-input .re {
  background-position: -208px -110px;
}
.react-tel-input .ro {
  background-position: -224px -110px;
}
.react-tel-input .rs {
  background-position: -240px -110px;
}
.react-tel-input .ru {
  background-position: 0 -121px;
}
.react-tel-input .rw {
  background-position: -16px -121px;
}
.react-tel-input .sa {
  background-position: -32px -121px;
}
.react-tel-input .sb {
  background-position: -48px -121px;
}
.react-tel-input .sc {
  background-position: -64px -121px;
}
.react-tel-input .sd {
  background-position: -80px -121px;
}
.react-tel-input .se {
  background-position: -96px -121px;
}
.react-tel-input .sg {
  background-position: -112px -121px;
}
.react-tel-input .sh {
  background-position: -128px -121px;
}
.react-tel-input .si {
  background-position: -144px -121px;
}
.react-tel-input .sk {
  background-position: -160px -121px;
}
.react-tel-input .sl {
  background-position: -176px -121px;
}
.react-tel-input .sm {
  background-position: -192px -121px;
}
.react-tel-input .sn {
  background-position: -208px -121px;
}
.react-tel-input .so {
  background-position: -224px -121px;
}
.react-tel-input .sr {
  background-position: -240px -121px;
}
.react-tel-input .ss {
  background-position: 0 -132px;
}
.react-tel-input .st {
  background-position: -16px -132px;
}
.react-tel-input .sv {
  background-position: -32px -132px;
}
.react-tel-input .sx {
  background-position: -48px -132px;
}
.react-tel-input .sy {
  background-position: -64px -132px;
}
.react-tel-input .sz {
  background-position: -80px -132px;
}
.react-tel-input .tc {
  background-position: -96px -132px;
}
.react-tel-input .td {
  background-position: -112px -132px;
}
.react-tel-input .tg {
  background-position: -128px -132px;
}
.react-tel-input .th {
  background-position: -144px -132px;
}
.react-tel-input .tj {
  background-position: -160px -132px;
}
.react-tel-input .tk {
  background-position: -176px -132px;
}
.react-tel-input .tl {
  background-position: -192px -132px;
}
.react-tel-input .tm {
  background-position: -208px -132px;
}
.react-tel-input .tn {
  background-position: -224px -132px;
}
.react-tel-input .to {
  background-position: -240px -132px;
}
.react-tel-input .tr {
  background-position: 0 -143px;
}
.react-tel-input .tt {
  background-position: -16px -143px;
}
.react-tel-input .tv {
  background-position: -32px -143px;
}
.react-tel-input .tw {
  background-position: -48px -143px;
}
.react-tel-input .tz {
  background-position: -64px -143px;
}
.react-tel-input .ua {
  background-position: -80px -143px;
}
.react-tel-input .ug {
  background-position: -96px -143px;
}
.react-tel-input .us {
  background-position: -112px -143px;
}
.react-tel-input .uy {
  background-position: -128px -143px;
}
.react-tel-input .uz {
  background-position: -144px -143px;
}
.react-tel-input .va {
  background-position: -160px -143px;
}
.react-tel-input .vc {
  background-position: -176px -143px;
}
.react-tel-input .ve {
  background-position: -192px -143px;
}
.react-tel-input .vg {
  background-position: -208px -143px;
}
.react-tel-input .vi {
  background-position: -224px -143px;
}
.react-tel-input .vn {
  background-position: -240px -143px;
}
.react-tel-input .vu {
  background-position: 0 -154px;
}
.react-tel-input .wf {
  background-position: -16px -154px;
}
.react-tel-input .ws {
  background-position: -32px -154px;
}
.react-tel-input .ye {
  background-position: -48px -154px;
}
.react-tel-input .za {
  background-position: -64px -154px;
}
.react-tel-input .zm {
  background-position: -80px -154px;
}
.react-tel-input .zw {
  background-position: -96px -154px;
}
.react-tel-input * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.react-tel-input .hide {
  display: none;
}
.react-tel-input .v-hide {
  visibility: hidden;
}
.react-tel-input .form-control {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.01rem;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-left: 48px;
  margin-left: 0;
  background: #FFFFFF;
  border: 1px solid #CACACA;
  border-radius: 5px;
  line-height: 25px;
  height: 35px;
  width: 300px;
  outline: none;
}
.react-tel-input .form-control.invalid-number {
  border: 1px solid #d79f9f;
  background-color: #FAF0F0;
  border-left-color: #cacaca;
}
.react-tel-input .form-control.invalid-number:focus {
  border: 1px solid #d79f9f;
  border-left-color: #cacaca;
  background-color: #FAF0F0;
}
.react-tel-input .flag-dropdown {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 0;
  background-color: #f5f5f5;
  border: 1px solid #cacaca;
  border-radius: 3px 0 0 3px;
}
.react-tel-input .flag-dropdown.guideflow_hovered,
.react-tel-input .flag-dropdown:focus {
  cursor: pointer;
}
.react-tel-input .flag-dropdown.invalid-number {
  border-color: #d79f9f;
}
.react-tel-input .flag-dropdown.open {
  z-index: 2;
  background: #fff;
  border-radius: 3px 0 0 0;
}
.react-tel-input .flag-dropdown.open .selected-flag {
  background: #fff;
  border-radius: 3px 0 0 0;
}
.react-tel-input input[disabled] + .flag-dropdown.guideflow_hovered {
  cursor: default;
}
.react-tel-input input[disabled] + .flag-dropdown.guideflow_hovered .selected-flag {
  background-color: transparent;
}
.react-tel-input .selected-flag {
  outline: none;
  position: relative;
  width: 38px;
  height: 100%;
  padding: 0 0 0 8px;
  border-radius: 3px 0 0 3px;
}
.react-tel-input .selected-flag.guideflow_hovered,
.react-tel-input .selected-flag:focus {
  background-color: #fff;
}
.react-tel-input .selected-flag .flag {
  position: absolute;
  top: 50%;
  margin-top: -5px;
}
.react-tel-input .selected-flag .arrow {
  position: relative;
  top: 50%;
  margin-top: -2px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}
.react-tel-input .selected-flag .arrow.up {
  border-top: none;
  border-bottom: 4px solid #555;
}
.react-tel-input .country-list {
  outline: none;
  z-index: 1;
  list-style: none;
  position: absolute;
  padding: 0;
  margin: 10px 0 10px -1px;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.35);
  background-color: white;
  width: 300px;
  max-height: 200px;
  overflow-y: scroll;
  border-radius: 0 0 3px 3px;
}
.react-tel-input .country-list .flag {
  display: inline-block;
}
.react-tel-input .country-list .divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}
.react-tel-input .country-list .country {
  padding: 7px 9px;
}
.react-tel-input .country-list .country .dial-code {
  color: #6b6b6b;
}
.react-tel-input .country-list .country.guideflow_hovered {
  background-color: #f1f1f1;
}
.react-tel-input .country-list .country.highlight {
  background-color: #f1f1f1;
}
.react-tel-input .country-list .flag {
  margin-right: 7px;
  margin-top: 2px;
}
.react-tel-input .country-list .country-name {
  margin-right: 6px;
}
.react-tel-input .country-list .search {
  position: sticky;
  top: 0;
  background-color: #fff;
  padding: 10px 0 6px 10px;
}
.react-tel-input .country-list .search-emoji {
  font-size: 15px;
}
.react-tel-input .country-list .search-box {
  border: 1px solid #cacaca;
  border-radius: 3px;
  font-size: 15px;
  line-height: 15px;
  margin-left: 6px;
  padding: 3px 8px 5px;
  outline: none;
}
.react-tel-input .country-list .no-entries-message {
  padding: 7px 10px 11px;
  opacity: 0.7;
}
.react-tel-input .invalid-number-message {
  position: absolute;
  z-index: 1;
  font-size: 13px;
  left: 46px;
  top: -8px;
  background: #fff;
  padding: 0 2px;
  color: #de0000;
}
.react-tel-input .special-label {
  display: none;
  position: absolute;
  z-index: 1;
  font-size: 13px;
  left: 46px;
  top: -8px;
  background: #fff;
  padding: 0 2px;
  white-space: nowrap;
}
.PresetDateRangePicker_panel {
  padding: 0 22px 11px;
}
.PresetDateRangePicker_button {
  position: relative;
  height: 100%;
  text-align: center;
  background: 0 0;
  border: 2px solid #00a699;
  color: #00a699;
  padding: 4px 12px;
  margin-right: 8px;
  font: inherit;
  font-weight: 700;
  line-height: normal;
  overflow: visible;
  box-sizing: border-box;
  cursor: pointer;
}
.PresetDateRangePicker_button:active {
  outline: 0;
}
.PresetDateRangePicker_button__selected {
  color: #fff;
  background: #00a699;
}
.SingleDatePickerInput {
  display: inline-block;
  background-color: #fff;
}
.SingleDatePickerInput__withBorder {
  border-radius: 2px;
  border: 1px solid #dbdbdb;
}
.SingleDatePickerInput__rtl {
  direction: rtl;
}
.SingleDatePickerInput__disabled {
  background-color: #f2f2f2;
}
.SingleDatePickerInput__block {
  display: block;
}
.SingleDatePickerInput__showClearDate {
  padding-right: 30px;
}
.SingleDatePickerInput_clearDate {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.SingleDatePickerInput_clearDate__default:focus,
.SingleDatePickerInput_clearDate__default.guideflow_hovered {
  background: #dbdbdb;
  border-radius: 50%;
}
.SingleDatePickerInput_clearDate__small {
  padding: 6px;
}
.SingleDatePickerInput_clearDate__hide {
  visibility: hidden;
}
.SingleDatePickerInput_clearDate_svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle;
}
.SingleDatePickerInput_clearDate_svg__small {
  height: 9px;
}
.SingleDatePickerInput_calendarIcon {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px;
}
.SingleDatePickerInput_calendarIcon_svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle;
}
.SingleDatePicker {
  position: relative;
  display: inline-block;
}
.SingleDatePicker__block {
  display: block;
}
.SingleDatePicker_picker {
  z-index: 1;
  background-color: #fff;
  position: absolute;
}
.SingleDatePicker_picker__rtl {
  direction: rtl;
}
.SingleDatePicker_picker__directionLeft {
  left: 0;
}
.SingleDatePicker_picker__directionRight {
  right: 0;
}
.SingleDatePicker_picker__portal {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.SingleDatePicker_picker__fullScreenPortal {
  background-color: #fff;
}
.SingleDatePicker_closeButton {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2;
}
.SingleDatePicker_closeButton:focus,
.SingleDatePicker_closeButton.guideflow_hovered {
  color: #b0b3b4;
  text-decoration: none;
}
.SingleDatePicker_closeButton_svg {
  height: 15px;
  width: 15px;
  fill: #cacccd;
}
.DayPickerKeyboardShortcuts_buttonReset {
  background: 0 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
}
.DayPickerKeyboardShortcuts_buttonReset:active {
  outline: 0;
}
.DayPickerKeyboardShortcuts_show {
  width: 33px;
  height: 26px;
  position: absolute;
  z-index: 2;
}
.DayPickerKeyboardShortcuts_show::before {
  content: "";
  display: block;
  position: absolute;
}
.DayPickerKeyboardShortcuts_show__bottomRight {
  bottom: 0;
  right: 0;
}
.DayPickerKeyboardShortcuts_show__bottomRight::before {
  border-top: 26px solid transparent;
  border-right: 33px solid #00a699;
  bottom: 0;
  right: 0;
}
.DayPickerKeyboardShortcuts_show__bottomRight.guideflow_hovered::before {
  border-right: 33px solid #008489;
}
.DayPickerKeyboardShortcuts_show__topRight {
  top: 0;
  right: 0;
}
.DayPickerKeyboardShortcuts_show__topRight::before {
  border-bottom: 26px solid transparent;
  border-right: 33px solid #00a699;
  top: 0;
  right: 0;
}
.DayPickerKeyboardShortcuts_show__topRight.guideflow_hovered::before {
  border-right: 33px solid #008489;
}
.DayPickerKeyboardShortcuts_show__topLeft {
  top: 0;
  left: 0;
}
.DayPickerKeyboardShortcuts_show__topLeft::before {
  border-bottom: 26px solid transparent;
  border-left: 33px solid #00a699;
  top: 0;
  left: 0;
}
.DayPickerKeyboardShortcuts_show__topLeft.guideflow_hovered::before {
  border-left: 33px solid #008489;
}
.DayPickerKeyboardShortcuts_showSpan {
  color: #fff;
  position: absolute;
}
.DayPickerKeyboardShortcuts_showSpan__bottomRight {
  bottom: 0;
  right: 5px;
}
.DayPickerKeyboardShortcuts_showSpan__topRight {
  top: 1px;
  right: 5px;
}
.DayPickerKeyboardShortcuts_showSpan__topLeft {
  top: 1px;
  left: 5px;
}
.DayPickerKeyboardShortcuts_panel {
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 22px;
  margin: 33px;
  text-align: left;
}
.DayPickerKeyboardShortcuts_title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.DayPickerKeyboardShortcuts_list {
  list-style: none;
  padding: 0;
  font-size: 14px;
}
.DayPickerKeyboardShortcuts_close {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
}
.DayPickerKeyboardShortcuts_close:active {
  outline: 0;
}
.DayPickerKeyboardShortcuts_closeSvg {
  height: 15px;
  width: 15px;
  fill: #cacccd;
}
.DayPickerKeyboardShortcuts_closeSvg:focus,
.DayPickerKeyboardShortcuts_closeSvg.guideflow_hovered {
  fill: #82888a;
}
.CalendarDay {
  box-sizing: border-box;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
}
.CalendarDay:active {
  outline: 0;
}
.CalendarDay__defaultCursor {
  cursor: default;
}
.CalendarDay__default {
  border: 1px solid #e4e7e7;
  color: #484848;
  background: #fff;
}
.CalendarDay__default.guideflow_hovered {
  background: #e4e7e7;
  border: 1px solid #e4e7e7;
  color: inherit;
}
.CalendarDay__hovered_offset {
  background: #f4f5f5;
  border: 1px double #e4e7e7;
  color: inherit;
}
.CalendarDay__outside {
  border: 0;
  background: #fff;
  color: #484848;
}
.CalendarDay__outside.guideflow_hovered {
  border: 0;
}
.CalendarDay__blocked_minimum_nights {
  background: #fff;
  border: 1px solid #eceeee;
  color: #cacccd;
}
.CalendarDay__blocked_minimum_nights:active,
.CalendarDay__blocked_minimum_nights.guideflow_hovered {
  background: #fff;
  color: #cacccd;
}
.CalendarDay__highlighted_calendar {
  background: #ffe8bc;
  color: #484848;
}
.CalendarDay__highlighted_calendar:active,
.CalendarDay__highlighted_calendar.guideflow_hovered {
  background: #ffce71;
  color: #484848;
}
.CalendarDay__selected_span {
  background: #66e2da;
  border: 1px double #33dacd;
  color: #fff;
}
.CalendarDay__selected_span:active,
.CalendarDay__selected_span.guideflow_hovered {
  background: #33dacd;
  border: 1px double #33dacd;
  color: #fff;
}
.CalendarDay__selected,
.CalendarDay__selected:active,
.CalendarDay__selected.guideflow_hovered {
  background: #00a699;
  border: 1px double #00a699;
  color: #fff;
}
.CalendarDay__hovered_span,
.CalendarDay__hovered_span.guideflow_hovered {
  background: #b2f1ec;
  border: 1px double #80e8e0;
  color: #007a87;
}
.CalendarDay__hovered_span:active {
  background: #80e8e0;
  border: 1px double #80e8e0;
  color: #007a87;
}
.CalendarDay__blocked_calendar,
.CalendarDay__blocked_calendar:active,
.CalendarDay__blocked_calendar.guideflow_hovered {
  background: #cacccd;
  border: 1px solid #cacccd;
  color: #82888a;
}
.CalendarDay__blocked_out_of_range,
.CalendarDay__blocked_out_of_range:active,
.CalendarDay__blocked_out_of_range.guideflow_hovered {
  background: #fff;
  border: 1px solid #e4e7e7;
  color: #cacccd;
}
.CalendarDay__hovered_start_first_possible_end {
  background: #eceeee;
  border: 1px double #eceeee;
}
.CalendarDay__hovered_start_blocked_min_nights {
  background: #eceeee;
  border: 1px double #e4e7e7;
}
.CalendarMonth {
  background: #fff;
  text-align: center;
  vertical-align: top;
  -webkit-user-select: none;
  user-select: none;
}
.CalendarMonth_table {
  border-collapse: collapse;
  border-spacing: 0;
}
.CalendarMonth_verticalSpacing {
  border-collapse: separate;
}
.CalendarMonth_caption {
  color: #484848;
  font-size: 18px;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 37px;
  caption-side: initial;
}
.CalendarMonth_caption__verticalScrollable {
  padding-top: 12px;
  padding-bottom: 7px;
}
.CalendarMonthGrid {
  background: #fff;
  text-align: left;
  z-index: 0;
}
.CalendarMonthGrid__animating {
  z-index: 1;
}
.CalendarMonthGrid__horizontal {
  position: absolute;
  left: 9px;
}
.CalendarMonthGrid__vertical {
  margin: 0 auto;
}
.CalendarMonthGrid__vertical_scrollable {
  margin: 0 auto;
  overflow-y: scroll;
}
.CalendarMonthGrid_month__horizontal {
  display: inline-block;
  vertical-align: top;
  min-height: 100%;
}
.CalendarMonthGrid_month__hideForAnimation {
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}
.CalendarMonthGrid_month__hidden {
  visibility: hidden;
}
.DayPickerNavigation {
  position: relative;
  z-index: 2;
}
.DayPickerNavigation__horizontal {
  height: 0;
}
.DayPickerNavigation__verticalDefault {
  position: absolute;
  width: 100%;
  height: 52px;
  bottom: 0;
  left: 0;
}
.DayPickerNavigation__verticalScrollableDefault {
  position: relative;
}
.DayPickerNavigation__bottom {
  height: auto;
}
.DayPickerNavigation__bottomDefault {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: flex;
  justify-content: space-between;
}
.DayPickerNavigation_button {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border: 0;
  padding: 0;
  margin: 0;
}
.DayPickerNavigation_button__default {
  border: 1px solid #e4e7e7;
  background-color: #fff;
  color: #757575;
}
.DayPickerNavigation_button__default:focus,
.DayPickerNavigation_button__default.guideflow_hovered {
  border: 1px solid #c4c4c4;
}
.DayPickerNavigation_button__default:active {
  background: #f2f2f2;
}
.DayPickerNavigation_button__disabled {
  cursor: default;
  border: 1px solid #f2f2f2;
}
.DayPickerNavigation_button__disabled:focus,
.DayPickerNavigation_button__disabled.guideflow_hovered {
  border: 1px solid #f2f2f2;
}
.DayPickerNavigation_button__disabled:active {
  background: 0 0;
}
.DayPickerNavigation_button__horizontalDefault {
  position: absolute;
  top: 18px;
  line-height: 0.78;
  border-radius: 3px;
  padding: 6px 9px;
}
.DayPickerNavigation_bottomButton__horizontalDefault {
  position: static;
  margin: -10px 22px 30px;
}
.DayPickerNavigation_leftButton__horizontalDefault {
  left: 22px;
}
.DayPickerNavigation_rightButton__horizontalDefault {
  right: 22px;
}
.DayPickerNavigation_button__verticalDefault {
  padding: 5px;
  background: #fff;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  display: inline-block;
  text-align: center;
  height: 100%;
  width: 50%;
}
.DayPickerNavigation_nextButton__verticalDefault {
  border-left: 0;
}
.DayPickerNavigation_nextButton__verticalScrollableDefault {
  width: 100%;
}
.DayPickerNavigation_svg__horizontal {
  height: 19px;
  width: 19px;
  fill: #82888a;
  display: block;
}
.DayPickerNavigation_svg__vertical {
  height: 42px;
  width: 42px;
  fill: #484848;
}
.DayPickerNavigation_svg__disabled {
  fill: #f2f2f2;
}
.DayPicker {
  background: #fff;
  position: relative;
  text-align: left;
}
.DayPicker__horizontal {
  background: #fff;
}
.DayPicker__verticalScrollable {
  height: 100%;
}
.DayPicker__hidden {
  visibility: hidden;
}
.DayPicker__withBorder {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.07);
  border-radius: 3px;
}
.DayPicker_portal__horizontal {
  box-shadow: none;
  position: absolute;
  left: 50%;
  top: 50%;
}
.DayPicker_portal__vertical {
  position: initial;
}
.DayPicker_focusRegion {
  outline: 0;
}
.DayPicker_calendarInfo__horizontal,
.DayPicker_wrapper__horizontal {
  display: inline-block;
  vertical-align: top;
}
.DayPicker_weekHeaders {
  position: relative;
}
.DayPicker_weekHeaders__horizontal {
  margin-left: 9px;
}
.DayPicker_weekHeader {
  color: #757575;
  position: absolute;
  top: 62px;
  z-index: 2;
  text-align: left;
}
.DayPicker_weekHeader__vertical {
  left: 50%;
}
.DayPicker_weekHeader__verticalScrollable {
  top: 0;
  display: table-row;
  border-bottom: 1px solid #dbdbdb;
  background: #fff;
  margin-left: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.DayPicker_weekHeader_ul {
  list-style: none;
  margin: 1px 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
}
.DayPicker_weekHeader_li {
  display: inline-block;
  text-align: center;
}
.DayPicker_transitionContainer {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.DayPicker_transitionContainer__horizontal {
  transition: height 0.2s ease-in-out;
}
.DayPicker_transitionContainer__vertical {
  width: 100%;
}
.DayPicker_transitionContainer__verticalScrollable {
  padding-top: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow-y: scroll;
}
.DateInput {
  margin: 0;
  padding: 0;
  background: #fff;
  position: relative;
  display: inline-block;
  width: 130px;
  vertical-align: middle;
}
.DateInput__small {
  width: 97px;
}
.DateInput__block {
  width: 100%;
}
.DateInput__disabled {
  background: #f2f2f2;
  color: #dbdbdb;
}
.DateInput_input {
  font-weight: 200;
  font-size: 19px;
  line-height: 24px;
  color: #484848;
  background-color: #fff;
  width: 100%;
  padding: 11px 11px 9px;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid transparent;
  border-left: 0;
  border-radius: 0;
}
.DateInput_input__small {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.2px;
  padding: 7px 7px 5px;
}
.DateInput_input__regular {
  font-weight: auto;
}
.DateInput_input__readOnly {
  -webkit-user-select: none;
  user-select: none;
}
.DateInput_input__focused {
  outline: 0;
  background: #fff;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid #008489;
  border-left: 0;
}
.DateInput_input__disabled {
  background: #f2f2f2;
  font-style: italic;
}
.DateInput_screenReaderMessage {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.DateInput_fang {
  position: absolute;
  width: 20px;
  height: 10px;
  left: 22px;
  z-index: 2;
}
.DateInput_fangShape {
  fill: #fff;
}
.DateInput_fangStroke {
  stroke: #dbdbdb;
  fill: transparent;
}
.DateRangePickerInput {
  background-color: #fff;
  display: inline-block;
}
.DateRangePickerInput__disabled {
  background: #f2f2f2;
}
.DateRangePickerInput__withBorder {
  border-radius: 2px;
  border: 1px solid #dbdbdb;
}
.DateRangePickerInput__rtl {
  direction: rtl;
}
.DateRangePickerInput__block {
  display: block;
}
.DateRangePickerInput__showClearDates {
  padding-right: 30px;
}
.DateRangePickerInput_arrow {
  display: inline-block;
  vertical-align: middle;
  color: #484848;
}
.DateRangePickerInput_arrow_svg {
  vertical-align: middle;
  fill: #484848;
  height: 24px;
  width: 24px;
}
.DateRangePickerInput_clearDates {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.DateRangePickerInput_clearDates__small {
  padding: 6px;
}
.DateRangePickerInput_clearDates_default:focus,
.DateRangePickerInput_clearDates_default.guideflow_hovered {
  background: #dbdbdb;
  border-radius: 50%;
}
.DateRangePickerInput_clearDates__hide {
  visibility: hidden;
}
.DateRangePickerInput_clearDates_svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle;
}
.DateRangePickerInput_clearDates_svg__small {
  height: 9px;
}
.DateRangePickerInput_calendarIcon {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px;
}
.DateRangePickerInput_calendarIcon_svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle;
}
.DateRangePicker {
  position: relative;
  display: inline-block;
}
.DateRangePicker__block {
  display: block;
}
.DateRangePicker_picker {
  z-index: 1;
  background-color: #fff;
  position: absolute;
}
.DateRangePicker_picker__rtl {
  direction: rtl;
}
.DateRangePicker_picker__directionLeft {
  left: 0;
}
.DateRangePicker_picker__directionRight {
  right: 0;
}
.DateRangePicker_picker__portal {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.DateRangePicker_picker__fullScreenPortal {
  background-color: #fff;
}
.DateRangePicker_closeButton {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2;
}
.DateRangePicker_closeButton:focus,
.DateRangePicker_closeButton.guideflow_hovered {
  color: #b0b3b4;
  text-decoration: none;
}
.DateRangePicker_closeButton_svg {
  height: 15px;
  width: 15px;
  fill: #cacccd;
}
.react-toggle {
  touch-action: pan-x;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
.react-toggle-screenreader-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.react-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transition: opacity 0.25s;
}
.react-toggle-track {
  width: 50px;
  height: 24px;
  padding: 0;
  border-radius: 30px;
  background-color: #4D4D4D;
  transition: all 0.2s ease;
}
.react-toggle.guideflow_hovered:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #000000;
}
.react-toggle--checked .react-toggle-track {
  background-color: #19AB27;
}
.react-toggle--checked.guideflow_hovered:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #128D15;
}
.react-toggle-track-check {
  position: absolute;
  width: 14px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  left: 8px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.react-toggle--checked .react-toggle-track-check {
  opacity: 1;
  transition: opacity 0.25s ease;
}
.react-toggle-track-x {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  right: 10px;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.react-toggle--checked .react-toggle-track-x {
  opacity: 0;
}
.react-toggle-thumb {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  position: absolute;
  top: 1px;
  left: 1px;
  width: 22px;
  height: 22px;
  border: 1px solid #4D4D4D;
  border-radius: 50%;
  background-color: #FAFAFA;
  box-sizing: border-box;
  transition: all 0.25s ease;
}
.react-toggle--checked .react-toggle-thumb {
  left: 27px;
  border-color: #19AB27;
}
.react-toggle--focus .react-toggle-thumb {
  box-shadow: 0px 0px 2px 3px #0099E0;
}
.react-toggle:active:not(.react-toggle--disabled) .react-toggle-thumb {
  box-shadow: 0px 0px 5px 5px #0099E0;
}
/****************************************************************
* 01. Reset
****************************************************************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  display: inline-block;
}
/* Hide from IE Mac \*/
.clearfix {
  display: block;
}
/* End hide from IE Mac */
.none {
  display: none;
}
/* End Clearfix */
@font-face {
  font-family: "Proxima Nova";
  src: url(https://html-assets-prod.guideflow.com/89da86942ff7a9983955319a0f66025827ca0f68) format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(https://html-assets-prod.guideflow.com/cd9f611cebe9b0b20791a29bd826e1cc20ac63a0) format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(https://html-assets-prod.guideflow.com/f40a35c1f166386cb7ed62a258877cb81c0230c2) format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(https://html-assets-prod.guideflow.com/c5a343011ccfe1f06aca3cda288a57826e6e2f67) format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(https://html-assets-prod.guideflow.com/0faa1560443b682786e69cebdd6fc3351785087f) format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(https://html-assets-prod.guideflow.com/68c1a6b448bf3374089c3af9a9b2e0326048874b) format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(https://html-assets-prod.guideflow.com/4f67a3a70e50c5bd52e86ba8c4be6406248e8fd3) format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(https://html-assets-prod.guideflow.com/d19e3addb0af21664da338e79856c5f979b2784e) format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(https://html-assets-prod.guideflow.com/5fdd700b273369ea276114533a3865d48c6dc6d3) format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(https://html-assets-prod.guideflow.com/9f34e8dd3f63455bd54e36ede9d789b9932c846f) format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(https://html-assets-prod.guideflow.com/2748e193ff1b9f4b86e1597e0510e73de5a54662) format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(https://html-assets-prod.guideflow.com/b0d64845fb0c655e75f31a2299b6f79b809ed15c) format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: auto;
}
/* All other fonts are loaded through AWS (font-manager.js) */
.control-group.success .select2-container-multi input {
  border-color: none;
  box-shadow: 0 0 0 transparent;
}
.control-group.success .select2-choice {
  border-color: #65B349 !important;
}
.control-group.success .select2-container-multi .select2-choices {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  border-color: #65B349 !important;
}
.select2-container,
.select2-container-multi {
  width: 100%;
  margin: 0 0 10px 0;
  vertical-align: middle;
}
.select2-container .select2-choice,
.select2-container-multi .select2-choice,
.select2-container > ul,
.select2-container-multi > ul {
  color: #55606e;
  background: #fff;
  border: 1px solid #c2c6cb;
  height: 33px !important;
  line-height: 1.2;
  padding: 1px 12px;
  outline: 0;
  box-sizing: border-box;
  border-radius: 3x;
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.05);
  display: inline-block;
  width: 100%;
  float: left;
}
.select2-container .select2-choice div,
.select2-container-multi .select2-choice div,
.select2-container > ul div,
.select2-container-multi > ul div {
  border-left: none;
  background: none;
  width: 25px;
  opacity: 0.7;
}
.select2-container .select2-choice div b,
.select2-container-multi .select2-choice div b,
.select2-container > ul div b,
.select2-container-multi > ul div b {
  background: none !important;
  border-width: 5px 4px;
  border-color: #53545d transparent transparent;
  height: 0px;
  width: 1px;
  border-style: solid;
  display: inline-block;
  margin: 17px 15px 0;
}
.select2-container .select2-choice input,
.select2-container-multi .select2-choice input,
.select2-container > ul input,
.select2-container-multi > ul input {
  height: 34px;
}
.select2-container .select2-choice span,
.select2-container-multi .select2-choice span,
.select2-container > ul span,
.select2-container-multi > ul span {
  padding-top: 8px;
}
.select2-container .select2-choice.guideflow_hovered,
.select2-container-multi .select2-choice.guideflow_hovered,
.select2-container > ul.guideflow_hovered,
.select2-container-multi > ul.guideflow_hovered {
  border-color: #013a4c !important;
}
.select2-container .select2-choice:focus,
.select2-container-multi .select2-choice:focus,
.select2-container > ul:focus,
.select2-container-multi > ul:focus {
  border-color: #013a4c !important;
  box-shadow: 0 0 0 2px #eff1f3 !important;
}
.select2-container.select2-container-active .select2-choice,
.select2-container-multi.select2-container-active .select2-choice,
.select2-container.select2-container-active .select2-choices,
.select2-container-multi.select2-container-active .select2-choices {
  border-color: #013a4c;
  box-shadow: 0 0 0 2px rgba(4, 4, 71, 0.08);
}
.select2-container.select2-container-active.select2-dropdown-open .select2-choice,
.select2-container-multi.select2-container-active.select2-dropdown-open .select2-choice,
.select2-container.select2-container-active.select2-dropdown-open .select2-choices,
.select2-container-multi.select2-container-active.select2-dropdown-open .select2-choices {
  box-shadow: none;
}
.select2-container.select2-drop-above .select2-choice,
.select2-container-multi.select2-drop-above .select2-choice {
  background: none;
}
.select2-container-multi .select2-choices {
  padding: 1px 5px !important;
}
.select2-search {
  padding-left: 10px;
  padding-right: 10px;
}
.select2-no-search .select2-search {
  display: none;
}
.select2-results {
  padding: 0 0 0 10px;
  margin: 4px 10px 10px 0;
}
.select2-results .select2-highlighted {
  background: #3E4658;
  border-radius: 4px;
}
.select2-results .select2-result-label {
  padding: 5px 11px 4px;
}
.select2-drop {
  border-color: #013a4c;
}
.select2-drop.select2-drop.select2-drop-above {
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.08);
}
.select2-drop.select2-drop.select2-drop-above .select2-search input {
  margin-top: 10px;
}
.select2-drop.error {
  border-color: #E07B79;
}
.select2-container-multi .select2-choices {
  padding: 5px 10px;
  width: 100%;
  color: #6D6E78;
  background: none !important;
  border: 1px solid #cccccc;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s ease-out;
  border-radius: 4px;
}
.select2-container-multi.select2-container-active .select2-choices {
  border-color: #013a4c;
}
.select2-search-field > input[type="text"]:focus {
  box-shadow: none !important;
}
.select2-container .select2-choice div,
.select2-container-multi .select2-choice div,
.select2-container > ul div,
.select2-container-multi > ul div {
  width: auto !important;
}
.select2-container-multi .select2-choices .select2-search-choice {
  padding: 6px 9px 5px 25px;
  background: none;
  background-color: #F7F7F7;
  border-color: #DDD;
  margin: 5px 4px 3px 1px;
}
.select2-search-choice-close {
  background: url(https://html-assets-prod.guideflow.com/5cfeb02b500904f8565cf4735d024730aa101fc6);
  width: 10px;
  height: 10px;
  margin: 4px 5px 0 5px;
}
.select2-container .select2-choice .select2-arrow {
  background: none;
  border: none;
  padding: 2px 6px;
}
.select2-results li {
  color: #777883;
}
.select2-results .select2-highlighted {
  background: #E8EAEE;
  color: #6D6E78;
}
.select2-container .select2-choice abbr {
  top: 5px;
}
.select2-container.select2-container-disabled .select2-choice {
  background-color: #eee;
}
.select2-container.select2-container-disabled .select2-choice .select2-arrow {
  background-color: #eee;
}
.select-strikethrough-on-disabled.select2-container-disabled .select2-chosen {
  text-decoration: line-through;
}
.inactive-indicator {
  color: #AAACB8;
  float: right;
}
.input-append.date {
  cursor: pointer;
}
.input-append.date .add-on {
  margin: 6px 0 0 -36px !important;
  background: none;
  border: none;
  position: relative;
  z-index: 60;
}
.input-append.date .help-inline {
  font-size: 14px;
  margin: 11px 0 0 12px;
}
.datepicker {
  padding: 0;
  width: 300px;
  color: #555a6e;
}
.datepicker .clear {
  visibility: visible;
  display: table-cell;
}
.datepicker table {
  width: 100% !important;
}
.datepicker td {
  color: #30313a;
}
.datepicker .icon-arrow-left,
.datepicker .icon-arrow-right {
  background-image: url(https://html-assets-prod.guideflow.com/86b6b0c4f1d2b936ebec1216797daa0cbc855e80);
  background-position: top left;
  margin-top: -1px;
  opacity: 0.3;
}
.datepicker .icon-arrow-right {
  background-position: top right;
}
.datepicker .icon-arrow-left.guideflow_hovered,
.datepicker .icon-arrow-right.guideflow_hovered {
  opacity: 1;
}
.datepicker .switch {
  font-size: 16px;
}
.datepicker thead tr:first-child {
  background: #fff;
}
.datepicker .popover * {
  font-family: var(--contract-static-font-family);
}
.pick-date .definition {
  margin: 8px 10px 0 0;
  position: absolute;
  z-index: 60;
  color: #485054;
  text-align: center;
}
.pick-date input[type="text"] {
  padding: 7px 7px 7px 43px;
  font-size: 13px;
  border-radius: 4px;
}
.pick-date.to input[type="text"] {
  padding-left: 30px;
}
.CalendarDay {
  vertical-align: middle !important;
}
.CalendarMonth_caption > strong {
  font-weight: bold !important;
}
.DayPicker_weekHeader {
  line-height: 12px !important;
}
.DayPicker_weekHeader small {
  font-size: 11px !important;
}
.twitter-typeahead {
  width: 100%;
}
.tt-dropdown-menu {
  text-align: left;
}
.tt-query,
.tt-hint {
  width: 396px;
  height: 25px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 1.2;
  border: 2px solid #ccc;
  border-radius: 8px;
  outline: none;
}
.tt-query {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.tt-hint {
  color: #999 !important;
}
input.tt-hint[disabled],
input.tt-hint[readonly] {
  background-color: #fff !important;
}
.tt-dropdown-menu {
  width: 100%;
  padding: 0;
  margin-top: -11px;
  background-color: #fff;
  border: 1px solid #8b8f95;
  border-radius: 4px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}
.tt-suggestions {
  padding: 3px 3px;
  max-height: 400px;
  overflow-y: auto;
}
.tt-suggestion {
  padding: 4px 7px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.3;
}
.tt-suggestion strong {
  font-weight: normal;
  text-decoration: underline;
}
.tt-suggestion.tt-cursor {
  background-color: #E8EAEE;
}
.tt-suggestion p {
  margin: 0;
}
.fa-inline-css {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}
.box-product-sum table tbody td > button {
  font-family: var(--formatting-font-family);
}
.alert {
  position: relative;
  padding: 8px 35px 8px 14px !important;
  margin-bottom: 16px;
  border-radius: 4px;
  font-size: 13px !important;
  line-height: 1.3 !important;
}
.alert .btn-as-link:not(.next-field) {
  position: relative;
  right: -22px;
  color: black;
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.alert .btn-as-link:not(.next-field).guideflow_hovered {
  color: black;
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.alert .upgrade-your-account {
  cursor: pointer;
  text-decoration: underline;
}
.alert .go-to-settings {
  text-decoration: underline;
}
.alert .go-to-settings.guideflow_hovered {
  cursor: pointer;
  text-shadow: 0 0 0.65px #333, 0 0 0.65px #333;
}
.alert h4 {
  margin: 0 0 8px 0 !important;
  padding: 0 !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
  font-family: var(--contract-static-font-family);
}
.alert-info {
  color: #3E4658;
  background-color: #e6ebed;
  border-color: #e6ebed;
}
.alert-info h2,
.alert-info h4,
.alert-info .control-label {
  color: #3E4658 !important;
}
.alert-success {
  color: #7FA853;
  background-color: #F3FCF2;
  border-color: #D5E9C6;
}
.alert-success h2,
.alert-success h4,
.alert-success .control-label {
  color: #7FA853 !important;
}
.alert-danger,
.alert-error {
  color: #B95465;
  background-color: #ffeeee;
  border-color: #E9BDBD;
}
.alert-danger h2,
.alert-error h2,
.alert-danger h4,
.alert-error h4,
.alert-danger .control-label,
.alert-error .control-label {
  color: #B95465 !important;
}
.dropdown.dropdown-white .dropdown-toggle {
  color: white;
}
.dropdown-menu li > a.guideflow_hovered,
.dropdown-menu li > a:focus,
.dropdown-submenu.guideflow_hovered > a {
  background-image: none !important;
}
.dropdown-menu li:not(.active) > a.guideflow_hovered [class^="icon-"],
.dropdown-menu li:not(.active) > a:focus [class^="icon-"],
.dropdown-submenu.guideflow_hovered > a [class^="icon-"] {
  background-image: url(https://html-assets-prod.guideflow.com/7a5307330c48cc91053e819896e4641b0a1c518c);
}
.dropdown-menu li.active [class^="icon-"] {
  background-image: url(https://html-assets-prod.guideflow.com/7a5307330c48cc91053e819896e4641b0a1c518c);
}
.dropdown-menu .active > a,
.dropdown-menu .active > a.guideflow_hovered {
  background-image: none;
  color: #fff;
}
.dropdown-menu {
  padding: 10px 0;
  background-color: white;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  border-style: none;
  border-radius: 6px;
  min-width: 180px;
}
.dropdown-menu li {
  white-space: nowrap;
}
.dropdown-menu li a,
.dropdown-menu li button {
  display: block;
  padding: 4px 20px;
  color: #3E4658;
}
.dropdown-menu li a.hide,
.dropdown-menu li button.hide {
  display: none;
}
.dropdown-menu li a.guideflow_hovered,
.dropdown-menu li button.guideflow_hovered {
  color: #80c351;
  background-color: white;
}
.dropdown-menu li button {
  min-width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.nav-header {
  padding: 4px 15px;
  color: #757684;
}
.disabled {
  pointer-events: none;
}
.disabled > button {
  color: #EBEDF2 !important;
}
.nav-list > .active > a,
.nav-list > .active > a.guideflow_hovered,
.nav-list > .active > a:focus {
  background-color: #969aa6;
  border-radius: 4px;
}
.nav-list > li.nav-header .line-icon {
  margin-right: 8px ;
  opacity: 0.7;
}
.nav-list > li.sub-menu {
  margin-left: 20px;
}
.nav-list > li > a {
  padding: 4px 15px;
  color: #969aa6;
}
.nav-list > li > a .icon {
  opacity: 0.7;
  margin: 2px 12px 0 0;
}
.nav-list > li > a .line-icon {
  opacity: 0.7;
}
.nav-list > li > a.guideflow_hovered {
  background: #eceff2;
  color: #555a6e;
  border-radius: 4px;
}
.nav-list > li > a.guideflow_hovered .line-icon,
.nav-list > li > a.guideflow_hovered .icon {
  opacity: 1;
}
.nav-list.small > li > a {
  padding: 2px 12px;
}
.nav-list .divider {
  background-color: transparent;
  border: none;
}
.nav-list .divider.divider-small {
  margin: 4px 1px;
}
.dropdown-menu .nav > li:not(.active) > a.guideflow_hovered {
  background-color: #eee !important;
  background-image: none;
  color: #333;
}
/* Nav-list fix inside Submenu */
.submenu .nav-list {
  padding-left: 0;
  padding-right: 0;
}
.tooltip.in {
  opacity: 1;
  filter: alpha(opacity=100);
}
.tooltip.tooltip-help .tooltip-inner {
  background-color: #c8a578;
}
.tooltip.tooltip-help.top .tooltip-arrow {
  border-top-color: #c8a578;
}
.tooltip.tooltip-help.right .tooltip-arrow {
  border-right-color: #c8a578;
}
.tooltip.tooltip-help.left .tooltip-arrow {
  border-left-color: #c8a578;
}
.tooltip.tooltip-help.bottom .tooltip-arrow {
  border-bottom-color: #c8a578;
}
.tooltip .tooltip-arrow {
  border-bottom-color: #013a4c !important;
}
.tooltip .tooltip-inner {
  background-color: #013a4c;
  padding: 12px;
  white-space: normal !important;
  text-shadow: none !important;
  font-size: 12px;
  line-height: 14px;
  font-weight: 300;
}
.tooltip-warning-container .tooltip .tooltip-inner {
  background-color: #FFFCEE;
  border: 1px solid #F0DBB4;
  color: #B98D54;
}
.tooltip-warning-container .tooltip.top .tooltip-arrow {
  border-top-color: #F0DBB4;
}
.tooltip-warning-container .tooltip.right .tooltip-arrow {
  border-right-color: #F0DBB4;
}
.tooltip-warning-container .tooltip.left .tooltip-arrow {
  border-left-color: #F0DBB4;
}
.tooltip-warning-container .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #F0DBB4;
}
.chartContainer {
  position: relative;
}
.chartContainer > .updating {
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 1px;
  text-align: center;
}
.chartContainer > .updating > div {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-top: 20px;
  background: url(https://html-assets-prod.guideflow.com/85ac5631a50558e802a28b0730ca05befd32e303) center center no-repeat;
}
.chartContainer > .loading {
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.chartContainer > .loading > div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  background: url(https://html-assets-prod.guideflow.com/181e723efc66c41f2defc9feaeb6cf78c4ec00e9) center center no-repeat;
}
.label {
  padding: 3px 5px;
}
.label.label-large {
  font-size: 14px;
  padding: 3px 5px;
}
.label.label-person-me {
  background-color: #d0ecf5;
  color: #457D7F;
}
.label.label-person-1 {
  background-color: #ffe2b7;
  color: #95734f;
}
.label.label-person-2 {
  background-color: #ffc6cc;
  color: #ab5e5d;
}
.label.label-person-3 {
  background-color: #f6f1d1;
  color: #a09e5c;
}
.label.label-person-4 {
  background-color: #cff4c3;
  color: #6DAC63;
}
.label.label-person-5 {
  background-color: #ddb6fb;
  color: #74548C;
}
.label.label-person-6 {
  background-color: #9ab2ef;
  color: #56668C;
}
.label.label-person-7 {
  background-color: #457D7F;
}
.label.label-person-8 {
  background-color: #d2a26e;
}
.label.label-person-9 {
  background-color: #D27472;
}
.label.label-person-10 {
  background-color: #D0CE77;
}
.label.label-person-11 {
  background-color: #6DAC63;
}
.label.label-person-12 {
  background-color: #74548C;
}
.label.label-person-13 {
  background-color: #56668C;
}
.label.label-people {
  background-color: #eeeeee;
  color: #6D6E78;
  font-size: 12px !important;
  text-shadow: none !important;
  font-weight: normal;
}
.label.label-draft {
  background-color: #AAACB8;
  color: #fff;
}
.label.label-private {
  background-color: #f0e1b4;
  color: #B98D54;
  text-shadow: none !important;
  font-weight: normal;
  cursor: help;
}
.tooltip-inner .label.label-people {
  background-color: #767b8a;
  color: #fff;
}
.badge-count {
  position: absolute;
  top: -3px;
  right: 3px;
  background-color: #D13D47;
  color: #fff;
  font-size: 10px;
  padding: 0 4px;
  line-height: 14px;
  min-width: 6px;
  border-radius: 7px;
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: none;
  text-decoration: underline;
  letter-spacing: -0.02em;
}
.guest-footer__logo {
  display: inline-block;
  width: 135px;
  height: 35px;
  position: relative;
  top: 5px;
  margin-left: 4px;
  background: url(https://html-assets-prod.guideflow.com/50608a8b5ff18749d80b64082f7dd1d1cb260ef8) top left no-repeat;
}
.guest-footer__powered-by {
  color: white;
  margin-top: 5px;
}
.of-guest-footer__link {
  color: white;
}
.footer-guest-links {
  background: #013a4c;
  border-bottom: none;
}
.footer-guest-links .wrapper > div:first-child {
  padding-top: 50px;
}
.footer-guest-links .wrapper > div:last-child {
  padding: 30px 0 30px 12px;
}
.footer-guest-links.copyright {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 40px 60px 40px;
}
.footer-guest-links.copyright p {
  padding: 0 12px;
  white-space: nowrap;
}
.footer-guest-links h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 0 12px;
  margin: 0 0 10px;
}
.footer-guest-links ul li {
  display: block;
}
.footer-guest-links ul li a {
  padding: 7px;
  display: inline-block;
  border-radius: 4px;
  color: white;
  font-family: 'Proxima Nova', sans-serif;
}
.footer-guest-links ul li a.guideflow_hovered {
  text-decoration: underline;
}
.popover {
  padding: 0;
  max-width: 500px;
  z-index: 1043;
}
.popover .popover-title,
.popover .popover-title h3 {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  line-height: 18px;
  background-color: #F9F9F9;
  color: #6D6E78;
  font-weight: 600;
  font-family: var(--contract-static-font-family);
}
.popover .popover-content {
  padding: 12px;
  font-family: var(--contract-static-font-family);
  font-size: var(--contract-static-font-size);
}
.popover .popover-content input[type="submit"] {
  color: #fff;
}
@media screen and (max-width: 480px) {
  .popover {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    min-height: 100%;
    height: 100%;
    max-width: none;
    border: 0;
    border-radius: 0;
    overflow-y: auto;
  }
  .popover.top,
  .popover.bottom {
    margin-top: 0;
  }
  .popover .arrow {
    display: none;
  }
  .popover .editable-view {
    min-width: inherit;
  }
  .popover .popover-title {
    border-radius: 0;
  }
  .popover .popover-content {
    padding-bottom: 60px;
    border-radius: 0;
  }
}
.modal {
  width: 700px;
  margin-left: -350px;
  margin-bottom: 10px;
  border-color: #8b8f95;
  border-width: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12) !important;
}
.modal.large {
  width: 900px;
  margin-left: -450px;
}
.modal.small {
  width: 550px;
  margin-left: -250px;
}
.modal .modal-body {
  padding: 17px 25px;
  position: static;
}
.modal .modal-body table .pdf-icon {
  margin-right: 12px;
}
.modal .content-section {
  padding: 17px 25px;
}
.modal .modal-header {
  padding: 17px 25px;
  border-color: #e1e1e1;
}
.modal .modal-header h2 {
  color: #5e626e;
  margin-bottom: 0;
}
.modal .modal-header p {
  margin-bottom: 0;
}
.modal .modal-footer {
  padding: 17px 25px;
}
.modal .modal-footer > div.left {
  margin-top: -4px;
}
.modal .box-gray {
  border-top: 1px solid #eeeeee;
  box-sizing: border-box;
}
.modal .box-gray .item {
  margin: 0;
}
.modal i.icon {
  margin: -2px 8px 0 0;
}
.modal-header .close {
  font-size: 25px;
}
.modal-backdrop,
.modal-backdrop.fade.in {
  background: #868686;
  z-index: 1043;
}
@media screen and (max-width: 480px) {
  .modal {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    border: 0 !important;
  }
  .modal .modal-layout-container {
    position: relative;
    height: 100%;
    overflow-y: auto;
    background: #fff;
  }
  .modal .modal-header {
    padding: 7px 15px;
  }
  .modal .modal-body {
    padding-bottom: 60px;
  }
  .modal .modal-footer {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 7px 15px;
  }
}
body {
  background: #fff;
  font-family: 'Proxima Nova', sans-serif;
  color: #555a6e;
  font-size: 13px;
  line-height: 1.3;
}
body > .main-wrapper {
  height: auto;
  min-height: 100%;
}
body > .main-wrapper.with-footer {
  padding-bottom: 200px;
}
body.freeze-scroll .main-wrapper {
  overflow: hidden;
  position: fixed;
}
body.mobileMenuOpen {
  overflow: hidden;
}
html,
body,
.main-wrapper {
  height: 100%;
}
body,
input,
button,
select,
textarea,
.navbar-search .search-query {
  font-family: 'Proxima Nova', sans-serif;
}
.main-wrapper:after {
  content: "";
  display: block;
}
.wrapper {
  position: relative;
  width: 100%;
}
.app-body {
  position: relative;
}
.app-footer {
  height: 200px;
  margin-top: -200px;
  overflow: hidden;
  clear: both;
}
.app-ghost {
  position: fixed;
  top: 0;
  left: 0;
  padding: 4px 8px;
  z-index: 10000;
  border-radius: 0 0 4px 0;
  background-color: red;
  color: white;
  font-weight: bold;
}
.two-col-container {
  position: relative;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .sidebar {
    margin-right: 18px;
    width: 302px;
  }
}
.sidebar {
  height: calc(100vh - 60px);
  background-color: white;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  z-index: 1030;
}
.sidebar .js-expiry-days-container .popover,
.sidebar .js-validity-picker .popover,
.sidebar .js-expire-date-set .popover,
.sidebar .js-expire-date-unset .popover,
.sidebar .js-remind-me .popover,
.sidebar .js-agreement-value .popover {
  left: 7px !important;
}
.sidebar-content {
  display: flex;
  flex: 1 1;
  width: inherit;
  flex-direction: column;
  font-size: initial;
}
.sidebar-content .sidebar-tabs {
  padding-top: 23px;
}
.sidebar-content .sidebar-tabs-containers {
  display: flex;
  flex: 1 1;
  padding: 0;
  border-bottom: 2px solid #e1e1e1;
  overflow-y: auto;
  overflow-x: hidden;
}
.sidebar-content .of-sidebar-tab-container {
  flex: 1 1;
  padding: 4px 20px;
  overflow-y: auto;
  overflow-x: hidden;
}
.sidebar-content .js-parties,
.sidebar-content .js-settings,
.sidebar-content .js-audit-trail {
  padding-top: 12px;
}
.sidebar-content .js-settings [class*=LabelText],
.sidebar-content .js-settings .js-settings-other-actions {
  font-size: 13px;
}
.sidebar-content .js-expiry-days-container {
  font-size: var(--contract-static-font-size);
}
.guest-layout .sidebar {
  height: 100vh;
}
.guest-layout .sidebar .sidebar-content {
  padding-bottom: 60px;
}
.guest-layout .same-device .sidebar-content {
  padding-bottom: 0;
}
.content-area {
  margin-left: 220px;
  position: relative;
}
.content-area.no-sidebar {
  margin-left: 40px;
  margin-top: 40px;
}
.content-area.no-margin {
  margin-left: 0px;
}
.content-area.content-area-wide {
  padding: 36px 10px;
  margin-left: 0;
}
.content-area .content {
  padding: 36px 40px;
}
.line-bg-left {
  width: 1px;
  height: 100%;
  background: #E7E7E7;
  position: absolute;
  top: 0px;
}
.app-no-header .line-bg-left {
  top: 0;
}
.line-right {
  float: right;
}
.offscreen {
  position: absolute;
  top: 0;
  left: -2000px;
}
.restore-cursor {
  cursor: auto !important;
}
.cursor-pointer {
  cursor: pointer;
}
/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/
/* http://sonspring.com/journal/clearing-floats */
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */
.clearfix:before,
.clearfix:after {
  content: '.';
  /* Fix for safari replaced: \0020  with dot */
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.clearfix:after {
  clear: both;
}
/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/
.clearfix {
  zoom: 1;
}
.do-not-change-color {
  color: inherit !important;
}
.cke_button_icon.cke_button__datafield_icon {
  background-image: url(https://html-assets-prod.guideflow.com/e593d882b3820463d7103da4b7d94c8e6ae0a6be) !important;
  background-position: 0 0px !important;
  background-size: 16px !important;
}
.success_check_animation {
  margin: auto;
  margin-top: 0.2rem;
  margin-bottom: 1em;
  width: 99px;
  height: 99px;
  background-image: url(https://html-assets-prod.guideflow.com/1256795923522cdcce3f52ef87188407c61dc63e);
  background-size: 99px;
}
.ErrorScreenRight {
  background-image: url(https://html-assets-prod.guideflow.com/f0c372598bfcbc11b0ab37b66eba7b21f523ef85);
  width: 100%;
  height: 100vh;
  background-size: cover;
}
@media only screen and (max-width: 62rem) {
  .ErrorScreenRight {
    display: none;
  }
}
.ErrorScreenDust {
  position: absolute;
  top: -110px;
  right: 0;
  background-image: url(https://html-assets-prod.guideflow.com/cc05d134d7d93237c6125764cf658cb93bad3cc1);
  width: 120px;
  height: 90px;
  background-size: contain;
  pointer-events: none;
}
@media only screen and (max-width: 36rem) {
  .ErrorScreenDust {
    top: -165px;
  }
}
.ErrorScreenGradient {
  background-image: url(https://html-assets-prod.guideflow.com/8e267b3cfcfd8d047c5d3aeff669c44fa5ac98be);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  background-position: bottom;
  pointer-events: none;
}
@media only screen and (min-width: 1025px) {
  .ErrorScreenGradient {
    display: none;
  }
}
.Loading {
  height: 100vh;
  width: 100vw;
  position: relative;
  background-color: #e6ebed;
  z-index: 9999;
}
.LoadingContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.LoadingOneflowLogo {
  background-image: url(https://html-assets-prod.guideflow.com/96699d77760b4fb6c4a4c2a9e89248653e413e65);
  height: 117px;
  width: 117px;
  background-size: contain;
}
.LoadingAppLoader {
  background-image: url(https://html-assets-prod.guideflow.com/4a5adc1ccbe7205d70ee6dc2670060e7997e7c9f);
  height: 13px;
  width: 39px;
  background-size: contain;
  margin-left: 17px;
  margin-top: 10px;
}
.table-hover tbody tr.guideflow_hovered > td,
.table-hover tbody tr.guideflow_hovered > th {
  background-color: #f1f1f1;
}
.table-padding tr td {
  padding: 0 0 0 20px;
}
.table-padding tr td.first {
  padding: 0 20px 0 0;
}
.table-padding tr td.last {
  padding: 0 0 0 40px;
}
.table-padding thead tr td {
  padding-bottom: 5px;
}
.table-padding tr.has-margin-top td {
  padding-top: 10px;
}
.table-padding tfoot tr td {
  padding-top: 5px;
}
.table th {
  border-bottom: 1px solid #f1f1f1;
  border-top: 0;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  text-align: left;
}
.table td {
  border: 0;
  text-align: left;
}
.table td.align-center,
.table th.align-center {
  text-align: center;
}
.table tr:last-child td {
  border-bottom: 0;
}
.table .table {
  margin-bottom: 0;
}
.table .table.gray {
  border: 1px solid #D2D4D7;
  background: #F7F7F7;
}
.table.small {
  font-size: 13px;
}
.table.small > thead td {
  text-transform: uppercase;
  border-bottom: 0;
  padding-top: 15px;
}
.table.small > tbody tr:first-child td {
  padding-top: 15px;
}
.table.small > tbody tr:last-child td {
  padding-bottom: 15px;
}
.table.small tr td:first-child {
  padding-left: 0px;
}
.table.small .table tr td {
  padding: 8px;
}
.table.small > tbody td {
  border-bottom: none;
  line-height: 10px;
  color: #6D6E78;
}
table.table {
  color: #6D6E78;
}
table.table.table-no-lines {
  margin-bottom: 2px;
}
table.table.table-no-lines td {
  border: none;
}
table.table button {
  margin-right: 8px ;
}
table.table .family {
  max-width: 100px;
}
table.table .first {
  width: 420px;
}
table.table-compact td {
  padding: 3px 8px 3px 0;
}
.table-border-striped td {
  border-bottom: 1px solid #eeeeee;
}
.table-one-line td {
  vertical-align: middle;
}
ul.list {
  list-style: disc outside;
  padding-left: 20px;
}
ul.video-list li {
  width: calc(50% - 60px);
  height: 450px;
  min-width: 400px;
  margin-right: 60px;
  float: left;
}
.red {
  color: #D9534E;
}
.normal-gray {
  color: #6D6E78;
}
.green {
  color: #7fac4f;
}
.sign-green {
  color: #5aa54c;
}
.blue {
  color: #5c85ca;
}
.alert-yellow {
  color: #B98D54;
}
.alert-passion {
  color: #ca2128;
}
.alert-red {
  color: #B95465;
}
.alert-blue {
  color: #4070c1;
}
.light,
.light-gray {
  color: #969aa6;
}
.lighter-gray {
  color: #AAACB8;
}
p {
  margin: 0 0 20px 0;
}
p:last-child {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #555a6e;
  margin-bottom: 8px ;
  font-weight: normal;
}
h1 .light,
h2 .light,
h3 .light,
h4 .light,
h5 .light,
h6 .light {
  font-size: 15px;
  color: #434650;
  line-height: 1.3;
  opacity: 1;
}
h1 {
  font-size: 23px;
}
h2 {
  font-size: 18px;
  line-height: 1.3;
}
h3 {
  font-size: 15px;
  line-height: 1.3;
}
h4 {
  font-size: 13px;
  margin-bottom: 0;
  font-weight: 600;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: #969aa6;
}
abbr {
  white-space: nowrap;
}
a,
.btn-as-link {
  color: #3E4658;
  transition: 0.1s;
  transition: 0.1s ease-out;
}
a.guideflow_hovered,
.btn-as-link.guideflow_hovered {
  color: #3E4658;
  text-decoration: underline;
}
a[disabled],
.btn-as-link[disabled],
a.btn-disabled,
.btn-as-link.btn-disabled {
  box-shadow: none;
  background-color: #f2f6f8 !important;
  color: #99b0b7 !important;
  text-shadow: none;
  border: 1px solid #f2f6f8 !important;
  cursor: default;
  background: transparent !important;
  text-decoration: none !important;
}
a[disabled].guideflow_hovered,
.btn-as-link[disabled].guideflow_hovered,
a.btn-disabled.guideflow_hovered,
.btn-as-link.btn-disabled.guideflow_hovered {
  background-color: #f2f6f8 !important;
  color: #99b0b7 !important;
  text-shadow: none;
  border: 1px solid #f2f6f8 !important;
  cursor: default;
}
a[disabled]:active,
.btn-as-link[disabled]:active,
a.btn-disabled:active,
.btn-as-link.btn-disabled:active {
  box-shadow: none !important;
}
a[disabled].guideflow_hovered,
.btn-as-link[disabled].guideflow_hovered,
a.btn-disabled.guideflow_hovered,
.btn-as-link.btn-disabled.guideflow_hovered {
  background: transparent !important;
}
a.red,
.btn-as-link.red {
  color: #D9534E;
}
a.red.guideflow_hovered,
.btn-as-link.red.guideflow_hovered {
  color: #D9534E;
}
a .fa,
.btn-as-link .fa {
  margin-right: 6px;
}
.btn-as-link strong {
  color: var(--contract-static-text-color);
}
.btn-as-link {
  text-align: left;
}
strong {
  font-weight: 700;
}
.font-size-small {
  font-size: 12px;
}
.normal {
  font-weight: normal;
}
.normal-text {
  font-weight: normal;
}
.text-bold {
  font-weight: 600;
}
.text-underline {
  text-decoration: underline;
}
.text-italic {
  font-style: italic;
}
.uppercase {
  text-transform: uppercase;
}
.text-mini {
  line-height: 1.3;
}
.text-small {
  line-height: 1.3;
}
.text-small .contract-id {
  font-family: var(--contract-static-font-family);
}
.text-normal {
  line-height: 1.3;
}
.text-input {
  line-height: 1.3;
}
.text-label {
  line-height: 1.3;
}
.text-medium {
  line-height: 1.3;
}
.text-large {
  line-height: 1.3;
}
.text-xlarge,
.text-largest {
  line-height: 1.3;
}
.text-empty-line {
  min-height: 1.3;
}
.text-serif {
  font-family: "Bookman", Georgia, "Times New Roman", serif;
}
h4.nav-header {
  margin: 10px 0 0;
  padding: 0;
}
.no-wrap {
  white-space: nowrap;
}
.alternative-heading {
  display: block;
  padding: 0 0 3px;
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  color: #6D6E78;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.alternative-heading span.name {
  text-transform: uppercase;
}
.alternative-heading span.orgnr {
  margin-left: 10px;
  font-weight: normal;
  font-style: italic;
}
.alternative-heading span.country {
  margin-left: 2px;
  font-weight: normal;
}
.border-top {
  border-top: 1px solid #e1e1e1;
}
.border-right {
  border-right: 1px solid #e1e1e1;
}
.border-bottom {
  border-bottom: 1px solid #e1e1e1;
}
.border-left {
  border-left: 1px solid #e1e1e1;
}
.border-top-bottom {
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}
.border-left-right {
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
}
.center {
  margin: 0 auto;
}
.right {
  float: right ;
}
.left {
  float: left;
}
.iright {
  float: right !important;
}
.ileft {
  float: left !important;
}
.inline,
.inline-block {
  display: inline-block;
}
.i-inline-block {
  display: inline-block !important;
}
.block {
  display: block ;
}
.relative {
  position: relative;
}
.fixed {
  position: fixed;
}
.align-right {
  text-align: right ;
}
.align-left {
  text-align: left ;
}
.align-center {
  text-align: center ;
}
.ialign-right {
  text-align: right !important;
}
.ialign-left {
  text-align: left !important;
}
.ialign-center {
  text-align: center !important;
}
.box-gray {
  padding: 20px;
  background: #F9F9F9;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
}
span [class^="icon-"] {
  margin: -1px 4px 0px;
}
.pdf-icon {
  background: url(https://html-assets-prod.guideflow.com/61a28f6bb306702ad37a1235b734cf91d53112ce) top left no-repeat;
  width: 16px;
  height: 20px;
  position: relative;
  top: -1px;
  left: -1px;
  float: left;
}
.flow-logo-icon {
  background: url(https://html-assets-prod.guideflow.com/0ae9f9b63ce14fbea9df05e06205de0312773a22) center left no-repeat;
  width: 14px;
  height: 14px;
  float: left;
}
.agreement-edit {
  background: url(https://html-assets-prod.guideflow.com/08962ca510a65976fd16c1bf1a5f1200f48de9f7) top left no-repeat;
  width: 14px;
  height: 14px;
  float: left;
}
.line-icon {
  background: url(https://html-assets-prod.guideflow.com/f639b94b959fa73f6c06778595cc47c378fc839b) top left no-repeat;
  width: 16px;
  height: 16px;
  float: left;
}
.line-icon.line-icon-light {
  background-image: url(https://html-assets-prod.guideflow.com/cda9c6b4149ca2546653482754c8190cc3e962db);
}
.line-icon.message {
  background-position: -52px 0;
}
.line-icon.user {
  background-position: -207px 0;
}
.line-icon.user-sign {
  background-position: -259px 0;
}
.line-icon.agreement-decline {
  background-position: -286px 0;
}
.line-icon.user-decline {
  background-position: -311px 0;
}
.line-icon.user-added {
  background-position: -533px 0;
}
.line-icon.user-removed {
  background-position: -557px 0;
}
.line-icon.user-visit {
  background-position: -601px 0;
}
.line-icon.company-added {
  width: 19px;
  background-position: -655px 0;
}
.line-icon.company-removed {
  width: 19px;
  background-position: -683px 0;
}
.line-icon.company-general {
  width: 18px;
  background-position: -712px 0;
}
.line-icon.update-item {
  background-position: -737px 0;
}
.line-icon.box-add {
  background-position: -51px -24px;
}
.line-icon.box-remove {
  background-position: -77px -24px;
}
.line-icon.box-update {
  background-position: -103px -24px;
}
.state-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-top: 1px;
  float: left;
  background: url(https://html-assets-prod.guideflow.com/4a2d3805c8063acd71068417cb6fe65158cf6b6f) top left no-repeat;
}
.state-icon.draft,
.state-icon.request {
  background-position: -106px 0;
}
.state-icon.pending,
.state-icon.awaiting {
  background-position: -48px 0;
}
.state-icon.expired,
.state-icon.overdue {
  background-position: -16px 0;
}
.state-icon.declined {
  background-position: -64px 0;
}
.state-icon.active {
  background-position: 0 0;
}
.state-icon.signed {
  background-position: -167px 0;
}
.state-icon.terminated {
  background-position: -79px 0;
}
.state-icon.canceled {
  background-position: -32px 0;
}
.state-icon.ended {
  background-position: -93px 0;
}
.state-icon.recurring {
  background-position: -121px 0;
}
.blue-arrow-right {
  background: url(https://html-assets-prod.guideflow.com/a311ebbd838de907e7b7aebe3f852873f911e96b) top left no-repeat;
  width: 7px;
  height: 12px;
  float: right;
}
[class^="icon-"].light {
  opacity: 0.5;
}
[class^="icon-"].light.guideflow_hovered {
  opacity: 0.8;
}
[class*=" icon-"] {
  margin-top: -1px;
}
.icon-question-mark,
.icon-exclamation-point {
  background: url(https://html-assets-prod.guideflow.com/36ab0dafd7701be299ee94c51c2b757ef3944d0a) -64px 0 no-repeat;
  width: 16px;
  height: 16px;
  opacity: 0.5;
}
.icon-question-mark.guideflow_hovered,
.icon-exclamation-point.guideflow_hovered {
  opacity: 0.9;
}
.icon-exclamation-point {
  background-position: -161px 0;
}
.input-append input,
.input-append select,
.input-append .uneditable-input {
  border-radius: 3px 0 0 3px;
  padding: 4px 6px;
  border-color: #ccc;
}
.input-append .add-on {
  margin: 0 0 0 -1px;
  box-shadow: 0 1px #fff;
  -moz-box-shadow: 0 1px #fff;
  -webkit-box-shadow: 0 1px #fff;
  border-color: #ccc;
}
input.small {
  width: 30px;
}
.btn-group.icons a {
  padding: 0 !important;
}
.btn-group.icons a i {
  padding: 5px 10px 4px;
  line-height: 16px;
  width: 16px;
  height: 16px;
}
i.close {
  font-style: normal;
  opacity: 0.4;
}
i.close.guideflow_hovered {
  opacity: 0.7;
}
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  color: #6D6E78;
  margin-bottom: 0;
  font-size: 100% !important;
}
.control-group {
  width: 100%;
  margin-bottom: 10px;
}
.control-group.left,
.control-group.right {
  display: inline-block;
  width: auto;
  margin-top: 0px;
}
.control-group.control-group-inline {
  width: auto;
}
.control-group.controls-no-padding-top .controls {
  padding-top: 0;
}
.control-group .controls {
  padding-top: 6px;
  zoom: 1;
  position: relative;
}
.control-group .controls label.checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
}
.control-group .controls label.checkbox input[type='checkbox'] {
  width: clamp(12px, 0.8em, 20px);
  height: clamp(12px, 0.8em, 20px);
  margin-top: 0;
}
.control-group .control-paragraph {
  margin-bottom: 10px;
}
.control-group .description-inline {
  margin-top: -4px;
  font-family: var(--contract-static-font-family-font-family);
  font-style: italic;
}
.control-group .required {
  position: relative;
  top: -1px;
  left: 5px;
  font-weight: 400;
  color: #969aa6;
  font-size: var(--seventy-percent-font-size);
  font-family: var(--contract-static-font-family);
}
.js-input .control-group .description-inline {
  color: var(--formatting-font-color);
}
.js-input .control-group label {
  font-family: var(--formatting-font-family);
}
.checkbox-group {
  margin-top: 0;
}
.checkbox-group .controls {
  padding-top: 0;
}
.checkbox-group .description-inline {
  margin-top: 2px;
}
.control-group.error input,
.control-group.error select,
.control-group.error textarea,
.control-group.error .error-holder,
.control-group.error a.select2-choice {
  border: #E07B79 1px solid;
}
.control-group.error input:focus,
.control-group.error select:focus,
.control-group.error textarea:focus {
  border-color: #DA8684;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #EECFCE;
}
input[type="text"],
input[type="password"] {
  padding: 7px 11px;
  color: #6D6E78;
}
.help-inline {
  margin-top: 8px ;
  padding: 0;
  color: #7A7B85;
  display: none;
}
.help-inline label input[type="checkbox"] {
  margin: -2px 0 0 10px;
}
.help-inline label span {
  margin: 0 0 0 7px;
  color: #969aa6;
}
.error .help-inline,
.warning .help-inline,
.info .help-inline {
  display: inline-block;
}
input[type=radio] + label,
input[type=radio]:checked + label {
  padding: 2px 8px;
  margin-right: 14px;
  background-color: #f1f1f1;
  border-radius: 8px;
  font-weight: 400;
}
input[type=radio]:checked + label {
  background-color: #457BD6;
  color: #fff;
}
.search > input[type="text"] {
  padding-right: 30px;
}
input[type="file"] {
  line-height: 10px;
}
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select {
  font-size: var(--contract-static-font-size);
  color: #013a4c;
  background-color: #fff;
  border: 1px solid #d6dfe2;
  line-height: 1.2;
  margin: 0 0 10px 0;
  padding: 0 10px;
  outline: 0;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 4px 8px;
}
.ReactSelect__input input[type="text"],
.ReactSelect__input input[type="text"]:focus {
  color: #013a4c !important;
  box-shadow: unset !important;
  margin: unset;
  height: unset;
}
textarea {
  width: 100%;
  height: auto;
  min-height: 100px;
  padding: 7px 11px;
  color: #013a4c;
  font-size: 14px;
  resize: vertical;
}
textarea.no-resize {
  resize: none !important;
}
textarea.size-medium {
  min-height: 200px;
}
textarea.size-small {
  min-height: 100px;
}
textarea.has-focus {
  min-height: 200px !important;
}
input.guideflow_hovered,
textarea.guideflow_hovered,
select.guideflow_hovered {
  border-color: #013a4c;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: #013a4c;
  box-shadow: 0 0 0 2px rgba(4, 4, 71, 0.08) !important;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled] {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.input-loading {
  background: url(https://html-assets-prod.guideflow.com/85ac5631a50558e802a28b0730ca05befd32e303) 98% 49% no-repeat;
}
label,
.input-data-label {
  font-weight: 600;
  word-break: break-all;
  word-break: break-word;
  font-family: var(--contract-static-font-family);
}
.input-data {
  clear: both;
  display: block;
}
.action-success {
  margin: 15px 0;
  color: #7FA853;
}
.action-success.success-button {
  display: inline-block;
  margin: 5px 0 0 15px;
}
.action-success.success-button-small {
  display: inline-block;
  margin: 1px 0 0 15px;
}
.action-success.button-right {
  margin: 7px 0 0 0;
  text-align: right;
}
.action-success .success-icon {
  background-image: url(https://html-assets-prod.guideflow.com/ccd900cacf0e888814ac4221c2f5cfeea93175da);
  background-repeat: no-repeat;
  background-position: 0 -16;
  width: 16px;
  height: 16px;
  display: inline-block;
  top: 4px;
  position: relative;
  margin-right: 5px;
}
.input-suffix {
  display: inline-block;
  position: relative;
  top: -4px;
  margin-left: 8px;
}
.sidebar-group .controls {
  padding-top: 0;
}
.sidebar-group label {
  padding-top: 0;
  font-weight: normal;
}
select[disabled] {
  color: #99b0b7;
  background-color: #f2f6f8 !important;
  border-color: #f2f6f8;
}
select.select-small {
  width: auto;
  height: 28px;
}
.input-mini {
  width: 60px;
}
.input-small {
  width: 90px;
}
.input-medium {
  width: 150px;
}
.input-large {
  width: 210px;
}
.input-xlarge {
  width: 270px;
}
.input-xxlarge {
  width: 530px;
}
form .input-orgnr {
  width: 125px;
}
form .input-mini {
  width: 60px;
}
form .input-small {
  width: 90px;
}
form .input-medium {
  width: 150px;
}
form .input-large {
  width: 210px;
}
form .input-xlarge {
  width: 270px;
}
form .input-xxlarge {
  width: 530px;
}
.btn {
  white-space: nowrap;
  border-radius: 3px;
  background: none;
  padding-left: 18px;
  padding-right: 18px;
}
.btn.has-icon {
  padding: 10px 11px 10px 10px;
}
.btn.full {
  width: 100%;
  box-sizing: border-box;
}
.btn:focus {
  color: #fff;
  background-position: inherit;
  outline: none;
}
input.btn,
button.btn,
a.btn {
  height: 38px;
}
.btn.btn-mini {
  height: 12px;
  padding: 3px 8px 2px;
  font-size: 10px;
  line-height: 1.3;
}
input.btn.btn-mini,
button.btn.btn-mini {
  height: 22px;
}
.btn.btn-small {
  height: 17px;
  padding: 5px 14px 4px;
  line-height: 17px;
}
input.btn.btn-small,
button.btn.btn-small {
  height: 28px;
}
.btn.btn-large {
  padding: 8px 17px;
  font-size: 15px;
  border-radius: 4px;
}
input.btn.btn-large,
button.btn.btn-large {
  height: 48px;
}
.btn.btn-loader,
.btn-loader {
  background-image: url(https://html-assets-prod.guideflow.com/f878672c2836fb57e528f64e9c3b953b2758c40f);
  background-repeat: no-repeat;
  background-position: left 18px center;
  padding-left: 42px;
  transition: none;
  transition: none ease-out;
}
.btn.btn-loader[disabled],
.btn-loader[disabled] {
  box-shadow: none;
  background-color: #f2f6f8 !important;
  color: #99b0b7 !important;
  text-shadow: none;
  border: 1px solid #f2f6f8 !important;
  cursor: default;
  color: #969aa6 !important;
  background-image: url(https://html-assets-prod.guideflow.com/4678b1561065aaaf9ca729a497c44d11c4be4a22) !important;
  background-repeat: no-repeat !important;
  background-position: left 18px center !important;
}
.btn.btn-loader[disabled].guideflow_hovered,
.btn-loader[disabled].guideflow_hovered {
  background-color: #f2f6f8 !important;
  color: #99b0b7 !important;
  text-shadow: none;
  border: 1px solid #f2f6f8 !important;
  cursor: default;
}
.btn.btn-loader[disabled]:active,
.btn-loader[disabled]:active {
  box-shadow: none !important;
}
.btn.btn-loader[disabled].guideflow_hovered,
.btn-loader[disabled].guideflow_hovered {
  color: #969aa6 !important;
}
.btn.btn-loader[disabled] i,
.btn-loader[disabled] i {
  display: none;
}
.btn-green {
  color: #fff;
  font-size: 13px;
  background-color: #3cc885;
  background-image: none;
  border: 1px solid #3cc885;
  text-shadow: 0 1px 0 #2ea36b;
  box-shadow: 0 0 0;
  padding: 0 18px;
  height: 36px;
  line-height: 36px;
}
.btn-green.guideflow_hovered,
.btn-green:focus {
  background-color: #4ccc8f;
  color: #fff;
}
.btn-green:active {
  background-color: #3cc885;
}
.btn-green.guideflow_hovered,
.btn-green:focus {
  background-color: #28b471;
}
.btn-green.guideflow_hovered {
  box-shadow: 0 0 8px rgba(1, 58, 76, 0.2);
}
.btn-green.btn-loader {
  background-image: url(https://html-assets-prod.guideflow.com/eb40e0d6cd162ebed9f61ec8f43265860e386805);
}
.secondary-reverted-button {
  background-color: #013a4c;
  background-image: none;
  border-radius: 3px;
  text-shadow: none;
  color: white;
  box-shadow: none;
}
.secondary-reverted-button.guideflow_hovered,
.secondary-reverted-button:focus {
  background-color: #02607e;
  color: white;
}
.btn-outline {
  color: #3E4658;
  border-color: #3E4658;
}
.btn-outline.guideflow_hovered,
.btn-outline:focus {
  color: #3E4658;
  background-color: #eef0f3;
  border-color: #535e76;
}
.btn-outline.guideflow_hovered {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.btn-blue {
  color: #fff;
  font-size: 13px;
  background-color: #3E4658;
  background-image: none;
  border: 1px solid #3E4658;
  text-shadow: 0 1px 0 #292e3a;
  box-shadow: 0 0 0;
  padding: 0 18px;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  background-color: #678994;
  border: 1px solid #678994;
  text-shadow: none;
}
.btn-blue.guideflow_hovered,
.btn-blue:focus {
  background-color: #465064;
  color: #fff;
}
.btn-blue:active {
  background-color: #3E4658;
}
.btn-blue.guideflow_hovered,
.btn-blue:focus {
  background-color: #002839;
  border: 1px solid #002839;
}
.btn-blue.guideflow_hovered {
  box-shadow: 0 0 8px rgba(1, 58, 76, 0.2);
}
.btn-blue.btn-loader {
  background-image: url(https://html-assets-prod.guideflow.com/534a1a8ec7da8e8c2713ca000ea9bfa3430b4b75);
}
.btn-red {
  color: #fff;
  font-size: 13px;
  background-image: none;
  text-shadow: 0 1px 0 #c9312b;
  box-shadow: 0 0 0;
  padding: 0 18px;
  height: 36px;
  line-height: 36px;
  background-color: #D9534E;
  border: 1px solid #D9534E;
  text-shadow: 0 1px 0 #bb3c38;
}
.btn-red.guideflow_hovered,
.btn-red:focus {
  background-color: #dd635f;
  color: #fff;
}
.btn-red:active {
  background-color: #D9534E;
}
.btn-red.guideflow_hovered {
  background-color: #dc5f5b;
}
.btn-red:active {
  background-color: #D9534E;
}
.btn-red.btn-loader {
  background-image: url(https://html-assets-prod.guideflow.com/a09b8dbfc2d42a82e83d535b531c3ebdb941ecc0);
}
.btn-group.open .btn {
  color: white;
  background-image: none;
}
.btn-group.open .btn.dropdown-toggle {
  background-color: #535e76;
}
.btn-group.open .btn.dropdown-toggle.btn-green {
  background-color: #78bf46;
}
.btn-group.dropdown-only .btn.dropdown-toggle {
  width: auto;
  font-size: 18px;
  padding-left: 14px;
  padding-right: 14px;
}
.btn-group .btn.dropdown-toggle {
  width: 32px;
  box-shadow: none;
}
.btn-group .btn.dropdown-toggle.btn-green {
  border-left: 1px solid #78bf46;
}
.btn-group .btn.btn-large {
  border-radius: 0;
}
.btn-group .btn.btn-large:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group .btn.btn-large:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.btn-group .dropdown-menu {
  padding: 4px;
  font-size: 13px;
}
.btn-group .dropdown-menu li button {
  padding-left: 14px;
  padding-right: 14px;
  margin: 4px 0;
}
.btn-group .dropdown-menu li button.red {
  color: #D9534E;
}
.btn-group .dropdown-menu li button[disabled] {
  color: #969aa6 !important;
  cursor: not-allowed;
}
.btn-group.dropup .dropdown-menu {
  bottom: calc(100% + 12px);
}
.btn.btn-disabled {
  box-shadow: none;
  background-color: #f2f6f8 !important;
  color: #99b0b7 !important;
  text-shadow: none;
  border: 1px solid #f2f6f8 !important;
  cursor: default;
}
.btn.btn-disabled.guideflow_hovered {
  background-color: #f2f6f8 !important;
  color: #99b0b7 !important;
  text-shadow: none;
  border: 1px solid #f2f6f8 !important;
  cursor: default;
}
.btn.btn-disabled:active {
  box-shadow: none !important;
}
.btn[disabled] {
  box-shadow: none;
  background-color: #f2f6f8 !important;
  color: #99b0b7 !important;
  text-shadow: none;
  border: 1px solid #f2f6f8 !important;
  cursor: default;
}
.btn[disabled].guideflow_hovered {
  background-color: #f2f6f8 !important;
  color: #99b0b7 !important;
  text-shadow: none;
  border: 1px solid #f2f6f8 !important;
  cursor: default;
}
.btn[disabled]:active {
  box-shadow: none !important;
}
.btn-done-check {
  background-image: url(https://html-assets-prod.guideflow.com/b17600b16a2f7154d3fbebd3171e8cff46693d72);
  background-repeat: no-repeat;
  background-position: left 18px center;
  padding-left: 42px;
  transition: none;
  transition: none ease-out;
}
.btn-done-check[disabled] {
  box-shadow: none;
  background-color: #f2f6f8 !important;
  color: #99b0b7 !important;
  text-shadow: none;
  border: 1px solid #f2f6f8 !important;
  cursor: default;
  color: #969aa6 !important;
  background-image: url(https://html-assets-prod.guideflow.com/b17600b16a2f7154d3fbebd3171e8cff46693d72) !important;
  background-repeat: no-repeat !important;
  background-position: left 18px center !important;
  padding-left: 42px;
}
.btn-done-check[disabled].guideflow_hovered {
  background-color: #f2f6f8 !important;
  color: #99b0b7 !important;
  text-shadow: none;
  border: 1px solid #f2f6f8 !important;
  cursor: default;
}
.btn-done-check[disabled]:active {
  box-shadow: none !important;
}
.btn-done-check[disabled].guideflow_hovered {
  color: #969aa6 !important;
}
.btn-equivalent-small {
  min-height: 28px;
  width: 1px;
  display: inline-block;
  float: right;
}
.input-append .btn {
  height: 33px;
  line-height: 30px;
}
.btn.btn-icon {
  width: 40px;
  height: 33px;
  padding: 7px;
  font-size: 17px;
  line-height: 17px;
}
.loading-circle {
  display: inline-block;
  position: relative;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url(https://html-assets-prod.guideflow.com/85ac5631a50558e802a28b0730ca05befd32e303);
}
.loading-circle-inline:after {
  margin-left: 4px;
  content: ' ';
  display: inline-block;
  position: relative;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url(https://html-assets-prod.guideflow.com/85ac5631a50558e802a28b0730ca05befd32e303);
}
.width-percent-100 {
  width: 100%;
}
.width-percent-95 {
  width: 95%;
}
.width-percent-90 {
  width: 90%;
}
.width-percent-85 {
  width: 85%;
}
.width-percent-80 {
  width: 80%;
}
.width-percent-75 {
  width: 75%;
}
.width-percent-70 {
  width: 70%;
}
.width-percent-65 {
  width: 65%;
}
.width-percent-60 {
  width: 60%;
}
.width-percent-55 {
  width: 55%;
}
.width-percent-50 {
  width: 50%;
}
.width-percent-45 {
  width: 45%;
}
.width-percent-40 {
  width: 40%;
}
.width-percent-35 {
  width: 35%;
}
.width-percent-30 {
  width: 30%;
}
.width-percent-25 {
  width: 25%;
}
.width-percent-20 {
  width: 20%;
}
.width-percent-15 {
  width: 15%;
}
.width-percent-10 {
  width: 10%;
}
.width-percent-5 {
  width: 5%;
}
.width-1000 {
  width: 1000px;
}
.width-950 {
  width: 950px;
}
.width-900 {
  width: 900px;
}
.width-850 {
  width: 850px;
}
.width-800 {
  width: 800px;
}
.width-750 {
  width: 750px;
}
.width-700 {
  width: 700px;
}
.width-650 {
  width: 650px;
}
.width-600 {
  width: 600px;
}
.width-550 {
  width: 550px;
}
.width-500 {
  width: 500px;
}
.width-450 {
  width: 450px;
}
.width-400 {
  width: 400px;
}
.width-350 {
  width: 350px;
}
.width-300 {
  width: 300px;
}
.width-250 {
  width: 250px;
}
.width-200 {
  width: 200px;
}
.width-150 {
  width: 150px;
}
.width-100 {
  width: 100px;
}
.width-50 {
  width: 50px;
}
html.touch .table-hover tbody tr.guideflow_hovered > td,
html.touch .table-hover tbody tr.guideflow_hovered > th {
  background-color: inherit !important;
}
@font-face {
  font-family: 'Oneflow Symbols';
  src: url(https://html-assets-prod.guideflow.com/aa0c4b270f62d2a47ea2ce223bf2b2f036f2fcef);
  src: url(fonts/2f9e7869e865ae05a606.eot?#iefix&1443107272) format('embedded-opentype'), url(https://html-assets-prod.guideflow.com/1871dec62848505d3717c8713750f00a575eccfd) format('woff2'), url(https://html-assets-prod.guideflow.com/01e83d1a30029da2dfbc931c04c07e0838cdc82a) format('woff'), url(img/a795caea98f6d1565d3c.svg?1443107272#OneflowSymbols-Regular) format('svg');
  font-weight: 500;
}
.flowfont {
  display: inline-block;
  font-family: "Oneflow Symbols";
  font-size: inherit;
  font-style: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ff {
  display: inline-block;
  font-family: "Oneflow Symbols";
  font-size: inherit;
  font-style: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ff.ff-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -5%;
}
.ff.ff-check:before {
  content: "y";
}
.ff.ff-logo:before {
  content: "L";
}
.ff.ff-logo-big-o:before {
  content: "O";
}
.ff.ff-logo-lower:before {
  content: "l";
}
.ff.ff-big-o:before {
  content: "o";
}
.ff.ff-arrow-up:before {
  content: "b";
}
.ff.ff-arrow-down:before {
  content: "n";
}
.ff.ff-arrow-left:before {
  content: "d";
}
.ff.ff-arrow-right:before {
  content: "f";
}
.ff.ff-arrow-circle-up:before {
  content: "c";
}
.ff.ff-arrow-circle-down:before {
  content: "v";
}
.ff.ff-arrow-circle-left:before {
  content: "a";
}
.ff.ff-arrow-circle-right:before {
  content: "s";
}
body.public {
  background-color: #EDEFF1;
  margin: 0;
}
.of-public__footer {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.of-powered-by {
  margin-top: 16px;
  color: #7799c7;
}
.of-powered-by__org-link {
  color: #7799c7;
}
.of-powered-by__org-link:focus {
  text-decoration: none;
}
.of-powered-by__org-name {
  font-size: 20px;
  color: #524b6a;
}
.of-powered-by__logo {
  background: url(https://html-assets-prod.guideflow.com/a2e4caa1f685570f6c94f1166f2b307ffc9519d3) top left no-repeat;
  display: inline-block;
  height: 35px;
  margin-left: 4px;
  position: relative;
  top: 5px;
  width: 135px;
}
.of-public__brand-logo {
  background: url(https://html-assets-prod.guideflow.com/a2e4caa1f685570f6c94f1166f2b307ffc9519d3);
  width: 135px;
  height: 35px;
  margin-bottom: 20px;
  display: block;
}
.public-layout .content-area {
  margin: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  position: static;
}
.public-layout .content-area .content-section {
  padding: 30px;
}
.public-layout .content-area .content-section .accounts-table thead,
.public-layout .content-area .content-section .accounts-table tbody {
  border: 1px solid #e1e1e1;
}
.public-layout .content-area .content-section .accounts-table tbody tr {
  border-top: 1px solid #e1e1e1;
}
.public-layout .content-area .content-section .accounts-table th {
  background-color: #f1f1f1;
}
.public-layout .public-content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
}
.public-layout .spacer {
  height: 10%;
  width: 100%;
  display: block;
}
.public-layout .container {
  width: 500px;
  margin: 0 auto;
}
.public-layout .inner-container {
  width: 500px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  border-radius: 4px;
  box-sizing: border-box;
  *zoom: 1;
  display: inline-block;
  display: block;
  zoom: 1;
  overflow: hidden;
}
.public-layout .inner-container:before,
.public-layout .inner-container:after {
  display: table;
  content: "";
  line-height: 0;
}
.public-layout .inner-container:after {
  clear: both;
}
.public-layout .inner-container h2 {
  margin-bottom: 20px;
}
.public-layout .inner-container h3 {
  font-weight: 600;
}
.public-layout .inner-container p {
  line-height: 21px;
}
.public-layout .inner-container input[type="submit"] {
  margin: 0 16px 16px 0;
}
.public-layout .footer-links {
  margin: 16px 3px;
}
.public-layout .footer-links p {
  color: #9799aa;
  float: left;
}
.public-layout .footer-links ul {
  float: right;
}
.public-layout .footer-links ul li {
  float: left;
  margin-left: 16px;
}
.public-layout .footer-links a {
  color: #7799c7;
}
.public-layout .login .checkbox-group {
  margin-top: 4px;
}
@media screen and (max-width: 600px) {
  body.public {
    background-color: #F9F9F9;
    margin: 0;
  }
  .public-layout .oneflow-logo {
    margin: 20px;
  }
  .public-layout .spacer {
    height: 5%;
  }
  .public-layout .inner-container {
    width: auto;
  }
  .public-layout .content-area .content-section {
    padding: 20px;
  }
  .public-layout .container {
    width: auto;
    margin: 0;
  }
  .public-layout .spacer {
    display: none;
  }
  .public-layout .inner-container {
    box-shadow: none;
    border-radius: 0;
  }
  .public-layout .inner-container .row-fluid > div {
    display: block;
    width: 100%;
    margin-left: 0;
  }
  .public-layout .footer-links {
    margin: 0 20px;
  }
  .public-layout .footer-links > p > a {
    display: block;
  }
  .public-layout .footer-links ul li:first-child {
    margin-left: 0;
  }
  .login .checkbox-group {
    max-width: 50% !important;
  }
}
span.editable {
  border-bottom: 1px solid #969aa6;
  white-space: nowrap;
  cursor: pointer;
}
span.editable:not(.disable-hover).guideflow_hovered {
  display: inline-block;
  position: relative;
  z-index: 99;
  padding: 6px 18px 1px 8px;
  margin: -6px -18px -1px -8px;
  background: right 5px top 5px url(https://html-assets-prod.guideflow.com/8c663225112247ac50187ce696061334a7e71ab3) no-repeat;
  background-color: #FFF3D8;
  background-size: 14px;
  color: #013a4c;
  border-radius: 3px;
  border-color: transparent;
}
span.editable.open {
  display: inline-block;
  position: relative;
  z-index: 99;
  padding: 6px 18px 1px 8px;
  margin: -6px -18px -1px -8px;
  background: right 5px top 5px url(https://html-assets-prod.guideflow.com/8c663225112247ac50187ce696061334a7e71ab3) no-repeat;
  background-color: #FFF3D8;
  background-size: 14px;
  color: #013a4c;
  border-radius: 3px;
  border-color: transparent;
}
span.editable.editable-medium {
  background-position: right 5px top 8px;
}
div.editable {
  text-decoration: underline;
  white-space: nowrap;
  cursor: pointer;
}
div.editable:not(.disable-hover).guideflow_hovered {
  background: right 10px center url(https://html-assets-prod.guideflow.com/8c663225112247ac50187ce696061334a7e71ab3) no-repeat;
  background-color: #FFF3D8;
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
}
div.editable:not(.disable-hover).guideflow_hovered .controls::before {
  color: #013a4c;
}
div.editable:not(.disable-hover).guideflow_hovered em,
div.editable:not(.disable-hover).guideflow_hovered .state-text {
  color: #027498;
}
div.editable:not(.disable-hover).guideflow_hovered .fa:not(.keep-fa) {
  display: none;
}
div.editable.open {
  background: right 10px center url(https://html-assets-prod.guideflow.com/8c663225112247ac50187ce696061334a7e71ab3) no-repeat;
  background-color: #FFF3D8;
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
}
div.editable.open .controls::before {
  color: #013a4c;
}
div.editable.open em,
div.editable.open .state-text {
  color: #027498;
}
div.editable.open .fa:not(.keep-fa) {
  display: none;
}
div.editable.editable-medium {
  background-position: right 5px top 8px;
}
div.editable-inline-rtf {
  position: relative;
}
div.editable-inline-rtf.guideflow_hovered:not(.open) .editable-border {
  background-color: #eff7e9;
  border: 1px solid transparent;
}
div.editable-inline-rtf.guideflow_hovered:not(.open) .editable-pencil {
  display: block;
}
div.editable-inline-rtf:not(.guideflow_hovered) .editable-pencil,
div.editable-inline-rtf.open .editable-pencil {
  display: none;
}
div.editable-inline-rtf.open .editable-border {
  border: 1px solid #c2c6cb;
}
div.editable-inline-rtf .editable-border {
  width: auto;
  border: 1px solid transparent;
  border-radius: 4px;
}
div.editable-inline-rtf .editable-pencil {
  position: absolute;
  top: 0;
  right: 15px;
  box-sizing: border-box;
  padding: 8px;
  border-radius: 0 8px 0;
  font-size: 25px;
  color: #3E4658;
}
.editable-body {
  min-width: 100px;
  margin-bottom: 8px ;
  *zoom: 1;
  display: inline-block;
  display: block;
  zoom: 1;
}
.editable-body:before,
.editable-body:after {
  display: table;
  content: "";
  line-height: 0;
}
.editable-body:after {
  clear: both;
}
.editable-body .editable-group {
  margin-bottom: 0;
  *zoom: 1;
  display: inline-block;
  display: block;
  zoom: 1;
}
.editable-body .editable-group:before,
.editable-body .editable-group:after {
  display: table;
  content: "";
  line-height: 0;
}
.editable-body .editable-group:after {
  clear: both;
}
.editable-body .editable-group > div {
  white-space: nowrap;
}
.editable-body .editable-group input {
  margin-bottom: 0;
}
.editable-body .editable-group input.input-mini {
  width: 60px;
}
.editable-body .editable-group input.input-small {
  width: 90px;
}
.editable-body .editable-group input.input-medium {
  width: 150px;
}
.editable-body .editable-group input.input-large {
  width: 210px;
}
.editable-body .editable-group input.input-xlarge {
  width: 270px;
}
.editable-body .editable-group input.input-xxlarge {
  width: 530px;
}
.editable-body .editable-group select {
  width: auto;
  margin-bottom: 0;
}
.editable-body.editable-datepicker .editable-buttons {
  float: right;
  margin-top: 8px ;
}
.editable-body.editable-datepicker .editable-buttons button.editable-save {
  margin-left: 4px ;
}
.editable-body input[type="text"] {
  width: 150px;
  margin-bottom: 0;
}
.editable-body-small {
  min-width: 200px;
}
.editable-body-medium {
  min-width: 300px;
}
.editable-body-large {
  min-width: 500px;
}
.editable-buttons {
  display: inline-block;
  margin-left: 8px ;
}
.editable-buttons button.editable-cancel,
.editable-buttons button.editable-save {
  width: 40px;
  height: 33px;
  padding: 7px;
  font-size: 17px;
  line-height: 17px;
}
.editable-buttons button.editable-cancel.btn-loader,
.editable-buttons button.editable-save.btn-loader {
  background-position: center center !important;
}
.editable-buttons-date {
  display: flex;
  justify-content: space-between;
}
.editable-footer {
  text-align: right;
}
.editable-footer input,
.editable-footer button {
  font-size: var(--contract-static-font-size);
}
.editable-placeholder {
  color: #969aa6;
}
@media screen and (max-width: 600px) and (min-width: 481px) {
  div.editable-inline-rtf .editable-buttons {
    position: static;
    bottom: auto;
    right: auto;
    margin-top: 14px;
    text-align: right;
  }
  div.editable-inline-rtf .editable-toolbar {
    padding-right: 0;
  }
}
/* Page break divider */
/* Needs to put !important everywhere to override CKEditor styling */
.cke_pagebreak.cke_pagebreak {
  width: calc(100% -  105px  +  30px  * 2) !important;
  position: relative !important;
  left: 75px !important;
  bottom: 3.5px !important;
  clear: both !important;
  margin: 0 !important;
  margin-top: -2px !important;
  border-top: #D9534E dashed 2px !important;
  /* Resets CKEditor native styling */
  background: none !important;
  border-bottom: 0 solid transparent !important;
  height: 0 !important;
  padding: 0 !important;
}
.editable-inline-rtf:not(.open) .cke_pagebreak.cke_pagebreak {
  display: none !important;
}
/* Page break divider label */
.cke_pagebreak::before {
  content: attr(title);
  text-transform: uppercase;
  display: inline-block;
  width: 95px;
  height: 19px;
  padding: 0px 5px;
  position: relative;
  right: 105px;
  bottom: 12.5px;
  text-align: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 7px 0 0 7px;
  background-color: #D9534E;
  line-height: 1.55;
}
/* Page break divider arrow */
.cke_pagebreak::after {
  content: "";
  position: absolute;
  left: 0;
  /* adjust the delta 1.5 when label-height is changed */
  top: -11px;
  font-size: 0;
  pointer-events: none;
  border-width: 9.5px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #D9534E;
}
#loading {
  background: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
}
#loading-container {
  transition: none;
  transition: none ease-out;
  position: fixed;
  top: 47%;
  left: 50%;
  width: 300px;
  height: 120px;
  margin-top: -60px;
  margin-left: -150px;
  text-align: center;
}
#loading-container h3 {
  margin-top: 5px;
  margin-bottom: 75px;
}
#loading-indicator {
  margin-top: 10px;
  margin-left: -42px;
}
.app-loader {
  position: fixed;
  z-index: 5000;
  top: -1px;
  left: 50%;
  width: 200px;
  margin-left: -100px;
}
.app-loader .alert {
  padding: 8px 12px;
  text-align: center;
  border-radius: 0 0 4px 4px;
}
.placeholderBox {
  border: 2px dashed #a3acbf !important;
}
body.agreement-body {
  background-color: #e6ebed;
  background-image: url(https://html-assets-prod.guideflow.com/9715152ee896d42c88a4c85cb80578c03ee1af82);
  background-repeat: no-repeat;
  background-position: top right;
  background-blend-mode: overlay;
  overflow: auto !important;
  padding-right: 0 !important;
  margin: 0 !important;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  body.agreement-body {
    background-image: none;
  }
}
body.agreement-body .wrapper {
  width: auto;
  margin: 0 auto;
}
.marked-as-signed-info-header {
  margin-bottom: 20px;
  max-width: 840px;
  margin: auto;
}
.body {
  font-family: var(--formatting-font-family);
  font-size: var(--formatting-font-size);
}
.agreement-loader {
  position: fixed;
  top: 40%;
  left: 50%;
  width: 300px;
  height: 200px;
  margin: 0 -150px;
  text-align: center;
}
.agreement-loader i {
  display: inline-block;
  position: relative;
  top: 3px;
  width: 16px;
  height: 16px;
  background: center center url(https://html-assets-prod.guideflow.com/803ae15976d7d483713ef6b10cfb8473f0c628ef) no-repeat;
}
.agreement {
  padding-bottom: 70px;
  padding-right: 360px;
  min-height: calc(100vh - 110px);
}
.agreement.responsive {
  padding-left: 72px;
}
@media (max-width: 840px) {
  .agreement.responsive {
    padding-left: 0;
    padding-top: 72px;
  }
}
.agreement.topmargin {
  padding-top: 10px;
}
.agreement .fullheight {
  height: 100%;
}
@media (max-width: 840px) {
  .agreement .navigation {
    position: fixed;
    top: 0;
    z-index: 1041;
    width: 100%;
  }
}
.agreement header {
  color: #33333d;
}
.agreement > div {
  position: relative;
}
.agreement > div > .body {
  max-width: 840px;
  margin: auto;
  line-height: 1.55;
}
.agreement .mobile-main-actions {
  background-color: #FFFFFF;
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
}
.agreement .abody-participants {
  margin: 22px 15px 0 15px;
}
.agreement .contract-id {
  font-size: 12px;
}
.agreement .content-container {
  padding-top: 20px ;
  padding-bottom: 20px ;
  background-color: #fff;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}
.agreement .template-settings {
  max-width: 840px;
}
.agreement .empty-placeholder {
  padding: 0;
}
.agreement .empty-placeholder > div {
  display: block;
  text-align: center;
  color: #AAACB8;
}
.agreement .empty-placeholder .contract-empty-actions-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-family: var(--contract-static-font-family);
  font-size: 14px;
}
.agreement .empty-placeholder .contract-empty-actions-container .js-freemium-admin {
  width: 60%;
}
.agreement .empty-placeholder .contract-empty-actions-container .js-freemium-admin > a {
  text-decoration: underline;
  color: #AAACB8;
}
.agreement .empty-placeholder .contract-empty-actions-container .js-freemium-non-admin {
  width: 60%;
}
.agreement .empty-placeholder .contract-empty-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 510px;
  margin-top: 28px;
  margin-bottom: 28px;
}
.agreement .empty-placeholder .contract-empty-actions .contract-empty-action {
  width: 230px;
  height: 120px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 24px;
}
.agreement .empty-placeholder .contract-empty-actions .contract-empty-action.guideflow_hovered {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.agreement .empty-placeholder .contract-empty-actions .contract-empty-action.upload-pdf {
  color: var(--contract-static-text-color);
}
.agreement .empty-placeholder .contract-empty-actions .contract-empty-action.upload-pdf svg {
  height: 24px;
  width: 24px;
}
.agreement .empty-placeholder .contract-empty-actions .contract-empty-action.add-content .empty-action-header {
  background-color: #555a6e !important;
}
.agreement .empty-placeholder .contract-empty-actions .contract-empty-action .empty-action-header {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}
.agreement .empty-placeholder .contract-empty-actions .contract-empty-action.add-content .empty-action-header {
  color: white;
  background-color: #3e4658;
  border-radius: 4px;
  min-width: 20px;
  min-height: 20px;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
}
.agreement .empty-placeholder .contract-empty-actions .contract-empty-action .empty-action-body {
  padding-left: 8px;
  text-align: left;
}
.agreement .empty-placeholder .contract-empty-actions .contract-empty-action .empty-action-body span {
  color: #AAACB8;
}
.agreement .contract-empty-placeholder {
  padding-bottom: 0;
}
.agreement .contract-empty-placeholder > .placeholder-message-container {
  height: 100px;
  line-height: 50px;
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
}
.agreement .contract-empty-placeholder > .placeholder-message-container .placeholder-message {
  display: inline;
}
.agreement .contract-empty-placeholder > .placeholder-message-container .no-desktop-message {
  font-family: var(--contract-static-font-family);
}
.agreement .tooltip {
  font-family: var(--contract-static-font-family);
}
.guest-layout .agreement .toolbar {
  font-family: var(--formatting-font-family);
}
@media screen and (min-width: 1000px) {
  .agreement .marked-as-signed-info-header,
  .agreement > div > .body {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 999px) {
  body.agreement-body .app-body {
    top: 50px;
  }
  body.agreement-body .app-body.top {
    top: 0 !important;
  }
  body.agreement-body .app-body .agreement .topbar > div > div {
    margin-bottom: 0;
  }
  body.agreement-body .app-body .agreement .topbar > div > div > div {
    width: 100%;
  }
  body.agreement-body .app-body .agreement.responsive .topbar > div > div {
    margin-bottom: 0;
  }
  body.agreement-body .app-body .agreement.responsive .topbar > div > div > div {
    width: calc(100% - 72px);
  }
  .TopbarContent {
    width: 100%;
  }
  .guest-layout .agreement {
    padding-bottom: 70px;
  }
  .agreement {
    padding-right: 0;
    padding-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
  }
  .agreement > div > .body {
    padding-right: 0;
    max-width: none;
  }
  .marked-as-signed-info-header {
    max-width: none;
  }
}
@media screen and (max-width: 999px) and (max-width: 840px) {
  body.agreement-body .app-body .agreement.responsive .topbar > div > div > div {
    padding-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .agreement > div > .body .status {
    float: left;
    margin-left: 8px ;
    line-height: 30px;
  }
  .agreement > div > .body .content-box div.video {
    width: 280px;
    height: 150px;
  }
  .agreement > div > .body .content-box div.video iframe {
    width: 280px;
    height: 150px;
  }
}
@media screen and (max-width: 480px) {
  .box-inner header {
    margin-right: 0;
  }
}
.agreement .editor-paragraph {
  color: var(--formatting-font-color);
}
.agreement div[data-slate-placeholder="true"] {
  color: var(--contract-static-text-color);
}
.agreement .ui-sortable .layout-box.guideflow_hovered .box-drag {
  display: block;
}
.agreement div[data-slate-placeholder="true"] {
  font-family: var(--contract-static-font-family);
}
.agreement .box-margin {
  margin-bottom: 24px;
}
.agreement .dragging-box.content-box .drag-handler,
.agreement .dragging-box.content-box .arrow-up,
.agreement .dragging-box.content-box .arrow-down {
  display: none !important;
}
.agreement .dragging-container {
  cursor: move;
  cursor: grabbing;
}
.agreement .dragging-container .form-empty .form-space > div,
.agreement .dragging-container .can-edit.form-show-actions .form-space > div {
  visibility: hidden;
}
.agreement .dragging-container .box-divider,
.agreement .dragging-container .box-menu {
  visibility: hidden;
}
.agreement .dragging-container div.editable-inline-rtf.guideflow_hovered:not(.open) .editable-border {
  background-color: unset !important;
}
.agreement .dragging-container div.editable-inline-rtf.guideflow_hovered:not(.open) .editable-pencil {
  visibility: hidden;
}
.agreement .dragging-container table tbody tr.initial-actions div.guideflow_hovered {
  background-color: unset !important;
}
.agreement .dragging-container .can-edit thead tr.guideflow_hovered th {
  background-color: #f1f1f1 !important;
}
.agreement .dragging-container .can-edit tbody tr:not(.initial-actions):not(.disable-hover).guideflow_hovered td,
.agreement .dragging-container .can-edit tbody tr:not(.initial-actions):not(.disable-hover).open td {
  background-color: #F9F9F9 !important;
  border-color: #f1f1f1 !important;
}
.agreement .dragging-container div.editable:not(.disable-hover).guideflow_hovered {
  background: unset !important;
  background-color: unset !important;
}
.agreement .dragging-container .drag-anchor {
  visibility: hidden;
}
.agreement .dragging-container .content-box:not(.sortable-drag) .drag-handler,
.agreement .dragging-container .content-box:not(.sortable-drag) .arrow-up,
.agreement .dragging-container .content-box:not(.sortable-drag) .arrow-down {
  display: none !important;
}
.agreement .sortable-ghost.content-box {
  z-index: 97;
}
.agreement .sortable-ghost .drag-overlay {
  display: block;
}
.agreement .sortable-drag.content-box {
  opacity: 1 !important;
  max-height: 35px;
  overflow: hidden;
  z-index: 98;
  background-color: #EBEDF2;
  color: #3E4658;
  padding-left: 32px;
  border: solid 1px rgba(0, 0, 0, 0.08);
  font-size: 16px;
  border-radius: 3px;
  width: auto !important;
  padding-right: 12px;
  box-shadow: 0 3px 12px 2px rgba(0, 0, 0, 0.12);
  margin-top: 12px !important;
}
.agreement .sortable-drag .box-inner {
  display: none;
}
.agreement .sortable-drag .box-divider,
.agreement .sortable-drag .box-inner-wrapper {
  display: none !important;
}
.agreement .sortable-drag .drag-handler {
  display: flex !important;
  box-shadow: none;
  left: 5px;
  top: 5px;
  border-radius: unset;
  background-color: transparent;
  box-shadow: none !important;
}
.agreement .sortable-drag .drag-handler.guideflow_hovered {
  background-color: transparent !important;
}
.agreement .sortable-drag .arrow-up,
.agreement .sortable-drag .arrow-down {
  display: none !important;
}
.agreement .sortable-drag .box-inner-mirror {
  display: flex !important;
  font-size: 16px;
  height: 100%;
  align-items: center;
}
.agreement .sortable-drag .box-inner-mirror .box-type-name {
  padding-right: 12px;
}
.agreement .sortable-drag .box-inner-mirror .box-icon-container {
  display: flex;
}
.agreement .drag-overlay {
  height: calc(100% + 20px);
  position: absolute;
  top: -10px;
  left: 0;
  opacity: 0.4;
  background-color: #dfe2e9;
  display: none;
}
.agreement .js-abody > .content-box:first-of-type .arrow-up {
  display: none !important;
}
.agreement .js-abody > .content-box:last-of-type .arrow-down {
  display: none !important;
}
.agreement .content-box {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}
.agreement .content-box:last-child .box-inner {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.agreement .content-box.guideflow_hovered .drag-handler,
.agreement .content-box.guideflow_hovered .arrow-up,
.agreement .content-box.guideflow_hovered .arrow-down {
  display: flex;
}
.agreement .content-box .box-inner-wrapper {
  width: 100%;
  transition: max-height 0.3s ease-in-out;
}
.agreement .content-box .box-inner {
  width: 100%;
}
@supports (-moz-appearance:none) {
  .agreement .content-box .box-inner p {
    overflow-wrap: break-word;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .agreement .content-box .box-inner p {
    word-wrap: break-word;
  }
}
.agreement .content-box .box-inner-mirror {
  display: none;
}
.agreement .content-box.guideflow_hovered .box-divider-bottom .add-box-menu > div > button {
  opacity: 1;
}
.agreement .layout-box {
  position: relative;
  border-bottom: 1px solid #c8a578;
  color: #a79375;
}
.agreement .layout-box.guideflow_hovered {
  background-color: #fffbf3 !important;
}
.agreement .layout-box:last-child {
  border-bottom: none;
}
.agreement .layout-box:last-child .box-inner {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.agreement .layout-box:first-child .move-up {
  display: none;
}
.agreement .layout-box:first-child .move-up-disabled {
  display: inline-block;
}
.agreement .layout-box:last-child .move-down-disabled {
  display: inline-block;
}
.agreement .layout-box:last-child .move-down {
  display: none;
}
.agreement .layout-box h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 20px;
}
.agreement .layout-box h3,
.agreement .layout-box .move-controls > button {
  color: #a79375;
}
.agreement .layout-box .box-drag {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 10;
  cursor: move;
}
.agreement .layout-box .box-drag > div {
  position: absolute;
  top: 45px;
  left: 50%;
  width: 220px;
  margin-left: -110px;
  padding: 8px 20px;
  border-radius: 4px;
  background-color: #AAACB8;
  color: #fff;
  text-align: center;
}
.agreement .layout-box .box-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 73%;
  box-sizing: border-box;
  padding: 20px;
  background-color: transparent;
  overflow: hidden;
}
.agreement .layout-box .box-inner > div {
  height: 70px;
  overflow: hidden;
  line-height: 1.3;
}
.agreement .box-icon {
  margin: 0 0 8px 0;
  opacity: 1;
  filter: alpha(opacity=100);
  font-size: 50px;
}
.agreement .box-inner {
  background-color: #fff;
}
.agreement .box-inner .box-duration {
  color: var(--formatting-font-color);
}
.agreement .box-inner header {
  margin-right: 120px;
  margin-bottom: 20px ;
  line-height: 1.35;
}
.agreement .box-inner .box-paddings {
  padding: 0 30px;
}
.agreement .box-divider-top {
  top: -26px;
}
.agreement .box-divider-bottom {
  bottom: -28px;
}
.agreement .box-divider {
  position: absolute;
  width: calc(100% - 96px);
  max-width: 840px;
  text-align: center;
  cursor: pointer;
}
.agreement .box-divider:not(.hide) {
  display: inline-block;
}
.agreement .box-divider .open .add-box {
  display: block;
}
.agreement .box-divider > span {
  font-family: var(--formatting-font-family);
}
.agreement .box-divider,
.agreement .box-divider * :not(span, button) {
  line-height: 0 !important;
}
.agreement .box-menu,
.agreement .rmd-menu {
  font-family: var(--contract-static-font-family);
}
.agreement .move-arrow {
  display: none;
  position: absolute;
  height: 10px;
  width: 16px;
  color: white;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.agreement .move-arrow.guideflow_hovered {
  color: #d0d5de;
}
.agreement .move-arrow svg {
  overflow: hidden;
  filter: drop-shadow(0 0 4px rgba(88, 88, 88, 0.3));
  width: 16px;
}
.agreement .arrow-up {
  display: none;
  position: absolute;
  height: 10px;
  width: 16px;
  color: white;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  top: 6px;
  color: #678994;
}
.agreement .arrow-up.guideflow_hovered {
  color: #d0d5de;
}
.agreement .arrow-up svg {
  overflow: hidden;
  filter: drop-shadow(0 0 4px rgba(88, 88, 88, 0.3));
  width: 16px;
}
.agreement .arrow-up.guideflow_hovered {
  color: #013a4c;
}
.agreement .arrow-down {
  display: none;
  position: absolute;
  height: 10px;
  width: 16px;
  color: white;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  top: 40px;
  color: #678994;
}
.agreement .arrow-down.guideflow_hovered {
  color: #d0d5de;
}
.agreement .arrow-down svg {
  overflow: hidden;
  filter: drop-shadow(0 0 4px rgba(88, 88, 88, 0.3));
  width: 16px;
}
.agreement .arrow-down.guideflow_hovered {
  color: #013a4c;
}
.agreement .drag-handler {
  display: none;
  position: absolute;
  height: 20px;
  width: 18px;
  color: #678994;
  top: 18px;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: move;
  cursor: grab;
}
.agreement .drag-handler:active {
  cursor: move;
  cursor: grabbing;
}
.agreement .drag-handler.guideflow_hovered {
  color: #013a4c;
}
.agreement .drag-handler svg {
  overflow: hidden;
}
.agreement .drag-handler button {
  color: #3E4658;
}
.agreement .drag-handler .box-type {
  padding: 0;
  margin: 0;
  position: relative;
  top: -5px;
  left: 5px;
}
.agreement .ReactSelect *:not(> .ReactSelect__indicator) {
  font-size: var(--contract-static-font-size) !important;
}
.box-initial-actions .box-inner .box-paddings {
  padding: 0 20px;
}
.greyed-out > div > div.responsive-table,
.greyed-out > div > div > div > *:not(.box-menu-container):not(.box-toolbar-container):not(.js-menu-dropdown-container) {
  opacity: 0.6;
}
@media screen and (max-width: 480px) {
  .agreement .box-inner .box-paddings {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1406px) {
  .agreement .drag-overlay {
    width: calc(100% - 3rem - 3rem);
    margin-left: 3rem;
  }
  .agreement .sortable-drag.content-box {
    margin-left: calc(3rem - 33px) !important;
  }
  .agreement .content-box {
    margin-left: -3rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .agreement .box-menu {
    right: calc(3rem - 44px);
  }
  .agreement .drag-handler {
    left: calc(3rem - 27px);
  }
  .agreement .arrow-up,
  .agreement .arrow-down {
    left: calc(3rem - 26px);
  }
}
@media screen and (min-width: 1407px) and (max-width: 1502px) {
  .agreement .drag-overlay {
    width: calc(100% - 6rem - 6rem);
    margin-left: 6rem;
  }
  .agreement .sortable-drag.content-box {
    margin-left: calc(6rem - 33px) !important;
  }
  .agreement .content-box {
    margin-left: -6rem;
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .agreement .box-menu {
    right: calc(6rem - 44px);
  }
  .agreement .drag-handler {
    left: calc(6rem - 27px);
  }
  .agreement .arrow-up,
  .agreement .arrow-down {
    left: calc(6rem - 26px);
  }
}
@media screen and (min-width: 1503px) and (max-width: 1598px) {
  .agreement .drag-overlay {
    width: calc(100% - 9rem - 9rem);
    margin-left: 9rem;
  }
  .agreement .sortable-drag.content-box {
    margin-left: calc(9rem - 33px) !important;
  }
  .agreement .content-box {
    margin-left: -9rem;
    padding-left: 9rem;
    padding-right: 9rem;
  }
  .agreement .box-menu {
    right: calc(9rem - 44px);
  }
  .agreement .drag-handler {
    left: calc(9rem - 27px);
  }
  .agreement .arrow-up,
  .agreement .arrow-down {
    left: calc(9rem - 26px);
  }
}
@media screen and (min-width: 1599px) and (max-width: 1694px) {
  .agreement .drag-overlay {
    width: calc(100% - 12rem - 12rem);
    margin-left: 12rem;
  }
  .agreement .sortable-drag.content-box {
    margin-left: calc(12rem - 33px) !important;
  }
  .agreement .content-box {
    margin-left: -12rem;
    padding-left: 12rem;
    padding-right: 12rem;
  }
  .agreement .box-menu {
    right: calc(12rem - 44px);
  }
  .agreement .drag-handler {
    left: calc(12rem - 27px);
  }
  .agreement .arrow-up,
  .agreement .arrow-down {
    left: calc(12rem - 26px);
  }
}
@media screen and (min-width: 1695px) and (max-width: 1790px) {
  .agreement .drag-overlay {
    width: calc(100% - 15rem - 15rem);
    margin-left: 15rem;
  }
  .agreement .sortable-drag.content-box {
    margin-left: calc(15rem - 33px) !important;
  }
  .agreement .content-box {
    margin-left: -15rem;
    padding-left: 15rem;
    padding-right: 15rem;
  }
  .agreement .box-menu {
    right: calc(15rem - 44px);
  }
  .agreement .drag-handler {
    left: calc(15rem - 27px);
  }
  .agreement .arrow-up,
  .agreement .arrow-down {
    left: calc(15rem - 26px);
  }
}
@media screen and (min-width: 1791px) and (max-width: 1886px) {
  .agreement .drag-overlay {
    width: calc(100% - 18rem - 18rem);
    margin-left: 18rem;
  }
  .agreement .sortable-drag.content-box {
    margin-left: calc(18rem - 33px) !important;
  }
  .agreement .content-box {
    margin-left: -18rem;
    padding-left: 18rem;
    padding-right: 18rem;
  }
  .agreement .box-menu {
    right: calc(18rem - 44px);
  }
  .agreement .drag-handler {
    left: calc(18rem - 27px);
  }
  .agreement .arrow-up,
  .agreement .arrow-down {
    left: calc(18rem - 26px);
  }
}
@media screen and (min-width: 1887px) and (max-width: 1982px) {
  .agreement .drag-overlay {
    width: calc(100% - 21rem - 21rem);
    margin-left: 21rem;
  }
  .agreement .sortable-drag.content-box {
    margin-left: calc(21rem - 33px) !important;
  }
  .agreement .content-box {
    margin-left: -21rem;
    padding-left: 21rem;
    padding-right: 21rem;
  }
  .agreement .box-menu {
    right: calc(21rem - 44px);
  }
  .agreement .drag-handler {
    left: calc(21rem - 27px);
  }
  .agreement .arrow-up,
  .agreement .arrow-down {
    left: calc(21rem - 26px);
  }
}
@media screen and (min-width: 1983px) and (max-width: 2078px) {
  .agreement .drag-overlay {
    width: calc(100% - 24rem - 24rem);
    margin-left: 24rem;
  }
  .agreement .sortable-drag.content-box {
    margin-left: calc(24rem - 33px) !important;
  }
  .agreement .content-box {
    margin-left: -24rem;
    padding-left: 24rem;
    padding-right: 24rem;
  }
  .agreement .box-menu {
    right: calc(24rem - 44px);
  }
  .agreement .drag-handler {
    left: calc(24rem - 27px);
  }
  .agreement .arrow-up,
  .agreement .arrow-down {
    left: calc(24rem - 26px);
  }
}
@media screen and (min-width: 2079px) and (max-width: 2174px) {
  .agreement .drag-overlay {
    width: calc(100% - 27rem - 27rem);
    margin-left: 27rem;
  }
  .agreement .sortable-drag.content-box {
    margin-left: calc(27rem - 33px) !important;
  }
  .agreement .content-box {
    margin-left: -27rem;
    padding-left: 27rem;
    padding-right: 27rem;
  }
  .agreement .box-menu {
    right: calc(27rem - 44px);
  }
  .agreement .drag-handler {
    left: calc(27rem - 27px);
  }
  .agreement .arrow-up,
  .agreement .arrow-down {
    left: calc(27rem - 26px);
  }
}
@media screen and (min-width: 2175px) and (max-width: 2270px) {
  .agreement .drag-overlay {
    width: calc(100% - 30rem - 30rem);
    margin-left: 30rem;
  }
  .agreement .sortable-drag.content-box {
    margin-left: calc(30rem - 33px) !important;
  }
  .agreement .content-box {
    margin-left: -30rem;
    padding-left: 30rem;
    padding-right: 30rem;
  }
  .agreement .box-menu {
    right: calc(30rem - 44px);
  }
  .agreement .drag-handler {
    left: calc(30rem - 27px);
  }
  .agreement .arrow-up,
  .agreement .arrow-down {
    left: calc(30rem - 26px);
  }
}
@media screen and (min-width: 2271px) and (max-width: 2366px) {
  .agreement .drag-overlay {
    width: calc(100% - 33rem - 33rem);
    margin-left: 33rem;
  }
  .agreement .sortable-drag.content-box {
    margin-left: calc(33rem - 33px) !important;
  }
  .agreement .content-box {
    margin-left: -33rem;
    padding-left: 33rem;
    padding-right: 33rem;
  }
  .agreement .box-menu {
    right: calc(33rem - 44px);
  }
  .agreement .drag-handler {
    left: calc(33rem - 27px);
  }
  .agreement .arrow-up,
  .agreement .arrow-down {
    left: calc(33rem - 26px);
  }
}
@media screen and (min-width: 2367px) and (max-width: 2462px) {
  .agreement .drag-overlay {
    width: calc(100% - 36rem - 36rem);
    margin-left: 36rem;
  }
  .agreement .sortable-drag.content-box {
    margin-left: calc(36rem - 33px) !important;
  }
  .agreement .content-box {
    margin-left: -36rem;
    padding-left: 36rem;
    padding-right: 36rem;
  }
  .agreement .box-menu {
    right: calc(36rem - 44px);
  }
  .agreement .drag-handler {
    left: calc(36rem - 27px);
  }
  .agreement .arrow-up,
  .agreement .arrow-down {
    left: calc(36rem - 26px);
  }
}
@media screen and (min-width: 2463px) and (max-width: 2558px) {
  .agreement .drag-overlay {
    width: calc(100% - 39rem - 39rem);
    margin-left: 39rem;
  }
  .agreement .sortable-drag.content-box {
    margin-left: calc(39rem - 33px) !important;
  }
  .agreement .content-box {
    margin-left: -39rem;
    padding-left: 39rem;
    padding-right: 39rem;
  }
  .agreement .box-menu {
    right: calc(39rem - 44px);
  }
  .agreement .drag-handler {
    left: calc(39rem - 27px);
  }
  .agreement .arrow-up,
  .agreement .arrow-down {
    left: calc(39rem - 26px);
  }
}
@media screen and (min-width: 2559px) {
  .agreement .drag-overlay {
    width: calc(100% - 42rem - 42rem);
    margin-left: 42rem;
  }
  .agreement .sortable-drag.content-box {
    margin-left: calc(42rem - 33px) !important;
  }
  .agreement .content-box {
    margin-left: -42rem;
    padding-left: 42rem;
    padding-right: 42rem;
  }
  .agreement .box-menu {
    right: calc(42rem - 44px);
  }
  .agreement .drag-handler {
    left: calc(42rem - 27px);
  }
  .agreement .arrow-up,
  .agreement .arrow-down {
    left: calc(42rem - 26px);
  }
}
.box-form .fields-container {
  color: var(--formatting-font-color);
}
.box-form .form-space {
  height: 70px;
}
.box-form .form-space > div {
  display: none;
}
.box-form .form-row.adjust-left {
  left: 20px;
  margin-right: 40px;
}
.box-form:not(.form-empty) {
  margin-top: 10px;
  margin-bottom: 7px;
}
.box-form.form-empty {
  padding: 0 20px;
}
.box-form.form-empty .form-space > div,
.box-form.can-edit.form-show-actions .form-space > div,
.box-form.dragging .form-space > div {
  display: block;
}
.box-form:not(.can-edit) .drop-marker {
  display: none;
}
.box-form.can-edit .add-row-container {
  position: absolute;
  margin-top: -16px;
  margin-left: 0;
  z-index: 102;
}
.box-form.can-edit .remove-row-container {
  position: absolute;
  margin-top: 24px;
  right: 0;
  z-index: 98;
}
.box-form.can-edit .remove-row-container button[class*=RemoveRowButton].guideflow_hovered {
  color: var(--contract-static-text-color) !important;
}
.box-form.can-edit .reorder-row-container {
  position: absolute;
  margin-top: 24px;
  margin-left: -30px;
  z-index: 104;
  background-color: transparent;
  display: none;
}
.box-form.can-edit.form-show-actions .form-space.guideflow_hovered button,
.box-form.can-edit.dragging .form-space.guideflow_hovered button {
  opacity: 1;
  filter: alpha(opacity=100);
}
.box-form.can-edit.form-show-actions .form-space button,
.box-form.can-edit.dragging .form-space button {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.box-form.can-edit.dragging .form-space .drop-marker {
  display: block;
}
.box-form.can-edit.dragging .form-space button {
  display: none;
}
.box-form.can-edit.dragging .form-space > div {
  background: #eff7e9;
}
.box-form.can-edit .form-space.form-drop-hover .drop-marker {
  visibility: visible;
}
.box-form.can-edit .form-space > div {
  padding: 21px 0px;
  border-radius: 4px;
}
.box-form.can-edit .form-space .drop-marker {
  display: none;
  visibility: hidden;
}
.box-form.can-edit .form-space .drop-marker > div {
  display: inline-block;
  width: 60%;
  padding: 6px;
  border-radius: 3px;
  border: 2px dashed #a3acbf;
  color: #3E4658;
  font-size: 12px;
  line-height: 12px;
}
.box-form.can-edit .form-row {
  padding: 0 30px;
}
.box-form.can-edit .form-row:first-child .form-row-mask {
  border-top: 1px dashed #3E4658;
}
.box-form.can-edit .form-row .form-row-mask {
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  opacity: 0;
  filter: alpha(opacity=0);
  box-sizing: border-box;
  background: #fff;
  border-bottom: 1px dashed #3E4658;
  cursor: move;
  transition: visibility 0.25s ease-in-out 0s, opacity 0.25s ease-in-out 0s;
}
.box-form.can-edit .form-field .editable:not(.disable-hover).guideflow_hovered,
.box-form.can-edit .form-field .editable.open {
  margin: -10px;
  padding: 14px;
  z-index: 9;
  background-position: right 10px top 10px;
}
.box-form.can-edit .form-field .editable:not(.disable-hover).guideflow_hovered .drag-anchor {
  display: block;
}
.box-form.can-edit .form-field .editable.open .drag-anchor {
  display: none !important;
}
.box-form.can-edit .form-field .editable .drag-anchor {
  position: absolute;
  top: 0px;
  left: 50%;
  width: 40px;
  height: 27px;
  margin-left: -15px;
  z-index: 10;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #3E4658;
  border-radius: 8px;
  cursor: move;
}
.box-form.can-edit .form-field .editable .drag-anchor .fa {
  display: block;
}
.box-form .form-row {
  position: relative;
  min-height: 77px;
}
.box-form .form-row.guideflow_hovered {
  background-color: #fcfcfc;
}
.box-form .form-field.is-empty-required::before {
  content: url(https://html-assets-prod.guideflow.com/b0206adca03d83b395a75e2ed6679a04425e2a84);
  position: absolute;
  top: -27px;
  right: 12px;
}
.box-form .form-field.is-empty-required.checkbox-container::before {
  left: -5px;
  width: 20px;
}
.box-form .form-field .field-inner {
  padding: 4px;
  text-decoration: none;
  white-space: normal;
}
.box-form .form-field input[type="text"],
.box-form .form-field textarea {
  width: 100%;
  max-width: 100% !important;
  color: var(--formatting-font-color);
}
.box-form .form-field textarea,
.box-form .form-field select,
.box-form .form-field input {
  font-family: var(--formatting-font-family);
}
.box-form .form-field input::placeholder,
.box-form .form-field textarea::placeholder {
  font-family: var(--contract-static-font-family);
}
.box-form .form-field select.placeholder {
  font-family: var(--contract-static-font-family);
}
.box-form .form-field .js-input.readonly {
  padding-top: 8px;
}
.box-form .form-field .js-input.readonly label {
  cursor: default;
}
.box-form .form-field .js-input.readonly .control-group {
  margin-bottom: 0;
}
.box-form .form-field .js-input.readonly .control-group .controls {
  padding-top: 0;
}
.box-form .form-field .js-input.readonly .control-group .controls .description-inline {
  padding-top: 8px;
}
.box-form .form-field .description-inline {
  font-size: var(--seventy-percent-font-size);
}
.box-form .form-field .input-20 {
  width: 20% !important;
}
.box-form .form-field .input-40 {
  width: 40% !important;
}
.box-form .form-field .input-50 {
  width: 50% !important;
}
.box-form .form-field .input-60 {
  width: 60% !important;
}
.box-form .form-field .input-80 {
  width: 80% !important;
}
.box-form .form-field .input-100 {
  width: 100% !important;
}
.box-form .form-field .checkbox-group {
  margin-top: 16px;
}
.box-form .form-field .checkbox-group .readonly-checkbox {
  margin-left: -24px;
}
.box-form .form-field .js-input:not(.readonly) .date-value-group .controls {
  color: var(--contract-static-text-color);
}
.box-form .form-field .js-input:not(.readonly) .date-value-group .controls::before {
  font-family: FontAwesome;
  content: "\f073";
  position: absolute;
  font-size: clamp(13px, 0.7em, 20px);
  top: 25%;
  transform: translateY(-20%);
  margin-left: 10px;
}
.box-form .form-field .js-input:not(.readonly) .form-input-date {
  padding-left: 32px;
}
.box-form .form-field .form-input-date {
  cursor: pointer;
  background-color: white !important;
}
.box-form .control-group {
  margin-bottom: 0;
}
.box-form [class*="span"] {
  margin-left: 0px;
}
.box-form .form-cell {
  position: relative;
}
.box-form .form-cell.guideflow_hovered {
  z-index: 100;
}
.box-form .row-1-cols .form-cell {
  width: 100%;
  float: left;
}
.box-form .row-2-cols .form-cell {
  width: 50%;
  float: left;
}
.box-form .row-2-cols .colspan-2 {
  width: 100%;
}
.box-form .row-3-cols .form-cell {
  width: 33.33%;
  float: left;
}
.box-form .row-3-cols .colspan-2 {
  width: 66.66%;
}
.box-form .row-3-cols .colspan-3 {
  width: 100%;
}
.box-form .row-4-cols .form-cell {
  width: 25%;
  float: left;
}
.box-form .row-4-cols .colspan-2 {
  width: 50%;
}
.box-form .row-4-cols .colspan-3 {
  width: 75%;
}
.box-form .row-4-cols .colspan-4 {
  width: 100%;
}
.box-form .link-data-field-icon {
  position: relative;
  left: 4px;
  color: #999999;
}
.box-form .ui-draggable-disabled {
  z-index: 101;
}
.box-form .form-move-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eff7e9;
}
body > .popover [class*="span"] {
  margin-left: 0px;
}
.box-icon-form {
  background-image: url(https://html-assets-prod.guideflow.com/ee6ab3bb18a28142ca2186507f2ec9c9c0194150);
  height: 37px;
  width: 70px;
}
.js-dropdown-value {
  color: var(--formatting-font-color);
}
select.placeholder {
  color: #969aa6;
}
@media screen and (max-width: 600px) {
  .agreement .box-form .row-3-cols .form-cell,
  .agreement .box-form .row-4-cols .form-cell {
    width: 100%;
    float: none;
  }
  .agreement .box-form .row-3-cols .form-space,
  .agreement .box-form .row-4-cols .form-space {
    display: none;
  }
  .agreement .box-form .row-3-cols .colspan-2,
  .agreement .box-form .row-4-cols .colspan-2,
  .agreement .box-form .row-3-cols .colspan-3,
  .agreement .box-form .row-4-cols .colspan-3,
  .agreement .box-form .row-3-cols .colspan-4,
  .agreement .box-form .row-4-cols .colspan-4 {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .agreement .box-form .can-edit .form-field .editable:not(.disable-hover).guideflow_hovered,
  .agreement .box-form .can-edit .form-field .editable.open {
    padding: 4px;
  }
  .agreement .box-form .can-edit .form-field .row-1-cols .form-cell,
  .agreement .box-form .can-edit .form-field .row-2-cols .form-cell {
    width: 100%;
    float: none;
  }
  .agreement .box-form .can-edit .form-field .row-1-cols .form-space,
  .agreement .box-form .can-edit .form-field .row-2-cols .form-space {
    display: none;
  }
  .agreement .box-form .can-edit .form-field .row-1-cols .colspan-2,
  .agreement .box-form .can-edit .form-field .row-2-cols .colspan-2 {
    width: 100%;
  }
  .agreement .box-form .can-edit .form-field .form-field .control-group.checkbox-group {
    margin-top: 16px;
  }
  .agreement .box-form .can-edit .form-field .form-field .date-value-group .controls::before {
    margin-top: 6px !important;
  }
}
.gross-price {
  text-decoration: line-through;
  margin-right: 0.5ch;
}
.discount-amount {
  font-size: var(--seventy-percent-font-size);
  position: relative;
  bottom: 2px;
}
.box-products {
  padding-left: 14px !important;
}
.box-products.empty-margin-adjust {
  margin-bottom: 50px;
}
.box-products.no-sum-margin-adjust {
  margin-bottom: 10px;
}
.box-products .sum-labels-container,
.box-products .sum-prices-container {
  display: inline-block;
}
.box-products .price-input-small-left {
  width: 47.5%;
}
.box-products .discount-description {
  position: relative;
  bottom: 8px;
}
.box-products .price-input-small-right {
  width: 47.5%;
  position: relative;
  left: 5%;
}
.box-products.can-edit thead {
  cursor: pointer;
}
.box-products.can-edit tbody.ui-sortable-disabled tr:not(.initial-actions):not(.disable-hover).guideflow_hovered,
.box-products.can-edit tbody.ui-sortable-disabled tr:not(.initial-actions):not(.disable-hover).open {
  cursor: pointer;
}
.box-products.can-edit tbody tr:not(.initial-actions):not(.disable-hover).guideflow_hovered td:not(.product-drag-handler),
.box-products.can-edit tbody tr:not(.initial-actions):not(.disable-hover).open td:not(.product-drag-handler) {
  background-color: #FFF3D8 !important;
}
.box-products.can-edit tbody tr:not(.initial-actions):not(.disable-hover).guideflow_hovered td:not(.product-drag-handler) ~ div,
.box-products.can-edit tbody tr:not(.initial-actions):not(.disable-hover).open td:not(.product-drag-handler) ~ div {
  background-color: #FFF3D8 !important;
}
.box-products.can-edit tbody tr:not(.initial-actions):not(.disable-hover).guideflow_hovered td:not(.product-drag-handler):not(.js-description),
.box-products.can-edit tbody tr:not(.initial-actions):not(.disable-hover).open td:not(.product-drag-handler):not(.js-description) {
  cursor: pointer;
}
.box-products table {
  color: var(--formatting-font-color);
}
.box-products table thead th:not(.th-product-drag-handler) {
  background-color: #e6ebed;
  white-space: normal;
  vertical-align: middle;
  word-break: break-all;
  word-break: break-word;
  padding: 7px 5px;
}
.box-products table thead .th-name,
.box-products table thead .th-description {
  text-align: left;
}
.box-products table thead .th-price_1,
.box-products table thead .th-price_2,
.box-products table thead .th-count {
  width: 100px;
}
.box-products table tbody tr:not(.ui-sortable-helper):last-child:not(.initial-actions) td:not(.product-drag-handler) {
  border-bottom: 1px solid #d6dfe2;
}
.box-products table tbody tr:not(.initial-actions) {
  height: 45px;
}
.box-products table tbody tr:not(.initial-actions).editable .control-group {
  margin-top: -2px;
}
.box-products table tbody tr:not(.initial-actions).editable svg {
  visibility: visible;
}
.box-products table tbody tr:not(.initial-actions).selectable {
  cursor: pointer;
}
.box-products table tbody tr:not(.initial-actions).selectable .fa-check-square-o {
  position: relative;
  left: 1.5px;
}
.box-products table tbody tr:not(.initial-actions).guideflow_hovered td:not(.product-drag-handler) {
  background-color: #FFF3D8;
}
.box-products table tbody tr:not(.initial-actions).guideflow_hovered td:not(.product-drag-handler) .read-only {
  background-color: #FFF3D8;
  border-color: #FFF3D8;
}
.box-products table tbody tr:not(.initial-actions).locked.guideflow_hovered td .read-only {
  background-color: transparent !important;
  border-color: transparent !important;
}
.box-products table tbody tr:not(.initial-actions).locked {
  cursor: auto;
}
.box-products table tbody tr:not(.initial-actions).locked td {
  background-color: transparent !important;
}
.box-products table tbody tr:not(.initial-actions).locked td.guideflow_hovered {
  background-color: white !important;
}
.box-products table tbody tr:not(.initial-actions) td {
  padding: 7px 5px;
}
.box-products table tbody tr:not(.initial-actions) td .controls {
  padding-top: 2px;
}
.box-products table tbody tr:not(.initial-actions) td .controls input[type='radio'],
.box-products table tbody tr:not(.initial-actions) td .controls input[type='checkbox'] {
  width: clamp(12px, 0.8em, 20px);
  height: clamp(12px, 0.8em, 20px);
}
.box-products table tbody tr.initial-actions td {
  padding: 0px 0 0px 6px !important;
}
.box-products table tbody td {
  vertical-align: middle;
  text-align: center;
}
.box-products table tbody td.name h4 {
  margin: 0;
  padding: 0;
  font-size: var(--formatting-font-size);
  line-height: 1.55;
  text-align: left;
  color: var(--formatting-font-color);
}
.box-products table tbody td.description {
  text-align: left;
}
.box-products table tbody td.description *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  word-break: break-word;
}
.box-products table tbody td.product-drag-handler {
  padding: 0 !important;
  margin: 0 !important;
  vertical-align: middle;
  color: #99b0b7;
}
.box-products table tbody td.product-drag-handler.guideflow_hovered svg {
  cursor: grab;
  color: #002839;
}
.box-products table tbody td.read-only-product-drag-handler svg {
  visibility: hidden;
}
.box-products table tbody td.price {
  white-space: nowrap;
  padding-right: 14px;
  text-align: right;
}
.box-products table tbody td.count {
  position: relative;
}
.box-products table tbody td.count.count-locked i {
  display: block;
}
.box-products table tbody td.count i {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-44%);
  right: 10px;
  z-index: 1;
}
.box-products table tbody td.count.count-type-2 .control-group {
  margin-bottom: 0;
}
.box-products table tbody td.count input {
  margin-bottom: 0;
  text-align: center;
  font-family: var(--formatting-font-family);
  color: inherit;
}
.box-products table tbody td .popover {
  cursor: auto;
}
.box-products .add-row-container {
  position: absolute;
  margin-top: -16px;
  margin-left: -30px;
}
.box-products .add-row-container.margin-adjustment {
  margin-top: -38px;
}
.box-products .sum-container {
  padding-top: 8px;
  padding-right: 5px;
  float: right;
  color: var(--formatting-font-color);
}
.box-products .sum-container .price_1,
.box-products .sum-container .price_2 {
  white-space: nowrap;
}
.box-products .sum-container .sum-prices-container {
  text-align: right;
}
.box-products .popover .products-price-affixes label {
  word-break: break-all;
}
.box-products .popover .text-normal {
  line-height: 1.3;
}
.box-products .popover .text-small {
  line-height: 1.3;
}
.box-products .popover .text-small .contract-id {
  font-family: var(--contract-static-font-family);
}
.box-products .product-move-placeholder:last-child td:first-child {
  border-style: none !important;
}
.box-products .product-move-placeholder td:not(:first-child) {
  background-color: #eff7e9;
}
.box-products .price-negative {
  font-weight: 600;
}
.th-product-drag-handler {
  width: 2%;
}
@media only screen and (min-width: 999px) {
  .box-products .popover {
    max-width: 360px !important;
  }
}
@media only screen and (max-width: 999px) {
  .box-products table thead th {
    white-space: normal;
  }
}
@media only screen and (max-width: 600px) {
  .responsive-table .th-product-drag-handler,
  .responsive-table .product-drag-handler {
    display: none !important;
  }
  .responsive-table table,
  .responsive-table thead,
  .responsive-table tbody,
  .responsive-table tfoot,
  .responsive-table th,
  .responsive-table td,
  .responsive-table tr {
    display: block !important;
    height: auto !important;
  }
  .responsive-table thead tr {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
  }
  .responsive-table tr {
    border: 1px solid #ccc !important;
    border-bottom: 0 !important;
    display: table !important;
    width: 100%;
  }
  .responsive-table tr:last-child {
    border-bottom: 1px solid #ccc !important;
  }
  .responsive-table tr.initial-actions {
    border: none !important;
  }
  .responsive-table tr.initial-actions > td {
    text-align: center !important;
    display: block !important;
  }
  .responsive-table td {
    display: table-row !important;
    border: none !important;
    border-bottom: 1px solid #EEE !important;
    position: relative !important;
    white-space: normal !important;
    text-align: left !important;
    word-break: break-all;
    word-break: break-word;
  }
  .responsive-table td:before {
    display: table-cell !important;
    padding: 6px;
    vertical-align: middle;
    width: 45% !important;
    white-space: normal !important;
    text-align: left !important;
    font-weight: bold !important;
  }
  .responsive-table td:before {
    content: attr(data-title);
  }
  .responsive-table td:last-child {
    border-bottom: 0 !important;
  }
  .responsive-table .initial-actions td:before {
    padding: 0;
  }
  .box-products tbody tr.guideflow_hovered td:last-child > *,
  .box-products tbody tr.open td:last-child > * {
    display: inherit;
  }
  .box-products tbody tr.guideflow_hovered td:last-child .box-products tbody tr.guideflow_hovered td:last-child:after,
  .box-products tbody tr.guideflow_hovered td:last-child .box-products tbody tr.open td:last-child:after,
  .box-products tbody tr.open td:last-child .box-products tbody tr.guideflow_hovered td:last-child:after,
  .box-products tbody tr.open td:last-child .box-products tbody tr.open td:last-child:after {
    display: none;
  }
  .box-products tbody td.count {
    height: 40px !important;
  }
  .box-products tbody td input[type='number'] {
    transform: translateY(12%);
  }
  .box-products tfoot {
    margin-top: 8px ;
  }
  .box-products tfoot tr {
    *zoom: 1;
    display: inline-block;
    display: block;
    zoom: 1;
    border: none !important;
  }
  .box-products tfoot tr:before,
  .box-products tfoot tr:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .box-products tfoot tr:after {
    clear: both;
  }
  .box-products tfoot tr:last-child {
    border-bottom: none !important;
  }
  .box-products tfoot tr td {
    display: inline-block !important;
    box-sizing: border-box;
    float: left;
    padding-left: 0 !important;
    border: none !important;
    width: 75%;
  }
  .box-products tfoot tr td:last-child {
    width: 25%;
  }
}
@media only screen and (max-width: 480px) {
  .box-products.can-edit tbody tr.guideflow_hovered,
  .box-products.can-edit tbody tr.open {
    cursor: pointer;
  }
}
.box-text {
  padding: 0 20px;
}
.box-text h1:last-child {
  margin-bottom: 0;
}
.box-text .editable-inline-rtf {
  border-width: 4px 2px 0 2px;
  border-style: solid;
  border-color: transparent;
}
.box-text .rtf-placeholder {
  display: none;
}
.boxMenuContainerHover.guideflow_hovered .box-menu button.btn-action,
.boxMenuContainerHover.guideflow_hovered .box-menu .actions {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.boxMenuContainerHover.guideflow_hovered .box-menu .section-rules-visible,
.boxMenuContainerHover.guideflow_hovered .box-menu .section-rules-hidden,
.boxMenuContainerHover.guideflow_hovered .box-menu .section-rules-broken {
  opacity: 0;
}
.agreement .content-box.guideflow_hovered .box-menu button.btn-action,
.agreement .content-box.guideflow_hovered .box-menu .actions {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.agreement .content-box.guideflow_hovered .box-menu .section-rules-visible,
.agreement .content-box.guideflow_hovered .box-menu .section-rules-hidden,
.agreement .content-box.guideflow_hovered .box-menu .section-rules-broken {
  opacity: 0;
}
.agreement .content-box:first-child {
  top: 0px;
}
.agreement .content-box.show-controls .box-menu {
  top: 30px;
  background-color: #fff;
}
.agreement .cogwheel {
  width: 40px;
}
.agreement .box-menu {
  position: absolute;
  height: 40px;
}
.agreement .box-menu .save {
  padding: 8px;
  background-color: #fff;
}
.agreement .box-menu .actions,
.agreement .box-menu .box-actions {
  position: relative;
  z-index: 9;
}
.agreement .box-menu .actions .fa,
.agreement .box-menu .box-actions .fa {
  position: relative;
  top: 2px;
  margin-right: 8px ;
}
.agreement .box-menu .trash-icon,
.agreement .box-menu .locked-title {
  padding: 0 10px 0 4px;
}
.agreement .box-menu .unlock-icon {
  margin-left: 2px;
  margin-right: 6px !important;
}
.agreement .box-menu .actions {
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  opacity: 0;
  filter: alpha(opacity=0);
  color: #3E4658;
}
.agreement .box-menu .actions.guideflow_hovered {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
}
.agreement .box-menu button.btn-action {
  display: inline-block;
  height: 30px;
  margin: 0;
  padding: 0 12px;
  line-height: 40px;
  text-align: center;
  color: #3E4658;
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  opacity: 0;
  filter: alpha(opacity=0);
}
.agreement .box-menu button.btn-action.guideflow_hovered {
  z-index: 20;
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
}
.agreement .box-menu button.btn-action:first-child {
  margin-left: 0;
}
.agreement .box-menu button.btn-action:last-child {
  margin-right: 0;
}
.agreement .box-menu button.btn-action.dropdown-toggle {
  border: none;
}
.agreement .box-menu button.btn-action .fa {
  font-size: 16px;
}
.agreement .box-menu .section-rules-visible,
.agreement .box-menu .section-rules-hidden,
.agreement .box-menu .section-rules-broken {
  pointer-events: none;
  opacity: 1;
  margin-left: 12px;
  position: absolute;
  bottom: -4px;
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}
.agreement .box-menu button.btn-save {
  height: 30px;
  margin-left: 8px;
  padding: 0 12px;
  line-height: 30px;
}
.agreement .box-menu .action-icon {
  position: relative;
  top: 2px;
  display: inline-block;
  height: 40px;
  min-width: 40px;
  box-sizing: border-box;
  margin: 0;
  padding: 0 12px;
  font-size: 20px;
  line-height: 37px;
  text-align: center;
}
.agreement .box-menu .action-icon i.fa {
  margin: 0;
  font-size: 20px;
  line-height: 37px;
}
.agreement .box-menu .dropdown {
  display: inline-block;
  z-index: 10;
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}
.agreement .box-menu .dropdown.open {
  z-index: 101;
}
.agreement .box-menu .dropdown.open > button {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
}
.agreement .box-menu .dropdown.open .section-rules-visible,
.agreement .box-menu .dropdown.open .section-rules-hidden,
.agreement .box-menu .dropdown.open .section-rules-broken {
  opacity: 0;
}
.agreement .box-menu .dropdown-menu {
  left: auto;
  right: 3px;
  margin-top: 5px;
  font-size: var(--contract-static-font-size);
}
.agreement .box-menu .dropdown-menu:before {
  position: absolute;
  top: -7px;
  right: 9px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}
.agreement .box-menu .dropdown-menu:after {
  position: absolute;
  top: -6px;
  right: 10px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
  content: '';
}
.agreement .box-menu .dropdown-menu li button.red {
  color: #D9534E;
}
.agreement .box-menu .box-actions .btn-actions-icon,
.agreement .box-menu .dropdown > button {
  width: 40px;
  margin-right: 0;
  padding: 0;
}
.agreement .box-menu .box-actions .btn-actions-icon .fa,
.agreement .box-menu .dropdown > button .fa {
  position: relative;
  top: 2px;
  font-size: 21px;
  margin-right: 0;
}
.agreement .box-menu li .fa {
  margin-right: 8px ;
}
.agreement .box-menu li input[type="checkbox"] {
  position: relative;
  top: -4px;
  margin-right: 4px;
}
.agreement .box-menu .file-actions {
  font-size: var(--contract-static-font-size);
}
@media screen and (max-width: 999px) {
  .agreement .box-menu {
    right: 0;
  }
  .agreement .box-menu .actions,
  .agreement .box-menu button.btn-action {
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
}
@media screen and (max-width: 600px) {
  .agreement .box-actions {
    height: 32px;
  }
  .agreement .box-actions button.btn-action {
    height: 32px;
    margin: 0;
    padding: 0 7px;
    line-height: 32px;
  }
  .agreement .box-actions .dropdown > button {
    width: 32px;
  }
  .agreement .box-actions .dropdown-menu {
    right: -1px;
  }
}
html.touch .agreement .box-actions .actions {
  opacity: 1;
  filter: alpha(opacity=100);
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
}
html.touch .agreement .box-actions .dropdown {
  opacity: 1;
  filter: alpha(opacity=100);
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
}
.modal .label.label-people {
  font-size: 13px !important;
}
.of-tabs--modal {
  margin-top: 20px;
  padding-left: 30px;
  padding-right: 40px;
}
.of-tabs {
  box-sizing: border-box;
  color: #969aa6;
  padding-bottom: 4px;
  text-align: left;
  width: 100%;
}
.of-tabs__tab {
  display: inline-block;
  position: relative;
  bottom: -5px;
  width: 150px;
  padding-bottom: 4px;
  text-align: center;
  color: #3E4658;
  font-size: 14px;
  cursor: pointer;
}
.of-tabs__tab .badge-count {
  position: absolute;
  top: -4px;
  right: 4px;
}
.sidebar-content *:not(i) {
  font-family: var(--contract-static-font-family);
}
.sidebar-content .of-tabs {
  text-align: center;
  border-bottom: none;
}
.sidebar-content .of-tabs {
  display: flex;
  padding-bottom: 0px;
  justify-content: space-between;
  border-bottom: 1px solid #d6dfe2;
}
.sidebar-content .of-tabs:before,
.sidebar-content .of-tabs:after {
  content: '';
  display: block;
}
.sidebar-content .of-tabs__tab {
  display: inline-flex;
  bottom: 0;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
  width: 40px;
  border-bottom: none !important;
}
.sidebar-content .blocked {
  color: #D6DFE2;
  pointer-events: none;
}
.sidebar-content .of-tab-border-element {
  flex: 1 1;
  min-height: 2px;
  width: 100%;
  border-radius: 1px;
  margin-top: 10px;
  background-color: transparent;
}
.sidebar-content .of-tabs__tab:active .of-tab-border-element,
.sidebar-content .of-tabs__tab.guideflow_hovered .of-tab-border-element,
.sidebar-content .of-tabs__tab--selected .of-tab-border-element {
  background-color: #013a4c;
}
.sidebar-content .new-indicator {
  display: inline-flex;
  float: right;
  align-items: center;
  color: #d13d47;
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: -0.02em;
}
.sidebar-content .new-indicator i {
  display: flex;
}
.sidebar-content .react-modals {
  height: 0;
}
@media screen and (max-width: 480px) {
  .of-tabs__tab {
    padding: 0 4px 2px 4px;
    width: auto;
    font-size: 13px;
  }
}
.of-tabs__tab-link {
  color: #969aa6;
}
.of-tabs__tab:active,
.of-tabs__tab.guideflow_hovered,
.of-tabs__tab--selected {
  color: #3E4658;
  border-bottom: 2px solid #3E4658;
}
.of-agreement-sidebar__tab {
  display: none;
}
.no-padding {
  padding: 0;
}
.of-agreement-sidebar__tab--open {
  display: block;
}
.of-parties__party-alert--locked {
  max-width: 300px;
}
.onoffswitch {
  position: relative;
  width: 52px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.onoffswitch-checkbox {
  display: none;
}
.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  background: #c9c9c9;
  border-radius: 4px;
}
.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before,
.onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 22px;
  padding: 0;
  line-height: 18px;
  font-size: 12px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: normal;
  box-sizing: border-box;
}
.onoffswitch-inner:before {
  content: "ON";
  padding-left: 7px;
  padding-top: 3px;
  background-color: #80c352;
  color: #ffffff;
}
.onoffswitch-inner:after {
  content: "OFF";
  padding-right: 5px;
  padding-top: 2px;
  background-color: #c9c9c9;
  color: #949494;
  text-align: right;
  font-size: 11px;
}
.onoffswitch-switch {
  display: block;
  width: 18px;
  background: #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  border: none;
  margin: 2px;
  border-radius: 4px;
  transition: all 0.3s ease-in 0s;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0px;
}
.onoffswitch-checkbox:disabled + .onoffswitch-label {
  opacity: 0.3;
  cursor: not-allowed;
}
.not-my-turn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 18px;
}
.not-my-turn .message {
  color: #D9534E;
}
.agreement .empty-logo-placeholder {
  border: 2px dashed #eee !important;
  font-size: 15px;
  text-align: center;
  height: auto;
  padding: 12px !important;
}
.agreement .nologo-link {
  display: block;
  font-size: 12px;
  margin: 5px 0 0;
  padding: 0;
  line-height: 30px;
}
.agreement .sidebar {
  width: 360px;
  border-left: 1px solid #d6dfe2;
}
.agreement .sidebar .empty-placeholder {
  padding: 10px 0 20px 0;
}
.agreement .sidebar .parties-tab-container .party-actions {
  margin-bottom: 8px;
}
.agreement .sidebar .parties-tab-container .party-actions > div {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e1e1e1;
}
.agreement .sidebar-content .btn-as-link {
  color: #446cc7;
}
.agreement .sidebar-content .btn-as-link.guideflow_hovered {
  color: #446cc7;
}
.agreement .sidebar-content .tags .of-tag-list__header {
  margin: 20px 0 4px;
}
.agreement .sidebar-content .tags > div > button {
  color: #446cc7;
}
.agreement .sidebar-content .tags > div > button.guideflow_hovered {
  color: #446cc7;
}
.agreement .sidebar-content .js-valid-until-container,
.agreement .sidebar-content .js-signing-period {
  font-size: 14px;
}
.agreement .sidebar-content .popover .btn-as-link,
.agreement .sidebar-content .popover .of-change-expiry-popover__cancel {
  color: #3E4658;
}
.agreement .party {
  margin-bottom: 16px;
}
.agreement.type-b2c .party {
  border-bottom-width: 1px;
}
.agreement .owner-logo {
  padding-bottom: 10px;
  padding-top: 16px;
  background-color: white;
  z-index: 50;
}
.agreement .owner-logo > div {
  padding-top: 0;
}
.agreement .owner-logo .qq-upload-button {
  height: 17px;
  padding: 5px 14px 4px;
  line-height: 17px;
  text-transform: uppercase;
}
.agreement .parties-tmpl-placeholder {
  height: 200px;
  background-color: #f1f1f1;
  border: 1px solid #eeeeee;
  border-radius: 4px;
}
.agreement .parties-tmpl-placeholder h2 {
  margin-top: 45px;
}
@media screen and (min-width: 999px) {
  .agreement .party .box-menu,
  .agreement .individual .box-menu {
    display: none;
  }
}
.agreement .party.guideflow_hovered .box-menu button.btn-action,
.agreement .individual.guideflow_hovered .box-menu button.btn-action,
.agreement .party.guideflow_hovered .box-menu .actions,
.agreement .individual.guideflow_hovered .box-menu .actions {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.agreement .party.guideflow_hovered .box-menu .section-rules-visible,
.agreement .individual.guideflow_hovered .box-menu .section-rules-visible,
.agreement .party.guideflow_hovered .box-menu .section-rules-hidden,
.agreement .individual.guideflow_hovered .box-menu .section-rules-hidden,
.agreement .party.guideflow_hovered .box-menu .section-rules-broken,
.agreement .individual.guideflow_hovered .box-menu .section-rules-broken {
  opacity: 0;
}
.agreement .party .box-menu,
.agreement .individual .box-menu {
  right: 0;
  top: 0;
}
.agreement .party .dropdown-menu button,
.agreement .individual .dropdown-menu button {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.agreement .party {
  position: relative;
  padding: 8px 0 16px 0;
  border-bottom: 1px solid #e1e1e1;
}
.agreement .party.box-menu-hidden {
  padding: 12px 0;
}
.agreement .party .party-info {
  position: relative;
  padding: 8px;
  word-break: break-all;
  word-break: break-word;
  white-space: normal;
  border-radius: 4px;
  font-size: 23px;
  line-height: 1.35;
  text-decoration: none;
}
.agreement .party .party-info:before {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -14px;
  line-height: 28px;
}
.agreement .party .party-info.editable.guideflow_hovered {
  background-color: #eff7e9;
  text-decoration: none;
  cursor: pointer;
}
.agreement .party .party-info.editable.guideflow_hovered .check-icon {
  display: none;
}
.agreement .party .party-info.editable.guideflow_hovered em,
.agreement .party .party-info.editable.guideflow_hovered .state-text {
  color: #5e6a85;
}
.agreement .party .party-info.editable.open {
  background-color: #eff7e9;
  text-decoration: none;
  cursor: pointer;
}
.agreement .party .party-info.editable.open .check-icon {
  display: none;
}
.agreement .party .party-info.editable.open em,
.agreement .party .party-info.editable.open .state-text {
  color: #5e6a85;
}
.agreement .party .party-info .orgnr,
.agreement .party .party-info .country {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  font-style: italic;
  color: #5e6a85;
}
.agreement .individual {
  position: relative;
  padding: 0;
  margin-top: 4px;
}
.agreement .individual.box-menu-hidden .participants {
  margin-right: 0;
}
.agreement .individual .participants {
  margin-top: 0;
}
@media screen and (max-width: 999px) {
  .agreement .individual .participant {
    margin-right: 50px;
  }
}
.agreement .individual .participant .check-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -14px;
  display: inline-block;
  color: #d9d9d9;
}
.agreement .individual .participant.email-fail .title {
  font-size: 12px;
}
.agreement .individual .participant .orgnr,
.agreement .individual .participant .country {
  font-size: 13px;
  line-height: 1.3;
  font-style: italic;
  color: #969aa6;
}
.agreement .participants {
  margin-top: 4px;
}
.agreement .participants header {
  text-transform: capitalize;
  font-weight: 600;
  color: #969aa6;
  display: none;
}
.agreement .participants .participant {
  position: relative;
  padding: 8px;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 17px;
  word-break: break-all;
  word-break: break-word;
  white-space: normal;
  border-radius: 4px;
  text-decoration: none;
}
.agreement .participants .participant:before {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -14px;
  line-height: 28px;
}
.agreement .participants .participant.editable.guideflow_hovered {
  background-color: #eff7e9;
  text-decoration: none;
  cursor: pointer;
}
.agreement .participants .participant.editable.guideflow_hovered .check-icon {
  display: none;
}
.agreement .participants .participant.editable.guideflow_hovered em,
.agreement .participants .participant.editable.guideflow_hovered .state-text {
  color: #5e6a85;
}
.agreement .participants .participant.editable.open {
  background-color: #eff7e9;
  text-decoration: none;
  cursor: pointer;
}
.agreement .participants .participant.editable.open .check-icon {
  display: none;
}
.agreement .participants .participant.editable.open em,
.agreement .participants .participant.editable.open .state-text {
  color: #5e6a85;
}
.agreement .participants .participant.signed .label-you,
.agreement .participants .participant.declined .label-you,
.agreement .participants .participant.email-fail .label-you,
.agreement .participants .participant.non-signatory .label-you {
  display: none !important;
}
.agreement .participants .participant.signed .check-icon,
.agreement .participants .participant.declined .check-icon,
.agreement .participants .participant.email-fail .check-icon,
.agreement .participants .participant.non-signatory .check-icon {
  display: none;
}
.agreement .participants .participant.disabled {
  opacity: 0.1;
}
.agreement .participants .participant.signatory .check-icon,
.agreement .participants .participant.signed .check-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -14px;
  display: inline-block;
}
.agreement .participants .participant.inactive {
  color: #ca2128 !important;
  background-color: #fceeee;
}
.agreement .participants .participant.inactive .check-icon {
  display: none;
}
.agreement .participants .participant.inactive em,
.agreement .participants .participant.inactive span {
  color: #ca2128 !important;
}
.agreement .participants .participant.inactive.guideflow_hovered {
  background-color: #fbe5e6;
}
.agreement .participants .participant.signatory:before {
  color: #c1c7d4;
}
.agreement .participants .participant.signatory .check-icon {
  color: #c1c7d4;
}
.agreement .participants .participant.signed {
  color: #5aa54c !important;
}
.agreement .participants .participant.signed:before {
  color: #5aa54c !important;
}
.agreement .participants .participant.signed .check-icon {
  color: #5aa54c !important;
}
.agreement .participants .participant.signed em,
.agreement .participants .participant.signed span {
  color: #5aa54c !important;
}
.agreement .participants .participant.declined {
  color: #d96969;
}
.agreement .participants .participant.declined:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 24px;
  content: "\f00d";
  color: #d96969;
}
.agreement .participants .participant.declined .check-icon {
  display: none;
}
.agreement .participants .participant.declined em,
.agreement .participants .participant.declined span {
  color: #d96969;
}
.agreement .participants .participant.email-fail {
  color: #ca2128 !important;
  background-color: #fceeee;
}
.agreement .participants .participant.email-fail em,
.agreement .participants .participant.email-fail span {
  color: #ca2128 !important;
}
.agreement .participants .participant.email-fail.guideflow_hovered {
  background-color: #fbe5e6;
}
.agreement .participants .participant .fa,
.agreement .participants .participant .ff {
  font-size: 28px;
  float: right;
  position: relative;
  top: 2px;
}
.agreement .participants .participant .ssn,
.agreement .participants .participant .title {
  display: block;
  font-style: italic;
  font-size: 13px;
  color: #969aa6;
}
.agreement .participants .participant .state-text {
  margin-right: 55px;
  color: #969aa6;
  font-size: 12px;
}
.agreement .participants.non-signatory .participant {
  font-size: 13px;
}
.agreement .top-sign {
  margin-bottom: 16px;
}
.agreement #agreement-top .template-settings {
  padding: 14px;
}
.agreement .agreement-action {
  margin-bottom: 90px;
}
.agreement .primary-action-container {
  z-index: 2;
  font-size: 13px;
  font-family: var(--contract-static-font-family);
}
.agreement .primary-action-container .alert {
  padding: 8px !important;
  margin: 8px 0;
}
.agreement .primary-action-container .alert .btn-as-link {
  padding-bottom: 0;
}
.agreement .primary-action-container .other-actions .btn-as-link {
  padding: 8px 0;
}
.agreement .primary-action-container .btn-agreement-action {
  margin: 8px 0;
  display: inline-block;
  width: 100%;
  height: 48px;
  padding: 0 27px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 44px;
}
.agreement .primary-action-container .btn-agreement-action.btn-green {
  background-image: none;
  text-shadow: none;
  border-radius: 3px;
}
.agreement .primary-action-container .btn-agreement-action.btn-green .ff-check {
  position: relative;
  top: 1px;
  font-size: 24px;
  line-height: 24px;
}
.agreement .primary-action-container .btn-agreement-action.btn-green .check-icon {
  position: relative;
  top: 2px;
  margin-right: 0;
  display: inline-block;
}
.agreement .primary-action-container .btn-agreement-action.btn-save.btn-loader {
  background-position: left 40px center !important;
}
.agreement .generating-verification {
  position: relative;
  left: -2px;
  margin-right: 1px;
}
.agreement .logo-placeholder {
  padding: 0 !important;
}
.agreement .logo-placeholder > div {
  height: auto;
  min-height: 56px;
  line-height: 56px;
}
.agreement .logo-placeholder .alert,
.agreement .logo-placeholder .uploader {
  margin: 8px;
  line-height: 1.3;
}
.agreement .logo-placeholder .uploader {
  display: inline-block;
}
.agreement .participant-placeholder > div {
  height: 200px;
  background: top 25px center url(https://html-assets-prod.guideflow.com/c8c67640b702312f7f45d350e3bdb55435717cfc) no-repeat;
  background-color: #FFFCEE;
  line-height: 290px;
}
.of-sms-sign {
  animation: bankid-content-mount 0.2s ease;
  animation-fill-mode: forwards;
}
.of-sms-sign__code {
  display: block;
  width: 210px;
  margin: 20px auto 30px;
}
.of-sms-sign__phone-number-input-wrapper {
  width: 200px;
  margin: 0 auto;
  display: block;
}
.of-sms-sign__phone-number-input-wrapper label {
  display: none;
}
.of-sms-sign__phone-number-input {
  height: 50px !important;
  font-size: 18px !important;
}
.of-sms-sign__phone-number-info {
  max-width: 500px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.3;
}
.of-sms-sign__code-headline,
.of-sms-sign__phone-number-headline {
  text-align: center;
  font-size: 18px;
  margin: 20px 0;
  line-height: 26px;
}
.of-sms-sign__phone-number-headline {
  margin-bottom: 10px;
}
.of-sms-sign__retry-link {
  text-align: right;
}
.of-sms-sign__code-input-icon {
  display: inline-block;
  float: left;
  background: #f3f3f3;
  border-radius: 4px 0 0 4px;
  font-size: 40px;
  height: 48px;
  width: 48px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #DDD;
  border-right: none;
}
.of-sms-sign__code-input-wrapper {
  display: inline-block;
  width: 150px;
}
.of-sms-sign__code-input {
  margin: 0 !important;
  border-radius: 0 4px 4px 0 !important;
  font-size: 18px !important;
  height: 50px !important;
}
.of-electronic-id__ssn-modal {
  padding: 30px 0 40px;
  animation: bankid-content-mount 0.2s ease;
  animation-fill-mode: forwards;
}
.of-electronic-id__ssn-form {
  width: 200px;
  margin: 0 auto;
}
.of-electronic-id__ssn-input {
  font-size: 18px !important;
}
.of-electronic-id__ssn-warning {
  color: #b94a48;
  text-overflow: ellipsis;
  text-align: center;
}
.of-electronic-id__headline {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 18px;
}
.of-swedish-bankid__waiting-modal {
  animation: bankid-content-mount 0.2s ease;
  animation-fill-mode: forwards;
}
.of-swedish-bankid__waiting-modal-spinner {
  font-size: 34px;
  text-align: center;
  color: #00ACFF;
  margin: 30px 0 20px;
}
.of-swedish-bankid__waiting-modal-content {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
}
.of-swedish-bankid__waiting-modal-content-small {
  font-size: 14px;
}
.ssn-passed {
  display: block !important;
  text-align: center;
  color: #3E4658;
  background-color: transparent;
  font-weight: 400;
}
@keyframes bankid-content-mount {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.modal .bankid-start-button {
  width: 200px;
  height: 50px;
  display: block;
  margin: 0 auto;
  margin-bottom: 7px;
  font-size: 15px;
}
@media (max-width: 600px) {
  .modal .bankid-start-button {
    width: 100%;
    left: 0%;
  }
}
.modal .bankid-start-button .bankid-logo {
  width: 28px;
  margin-top: 5px;
  float: left;
}
.modal .bankid-start-button .bankid-start-button-copy {
  text-align: left;
  position: relative;
  left: 16px;
}
.modal.decline-modal {
  border: 3px solid #DA5F5F;
}
.modal .add-participant-modal div.add-participant-or {
  display: block;
  position: relative;
  top: -30px;
  border-bottom: 1px solid #e1e1e1;
  text-align: center;
}
.modal .add-participant-modal div.add-participant-or > div {
  display: inline-block;
  position: relative;
  top: 30px;
  padding: 20px;
  background-color: #fff;
  text-align: center;
  font-size: 15px;
  font-style: italic;
  color: #969aa6;
}
.modal .modal-body .data-label-container {
  padding-top: 2px;
}
.modal .modal-body .data-label-container .input-data {
  padding-top: 13px;
}
.modal .modal-footer input[type='submit'] {
  color: #fff;
}
@media screen and (max-width: 999px) {
  .agreement .sidebar {
    display: none;
  }
  .agreement.type-b2b .party {
    border-bottom: none;
  }
  .agreement .owner-logo {
    position: static;
    width: 100%;
    padding-top: 14px;
    background-color: transparent;
    margin-left: 0px;
  }
  .agreement .sidebar-content {
    display: block;
  }
  .agreement .sidebar-content .sidebar-tabs {
    padding-top: 0;
  }
  .agreement .sidebar-content .sidebar-tabs-containers {
    border-bottom: none;
  }
  .agreement .party .box-menu .dropdown > button,
  .agreement .individual .box-menu .dropdown > button {
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
  .agreement .parties.has-logo {
    margin-top: 0 !important;
  }
  .agreement .individual {
    padding-top: 0px;
  }
  .agreement .agreement-action {
    margin-bottom: 0;
  }
  .agreement .primary-action-container {
    display: flex;
    justify-content: center;
  }
  .agreement .primary-action-container .btn-as-link {
    display: inline;
    margin-right: 20px;
    color: #446cc7;
  }
}
.expiry-days-popover .expiry-days {
  position: relative;
  top: 5px;
  width: 65px;
}
.remind-me-popover .remind-me-days {
  position: relative;
  top: 5px;
  width: 65px;
}
.agreement-value-popover {
  max-width: 300px;
}
.agreement-value-popover input::-webkit-outer-spin-button,
.agreement-value-popover input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.agreement-value-popover input[type=number] {
  -moz-appearance: textfield;
}
@media screen and (max-width: 480px) {
  .modal .sign-success-modal .modal-body > div {
    width: 100%;
    float: none;
  }
  .modal .sign-success-modal .modal-footer > div {
    width: 65%;
  }
}
.viewer-role-warning {
  width: 249px;
}
.add-participant-modal .js-save-to-address-book-group {
  padding: 0px 2px 8px;
}
.guest-layout .agreement .toolbar {
  position: fixed;
}
.agreement .toolbar {
  position: fixed;
  bottom: 0px;
  left: 0;
  z-index: 1043;
  -webkit-transform: translateZ(0);
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  padding: 10px 20px 0 20px;
  background-color: #013a4c;
  text-shadow: none;
}
.agreement .toolbar .popover-group {
  position: relative;
  z-index: 1011;
}
.agreement .toolbar .popover-group .js-popover-container .popover {
  color: white;
  background-color: #3E4658;
  border-color: #333a49;
  max-width: 700px;
  min-width: 160px;
}
.agreement .toolbar .popover-group .js-popover-container .popover.top .arrow {
  border-top-color: #333a49;
}
.agreement .toolbar .popover-group .js-popover-container .popover.top .arrow:after {
  border-top-color: #3E4658;
}
.agreement .toolbar .popover-group .js-popover-container .popover.right .arrow {
  border-right-color: #333a49;
}
.agreement .toolbar .popover-group .js-popover-container .popover.right .arrow:after {
  border-right-color: #3E4658;
}
.agreement .toolbar .popover-group .js-popover-container .popover.bottom .arrow {
  border-bottom-color: #333a49;
}
.agreement .toolbar .popover-group .js-popover-container .popover.bottom .arrow:after {
  border-bottom-color: #3E4658;
}
.agreement .toolbar .popover-group .js-popover-container .popover.left .arrow {
  border-left-color: #333a49;
}
.agreement .toolbar .popover-group .js-popover-container .popover.left .arrow:after {
  border-left-color: #fff;
}
.agreement .toolbar .popover-group .js-popover-container .popover .popover-content {
  padding: 20px;
}
.agreement .toolbar .popover-group .js-popover-container .popover h2,
.agreement .toolbar .popover-group .js-popover-container .popover td,
.agreement .toolbar .popover-group .js-popover-container .popover th {
  color: white;
}
.agreement .toolbar .popover-group .js-popover-container .popover h3 {
  color: white;
}
.agreement .toolbar .popover-group .js-popover-container .popover .green {
  color: #7fac4f;
}
.agreement .toolbar .popover-group .js-popover-container .popover .popover-close {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 30px;
  height: 30px;
  background-color: #3E4658;
  border-radius: 8px;
  text-align: center;
}
.agreement .toolbar .popover-group .js-popover-container .popover .close {
  display: inline-block;
  float: none;
  padding: 5px;
  color: #fff;
  text-shadow: unset;
  opacity: unset;
}
.agreement .toolbar .btn.open {
  color: white;
  background-image: none;
  background-color: #535e76;
}
.agreement .toolbar .btn-settings {
  position: relative;
  top: 5px;
}
.agreement .toolbar .btn-settings.open {
  color: #AAACB8;
}
.agreement .toolbar .btn-settings.guideflow_hovered {
  color: #d9d9d9;
}
.agreement .toolbar .btn-multi {
  z-index: 1200;
}
.agreement .toolbar .btn-modes {
  position: absolute;
  left: 40%;
  width: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.agreement .toolbar .toolbar-action-container .btn-group {
  font-size: 100%;
}
.agreement .toolbar .toolbar-action-container .btn-group .dropdown-toggle {
  width: auto;
  font-size: 100%;
}
.agreement .toolbar .toolbar-navigation {
  position: absolute;
  top: 0px;
  left: 0;
  display: flex;
  align-items: stretch;
  height: 100%;
  margin: 0 15px;
}
.agreement .toolbar .toolbar-navigation button {
  display: flex;
  align-items: center;
  border-left: solid 1px #67696f;
  padding-left: 15px;
  margin: 0;
  color: #d9d9d9;
}
.agreement .toolbar .toolbar-navigation button svg {
  margin-right: 8px;
}
.agreement .toolbar .toolbar-navigation button.guideflow_hovered {
  color: #AAACB8;
  text-decoration: none;
}
.layout-disabled {
  cursor: default;
  opacity: 0.3;
}
.layout-disabled:focus,
.layout-disabled.guideflow_hovered {
  outline: inherit;
  background-color: inherit;
}
.popover-buttons {
  position: relative;
}
@media screen and (max-width: 999px) {
  .agreement .toolbar {
    position: absolute;
  }
  .agreement .toolbar .btn-modes {
    display: none;
  }
  .agreement .toolbar .popover-buttons span {
    display: none;
  }
  .agreement .toolbar .popover-buttons i {
    display: inline-block;
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .agreement .toolbar .popover-group {
    display: none;
  }
}
.ContractOptionsMenu {
  height: 38px;
  background-color: #3E4658;
  background-image: none;
  border-radius: 4px;
  text-shadow: none;
  color: white;
  box-shadow: none;
  padding: 2px 10px 4px 13px;
  margin-left: 0;
  border: 1px solid #ccc;
}
.ContractOptionsMenu.guideflow_hovered {
  background-color: #535e76;
}
.ContractOptionsMenu svg {
  position: relative;
  top: 3px;
  margin-left: 4px;
}
.rmd-menu {
  z-index: 1042 !important;
}
.widget-datafield-value {
  margin: 1px;
  padding: 0;
  border-radius: 4px;
  color: var(--formatting-font-color);
}
.editable-inline-rtf.open .widget-datafield-value:not(.datafield-placeholder) {
  background-color: #E8EAEE;
}
.editable-inline-rtf.open .widget-datafield-value.guideflow_hovered {
  background-color: #fff4d9;
  color: #a79375;
}
.editable-inline-rtf.open .cke_widget_focused .widget-datafield-value {
  outline: #3E4658 solid 1px;
}
.widget-datafield-value.datafield-placeholder {
  background-color: #fff4d9;
  font-style: italic;
}
.widget-datafield {
  outline-style: none !important;
}
.data-fields-list-container {
  min-height: 250px;
}
.data-fields-list-container .data-fields-list {
  overflow: auto;
  max-height: 400px;
}
.data-fields-list-container .data-fields-list .data-fields-list-item {
  cursor: pointer;
}
.data-fields-list-container .data-fields-list .data-fields-list-item.guideflow_hovered {
  background: #F7F7F7;
}
.flash-notification {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  -webkit-transform: translateZ(0);
  text-align: center;
  cursor: pointer;
}
.flash-notification .inner {
  display: inline-block;
  position: relative;
  top: -100px;
  padding: 0 30px 12px 30px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  border-top: none;
  border-radius: 0 0 4px 4px;
}
.flash-notification .inner h2 {
  margin: 18px 0 0 0;
  font-size: 15px;
  white-space: nowrap;
}
.flash-notification .close {
  position: relative;
  top: 3px;
  right: -20px;
  opacity: 0.14;
  filter: alpha(opacity=14);
}
.flash-notification.error .inner {
  background-color: #ffeeee;
  border-color: border-light-red;
  color: #b94a48;
}
.flash-notification.error h2 {
  color: #B95465;
}
.flash-notification.error div {
  color: #76313c;
}
.flash-notification.error div.text-small {
  color: #9b3f4f;
}
.flash-notification.warning .inner {
  background-color: #fcf6e3;
  border-color: #F0DBB4;
}
.flash-notification.warning h2 {
  color: #B98D54;
}
.flash-notification.warning div {
  color: #765831;
}
.flash-notification.warning div.text-small {
  color: #9b733f;
}
.flash-notification.info .inner {
  background-color: #deeff9;
  border-color: #c8e4f5;
  color: #3E4658;
}
.flash-notification.success .inner {
  background-color: #F0FAE7;
  border-color: #D5E9C6;
}
.flash-notification.success h2 {
  color: #7FA853;
}
.flash-notification.success div {
  color: #4b6431;
}
.flash-notification.success div.text-small {
  color: #658642;
}
body.app-alert-enabled .flash-notification {
  top: 40px;
}
body.app-alert-enabled .app-alert-container {
  position: fixed;
  top: 0;
  z-index: 5000;
  width: 100%;
  height: 29px;
  padding: 10px 0 0;
  background: #FFFCEE;
  border-bottom: 1px solid #F0DBB4;
  text-align: center;
  font-weight: 600;
}
body.app-alert-enabled .app-alert-container .close {
  position: absolute;
  right: 20px;
}
body.app-alert-enabled .app-body {
  top: 100px;
}
body.app-alert-enabled .header {
  top: 40px;
}
body.app-alert-enabled .app-no-header {
  margin-top: 40px;
}
.paddings-large {
  padding: 30px;
}
.paddings {
  padding: 20px;
}
.paddings-medium {
  padding: 14px;
}
.small-padding {
  padding: 8px;
}
.paddings-mini {
  padding: 4px;
}
.padding-top {
  padding-top: 20px ;
}
.padding-right {
  padding-right: 20px;
}
.padding-left {
  padding-left: 20px;
}
.padding-bottom {
  padding-bottom: 20px ;
}
.mini-padding-top,
.padding-mini-top {
  padding-top: 4px;
}
.mini-padding-right,
.padding-mini-right {
  padding-right: 4px;
}
.mini-padding-bottom,
.padding-mini-bottom {
  padding-bottom: 4px;
}
.mini-padding-left,
.padding-mini-left {
  padding-left: 4px;
}
.small-padding-top,
.padding-small-top {
  padding-top: 8px;
}
.small-padding-right,
.padding-small-right {
  padding-right: 8px;
}
.small-padding-bottom,
.padding-small-bottom {
  padding-bottom: 8px;
}
.small-padding-left,
.padding-small-left {
  padding-left: 8px;
}
.medium-padding-top,
.padding-medium-top {
  padding-top: 14px;
}
.medium-padding-right,
.padding-medium-right {
  padding-right: 14px;
}
.medium-padding-bottom,
.padding-medium-bottom {
  padding-bottom: 14px;
}
.medium-padding-left,
.padding-medium-left {
  padding-left: 14px;
}
.large-padding-top,
.padding-large-top {
  padding-top: 30px ;
}
.large-padding-right,
.padding-large-right {
  padding-right: 30px ;
}
.large-padding-bottom,
.padding-large-bottom {
  padding-bottom: 30px ;
}
.large-padding-left,
.padding-large-left {
  padding-left: 30px ;
}
.no-padding {
  padding: 0 !important;
}
.no-padding-top {
  padding-top: 0 !important;
}
.no-padding-right {
  padding-right: 0 !important;
}
.no-padding-left {
  padding-left: 0 !important;
}
.no-padding-bottom {
  padding-bottom: 0 !important;
}
.margins-large {
  margin: 30px ;
}
.margins {
  margin: 20px ;
}
.margins-medium {
  margin: 14px;
}
.margins-small {
  margin: 8px;
}
.margins-mini {
  margin: 4px;
}
.margin-top {
  margin-top: 20px ;
}
.margin-right {
  margin-right: 20px ;
}
.margin-bottom {
  margin-bottom: 20px ;
}
.margin-left {
  margin-left: 20px ;
}
.small-margin-top,
.margin-small-top {
  margin-top: 8px ;
}
.small-margin-left,
.margin-small-left {
  margin-left: 8px ;
}
.small-margin-bottom,
.margin-small-bottom {
  margin-bottom: 8px ;
}
.small-margin-right,
.margin-small-right {
  margin-right: 8px ;
}
.mini-margin-top,
.margin-mini-top {
  margin-top: 4px ;
}
.mini-margin-right,
.margin-mini-right {
  margin-right: 4px ;
}
.mini-margin-bottom,
.margin-mini-bottom {
  margin-bottom: 4px ;
}
.mini-margin-left,
.margin-mini-left {
  margin-left: 4px ;
}
.margin-micro-left {
  margin-left: 2px ;
}
.margin-micro-right {
  margin-right: 2px ;
}
.margin-micro-top {
  margin-top: 2px ;
}
.margin-micro-bottom {
  margin-bottom: 2px ;
}
.medium-margin-top,
.margin-medium-top {
  margin-top: 14px;
}
.medium-margin-bottom,
.margin-medium-bottom {
  margin-bottom: 14px;
}
.medium-margin-right,
.margin-medium-right {
  margin-right: 14px;
}
.medium-margin-left,
.margin-medium-left {
  margin-left: 14px;
}
.large-margin-top,
.margin-large-top {
  margin-top: 30px;
}
.large-margin-right,
.margin-large-right {
  margin-right: 30px;
}
.large-margin-bottom,
.margin-large-bottom {
  margin-bottom: 30px;
}
.large-margin-left,
.margin-large-left {
  margin-left: 30px;
}
.xlarge-margin-top,
.margin-xlarge-top {
  margin-top: 60px;
}
.xlarge-margin-right,
.margin-xlarge-right {
  margin-right: 60px;
}
.xlarge-margin-bottom,
.margin-xlarge-bottom {
  margin-bottom: 60px;
}
.xlarge-margin-left,
.margin-xlarge-left {
  margin-left: 60px;
}
.no-margin {
  margin: 0 !important;
}
.no-margin-top {
  margin-top: 0 !important;
}
.no-margin-bottom {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1200px) {
  .content-area {
    margin-left: 180px;
    min-width: 520px;
  }
  .content-area .content {
    padding: 20px;
  }
  .line-right {
    display: none;
  }
}
@media (min-width: 1200px) {
  .hide {
    display: none;
  }
  .show {
    display: block;
  }
}

