:root, body {
  font-size: 16px; }

:root, body {
  font-size: 16px; }

.bg-navy {
  background-color: #001F3F; }

.bg-blue {
  background-color: #0074D9; }

.bg-aqua {
  background-color: #7FDBFF; }

.bg-teal {
  background-color: #39CCCC; }

.bg-olive {
  background-color: #3D9970; }

.bg-green {
  background-color: #2ECC40; }

.bg-lime {
  background-color: #01FF70; }

.bg-yellow {
  background-color: #FFDC00; }

.bg-orange {
  background-color: #FF851B; }

.bg-red {
  background-color: #FF4136; }

.bg-fuchsia {
  background-color: #F012BE; }

.bg-purple {
  background-color: #B10DC9; }

.bg-maroon {
  background-color: #85144B; }

.bg-white {
  background-color: #FFFFFF; }

.bg-gray {
  background-color: #AAAAAA; }

.bg-silver {
  background-color: #DDDDDD; }

.bg-black {
  background-color: #111111; }

.border-left-navy {
  border-left-color: #001F3F; }

.border-left-blue {
  border-left-color: #0074D9; }

.border-left-aqua {
  border-left-color: #7FDBFF; }

.border-left-teal {
  border-left-color: #39CCCC; }

.border-left-olive {
  border-left-color: #3D9970; }

.border-left-green {
  border-left-color: #2ECC40; }

.border-left-lime {
  border-left-color: #01FF70; }

.border-left-yellow {
  border-left-color: #FFDC00; }

.border-left-orange {
  border-left-color: #FF851B; }

.border-left-red {
  border-left-color: #FF4136; }

.border-left-fuchsia {
  border-left-color: #F012BE; }

.border-left-purple {
  border-left-color: #B10DC9; }

.border-left-maroon {
  border-left-color: #85144B; }

.border-left-white {
  border-left-color: #FFFFFF; }

.border-left-gray {
  border-left-color: #AAAAAA; }

.border-left-silver {
  border-left-color: #DDDDDD; }

.border-left-black {
  border-left-color: #111111; }

.primary-detail {
  font-weight: bold; }

.secondary-detail {
  color: #8c8797; }

.nav-bar-base {
  color: #5a5563;
  min-width: 90px;
  max-width: 90px;
  display: flex; }

.nav-bar-main {
  box-sizing: border-box;
  height: 100vh; }
  .nav-bar-main ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    justify-items: center;
    height: 100vh; }
  .nav-bar-main li {
    background: #E6EFEA; }
    .nav-bar-main li a {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1.1rem; }
    .nav-bar-main li.active {
      position: relative;
      background: #E6EFEA; }
      .nav-bar-main li.active a {
        position: relative;
        background: #f9fbfa;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px; }
      .nav-bar-main li.active:before {
        position: absolute;
        width: 20px;
        height: 20px;
        background: #f9fbfa;
        z-index: 1;
        right: 0;
        top: -20px;
        content: ""; }
      .nav-bar-main li.active:after {
        position: absolute;
        width: 20px;
        height: 20px;
        background: #f9fbfa;
        z-index: 1;
        right: 0;
        bottom: -20px;
        content: ""; }
      .nav-bar-main li.active .inner {
        position: relative; }
        .nav-bar-main li.active .inner:before {
          position: absolute;
          width: 20px;
          height: 20px;
          background: #E6EFEA;
          z-index: 10;
          right: 0;
          top: -20px;
          border-bottom-right-radius: 20px;
          content: ""; }
        .nav-bar-main li.active .inner:after {
          position: absolute;
          width: 20px;
          height: 20px;
          background: #E6EFEA;
          z-index: 10;
          right: 0;
          bottom: -20px;
          border-top-right-radius: 20px;
          content: ""; }
      .nav-bar-main li.active svg {
        fill: #578F7C; }
    .nav-bar-main li a {
      position: relative; }
      .nav-bar-main li a:before, .nav-bar-main li a:after {
        position: absolute;
        top: 50%;
        transform: translateY(-50%) translateX(-10px);
        display: block;
        opacity: 0;
        transition: 0.36s opacity;
        pointer-events: none;
        z-index: 5000; }
      .nav-bar-main li a:hover:before, .nav-bar-main li a:hover:after {
        opacity: 1; }
      .nav-bar-main li a:before {
        font-weight: 800;
        position: absolute;
        padding: 0.55rem;
        border-radius: 5px;
        left: 100%;
        background: #28262C;
        color: #fff;
        content: attr(title);
        white-space: nowrap; }
      .nav-bar-main li a:after {
        right: 0;
        border: 5px solid #28262C;
        border-color: transparent #28262C transparent transparent;
        content: ""; }
    .nav-bar-main li svg {
      width: 1.5em;
      height: 1.5em;
      fill: #a6a2af; }
  .nav-bar-main .spacer {
    flex-grow: 1; }
  .nav-bar-main .nav-label {
    display: none; }
  .nav-bar-main .logo {
    margin-top: 0.72rem;
    width: 38px;
    height: 38px; }
  .nav-bar-main .profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%; }

.nav-bar-section {
  flex-grow: 0;
  min-width: 285px;
  max-width: 285px;
  transition: min-width 0.3s, max-width 0.3s;
  height: 100vh;
  max-height: 100vh;
  overflow-y: scroll; }
  .nav-bar-section .heading {
    font-size: 2rem;
    font-family: proxima-nova-soft, sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem;
    padding-right: 0.55rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    line-height: 1; }
  .nav-bar-section .sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.36rem;
    border-radius: 10px;
    flex-shrink: 0; }
    .nav-bar-section .sidebar-toggle svg {
      fill: #c1bec6;
      width: 0.9em;
      height: 0.9em; }
    .nav-bar-section .sidebar-toggle:hover svg {
      fill: #8c8797; }

.sidebar-collapsed .nav-bar-section {
  min-width: 46px;
  max-width: 46px;
  overflow: hidden; }
  .sidebar-collapsed .nav-bar-section .heading {
    justify-content: flex-end; }
    .sidebar-collapsed .nav-bar-section .heading .heading-text {
      display: none; }
  .sidebar-collapsed .nav-bar-section ul.level-2 {
    display: none; }

.nav-bar-section ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1.1rem; }
.nav-bar-section ul.level-2 li {
  padding-top: 0.8em; }
  .nav-bar-section ul.level-2 li a {
    color: #5a5563; }
  .nav-bar-section ul.level-2 li .section-title {
    font-size: 1rem;
    font-family: proxima-nova-soft, sans-serif;
    font-weight: 800;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 0.55rem;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    margin-bottom: 0.55rem;
    cursor: pointer; }
    .nav-bar-section ul.level-2 li .section-title svg {
      fill: #8c8797;
      width: 24px;
      height: 24px;
      transition: transform 0.3s; }
    .nav-bar-section ul.level-2 li .section-title.open svg {
      transform: rotate(90deg); }
.nav-bar-section ul.level-3 li {
  color: #8c8797;
  padding: 0; }
  .nav-bar-section ul.level-3 li .cal-color {
    border: none;
    background: #E6EFEA;
    width: 30px;
    height: 30px; }
  .nav-bar-section ul.level-3 li svg {
    width: 20px;
    height: 20px;
    fill: #8c8797; }
  .nav-bar-section ul.level-3 li .count {
    color: #8c8797;
    padding-right: 0.55rem; }
.nav-bar-section ul.level-3 .level-3-heading {
  font-weight: 800;
  text-transform: uppercase;
  font-family: proxima-nova; }
.nav-bar-section ul.level-3 a, .nav-bar-section ul.level-3 .level-3-heading {
  color: #8c8797;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.36rem;
  padding-right: 1.1rem;
  padding-left: 0.55rem;
  margin-left: 1.1rem; }
  .nav-bar-section ul.level-3 a:hover, .nav-bar-section ul.level-3 .level-3-heading:hover {
    text-decoration: none;
    font-weight: bold; }
.nav-bar-section .active {
  font-weight: 800; }
  .nav-bar-section .active a {
    background: #E6EFEA;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px; }
.nav-bar-section ul.section-nav-recent-clients {
  margin-top: 3rem; }
  .nav-bar-section ul.section-nav-recent-clients li {
    display: flex;
    align-items: center;
    padding: 0.5em;
    margin-right: -2em; }
  .nav-bar-section ul.section-nav-recent-clients .client-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 0.5em; }
.nav-bar-section .timezone {
  background: #578F7C;
  color: #fff;
  padding: 0.55rem 1.1rem;
  margin: 1.1rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem; }
  .nav-bar-section .timezone .timezone-name {
    font-size: 1.5em; }
  .nav-bar-section .timezone .label {
    font-weight: 800;
    color: inherit;
    text-transform: uppercase; }
.nav-bar-section .calendars.events,
.nav-bar-section .calendars.events.sessions,
.nav-bar-section .calendars.events.busy,
.nav-bar-section .calendars.events.remote {
  margin-left: 1.1rem; }
  .nav-bar-section .calendars.events ul,
  .nav-bar-section .calendars.events.sessions ul,
  .nav-bar-section .calendars.events.busy ul,
  .nav-bar-section .calendars.events.remote ul {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden; }
  .nav-bar-section .calendars.events li a.calendar-label,
  .nav-bar-section .calendars.events.sessions li a.calendar-label,
  .nav-bar-section .calendars.events.busy li a.calendar-label,
  .nav-bar-section .calendars.events.remote li a.calendar-label {
    margin: 0; }
  .nav-bar-section .calendars.events li.selected a.calendar-label,
  .nav-bar-section .calendars.events.sessions li.selected a.calendar-label,
  .nav-bar-section .calendars.events.busy li.selected a.calendar-label,
  .nav-bar-section .calendars.events.remote li.selected a.calendar-label {
    font-weight: 800;
    color: #5a5563;
    background: #E6EFEA; }
  .nav-bar-section .calendars.events .miniColors-trigger,
  .nav-bar-section .calendars.events.sessions .miniColors-trigger,
  .nav-bar-section .calendars.events.busy .miniColors-trigger,
  .nav-bar-section .calendars.events.remote .miniColors-trigger {
    padding: 0;
    margin-right: 0.55rem; }
.nav-bar-section .sidebar ul.level-3 {
  border: none; }

.btn svg {
  width: 1.2em;
  height: 1.2em;
  fill: #5a5563; }

.btn-primary {
  background-color: #AE8CA3;
  border: 1px solid #AE8CA3;
  font-weight: bold; }
  .btn-primary:hover {
    background-color: #c3aabb;
    border-color: #c3aabb; }

.btn-success {
  background-color: #578F7C;
  border: 1px solid #578F7C;
  font-weight: bold; }
  .btn-success:hover {
    background-color: #71a895;
    border-color: #71a895; }

.btn-warning {
  background-color: #D8973C;
  border: 1px solid #D8973C;
  font-weight: bold; }
  .btn-warning:hover {
    background-color: #e1ae67;
    border-color: #e1ae67; }

.btn-secondary, .btn-outline-secondary {
  background-color: #fff;
  color: #AE8CA3;
  border: 1px solid #AE8CA3; }
  .btn-secondary:hover, .btn-secondary.active, .btn-outline-secondary:hover, .btn-outline-secondary.active {
    background-color: #AE8CA3;
    border-color: #AE8CA3;
    color: #fff; }

.btn-copy svg {
  width: 1.2em;
  height: 1.2em;
  fill: #5a5563; }

form label {
  color: #5a5563;
  font-weight: bold; }
form .note {
  font-weight: normal;
  font-style: normal;
  color: #8c8797; }

.attachments-grid.small .attachment {
  max-width: 50px; }
.attachments-grid.small .attachment-name {
  display: none; }
.attachments-grid .attachment {
  width: 100%;
  max-width: 200px;
  position: relative;
  text-align: center;
  display: inline-block; }
  .attachments-grid .attachment img {
    width: 100%;
    height: auto;
    border: 1px solid #c1bec6;
    border-radius: 10px; }
  .attachments-grid .attachment .attachment-name {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-size: 0.8em;
    color: #5a5563; }
  .attachments-grid .attachment .delete-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #28262C;
    color: white;
    box-shadow: 0 3px 10px rgba(200, 200, 200, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer; }
    .attachments-grid .attachment .delete-btn:hover {
      background-color: #BD632F; }

.content-panel {
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #f9fbfa; }
  .content-panel .content-panel-header {
    padding: 0;
    overflow: visible;
    color: #444;
    background-color: white;
    border-bottom: 1px solid #ddd; }
    .content-panel .content-panel-header.with-nav {
      border-bottom: none; }
    .content-panel .content-panel-header .content-panel-title {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .content-panel .content-panel-header .content-panel-title .actions {
        padding: 1.1rem; }
      .content-panel .content-panel-header .content-panel-title .btn {
        line-height: 1.5em; }
    .content-panel .content-panel-header h1 {
      margin: 0;
      padding: 0;
      margin-top: 5px;
      margin-bottom: 5px;
      margin-left: 25px;
      margin-right: 25px;
      font-size: 2.2em;
      font-weight: normal;
      line-height: 70px; }
      .content-panel .content-panel-header h1 a {
        color: #428bca; }
    .content-panel .content-panel-header .section-nav {
      clear: both; }
      .content-panel .content-panel-header .section-nav a {
        border-bottom: 2px solid #ddd; }
        .content-panel .content-panel-header .section-nav a.active {
          font-weight: bold; }
        .content-panel .content-panel-header .section-nav a.active, .content-panel .content-panel-header .section-nav a:hover {
          border-bottom: 2px solid #2980b9; }
      .content-panel .content-panel-header .section-nav .glyphicon {
        opacity: 0.3;
        padding-top: 2px;
        padding-left: 15px; }
    .content-panel .content-panel-header .btn {
      height: 40px;
      line-height: 30px;
      font-size: 16px; }
    .content-panel .content-panel-header .btn-toolbar {
      margin-right: 25px;
      margin-top: 20px; }
    .content-panel .content-panel-header .action-menu .dropdown-menu {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
    .content-panel .content-panel-header .nav.section-nav li {
      flex-grow: 1;
      padding: 0; }
      .content-panel .content-panel-header .nav.section-nav li a {
        display: block;
        text-align: center;
        line-height: 3em; }
        .content-panel .content-panel-header .nav.section-nav li a:hover {
          background-color: #eee; }
  .content-panel .content-panel-body {
    padding: 1.1rem;
    overflow-y: scroll; }
  .content-panel .content-panel-footer {
    border-top: 1px solid #dbd9de;
    padding: 1.1rem;
    display: flex;
    justify-content: center; }
    .content-panel .content-panel-footer .actions {
      display: flex;
      gap: 0.55rem; }

.content-card {
  box-shadow: 0 3px 10px rgba(200, 200, 200, 0.5);
  background: #fff;
  border-radius: 10px;
  margin-bottom: 1.1rem;
  overflow: hidden; }
  .content-card .content-card-header {
    padding: 1.1rem;
    border-bottom: 1px solid #dbd9de;
    background: #f9fbfa;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px; }
  .content-card .content-card-footer {
    padding: 1.1rem;
    border-top: 1px solid #dbd9de;
    background: #f9fbfa;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; }
  .content-card .content-card-body {
    padding: 1.1rem; }
  .content-card .primary-detail {
    font-weight: bold;
    font-size: 1.2em;
    height: 1.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #5a5563; }
    .content-card .primary-detail a {
      color: #5a5563; }
  .content-card .secondary-detail {
    color: #8c8797;
    text-overflow: ellipsis; }
  .content-card .summary {
    display: flex;
    align-items: center;
    position: relative;
    gap: 1em;
    padding: 0.55rem;
    padding-left: 3em;
    min-height: 5em; }
    .content-card .summary .spacer {
      flex-grow: 1; }
    .content-card .summary .handle {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 2em;
      background: #E6EFEA; }
      .content-card .summary .handle .index {
        margin-top: 0.55rem;
        font-size: 1.2em;
        text-align: center; }
      .content-card .summary .handle svg {
        transform: rotate(90deg);
        max-width: 1.5rem;
        max-height: 1.5rem;
        min-width: 1.5rem;
        min-height: 1.5rem;
        fill: #28262C;
        margin-bottom: 0.55rem; }
  .content-card .actions {
    display: flex;
    justify-content: space-between;
    margin-right: 1em;
    gap: 1.5em; }
    .content-card .actions svg {
      width: 1.5em;
      height: 1.5em;
      fill: #8c8797; }

.bg-navy {
  background-color: #001F3F; }

.bg-blue {
  background-color: #0074D9; }

.bg-aqua {
  background-color: #7FDBFF; }

.bg-teal {
  background-color: #39CCCC; }

.bg-olive {
  background-color: #3D9970; }

.bg-green {
  background-color: #2ECC40; }

.bg-lime {
  background-color: #01FF70; }

.bg-yellow {
  background-color: #FFDC00; }

.bg-orange {
  background-color: #FF851B; }

.bg-red {
  background-color: #FF4136; }

.bg-fuchsia {
  background-color: #F012BE; }

.bg-purple {
  background-color: #B10DC9; }

.bg-maroon {
  background-color: #85144B; }

.bg-white {
  background-color: #FFFFFF; }

.bg-gray {
  background-color: #AAAAAA; }

.bg-silver {
  background-color: #DDDDDD; }

.bg-black {
  background-color: #111111; }

.border-left-navy {
  border-left-color: #001F3F; }

.border-left-blue {
  border-left-color: #0074D9; }

.border-left-aqua {
  border-left-color: #7FDBFF; }

.border-left-teal {
  border-left-color: #39CCCC; }

.border-left-olive {
  border-left-color: #3D9970; }

.border-left-green {
  border-left-color: #2ECC40; }

.border-left-lime {
  border-left-color: #01FF70; }

.border-left-yellow {
  border-left-color: #FFDC00; }

.border-left-orange {
  border-left-color: #FF851B; }

.border-left-red {
  border-left-color: #FF4136; }

.border-left-fuchsia {
  border-left-color: #F012BE; }

.border-left-purple {
  border-left-color: #B10DC9; }

.border-left-maroon {
  border-left-color: #85144B; }

.border-left-white {
  border-left-color: #FFFFFF; }

.border-left-gray {
  border-left-color: #AAAAAA; }

.border-left-silver {
  border-left-color: #DDDDDD; }

.border-left-black {
  border-left-color: #111111; }

.switch-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0.36rem; }
  .switch-container span {
    font-weight: bold; }
  .switch-container label {
    cursor: pointer;
    margin: 0; }
  .switch-container .switch {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 3.5em;
    height: 2em; }
    .switch-container .switch input[type="checkbox"] {
      opacity: 0;
      width: 0;
      height: 0; }
    .switch-container .switch .switch-track {
      cursor: pointer;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #dbd9de;
      transition: .4s;
      border-radius: 1em; }
      .switch-container .switch .switch-track:before {
        position: absolute;
        content: "";
        height: 1.5em;
        width: 1.5em;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%; }
    .switch-container .switch input[type="checkbox"]:checked + .switch-track {
      background-color: #578F7C; }
      .switch-container .switch input[type="checkbox"]:checked + .switch-track:before {
        transform: translateX(1.5em); }
    .switch-container .switch .note {
      margin-top: 0; }

.blank-slate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 2px dashed #dbd9de;
  border-radius: 20px;
  padding: 1.1rem;
  text-align: center; }
  .blank-slate .primary-detail {
    font-size: 1.2em;
    font-weight: bold;
    color: #5a5563; }
  .blank-slate .secondary-detail {
    color: #8c8797; }
  .blank-slate .btn {
    margin-top: 1.1rem; }
  .blank-slate svg {
    background: #AE8CA3;
    fill: #fff;
    stroke: #AE8CA3;
    border-radius: 10px;
    padding: 0.55rem;
    margin: 1.1rem;
    width: 4em;
    height: 4em; }

.blank-state {
  padding: 1.1rem; }
  .blank-state .feature-headline {
    font-size: 2.5em; }
  .blank-state .feature-strapline {
    font-size: 1.5em;
    margin-bottom: 3rem; }
  .blank-state .blank-state-cards {
    display: flex;
    gap: 1.1rem; }
    .blank-state .blank-state-cards .content-card {
      flex: 1;
      color: #5a5563; }
  .blank-state svg {
    fill: #996e8b;
    background: #d8c8d3;
    border-radius: 10px;
    width: 3em;
    height: 3em;
    padding: 0.55rem;
    margin-bottom: 0.55rem; }

.bg-navy {
  background-color: #001F3F; }

.bg-blue {
  background-color: #0074D9; }

.bg-aqua {
  background-color: #7FDBFF; }

.bg-teal {
  background-color: #39CCCC; }

.bg-olive {
  background-color: #3D9970; }

.bg-green {
  background-color: #2ECC40; }

.bg-lime {
  background-color: #01FF70; }

.bg-yellow {
  background-color: #FFDC00; }

.bg-orange {
  background-color: #FF851B; }

.bg-red {
  background-color: #FF4136; }

.bg-fuchsia {
  background-color: #F012BE; }

.bg-purple {
  background-color: #B10DC9; }

.bg-maroon {
  background-color: #85144B; }

.bg-white {
  background-color: #FFFFFF; }

.bg-gray {
  background-color: #AAAAAA; }

.bg-silver {
  background-color: #DDDDDD; }

.bg-black {
  background-color: #111111; }

.border-left-navy {
  border-left-color: #001F3F; }

.border-left-blue {
  border-left-color: #0074D9; }

.border-left-aqua {
  border-left-color: #7FDBFF; }

.border-left-teal {
  border-left-color: #39CCCC; }

.border-left-olive {
  border-left-color: #3D9970; }

.border-left-green {
  border-left-color: #2ECC40; }

.border-left-lime {
  border-left-color: #01FF70; }

.border-left-yellow {
  border-left-color: #FFDC00; }

.border-left-orange {
  border-left-color: #FF851B; }

.border-left-red {
  border-left-color: #FF4136; }

.border-left-fuchsia {
  border-left-color: #F012BE; }

.border-left-purple {
  border-left-color: #B10DC9; }

.border-left-maroon {
  border-left-color: #85144B; }

.border-left-white {
  border-left-color: #FFFFFF; }

.border-left-gray {
  border-left-color: #AAAAAA; }

.border-left-silver {
  border-left-color: #DDDDDD; }

.border-left-black {
  border-left-color: #111111; }

body .main .trix-editor, body #body .trix-editor {
  position: relative;
  background-color: white;
  border-radius: 10px;
  z-index: 100;
  padding-bottom: 40px;
  border: 1px solid #ccc;
  overflow: hidden; }
  body .main .trix-editor form, body #body .trix-editor form {
    height: 100%; }
    body .main .trix-editor form .editor-content, body #body .trix-editor form .editor-content {
      height: 100%;
      display: grid;
      grid-template-rows: 1fr auto;
      grid-template-columns: 100%; }
  body .main .trix-editor trix-editor, body #body .trix-editor trix-editor {
    min-height: 100px !important;
    max-height: 800px !important;
    overflow-y: auto !important;
    border: 0;
    background: white; }
body .main trix-editor div, body .main trix-editor blockquote, body #body trix-editor div, body #body trix-editor blockquote {
  margin-bottom: 0.5em; }
body .main trix-editor h1, body #body trix-editor h1 {
  float: none;
  font-size: 1.5em; }
body .main trix-editor blockquote, body #body trix-editor blockquote {
  font-style: italic;
  margin-left: 1em;
  padding-left: 1em;
  border-left: 2px solid #AE8CA3; }
body .main trix-toolbar, body #body trix-toolbar {
  background-color: #eee;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 5px;
  font-size: 20px;
  /* end common border */ }
  body .main trix-toolbar .trix-button-group, body #body trix-toolbar .trix-button-group {
    border: 0; }
    body .main trix-toolbar .trix-button-group button, body #body trix-toolbar .trix-button-group button {
      border: 0; }
  body .main trix-toolbar .trix-button--icon, body #body trix-toolbar .trix-button--icon {
    width: 2em;
    height: 2em; }
    body .main trix-toolbar .trix-button--icon:before, body #body trix-toolbar .trix-button--icon:before {
      background-size: 20px; }
  body .main trix-toolbar .trix-button-group--file-tools,
  body .main trix-toolbar .trix-button--icon-code,
  body .main trix-toolbar .trix-button-group--history-tools,
  body .main trix-toolbar .trix-button--icon-strike,
  body .main trix-toolbar .trix-button--icon-decrease-nesting-level,
  body .main trix-toolbar .trix-button--icon-increase-nesting-level, body #body trix-toolbar .trix-button-group--file-tools,
  body #body trix-toolbar .trix-button--icon-code,
  body #body trix-toolbar .trix-button-group--history-tools,
  body #body trix-toolbar .trix-button--icon-strike,
  body #body trix-toolbar .trix-button--icon-decrease-nesting-level,
  body #body trix-toolbar .trix-button--icon-increase-nesting-level {
    display: none; }
  body .main trix-toolbar .fe, body #body trix-toolbar .fe {
    font-size: 20px; }
  body .main trix-toolbar .fe.fe-send, body .main trix-toolbar .fe.fe-plus, body #body trix-toolbar .fe.fe-send, body #body trix-toolbar .fe.fe-plus {
    background-color: #578F7C;
    color: white;
    border-radius: 5px;
    width: 3em; }
    body .main trix-toolbar .fe.fe-send.htmx-request, body .main trix-toolbar .fe.fe-plus.htmx-request, body #body trix-toolbar .fe.fe-send.htmx-request, body #body trix-toolbar .fe.fe-plus.htmx-request {
      background-color: gray;
      background-image: url("/vendor/svg-loaders/puff-white.svg");
      background-position: center center;
      background-repeat: no-repeat;
      background-size: 1.5em; }
      body .main trix-toolbar .fe.fe-send.htmx-request:before, body .main trix-toolbar .fe.fe-plus.htmx-request:before, body #body trix-toolbar .fe.fe-send.htmx-request:before, body #body trix-toolbar .fe.fe-plus.htmx-request:before {
        content: ""; }
  body .main trix-toolbar .trix-button-group--actions, body #body trix-toolbar .trix-button-group--actions {
    margin-left: auto; }
  body .main trix-toolbar .trix-button-group, body #body trix-toolbar .trix-button-group {
    margin-bottom: 0; }
    body .main trix-toolbar .trix-button-group:last-child, body #body trix-toolbar .trix-button-group:last-child {
      margin-right: 0.5vw; }
  body .main trix-toolbar .trix-dialog, body #body trix-toolbar .trix-dialog {
    bottom: 50px;
    top: auto; }

.bg-navy {
  background-color: #001F3F; }

.bg-blue {
  background-color: #0074D9; }

.bg-aqua {
  background-color: #7FDBFF; }

.bg-teal {
  background-color: #39CCCC; }

.bg-olive {
  background-color: #3D9970; }

.bg-green {
  background-color: #2ECC40; }

.bg-lime {
  background-color: #01FF70; }

.bg-yellow {
  background-color: #FFDC00; }

.bg-orange {
  background-color: #FF851B; }

.bg-red {
  background-color: #FF4136; }

.bg-fuchsia {
  background-color: #F012BE; }

.bg-purple {
  background-color: #B10DC9; }

.bg-maroon {
  background-color: #85144B; }

.bg-white {
  background-color: #FFFFFF; }

.bg-gray {
  background-color: #AAAAAA; }

.bg-silver {
  background-color: #DDDDDD; }

.bg-black {
  background-color: #111111; }

.border-left-navy {
  border-left-color: #001F3F; }

.border-left-blue {
  border-left-color: #0074D9; }

.border-left-aqua {
  border-left-color: #7FDBFF; }

.border-left-teal {
  border-left-color: #39CCCC; }

.border-left-olive {
  border-left-color: #3D9970; }

.border-left-green {
  border-left-color: #2ECC40; }

.border-left-lime {
  border-left-color: #01FF70; }

.border-left-yellow {
  border-left-color: #FFDC00; }

.border-left-orange {
  border-left-color: #FF851B; }

.border-left-red {
  border-left-color: #FF4136; }

.border-left-fuchsia {
  border-left-color: #F012BE; }

.border-left-purple {
  border-left-color: #B10DC9; }

.border-left-maroon {
  border-left-color: #85144B; }

.border-left-white {
  border-left-color: #FFFFFF; }

.border-left-gray {
  border-left-color: #AAAAAA; }

.border-left-silver {
  border-left-color: #DDDDDD; }

.border-left-black {
  border-left-color: #111111; }

/* outside wrapper for the whole conversation view */
.conversation-view--wrapper {
  --spacing: 46px;
  --message-margin: 20%;
  position: relative;
  height: 100%;
  background-image: url("/images/conversations/background.png");
  opacity: 1;
  transition: opacity 0.5s ease; }
  .conversation-view--wrapper .appointment-details {
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(200, 200, 200, 0.5);
    padding: 1em; }
    .conversation-view--wrapper .appointment-details .client-title .session-progress {
      font-size: 20px; }
    .conversation-view--wrapper .appointment-details .session-type {
      font-weight: bold; }
      .conversation-view--wrapper .appointment-details .session-type span {
        font-weight: normal; }
    .conversation-view--wrapper .appointment-details .session-actions {
      position: relative;
      display: flex;
      justify-content: end; }

.conversation--loading {
  display: none; }

.htmx-request .conversation--loading {
  display: block; }
.htmx-request .conversation--messages {
  display: none; }

.conversation--header {
  background: #fff;
  border-bottom: 1px solid #dbd9de;
  padding: 1.1rem;
  padding-left: 40px;
  position: relative; }
  .conversation--header .sidebar-toggle {
    position: absolute;
    display: block;
    width: 1em;
    height: 1em;
    left: 0.55rem;
    top: 1rem; }
    .conversation--header .sidebar-toggle svg {
      fill: #28262C;
      width: 1em;
      height: 1em;
      transition: transform 0.3s; }

.conversation--content {
  height: 100%;
  display: grid;
  grid-template-rows: 6rem auto; }

.conversation--messages {
  padding-bottom: 2rem;
  overflow-y: scroll; }
  .conversation--messages .conversation--message {
    display: grid;
    grid-column-gap: 5px;
    row-gap: 5px;
    margin-top: var(--spacing); }
    .conversation--messages .conversation--message .attachment, .conversation--messages .conversation--message .content {
      background-color: #E6EFEA; }
  .conversation--messages .conversation--message.right {
    grid-template-columns: var(--message-margin) 1fr auto;
    grid-template-areas: ". title ." ". text avatar"; }
    .conversation--messages .conversation--message.right .attachment, .conversation--messages .conversation--message.right .content {
      color: #fff;
      background-color: #7c5870; }
      .conversation--messages .conversation--message.right .attachment a, .conversation--messages .conversation--message.right .content a {
        color: #D6E3FB;
        text-decoration: underline; }
    .conversation--messages .conversation--message.right .content:first-of-type {
      position: relative; }
      .conversation--messages .conversation--message.right .content:first-of-type:before {
        position: absolute;
        right: -5px;
        top: 15px;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid #7c5870;
        content: " "; }
  .conversation--messages .conversation--message.left {
    grid-template-columns: auto 1fr var(--message-margin);
    grid-template-areas: ". title ." "avatar text ."; }
    .conversation--messages .conversation--message.left .attachment, .conversation--messages .conversation--message.left .content {
      background-color: #E6EFEA; }
    .conversation--messages .conversation--message.left .content:first-of-type {
      position: relative; }
      .conversation--messages .conversation--message.left .content:first-of-type:before {
        position: absolute;
        left: -5px;
        top: 15px;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-right: 5px solid #E6EFEA;
        content: " "; }
  .conversation--messages .conversation--message--text {
    grid-area: text; }
    .conversation--messages .conversation--message--text .content {
      padding: 0.55rem;
      border-right: 10px; }
      .conversation--messages .conversation--message--text .content p, .conversation--messages .conversation--message--text .content ul {
        margin: 0; }
      .conversation--messages .conversation--message--text .content h1 {
        font-size: 1.5em;
        float: none;
        margin-bottom: 0.5em;
        margin-top: 0.5em; }
      .conversation--messages .conversation--message--text .content:first-child {
        border-top-right-radius: 10px;
        border-top-left-radius: 10px; }
      .conversation--messages .conversation--message--text .content:last-child {
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px; }
    .conversation--messages .conversation--message--text .attachment {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      padding: 0.55rem;
      grid-area: text;
      margin-top: 0.36rem; }
      .conversation--messages .conversation--message--text .attachment:last-child {
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px; }
    .conversation--messages .conversation--message--text .question {
      font-weight: bold;
      display: block;
      margin-top: 1em;
      border-top: 1px solid #FCFCFC;
      margin-left: -15px;
      margin-right: -15px;
      padding: 15px; }
      .conversation--messages .conversation--message--text .question:first-child {
        margin-top: 0;
        padding-top: 0;
        border-top: none; }
  .conversation--messages .conversation--message--title {
    grid-area: title;
    display: flex;
    justify-content: space-between; }
    .conversation--messages .conversation--message--title h4 {
      margin: 0;
      display: inline-block; }
  .conversation--messages .conversation--message--avatar {
    grid-area: avatar;
    padding: 0 1.1rem; }
    .conversation--messages .conversation--message--avatar .avatar {
      width: 48px;
      height: 48px;
      box-shadow: 0 5px 10px rgba(100, 100, 100, 0.5);
      border-radius: 50%; }
  .conversation--messages .svg-loader {
    width: 1.5em;
    height: 1.5em; }

.conversation--messages_empty,
.conversation--messages_loading,
.conversation--no_conversation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%; }

.new-message-form {
  margin: 1.1rem;
  margin-top: 0;
  position: relative; }
  .new-message-form form {
    display: flex;
    flex-direction: column;
    align-items: stretch; }

.new-message-form .fe-send[disabled],
.edit-message-form .fe-send[disabled] {
  background-color: #AAA !important;
  cursor: not-allowed; }

.conversations-list {
  background: #f9fbfa;
  display: grid;
  min-width: 300px;
  height: 100vh;
  max-height: 100vh;
  grid-template-rows: 6rem 1fr;
  border-right: 1px solid #dbd9de;
  transition: width 0.3s, min-width 0.3s, max-width 0.3s; }
  .conversations-list .heading {
    font-size: 2rem;
    font-family: proxima-nova-soft, sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    line-height: 0; }
  .conversations-list .none {
    padding: 1.1rem; }
  .conversations-list ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 1.1rem; }
  .conversations-list img.load-indicator {
    display: none;
    position: absolute;
    right: 1.1rem;
    top: 1.1rem;
    width: 2rem;
    height: 2rem; }
  .conversations-list.htmx-request img.load-indicator {
    display: block; }
  .conversations-list .conversations-list-header {
    position: relative;
    border-bottom: 1px solid #dbd9de; }
    .conversations-list .conversations-list-header .heading {
      margin-top: 1.1rem;
      font-size: 1.5rem;
      margin-bottom: 0; }
    .conversations-list .conversations-list-header .filters {
      padding: 0 0.55rem;
      display: flex;
      justify-content: space-between; }
      .conversations-list .conversations-list-header .filters .filter {
        font-weight: bold;
        display: flex;
        align-items: center; }
        .conversations-list .conversations-list-header .filters .filter .btn {
          font-weight: bold;
          color: #28262C; }
        .conversations-list .conversations-list-header .filters .filter a {
          color: #28262C;
          cursor: pointer; }
        .conversations-list .conversations-list-header .filters .filter svg {
          width: 1.5em;
          height: 1.5em; }
  .conversations-list ul {
    overflow-y: scroll;
    margin: 0; }
    .conversations-list ul li {
      border-bottom: 1px solid #dbd9de; }
      .conversations-list ul li a {
        background: #f9fbfa;
        color: #5a5563;
        padding: 1rem;
        position: relative;
        display: block;
        border-radius: 0;
        border-left: 4px solid transparent; }
      .conversations-list ul li .line-two {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 200px; }
      .conversations-list ul li.active a {
        background: #cffcea;
        border-left-color: #578F7C;
        font-weight: inherit; }
      .conversations-list ul li.active .last-updated {
        color: #5a5563;
        font-weight: normal; }
      .conversations-list ul li.active .line-two {
        font-weight: normal; }
      .conversations-list ul li .line-one {
        display: flex;
        justify-content: space-between; }
      .conversations-list ul li .client-name {
        font-weight: bold;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
      .conversations-list ul li .last-updated {
        text-align: right;
        color: #8c8797; }

.conversation-subject--header {
  display: flex;
  align-items: center; }
  .conversation-subject--header .engagement-name {
    font-size: 2rem;
    font-family: proxima-nova-soft, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    display: flex;
    align-items: center; }
  .conversation-subject--header .session-details {
    display: flex;
    gap: 1em; }
    .conversation-subject--header .session-details .session-time {
      display: flex;
      color: #8c8797;
      align-items: center; }
      .conversation-subject--header .session-details .session-time svg {
        width: 1.2em;
        height: 1.2em;
        fill: #8c8797;
        margin-right: 0.5em; }
  .conversation-subject--header .status {
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 2em; }
    .conversation-subject--header .status.open {
      background: #578F7C; }
      .conversation-subject--header .status.open button svg {
        fill: #fff;
        width: 1.5em;
        height: 1.5em; }
    .conversation-subject--header .status.closed {
      background: #BD632F; }
      .conversation-subject--header .status.closed button svg {
        margin-top: -0.2em;
        fill: #fff;
        width: 1.5em;
        height: 1.5em; }
    .conversation-subject--header .status span {
      display: block;
      font-weight: 800;
      text-transform: uppercase;
      padding: 0.36rem 1.1rem; }
    .conversation-subject--header .status button {
      display: block;
      background: transparent;
      border: none;
      padding: 0.36rem 1.1rem;
      border-left: 1px solid #f9fbfa; }
      .conversation-subject--header .status button img {
        display: none;
        width: 1.5em;
        height: 1.5em; }
    .conversation-subject--header .status.htmx-request button img {
      display: block; }
    .conversation-subject--header .status.htmx-request button svg {
      display: none; }

.conversations-contact-profile-sidebar {
  height: 100vh;
  flex-basis: 360px;
  min-width: 360px;
  background: #f9fbfa;
  border-left: 1px solid #dbd9de;
  flex-grow: 1;
  display: grid;
  grid-template-rows: 6rem auto; }
  .conversations-contact-profile-sidebar .contact-header {
    height: 6rem;
    max-height: 6rem;
    padding: 1.1rem;
    border-bottom: 1px solid #dbd9de;
    position: relative; }
    .conversations-contact-profile-sidebar .contact-header .avatar {
      position: absolute;
      right: 1.1rem;
      width: 100px;
      height: 100px;
      border-radius: 20px; }
    .conversations-contact-profile-sidebar .contact-header .contact-name {
      font-size: 2rem;
      font-family: proxima-nova-soft, sans-serif;
      font-weight: 400;
      font-style: normal;
      font-size: 1.5rem;
      margin: 0; }
  .conversations-contact-profile-sidebar #contact-panels {
    max-height: calc(100vh - 6rem);
    overflow: hidden; }
  .conversations-contact-profile-sidebar .panel {
    position: relative;
    display: grid;
    grid-template-rows: 3em auto;
    align-items: center;
    box-shadow: 0 -5px 10px rgba(150, 150, 150, 0.2);
    z-index: 1; }
    .conversations-contact-profile-sidebar .panel:first-of-type {
      border-top: none;
      box-shadow: none; }
    .conversations-contact-profile-sidebar .panel .panel-header {
      padding: 0.55rem 1.1rem;
      font-weight: 800; }
      .conversations-contact-profile-sidebar .panel .panel-header a {
        cursor: pointer;
        color: #28262C;
        display: flex;
        align-items: center;
        justify-content: space-between; }
        .conversations-contact-profile-sidebar .panel .panel-header a svg {
          width: 1.5em;
          height: 1.5em;
          fill: #28262C; }
    .conversations-contact-profile-sidebar .panel:first-child .panel-heading {
      border-top: none; }
    .conversations-contact-profile-sidebar .panel .panel-body {
      max-height: calc(100vh - 12rem);
      height: calc(100vh - 12rem);
      padding: 1.1rem;
      overflow-y: scroll; }
    .conversations-contact-profile-sidebar .panel .note {
      background: #fff;
      padding: 1.1rem;
      border: 1px solid #dbd9de;
      border-radius: 10px;
      font-style: normal;
      margin-bottom: 1em; }
      .conversations-contact-profile-sidebar .panel .note:last-child {
        margin-bottom: 0; }
      .conversations-contact-profile-sidebar .panel .note .date {
        font-weight: bold; }
      .conversations-contact-profile-sidebar .panel .note h1, .conversations-contact-profile-sidebar .panel .note h2, .conversations-contact-profile-sidebar .panel .note h3, .conversations-contact-profile-sidebar .panel .note p {
        font-size: 1em;
        margin-bottom: 1em; }
        .conversations-contact-profile-sidebar .panel .note h1:last-child, .conversations-contact-profile-sidebar .panel .note h2:last-child, .conversations-contact-profile-sidebar .panel .note h3:last-child, .conversations-contact-profile-sidebar .panel .note p:last-child {
          margin-bottom: 0; }
  .conversations-contact-profile-sidebar .field {
    margin-bottom: 1.1rem;
    width: 50%; }
    .conversations-contact-profile-sidebar .field .label {
      flex-basis: 30%;
      color: #8c8797;
      font-weight: bold;
      font-family: proxima-nova; }
    .conversations-contact-profile-sidebar .field .value {
      color: #5a5563; }

.session_type-form .form-body {
  padding: 1.1rem; }
.session_type-form .invalid-feedback {
  display: block !important; }
.session_type-form .duration {
  display: block; }
.session_type-form .custom-duration {
  display: block;
  margin: auto;
  border: none;
  background: transparent;
  width: 4em;
  text-align: center;
  color: white; }
.session_type-form .active .custom-duration::placeholder {
  color: white; }
.session_type-form .btn-group-toggle {
  display: block; }
  .session_type-form .btn-group-toggle .btn.colour-swatch-label {
    cursor: pointer;
    padding: 0;
    text-align: center; }
    .session_type-form .btn-group-toggle .btn.colour-swatch-label .colour-swatch {
      width: 38px;
      height: 38px;
      border: 4px solid white; }
    .session_type-form .btn-group-toggle .btn.colour-swatch-label .fe {
      color: white;
      font-size: 20px;
      line-height: 30px;
      display: none; }
    .session_type-form .btn-group-toggle .btn.colour-swatch-label:hover .colour-swatch {
      transform: scale(1.5); }
    .session_type-form .btn-group-toggle .btn.colour-swatch-label.active .fe {
      display: inline-block; }
    .session_type-form .btn-group-toggle .btn.colour-swatch-label input {
      position: absolute;
      clip: rect(0, 0, 0, 0);
      pointer-events: none; }

.bg-navy {
  background-color: #001F3F; }

.bg-blue {
  background-color: #0074D9; }

.bg-aqua {
  background-color: #7FDBFF; }

.bg-teal {
  background-color: #39CCCC; }

.bg-olive {
  background-color: #3D9970; }

.bg-green {
  background-color: #2ECC40; }

.bg-lime {
  background-color: #01FF70; }

.bg-yellow {
  background-color: #FFDC00; }

.bg-orange {
  background-color: #FF851B; }

.bg-red {
  background-color: #FF4136; }

.bg-fuchsia {
  background-color: #F012BE; }

.bg-purple {
  background-color: #B10DC9; }

.bg-maroon {
  background-color: #85144B; }

.bg-white {
  background-color: #FFFFFF; }

.bg-gray {
  background-color: #AAAAAA; }

.bg-silver {
  background-color: #DDDDDD; }

.bg-black {
  background-color: #111111; }

.border-left-navy {
  border-left-color: #001F3F; }

.border-left-blue {
  border-left-color: #0074D9; }

.border-left-aqua {
  border-left-color: #7FDBFF; }

.border-left-teal {
  border-left-color: #39CCCC; }

.border-left-olive {
  border-left-color: #3D9970; }

.border-left-green {
  border-left-color: #2ECC40; }

.border-left-lime {
  border-left-color: #01FF70; }

.border-left-yellow {
  border-left-color: #FFDC00; }

.border-left-orange {
  border-left-color: #FF851B; }

.border-left-red {
  border-left-color: #FF4136; }

.border-left-fuchsia {
  border-left-color: #F012BE; }

.border-left-purple {
  border-left-color: #B10DC9; }

.border-left-maroon {
  border-left-color: #85144B; }

.border-left-white {
  border-left-color: #FFFFFF; }

.border-left-gray {
  border-left-color: #AAAAAA; }

.border-left-silver {
  border-left-color: #DDDDDD; }

.border-left-black {
  border-left-color: #111111; }

.content-card.session {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: visible; }
  .content-card.session .summary {
    display: flex;
    padding: 0;
    min-height: 5em; }
    .content-card.session .summary .index {
      min-height: 5em; }
    .content-card.session .summary .primary-detail {
      color: #5a5563; }
    .content-card.session .summary .secondary-detail {
      color: #8c8797; }
  .content-card.session .index {
    padding: 0.55rem;
    background: #E6EFEA;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 2em;
    align-items: center;
    text-align: center;
    font-weight: 800; }
    .content-card.session .index svg {
      width: 1.5em;
      height: 1.5em; }
  .content-card.session.used .index {
    justify-content: space-between; }
  .content-card.session .unscheduled {
    color: #a6a2af; }
  .content-card.session .content-card-body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2em; }
  .content-card.session .spacer {
    flex-grow: 1; }
  .content-card.session.cancelled {
    color: #8c8797;
    text-decoration: line-through; }

.add-session.blank-slate {
  display: block;
  margin-top: 1em;
  border-radius: 10px; }
  .add-session.blank-slate svg {
    fill: #5a5563;
    width: 2em;
    height: 2em; }

.add-question.blank-slate {
  display: block;
  margin-top: 1em;
  border-radius: 10px; }
  .add-question.blank-slate svg {
    fill: #5a5563;
    width: 2em;
    height: 2em; }

.question-list .option-list {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  .question-list .option-list li {
    margin-bottom: 0.2em;
    display: flex;
    align-items: center; }
    .question-list .option-list li svg {
      width: 1em;
      height: 1em;
      fill: #8c8797; }
    .question-list .option-list li input {
      border-width: 0;
      border-bottom-width: 1px;
      border-radius: 0; }
      .question-list .option-list li input:focus {
        border-width: 1px; }
.question-list .question-form {
  border-top: 1px solid #E6EFEA; }
  .question-list .question-form .form-body {
    padding: 1.1rem; }

.btn-group.action-menu ::after {
  display: none; }
.btn-group.action-menu svg {
  width: 1.5em;
  height: 1.5em;
  fill: #a6a2af; }
.btn-group.action-menu.show .dropdown-toggle {
  box-shadow: none; }
.btn-group.action-menu.show svg {
  fill: #578F7C; }
.btn-group.action-menu .btn {
  padding: 0;
  font-size: inherit;
  display: flex; }
.btn-group.action-menu .dropdown-item {
  padding: 0.5em;
  display: flex;
  gap: 1em;
  justify-content: space-between;
  align-items: center; }
  .btn-group.action-menu .dropdown-item .checkmark {
    margin-top: -0.3em; }
.btn-group.action-menu .dropdown-item:hover {
  background: #f9fbfa;
  text-decoration: none; }

.colour-dot {
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  flex-shrink: 0; }

.template-gallery .modal-body {
  display: flex;
  justify-content: left;
  gap: 1.1rem;
  flex-wrap: wrap; }
.template-gallery .modal-header {
  font-size: 1rem;
  font-family: proxima-nova-soft, sans-serif;
  font-weight: 800;
  font-style: normal;
  display: flex;
  align-items: center; }
.template-gallery .modal-footer {
  display: flex;
  justify-content: center;
  gap: 0.55rem; }
.template-gallery .template-gallery-item {
  background: #fff;
  width: calc(33% - 1em);
  border-radius: 10px;
  text-align: center;
  padding: 1.1rem;
  border: 1px solid #dbd9de; }
  .template-gallery .template-gallery-item .primary-detail {
    font-weight: bold;
    color: #28262C; }
  .template-gallery .template-gallery-item .secondary-detail {
    color: #5a5563;
    min-height: 3em; }
  .template-gallery .template-gallery-item.selected {
    background: #E6EFEA; }
  .template-gallery .template-gallery-item p {
    margin: 0; }
  .template-gallery .template-gallery-item svg {
    width: 64px;
    height: 64px;
    margin-top: 1.1rem;
    margin-bottom: 1.1rem;
    background: #AE8CA3;
    fill: #fff;
    stroke: #AE8CA3;
    border-radius: 0.5em;
    padding: 0.5em; }

.start-here .index-slide {
  max-width: 60em;
  margin: auto; }
  .start-here .index-slide .col,
  .start-here .index-slide [class*="col-"] {
    padding-right: 0.36rem;
    padding-left: 0.36rem; }
  .start-here .index-slide .menu-item {
    background: transparent;
    display: flex;
    gap: 1em;
    margin-top: 1em;
    height: 8em;
    width: 100%;
    text-align: left;
    border: none;
    padding: 0.5em; }
    .start-here .index-slide .menu-item:hover {
      text-decoration: none; }
    .start-here .index-slide .menu-item svg {
      width: 3em;
      height: 3em;
      padding: 0.5em;
      border-radius: 10px;
      fill: white; }
    .start-here .index-slide .menu-item .primary-detail {
      color: #5a5563;
      text-transform: uppercase;
      margin: 0; }
  .start-here .index-slide .start-demo {
    margin-bottom: 1.1rem; }
    .start-here .index-slide .start-demo .divider {
      margin: 1em; }
    .start-here .index-slide .start-demo .btn {
      font-size: 1.2em;
      display: flex;
      max-width: 20em;
      margin: auto;
      align-items: center;
      justify-content: center;
      gap: 0.5em;
      padding: 1em;
      border: none;
      border-radius: 20px;
      box-shadow: 0 3px 10px rgba(200, 200, 200, 0.8); }
      .start-here .index-slide .start-demo .btn:hover {
        color: #578F7C;
        background: #E6EFEA !important; }
        .start-here .index-slide .start-demo .btn:hover svg {
          stroke: #E6EFEA;
          fill: #578F7C; }
    .start-here .index-slide .start-demo svg {
      stroke: white;
      fill: #8c8797;
      min-width: 2.5em;
      min-height: 2.5em;
      max-width: 2.5em;
      max-height: 2.5em; }
    .start-here .index-slide .start-demo .text {
      text-align: left; }
    .start-here .index-slide .start-demo .primary-detail {
      text-transform: uppercase;
      font-weight: bold;
      color: #5a5563; }
    .start-here .index-slide .start-demo .secondary-detail {
      color: inherit; }

.start-here .create-discovery-session svg {
  background: #2D76D2;
  background: linear-gradient(0deg, #205393 0%, #2d76d2 64%);
  stroke: #2D76D2; }
.start-here .create-coaching-program svg {
  background: #579773;
  background: linear-gradient(0deg, #3b664e 0%, #579773 64%);
  stroke: #579773; }
.start-here .create-questionnaire svg {
  background: #7A224A;
  background: linear-gradient(0deg, #3e1126 0%, #7a224a 64%);
  stroke: #7A224A; }
.start-here .create-engagement svg {
  background: #F08A3B;
  background: linear-gradient(0deg, #cf6310 0%, #f08a3b 64%);
  stroke: #F08A3B; }
.start-here .create-session svg {
  background: #DD3CB9;
  background: linear-gradient(0deg, #ae1e8e 0%, #dd3cb9 64%);
  stroke: #DD3CB9; }
.start-here .create-conversation svg {
  background: #A231C2;
  background: linear-gradient(0deg, #6f2285 0%, #a231c2 64%);
  stroke: #A231C2; }

.start-here .use-case-slide {
  max-width: 60em;
  margin: auto;
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em; }
  .start-here .use-case-slide .nav-links {
    position: relative;
    z-index: 1000;
    text-align: left;
    width: 100%; }
    .start-here .use-case-slide .nav-links .back {
      color: #8c8797;
      text-transform: uppercase;
      padding-top: 0;
      padding-bottom: 0; }
      .start-here .use-case-slide .nav-links .back svg {
        stroke: #fff;
        fill: #8c8797;
        width: 2.5em;
        height: 2.5em; }
  .start-here .use-case-slide .menu-item-hero svg {
    width: 4.5em;
    height: 4.5em;
    padding: 0.5em;
    border-radius: 10px;
    fill: white; }
  .start-here .use-case-slide h2.module-title {
    margin-bottom: 0; }
  .start-here .use-case-slide p.benefit {
    font-size: 1.5em;
    max-width: 30em;
    margin: auto; }
  .start-here .use-case-slide .divider {
    stroke: white;
    fill: #8c8797;
    min-width: 2.5em;
    min-height: 2.5em;
    max-width: 2.5em;
    max-height: 2.5em; }
  .start-here .use-case-slide .steps {
    margin-top: 3rem;
    display: flex;
    gap: 1em; }
    .start-here .use-case-slide .steps .step {
      transform: rotate(2deg);
      width: 33%; }
      .start-here .use-case-slide .steps .step:first-child {
        transform: rotate(-2deg); }
      .start-here .use-case-slide .steps .step:last-child {
        transform: rotate(-3deg); }
      .start-here .use-case-slide .steps .step .content-card {
        overflow: visible; }
      .start-here .use-case-slide .steps .step .content-card-body {
        display: flex;
        gap: 1.1rem;
        flex-direction: column;
        align-items: center;
        min-height: 10em; }
      .start-here .use-case-slide .steps .step .order {
        margin-top: -1.6em;
        font-size: 1.5em;
        background: #5a5563;
        color: #fff;
        border-radius: 50%;
        width: 2em;
        height: 2em;
        line-height: 2em;
        text-align: center; }
      .start-here .use-case-slide .steps .step .description {
        font-size: 1.2em; }
  .start-here .use-case-slide .cta-btn {
    background: #578F7C;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    max-width: 20em;
    margin: auto;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 1em;
    border: none;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(200, 200, 200, 0.8); }
    .start-here .use-case-slide .cta-btn svg {
      stroke: #578F7C;
      fill: #fff;
      min-width: 2.5em;
      min-height: 2.5em;
      max-width: 2.5em;
      max-height: 2.5em; }
    .start-here .use-case-slide .cta-btn:hover {
      color: #578F7C;
      fill: #fff;
      background: #E6EFEA !important; }
      .start-here .use-case-slide .cta-btn:hover svg {
        stroke: #578F7C;
        fill: #578F7C; }

.table-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }

.data-table {
  margin-top: 1.1rem;
  margin-bottom: 1.1rem;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #dbd9de;
  border-radius: 10px; }
  .data-table td {
    vertical-align: middle !important; }
  .data-table tr:first-child th:first-child,
  .data-table tr:first-child td:first-child {
    border-top-left-radius: 10px; }
  .data-table tr:first-child th:last-child,
  .data-table tr:first-child td:last-child {
    border-top-right-radius: 10px; }
  .data-table tr:last-child td:first-child {
    border-bottom-left-radius: 10px; }
  .data-table tr:last-child td:last-child {
    border-bottom-right-radius: 10px; }
  .data-table th, .data-table td {
    padding: 1.1rem; }
  .data-table td.contact-details {
    display: flex;
    gap: 1em;
    align-items: center; }
    .data-table td.contact-details .avatar {
      flex-shrink: 0;
      aspect-ratio: 1; }
      .data-table td.contact-details .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
  .data-table tr.total td {
    font-weight: bold; }

.satori-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  padding-bottom: 6em;
  background-image: url("/images/patterns/pattern.png");
  background-position: 50px 100px;
  color: #fff; }
  @media (max-width: 768px) {
    .satori-page-header {
      flex-direction: column;
      align-items: stretch;
      gap: 1.1rem;
      padding-bottom: 2rem; } }
  .satori-page-header h1 {
    margin: 0;
    padding: 0;
    font-size: 2.2em;
    font-weight: normal;
    line-height: 1.5em; }
    .satori-page-header h1 a {
      color: #f9fbfa; }
  .satori-page-header .text .secondary-detail {
    color: #fff; }
  .satori-page-header .btn-toolbar {
    padding: 0;
    margin: 0; }
    .satori-page-header .btn-toolbar .btn {
      background: transparent;
      color: #fff;
      border: 1px solid #fff;
      font-size: 1.2em;
      padding: 2rem; }
      @media (max-width: 768px) {
        .satori-page-header .btn-toolbar .btn {
          width: 100%;
          text-align: center;
          padding: 1.1rem; } }

.stats-bar {
  box-shadow: 0 3px 10px rgba(200, 200, 200, 0.5);
  border: 1px solid #dbd9de;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  background-color: #fff; }
  .stats-bar .col-lg, .stats-bar .col-sm-3 {
    padding: 0; }
    @media (max-width: 768px) {
      .stats-bar .col-lg, .stats-bar .col-sm-3 {
        flex: 0 0 50%; } }
  .stats-bar :last-child .item {
    border-right: none; }
  .stats-bar .item {
    border-right: 1px solid #dbd9de;
    padding: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 0.8em; }
    .stats-bar .item .text {
      overflow: hidden;
      min-width: 0; }
    .stats-bar .item .primary-detail {
      color: #28262C;
      font-size: 2rem;
      font-family: proxima-nova-soft, sans-serif;
      font-weight: 400;
      font-style: normal;
      font-size: 1.1em;
      line-height: 1.2em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .stats-bar .item .secondary-detail {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .stats-bar .item svg {
      min-width: 2.2em;
      max-width: 2.2em;
      min-height: 2.2em;
      max-height: 2.2em;
      align-self: center;
      background: #AE8CA3;
      fill: #fff;
      padding: 0.36rem;
      border-radius: 10px; }
    .stats-bar .item:hover {
      text-decoration: none; }
    .stats-bar .item.active svg {
      background: #578F7C; }
    .stats-bar .item[data-tooltip] {
      position: relative; }
      .stats-bar .item[data-tooltip]::after {
        content: attr(data-tooltip);
        position: absolute;
        top: calc(100% + 6px);
        left: 50%;
        transform: translateX(-50%);
        background: #28262C;
        color: #fff;
        padding: 0.36rem 0.55rem;
        border-radius: 10px;
        font-size: 0.8em;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.15s ease-in-out;
        z-index: 10; }
      .stats-bar .item[data-tooltip]:hover::after {
        opacity: 1; }
    @media (max-width: 768px) {
      .stats-bar .item {
        border-bottom: 1px solid #dbd9de; } }
  @media (max-width: 768px) {
    .stats-bar .col-sm-3:nth-child(2n) .item {
      border-right: none; }
    .stats-bar .col-sm-3:nth-child(n+3) .item {
      border-bottom: none; } }

.pagination {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding: 1.1rem 0; }
  .pagination li {
    margin-left: -1px; }
    .pagination li:first-child {
      margin-left: 0; }
      .pagination li:first-child a, .pagination li:first-child span {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px; }
    .pagination li:last-child a, .pagination li:last-child span {
      border-top-right-radius: 10px;
      border-bottom-right-radius: 10px; }
    .pagination li a, .pagination li span {
      display: block;
      padding: 0.36rem 0.55rem;
      border: 1px solid #dbd9de;
      color: #5a5563;
      text-decoration: none;
      font-size: 0.875rem;
      line-height: 1.5;
      transition: background-color 0.15s ease, color 0.15s ease; }
    .pagination li a:hover {
      background-color: #E6EFEA;
      color: #28262C;
      position: relative;
      z-index: 1; }
    .pagination li.active span {
      background-color: #AE8CA3;
      border-color: #AE8CA3;
      color: #fff;
      position: relative;
      z-index: 1; }
    .pagination li.disabled span {
      color: #c1bec6;
      cursor: not-allowed; }

.toggleable-panel .content-card-header .btn {
  float: right; }
  .toggleable-panel .content-card-header .btn.expanded {
    transform: rotate(90deg); }

#login, #reset {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden; }
  #login::before, #reset::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/images/stock/Stocksy_txp3fbd9b6aWXf300_Medium_150460.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1; }
  #login .login-panel, #reset .login-panel {
    width: 40%;
    min-width: 20em;
    max-width: 30em;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 4em;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12), 0 8px 8px rgba(0, 0, 0, 0.12), 0 16px 16px rgba(0, 0, 0, 0.12); }
    #login .login-panel form, #reset .login-panel form {
      width: 100%;
      margin-top: 2em;
      color: #777; }
    #login .login-panel h1, #reset .login-panel h1 {
      text-align: center;
      font-size: 2em;
      float: none; }
    #login .login-panel p, #reset .login-panel p {
      color: #777;
      text-align: center;
      margin-top: 1em; }
    #login .login-panel .lotus, #reset .login-panel .lotus {
      margin: auto;
      display: block;
      margin-top: 2em;
      width: 80px;
      height: 80px; }
    #login .login-panel a, #reset .login-panel a {
      color: #659188; }
    #login .login-panel .btn, #login .login-panel input, #reset .login-panel .btn, #reset .login-panel input {
      height: 3em;
      border-radius: 0.5em; }
    #login .login-panel .btn, #reset .login-panel .btn {
      font-weight: bold;
      background: #659188;
      border: none;
      width: 100%;
      margin-top: 2em; }
    #login .login-panel .form-group, #reset .login-panel .form-group {
      position: relative; }
      #login .login-panel .form-group .input-wrapper, #reset .login-panel .form-group .input-wrapper {
        position: relative;
        display: flex;
        align-items: center; }
        #login .login-panel .form-group .input-wrapper input, #reset .login-panel .form-group .input-wrapper input {
          flex: 1;
          padding-right: 2.5em;
          height: 3em; }
        #login .login-panel .form-group .input-wrapper svg, #reset .login-panel .form-group .input-wrapper svg {
          fill: #777;
          position: absolute;
          right: 0.75em;
          top: 50%;
          transform: translateY(-50%);
          width: 1.5em;
          height: 1.5em;
          pointer-events: none; }
    #login .login-panel .forgotten, #reset .login-panel .forgotten {
      text-align: right; }
    #login .login-panel .secondary-link, #reset .login-panel .secondary-link {
      color: #999;
      margin-top: 4em;
      text-align: center; }

@media (max-width: 768px) {
  #login .login-panel, #reset .login-panel {
    min-height: 50vh;
    padding: 1.5em;
    max-width: 90%; }
    #login .login-panel form, #reset .login-panel form {
      padding: 0; }
    #login .login-panel .form-group, #reset .login-panel .form-group {
      padding: 0; }
    #login .login-panel .form-group svg, #reset .login-panel .form-group svg {
      top: 1.75em;
      width: 1.25em;
      height: 1.25em; } }
.account-verification-prompt {
  position: relative;
  z-index: 1000;
  background: #D1FEEA;
  display: flex;
  gap: 1em;
  justify-content: center;
  align-items: baseline;
  padding: 0.6em;
  box-shadow: 0 0 16px 0 rgba(150, 150, 150, 0.9); }
  .account-verification-prompt p {
    font-weight: bold;
    font-size: 1.2em;
    padding: 0.2em;
    box-sizing: border-box;
    margin: 0; }
  .account-verification-prompt .btn {
    box-sizing: border-box;
    font-weight: bold;
    font-size: 1.2em;
    margin: 0; }

#trial-expired-modal, #lapsed-subscription-renewal-modal {
  padding-top: 100px; }

.expired-trial-conversion-message, .lapsed-subscription-renewal-message {
  font-size: 1.1em;
  padding: 25px; }
  .expired-trial-conversion-message h2, .lapsed-subscription-renewal-message h2 {
    color: #444 !important;
    margin: 0;
    line-height: 2em !important; }
  .expired-trial-conversion-message h4, .lapsed-subscription-renewal-message h4 {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 2em; }
  .expired-trial-conversion-message .prompt, .lapsed-subscription-renewal-message .prompt {
    margin-bottom: 2em; }
  .expired-trial-conversion-message .path, .lapsed-subscription-renewal-message .path {
    position: relative;
    padding: 1.5em;
    border-radius: 0.5em;
    margin-bottom: 20px; }
    .expired-trial-conversion-message .path p, .lapsed-subscription-renewal-message .path p {
      margin: 0.2em;
      color: #666; }
    .expired-trial-conversion-message .path .price, .lapsed-subscription-renewal-message .path .price {
      font-weight: bold;
      font-size: 1.2em;
      color: black; }
    .expired-trial-conversion-message .path .benefit, .lapsed-subscription-renewal-message .path .benefit {
      font-size: 0.9em;
      color: #666; }
    .expired-trial-conversion-message .path .label, .lapsed-subscription-renewal-message .path .label {
      position: absolute;
      top: 0;
      right: 1em;
      margin: 0;
      padding-left: 0.5em;
      padding-right: 0.5em;
      border-bottom-left-radius: 0.25em;
      border-bottom-right-radius: 0.25em; }
    .expired-trial-conversion-message .path ul, .lapsed-subscription-renewal-message .path ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      min-height: 14em; }
    .expired-trial-conversion-message .path li, .lapsed-subscription-renewal-message .path li {
      list-style: none;
      background-image: url("/site/img/icon/check.svg");
      background-size: 1.5em;
      background-position: 0 0.4em;
      background-repeat: no-repeat;
      color: #777;
      padding-top: 5px;
      padding-bottom: 5px;
      padding-left: 2em; }
  .expired-trial-conversion-message svg, .lapsed-subscription-renewal-message svg {
    border-radius: 0.5em;
    width: 3.5em;
    height: 3.5em; }
  .expired-trial-conversion-message .path.annual, .lapsed-subscription-renewal-message .path.annual {
    border: 2px solid #59917C; }
    .expired-trial-conversion-message .path.annual .label, .lapsed-subscription-renewal-message .path.annual .label {
      background-color: #59917C;
      color: white; }
    .expired-trial-conversion-message .path.annual svg, .lapsed-subscription-renewal-message .path.annual svg {
      fill: #59917C;
      stroke: white; }
  .expired-trial-conversion-message .path.monthly, .lapsed-subscription-renewal-message .path.monthly {
    border: 1px solid #F0A868; }
    .expired-trial-conversion-message .path.monthly svg, .lapsed-subscription-renewal-message .path.monthly svg {
      stroke: white;
      fill: #F0A868; }
    .expired-trial-conversion-message .path.monthly .label, .lapsed-subscription-renewal-message .path.monthly .label {
      background-color: #F0A868;
      color: white; }
    .expired-trial-conversion-message .path.monthly .btn, .lapsed-subscription-renewal-message .path.monthly .btn {
      border-color: #F0A868;
      color: #F0A868; }
      .expired-trial-conversion-message .path.monthly .btn:hover, .lapsed-subscription-renewal-message .path.monthly .btn:hover {
        background-color: #F0A868;
        color: white; }
  .expired-trial-conversion-message p, .lapsed-subscription-renewal-message p {
    margin-bottom: 0.5em; }
  .expired-trial-conversion-message .btn, .lapsed-subscription-renewal-message .btn {
    display: block;
    margin-top: 20px; }
  .expired-trial-conversion-message .btn, .lapsed-subscription-renewal-message .btn {
    font-weight: bold;
    font-size: 1.1em;
    line-height: 2em; }
  .expired-trial-conversion-message .not-quite-ready, .lapsed-subscription-renewal-message .not-quite-ready {
    font-size: 0.8em;
    border-top: 1px solid #ddd;
    margin-top: 20px; }
  .expired-trial-conversion-message button, .lapsed-subscription-renewal-message button {
    display: block;
    width: 100%; }

.contact-autocomplete .autocomplete-input-wrapper {
  position: relative; }
.contact-autocomplete .list-group {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 1000;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 4px 4px; }
.contact-autocomplete .list-group-item {
  padding: 8px 12px;
  font-size: 0.95em;
  background-color: #fff;
  cursor: pointer; }
  .contact-autocomplete .list-group-item:hover, .contact-autocomplete .list-group-item.active {
    background-color: #AE8CA3;
    color: #fff;
    border-color: #AE8CA3; }
.contact-autocomplete .spinner {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px; }

.button-creator {
  /* URL bar */
  /* Layout box */
  /* Two-column layout */
  /* Controls sidebar */
  /* Output panel */ }
  .button-creator .url-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem; }
  .button-creator label {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 0;
    white-space: nowrap; }
  .button-creator input[type="url"] {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    background: #f0f0f0;
    color: #555; }
  .button-creator .url-copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #f0f0f0;
    cursor: pointer;
    color: #555;
    flex-shrink: 0; }
    .button-creator .url-copy-btn:hover {
      background: #e0e0e0;
      color: #333; }
  .button-creator .layout-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.25rem; }
  .button-creator .layout {
    display: grid;
    grid-template-columns: minmax(0, min(280px, 50%)) 1fr;
    gap: 1rem;
    align-items: stretch; }
    @media (max-width: 700px) {
      .button-creator .layout {
        grid-template-columns: 1fr; } }
  .button-creator .controls-panel {
    border-right: 1px solid #e0e0e0;
    padding-right: 1.25rem; }
    .button-creator .controls-panel h3 {
      margin: 0 0 1rem;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #666; }
  .button-creator .field {
    margin-bottom: 1rem; }
    .button-creator .field:last-child {
      margin-bottom: 0; }
  .button-creator .output-panel {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 1rem; }
    .button-creator .output-panel section:last-child {
      display: grid; }
      .button-creator .output-panel section:last-child .code-wrapper {
        display: grid; }
  .button-creator .colour-row {
    display: flex;
    gap: 0.5rem;
    align-items: center; }
    .button-creator .colour-row input[type="color"] {
      width: 48px;
      height: 36px;
      padding: 0;
      border: 1px solid #ccc;
      border-radius: 4px;
      cursor: pointer; }
    .button-creator .colour-row input[type="text"] {
      flex: 1; }
  .button-creator .preview-area {
    padding: 1.5rem;
    text-align: center; }
    .button-creator .preview-area .satori-booking-button:hover {
      filter: brightness(1.1); }
    .button-creator .preview-area .satori-booking-button:active {
      filter: brightness(0.95);
      transform: translateY(1px);
      border-bottom-width: 1px; }
  .button-creator .code-wrapper {
    position: relative; }
  .button-creator textarea {
    width: 100%;
    min-height: 120px;
    height: 100%;
    padding: 0.75rem;
    padding-top: 2.5rem;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.85rem;
    border-radius: 4px;
    resize: vertical;
    background: #f0f0f0;
    color: #666;
    border: none; }
  .button-creator .copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #f0f0f0;
    color: #555; }
    .button-creator .copy-btn:hover {
      background: #e0e0e0;
      color: #333; }

.bg-navy {
  background-color: #001F3F; }

.bg-blue {
  background-color: #0074D9; }

.bg-aqua {
  background-color: #7FDBFF; }

.bg-teal {
  background-color: #39CCCC; }

.bg-olive {
  background-color: #3D9970; }

.bg-green {
  background-color: #2ECC40; }

.bg-lime {
  background-color: #01FF70; }

.bg-yellow {
  background-color: #FFDC00; }

.bg-orange {
  background-color: #FF851B; }

.bg-red {
  background-color: #FF4136; }

.bg-fuchsia {
  background-color: #F012BE; }

.bg-purple {
  background-color: #B10DC9; }

.bg-maroon {
  background-color: #85144B; }

.bg-white {
  background-color: #FFFFFF; }

.bg-gray {
  background-color: #AAAAAA; }

.bg-silver {
  background-color: #DDDDDD; }

.bg-black {
  background-color: #111111; }

.border-left-navy {
  border-left-color: #001F3F; }

.border-left-blue {
  border-left-color: #0074D9; }

.border-left-aqua {
  border-left-color: #7FDBFF; }

.border-left-teal {
  border-left-color: #39CCCC; }

.border-left-olive {
  border-left-color: #3D9970; }

.border-left-green {
  border-left-color: #2ECC40; }

.border-left-lime {
  border-left-color: #01FF70; }

.border-left-yellow {
  border-left-color: #FFDC00; }

.border-left-orange {
  border-left-color: #FF851B; }

.border-left-red {
  border-left-color: #FF4136; }

.border-left-fuchsia {
  border-left-color: #F012BE; }

.border-left-purple {
  border-left-color: #B10DC9; }

.border-left-maroon {
  border-left-color: #85144B; }

.border-left-white {
  border-left-color: #FFFFFF; }

.border-left-gray {
  border-left-color: #AAAAAA; }

.border-left-silver {
  border-left-color: #DDDDDD; }

.border-left-black {
  border-left-color: #111111; }

#dashboard .main {
  background: #fcfcfc; }
  #dashboard .main h1 {
    font-size: 2rem;
    color: #9d9d9d; }
#dashboard .dashboard-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100vh;
  padding: 1em; }
  #dashboard .dashboard-container .dashboard-content {
    max-height: 100%;
    margin: auto; }
    #dashboard .dashboard-container .dashboard-content a {
      color: #AE8CA3;
      text-decoration: none; }
#dashboard .prompt {
  position: relative;
  margin-bottom: 2em;
  min-height: 8em;
  padding: 1em;
  padding-top: 2em;
  border-radius: 0.5em;
  background-color: #E1F5FE;
  font-size: 1.2em; }
  #dashboard .prompt h1 {
    display: block;
    font-size: 1.5rem;
    float: none;
    margin: 0; }
  #dashboard .prompt .illustration {
    display: none;
    position: absolute;
    right: -30px;
    bottom: -2.5em;
    width: 250px;
    z-index: 2000;
    transform: scale(-1, 1);
    transform-origin: center; }
@media (min-width: 576px) {
  #dashboard .prompt {
    padding-right: 200px; }
    #dashboard .prompt .illustration {
      display: block; } }
#dashboard .widget {
  background-color: white;
  border-radius: 0.5em;
  padding: 1em;
  margin-bottom: 1.5em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1); }
  @media (min-width: 992px) {
    #dashboard .widget.chart-widget {
      margin-bottom: 0; } }
  #dashboard .widget.widget-appointments .widget-icon, #dashboard .widget.widget-clients .widget-icon, #dashboard .widget.widget-conversations .widget-icon {
    background: #70B6A8; }
  #dashboard .widget.widget-appointments .widget-value, #dashboard .widget.widget-appointments .widget-title, #dashboard .widget.widget-clients .widget-value, #dashboard .widget.widget-clients .widget-title, #dashboard .widget.widget-conversations .widget-value, #dashboard .widget.widget-conversations .widget-title {
    color: #70B6A8; }
  #dashboard .widget.widget-appointments .widget-badge, #dashboard .widget.widget-clients .widget-badge, #dashboard .widget.widget-conversations .widget-badge {
    background: white;
    color: #9abfb8; }
  #dashboard .widget.widget-prospects .widget-icon, #dashboard .widget.widget-proposals .widget-icon, #dashboard .widget.widget-revenue .widget-icon {
    background: #4577B2; }
  #dashboard .widget.widget-prospects .widget-value, #dashboard .widget.widget-prospects .widget-title, #dashboard .widget.widget-proposals .widget-value, #dashboard .widget.widget-proposals .widget-title, #dashboard .widget.widget-revenue .widget-value, #dashboard .widget.widget-revenue .widget-title {
    color: #4577B2; }
  #dashboard .widget.widget-prospects .widget-badge, #dashboard .widget.widget-proposals .widget-badge, #dashboard .widget.widget-revenue .widget-badge {
    background: #e9eef4;
    color: #7192b9; }
  #dashboard .widget.widget-reviews .widget-icon {
    background: #AE8CA3; }
  #dashboard .widget.widget-reviews .widget-value, #dashboard .widget.widget-reviews .widget-title {
    color: #AE8CA3; }
  #dashboard .widget.widget-reviews .widget-badge {
    background: #ebe8ea;
    color: #bcb1b8; }
  #dashboard .widget .widget-icon {
    width: 2em;
    height: 2em;
    padding: 0.3em;
    border-radius: 0.3em;
    background: #AE8CA3;
    fill: white; }
  #dashboard .widget .widget-header {
    display: flex;
    color: #6E7480;
    align-items: center;
    margin-bottom: 1em;
    gap: 0.4em; }
  #dashboard .widget .widget-title {
    color: #6E7480;
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: bold; }
  #dashboard .widget .widget-body {
    display: flex;
    flex-direction: column;
    gap: 1em; }
  #dashboard .widget .widget-value {
    font-weight: normal;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.1em; }
  #dashboard .widget .widget-detail {
    color: #666;
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between; }
  #dashboard .widget .widget-badge {
    display: inline-block;
    border-radius: 0.5em;
    padding-left: 0.5em;
    padding-right: 0.5em; }
#dashboard .chart-widget .summary {
  display: flex;
  gap: 2em;
  align-items: flex-end; }
#dashboard .chart-widget .stat.future {
  border-left: 1px solid #ddd;
  padding-left: 2em; }
  #dashboard .chart-widget .stat.future .widget-value {
    color: #B5C7D3; }
#dashboard .revenue-chart-container {
  position: relative; }
  #dashboard .revenue-chart-container #revenue-chart {
    height: 150px;
    width: 100%; }
  #dashboard .revenue-chart-container .chart-spinner {
    position: absolute;
    display: block;
    left: 50%;
    margin-left: -12px;
    top: 100px; }
#dashboard .upcoming-sessions {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #ddd;
  background: #eee;
  border-radius: 0.5em;
  overflow: scroll;
  height: 100%;
  max-height: 39em; }
  #dashboard .upcoming-sessions a {
    padding: 0; }
  #dashboard .upcoming-sessions .daily-agenda {
    padding: 1em;
    background: #eee;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8em; }
  #dashboard .upcoming-sessions .upcoming-session {
    display: flex;
    gap: 1em;
    align-items: center;
    padding: 1em;
    border-bottom: 1px solid #ddd;
    background: #fafafa; }
    #dashboard .upcoming-sessions .upcoming-session .contact-name, #dashboard .upcoming-sessions .upcoming-session .session-progress {
      display: inline; }
    #dashboard .upcoming-sessions .upcoming-session .session-progress {
      font-weight: normal;
      color: #8c8797; }
    #dashboard .upcoming-sessions .upcoming-session .primary-detail {
      color: #6E7480; }
    #dashboard .upcoming-sessions .upcoming-session .secondary-detail {
      color: #444;
      font-size: 0.9em; }
    #dashboard .upcoming-sessions .upcoming-session svg {
      width: 2.5em;
      height: 2.5em;
      fill: #8c8797;
      stroke: #fafafa; }

.bg-navy {
  background-color: #001F3F; }

.bg-blue {
  background-color: #0074D9; }

.bg-aqua {
  background-color: #7FDBFF; }

.bg-teal {
  background-color: #39CCCC; }

.bg-olive {
  background-color: #3D9970; }

.bg-green {
  background-color: #2ECC40; }

.bg-lime {
  background-color: #01FF70; }

.bg-yellow {
  background-color: #FFDC00; }

.bg-orange {
  background-color: #FF851B; }

.bg-red {
  background-color: #FF4136; }

.bg-fuchsia {
  background-color: #F012BE; }

.bg-purple {
  background-color: #B10DC9; }

.bg-maroon {
  background-color: #85144B; }

.bg-white {
  background-color: #FFFFFF; }

.bg-gray {
  background-color: #AAAAAA; }

.bg-silver {
  background-color: #DDDDDD; }

.bg-black {
  background-color: #111111; }

.border-left-navy {
  border-left-color: #001F3F; }

.border-left-blue {
  border-left-color: #0074D9; }

.border-left-aqua {
  border-left-color: #7FDBFF; }

.border-left-teal {
  border-left-color: #39CCCC; }

.border-left-olive {
  border-left-color: #3D9970; }

.border-left-green {
  border-left-color: #2ECC40; }

.border-left-lime {
  border-left-color: #01FF70; }

.border-left-yellow {
  border-left-color: #FFDC00; }

.border-left-orange {
  border-left-color: #FF851B; }

.border-left-red {
  border-left-color: #FF4136; }

.border-left-fuchsia {
  border-left-color: #F012BE; }

.border-left-purple {
  border-left-color: #B10DC9; }

.border-left-maroon {
  border-left-color: #85144B; }

.border-left-white {
  border-left-color: #FFFFFF; }

.border-left-gray {
  border-left-color: #AAAAAA; }

.border-left-silver {
  border-left-color: #DDDDDD; }

.border-left-black {
  border-left-color: #111111; }

.section-conversations .main {
  display: flex; }
.section-conversations .conversation-view--wrapper {
  flex-grow: 2;
  flex-basis: 600px; }
.section-conversations #active-conversation {
  display: flex;
  flex-grow: 1; }

.sidebar-collapsed .conversations-list {
  max-width: 0;
  width: 0;
  min-width: 0; }

.section-conversations .sidebar {
  display: none; }

@media screen and (min-width: 960px) {
  .sidebar-collapsed.section-conversations .sidebar {
    display: block; } }
@media screen and (min-width: 1080px) {
  .section-conversations .sidebar {
    display: block; } }
.section-offers .content-panel.index .content-panel-body {
  background: #f9fbfa; }
.section-offers .content-panel.index .flex-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dbd9de; }
.section-offers .offer-grid .col-md-4 {
  padding: 2rem; }
.section-offers .blank-slate.offer, .section-offers .offer-card {
  height: 100%;
  border-radius: 10px; }

.offer-card {
  overflow: visible;
  margin-bottom: 0; }
  .offer-card .content-card-header {
    position: relative;
    height: 3.5em;
    border-bottom: none;
    background-image: url("/images/patterns/pattern.png");
    background-position: 50px 100px; }
    .offer-card .content-card-header .status-icon {
      position: absolute;
      top: 0.8em;
      right: 0.8em; }
      .offer-card .content-card-header .status-icon svg {
        width: 2em;
        height: 2em;
        fill: #fff;
        stroke: #fff; }
    .offer-card .content-card-header .icon {
      position: absolute;
      top: 1.1rem;
      left: 1.1rem;
      padding: 0.55rem;
      background: #28262C;
      color: #fff;
      border-radius: 10px; }
      .offer-card .content-card-header .icon svg {
        width: 2.5em;
        height: 2.5em;
        fill: #fff;
        stroke: #28262C; }
    .offer-card .content-card-header.bg-navy {
      background-color: #001F3F; }
      .offer-card .content-card-header.bg-navy .status-icon svg {
        stroke: #001F3F; }
    .offer-card .content-card-header.bg-blue {
      background-color: #0074D9; }
      .offer-card .content-card-header.bg-blue .status-icon svg {
        stroke: #0074D9; }
    .offer-card .content-card-header.bg-aqua {
      background-color: #7FDBFF; }
      .offer-card .content-card-header.bg-aqua .status-icon svg {
        stroke: #7FDBFF; }
    .offer-card .content-card-header.bg-teal {
      background-color: #39CCCC; }
      .offer-card .content-card-header.bg-teal .status-icon svg {
        stroke: #39CCCC; }
    .offer-card .content-card-header.bg-olive {
      background-color: #3D9970; }
      .offer-card .content-card-header.bg-olive .status-icon svg {
        stroke: #3D9970; }
    .offer-card .content-card-header.bg-green {
      background-color: #2ECC40; }
      .offer-card .content-card-header.bg-green .status-icon svg {
        stroke: #2ECC40; }
    .offer-card .content-card-header.bg-lime {
      background-color: #01FF70; }
      .offer-card .content-card-header.bg-lime .status-icon svg {
        stroke: #01FF70; }
    .offer-card .content-card-header.bg-yellow {
      background-color: #FFDC00; }
      .offer-card .content-card-header.bg-yellow .status-icon svg {
        stroke: #FFDC00; }
    .offer-card .content-card-header.bg-orange {
      background-color: #FF851B; }
      .offer-card .content-card-header.bg-orange .status-icon svg {
        stroke: #FF851B; }
    .offer-card .content-card-header.bg-red {
      background-color: #FF4136; }
      .offer-card .content-card-header.bg-red .status-icon svg {
        stroke: #FF4136; }
    .offer-card .content-card-header.bg-fuchsia {
      background-color: #F012BE; }
      .offer-card .content-card-header.bg-fuchsia .status-icon svg {
        stroke: #F012BE; }
    .offer-card .content-card-header.bg-purple {
      background-color: #B10DC9; }
      .offer-card .content-card-header.bg-purple .status-icon svg {
        stroke: #B10DC9; }
    .offer-card .content-card-header.bg-maroon {
      background-color: #85144B; }
      .offer-card .content-card-header.bg-maroon .status-icon svg {
        stroke: #85144B; }
    .offer-card .content-card-header.bg-gray {
      background-color: #c1bec6; }
      .offer-card .content-card-header.bg-gray .status-icon svg {
        stroke: #c1bec6; }
  .offer-card .content-card-body {
    padding-top: 2rem; }
  .offer-card .content-card-footer {
    display: flex;
    justify-content: space-between;
    padding: 0.36rem;
    border-top: none;
    background: #fff; }
    .offer-card .content-card-footer .offer-actions {
      width: 100%; }
      .offer-card .content-card-footer .offer-actions .btn {
        color: #8c8797;
        background-color: #f6f9f7;
        flex-grow: 1;
        border-left: 1px solid #dbd9de; }
        .offer-card .content-card-footer .offer-actions .btn.edit {
          border-left: none; }
      .offer-card .content-card-footer .offer-actions .btn-group.action-menu .btn.dropdown-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 4em; }
      .offer-card .content-card-footer .offer-actions .btn-group.action-menu svg {
        width: 1.5em;
        height: 1.5em;
        fill: #8c8797; }

.offer-status-nav {
  padding: 1.1rem; }
  .offer-status-nav .col-lg {
    padding: 0; }
  .offer-status-nav .item {
    padding: 0.55rem;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    display: flex;
    gap: 1em; }
    .offer-status-nav .item .primary-detail {
      color: #28262C;
      font-size: 2rem;
      font-family: proxima-nova-soft, sans-serif;
      font-weight: 400;
      font-style: normal;
      font-size: 1.2em;
      line-height: 0.8em; }
    .offer-status-nav .item svg {
      min-width: 2.2em;
      max-width: 2.2em;
      min-height: 2.2em;
      max-height: 2.2em;
      background: #AE8CA3;
      fill: #fff;
      padding: 0.36rem;
      border-radius: 10px; }
    .offer-status-nav .item.active svg {
      background: #578F7C; }

.section-offers .billing-schedule .content-card-header .form-control, .section-agreements .billing-schedule .content-card-header .form-control {
  width: auto;
  min-width: 30%; }
.section-offers .billing-schedule .form-group, .section-agreements .billing-schedule .form-group {
  display: flex;
  align-items: center; }
  .section-offers .billing-schedule .form-group.full-width, .section-agreements .billing-schedule .form-group.full-width {
    display: block; }
    .section-offers .billing-schedule .form-group.full-width .control-label, .section-agreements .billing-schedule .form-group.full-width .control-label {
      width: auto; }
    .section-offers .billing-schedule .form-group.full-width .form-control, .section-agreements .billing-schedule .form-group.full-width .form-control {
      text-align: left; }
  .section-offers .billing-schedule .form-group .control-label, .section-agreements .billing-schedule .form-group .control-label {
    font-weight: bold;
    color: #8c8797;
    width: 50%;
    margin: 0; }
  .section-offers .billing-schedule .form-group .form-control, .section-agreements .billing-schedule .form-group .form-control {
    text-align: right;
    padding: 0.55rem; }
  .section-offers .billing-schedule .form-group .input-group, .section-agreements .billing-schedule .form-group .input-group {
    max-width: 10em; }
  .section-offers .billing-schedule .form-group .input-group-append .custom-select, .section-agreements .billing-schedule .form-group .input-group-append .custom-select {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
.section-offers .billing-schedule .content-card-body, .section-agreements .billing-schedule .content-card-body {
  padding-bottom: 0; }
.section-offers .billing-schedule .content-card-footer .totals .form-group, .section-agreements .billing-schedule .content-card-footer .totals .form-group {
  margin: 0; }
.section-offers .billing-schedule .content-card-footer .totals .value, .section-agreements .billing-schedule .content-card-footer .totals .value {
  text-align: right;
  width: 10rem; }
.section-offers .billing-schedule .content-card-footer .totals .total-investment, .section-agreements .billing-schedule .content-card-footer .totals .total-investment {
  white-space: nowrap;
  font-size: 1.4em; }
  .section-offers .billing-schedule .content-card-footer .totals .total-investment .control-label, .section-offers .billing-schedule .content-card-footer .totals .total-investment .value, .section-agreements .billing-schedule .content-card-footer .totals .total-investment .control-label, .section-agreements .billing-schedule .content-card-footer .totals .total-investment .value {
    font-weight: normal;
    color: #5a5563; }
.section-offers .billing-schedule .content-card-footer .totals .total-less-discount, .section-agreements .billing-schedule .content-card-footer .totals .total-less-discount {
  white-space: nowrap;
  font-size: 1.4em; }
  .section-offers .billing-schedule .content-card-footer .totals .total-less-discount .control-label, .section-offers .billing-schedule .content-card-footer .totals .total-less-discount .value, .section-agreements .billing-schedule .content-card-footer .totals .total-less-discount .control-label, .section-agreements .billing-schedule .content-card-footer .totals .total-less-discount .value {
    font-weight: normal;
    color: #8c8797; }

.section-offers .automation-card .content-card-header, .section-agreements .automation-card .content-card-header, .section-offer_onboarding .automation-card .content-card-header {
  background: #fff;
  border-bottom: none; }
  .section-offers .automation-card .content-card-header .automation-toggle, .section-agreements .automation-card .content-card-header .automation-toggle, .section-offer_onboarding .automation-card .content-card-header .automation-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .section-offers .automation-card .content-card-header h2, .section-agreements .automation-card .content-card-header h2, .section-offer_onboarding .automation-card .content-card-header h2 {
    margin: 0; }
.section-offers .automation-card .content-card-footer, .section-agreements .automation-card .content-card-footer, .section-offer_onboarding .automation-card .content-card-footer {
  background: transparent;
  border: none; }

.section-offers .content-panel-body.preview {
  padding: 0; }
  .section-offers .content-panel-body.preview iframe {
    border: none;
    margin: 0;
    padding: 0;
    width: 100%; }

.section-offers .promote .text-links {
  display: flex;
  flex-direction: column;
  gap: 1em; }
  .section-offers .promote .text-links .input-group-text {
    width: 130px !important;
    text-align: right;
    font-weight: bold; }
.section-offers .promote .button-links {
  display: flex; }
  .section-offers .promote .button-links .step {
    width: 50%;
    padding: 1.1rem; }
  .section-offers .promote .button-links h3 {
    margin-bottom: 40px; }
  .section-offers .promote .button-links .step2 .button-code {
    border: none; }
    .section-offers .promote .button-links .step2 .button-code img {
      display: block;
      margin: auto;
      margin-top: 20px;
      margin-bottom: 20px; }
    .section-offers .promote .button-links .step2 .button-code textarea {
      display: block;
      margin-bottom: 20px;
      font-size: 12px;
      line-height: 16px;
      height: 80px;
      font-family: Courier, monospace; }

#offers p#display-name {
  color: #444;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px; }
#offers .offer-promotion-links {
  border-top: 1px solid #ddd; }
#offers #buttons {
  margin-top: 20px; }
#offers .content-body.new {
  padding-top: 100px; }
  #offers .content-body.new h1 {
    font-size: 2em;
    text-align: center;
    float: none; }

.bg-navy {
  background-color: #001F3F; }

.bg-blue {
  background-color: #0074D9; }

.bg-aqua {
  background-color: #7FDBFF; }

.bg-teal {
  background-color: #39CCCC; }

.bg-olive {
  background-color: #3D9970; }

.bg-green {
  background-color: #2ECC40; }

.bg-lime {
  background-color: #01FF70; }

.bg-yellow {
  background-color: #FFDC00; }

.bg-orange {
  background-color: #FF851B; }

.bg-red {
  background-color: #FF4136; }

.bg-fuchsia {
  background-color: #F012BE; }

.bg-purple {
  background-color: #B10DC9; }

.bg-maroon {
  background-color: #85144B; }

.bg-white {
  background-color: #FFFFFF; }

.bg-gray {
  background-color: #AAAAAA; }

.bg-silver {
  background-color: #DDDDDD; }

.bg-black {
  background-color: #111111; }

.border-left-navy {
  border-left-color: #001F3F; }

.border-left-blue {
  border-left-color: #0074D9; }

.border-left-aqua {
  border-left-color: #7FDBFF; }

.border-left-teal {
  border-left-color: #39CCCC; }

.border-left-olive {
  border-left-color: #3D9970; }

.border-left-green {
  border-left-color: #2ECC40; }

.border-left-lime {
  border-left-color: #01FF70; }

.border-left-yellow {
  border-left-color: #FFDC00; }

.border-left-orange {
  border-left-color: #FF851B; }

.border-left-red {
  border-left-color: #FF4136; }

.border-left-fuchsia {
  border-left-color: #F012BE; }

.border-left-purple {
  border-left-color: #B10DC9; }

.border-left-maroon {
  border-left-color: #85144B; }

.border-left-white {
  border-left-color: #FFFFFF; }

.border-left-gray {
  border-left-color: #AAAAAA; }

.border-left-silver {
  border-left-color: #DDDDDD; }

.border-left-black {
  border-left-color: #111111; }

.resources-list .resource-details-modal {
  max-width: 50%;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: 0;
  height: 100vh;
  /* Full viewport height */
  display: flex;
  flex-direction: column; }
  .resources-list .resource-details-modal .modal-content {
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    border: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column; }
  .resources-list .resource-details-modal .modal-body {
    overflow-y: auto;
    flex-grow: 1; }
.resources-list #resource-details-modal.show .modal-content {
  transform: translateX(0); }
.resources-list .modal.fade .modal-dialog {
  transition: none; }
@media (max-width: 576px) {
  .resources-list .resource-details-modal {
    max-width: 100%; } }

.resource-header .header-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }
.resource-header h1 {
  font-size: 1.8rem;
  float: none;
  margin: 0;
  line-height: 1.5em; }
.resource-header h2 {
  margin: 0; }

#share-resource {
  background: #E6EFEA;
  border-radius: 20px;
  border: none;
  padding: 1.1rem;
  width: 100%;
  border-bottom: 1px solid #dbd9de; }

.show-resource .btn svg {
  fill: #8c8797;
  width: 1.3em;
  height: 1.3em; }
.show-resource .content-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center; }
.show-resource .content-panel-header {
  padding: 1.1rem; }
.show-resource .content-card-header.share {
  padding: 1.1rem;
  border-bottom: none; }

.attachments-list .attachment {
  padding: 0.36rem;
  border-radius: 10px;
  background: #e3d7df;
  margin-bottom: 1.1rem; }
  .attachments-list .attachment .thumbnail {
    overflow: hidden;
    max-height: 100px;
    border-radius: 10px; }
  .attachments-list .attachment img {
    width: 100%; }
  .attachments-list .attachment p {
    color: #5a5563;
    font-size: 0.8rem;
    margin-top: 0.55rem;
    margin-bottom: 0.55rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }

.edit-resource .content-panel-header {
  padding: 1em; }
  .edit-resource .content-panel-header h1 {
    float: none;
    margin: 0;
    line-height: 1.5em; }
  .edit-resource .content-panel-header h2 {
    margin: 0; }

.resource-card {
  overflow: visible;
  margin-bottom: 2rem;
  background-color: #fff; }
  .resource-card .content-card-header {
    position: relative;
    border-bottom: 1px solid #dbd9de; }
    .resource-card .content-card-header .actions {
      position: absolute;
      top: 1.1rem;
      right: -0.55rem; }
      .resource-card .content-card-header .actions svg {
        width: 1.5em;
        height: 1.5em;
        fill: #8c8797;
        margin-right: 0.36rem; }
  .resource-card .preview {
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 10px;
    height: 140px;
    box-sizing: content-box; }
    .resource-card .preview img {
      width: 100%; }
  .resource-card .resource-actions {
    width: 100%; }
    .resource-card .resource-actions .btn {
      color: #8c8797;
      background-color: #f6f9f7;
      flex-grow: 1;
      border-left: 1px solid #dbd9de; }
      .resource-card .resource-actions .btn.edit {
        border-left: none; }

.section-session_types .no-interaction {
  pointer-events: none; }
.section-session_types .blank-slate {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center; }
  .section-session_types .blank-slate .blank-slate-text {
    margin-left: 20%;
    margin-right: 20%;
    font-size: 1.4em;
    text-align: center;
    color: #444;
    margin-bottom: 50px; }
.section-session_types .card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch; }
.section-session_types .session-type-card {
  margin: 15px;
  border-left-width: 5px;
  width: 350px;
  box-shadow: 5px 5px 20px #ccc; }
  .section-session_types .session-type-card .card-body {
    min-height: 80px; }
  .section-session_types .session-type-card .card-body, .section-session_types .session-type-card .card-footer {
    padding: 15px; }
  .section-session_types .session-type-card:hover {
    box-shadow: 10px 10px 25px #ccc; }
  .section-session_types .session-type-card .dropdown-menu {
    box-shadow: 10px 10px 25px #ccc; }
  .section-session_types .session-type-card .card-title {
    width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .section-session_types .session-type-card a.card-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  .section-session_types .session-type-card .btn-actions {
    position: absolute;
    right: 10px;
    top: 10px; }
  .section-session_types .session-type-card .card-footer {
    display: flex;
    justify-content: space-between;
    border-top: none;
    background-color: #fafafa; }
    .section-session_types .session-type-card .card-footer .stat-schedule {
      max-width: 50%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }

.section-agreements .content-body.new {
  display: flex;
  justify-content: center;
  padding: 60px 20px; }
  @media (max-width: 575px) {
    .section-agreements .content-body.new {
      padding: 30px 15px; } }
.section-agreements .new-agreement-container {
  width: 100%;
  max-width: 500px; }
  .section-agreements .new-agreement-container h1 {
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 24px; }
  .section-agreements .new-agreement-container .card {
    border-radius: 8px;
    border: 1px solid #e3e8ef;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); }
  .section-agreements .new-agreement-container .card-body {
    padding: 30px; }
    @media (max-width: 575px) {
      .section-agreements .new-agreement-container .card-body {
        padding: 20px; } }
  .section-agreements .new-agreement-container .form-group {
    margin-bottom: 24px; }
  .section-agreements .new-agreement-container .form-label {
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 6px; }
  .section-agreements .new-agreement-container .note {
    font-size: 0.85em;
    color: #a6a2af;
    margin-top: 6px;
    margin-bottom: 0; }
  .section-agreements .new-agreement-container .card-footer {
    background-color: #f9fbfa;
    padding: 20px 30px; }
    @media (max-width: 575px) {
      .section-agreements .new-agreement-container .card-footer {
        padding: 15px 20px; } }
    .section-agreements .new-agreement-container .card-footer .btn-block {
      padding: 10px;
      font-weight: 600; }

.section-engagements.action-index .stats-bar, .section-engagements.action-drafts .stats-bar, .section-engagements.action-pending .stats-bar, .section-engagements.action-accepted .stats-bar, .section-engagements.action-expired .stats-bar, .section-agreements.action-index .stats-bar, .section-agreements.action-drafts .stats-bar, .section-agreements.action-pending .stats-bar, .section-agreements.action-accepted .stats-bar, .section-agreements.action-expired .stats-bar {
  margin-top: -4em; }
  @media (max-width: 768px) {
    .section-engagements.action-index .stats-bar, .section-engagements.action-drafts .stats-bar, .section-engagements.action-pending .stats-bar, .section-engagements.action-accepted .stats-bar, .section-engagements.action-expired .stats-bar, .section-agreements.action-index .stats-bar, .section-agreements.action-drafts .stats-bar, .section-agreements.action-pending .stats-bar, .section-agreements.action-accepted .stats-bar, .section-agreements.action-expired .stats-bar {
      margin-top: 1.1rem; } }
.section-engagements .agreement-terms, .section-agreements .agreement-terms {
  background-color: #E6EFEA;
  border-radius: 6px; }

.section-engagements .progress-cards {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 20px; }
.section-engagements .progress-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 8px; }
  .section-engagements .progress-card .progress-dial-container {
    flex-shrink: 0; }
  .section-engagements .progress-card .progress-card-details .value {
    font-size: 1.1em;
    margin-bottom: 2px; }
  .section-engagements .progress-card .progress-card-details .secondary-detail {
    margin-bottom: 0; }

.section-engagements .statement .accordion .card {
  border-radius: 6px;
  overflow: visible; }
  .section-engagements .statement .accordion .card .card-header {
    background: #E2E2E2;
    border-radius: 6px 6px 0 0; }
  .section-engagements .statement .accordion .card .collapse .card-body {
    padding: 0; }
    .section-engagements .statement .accordion .card .collapse .card-body table thead {
      background: #F2F2F2;
      text-transform: uppercase;
      border-bottom: 1px solid #E2E2E2; }
    .section-engagements .statement .accordion .card .collapse .card-body table th {
      text-align: left;
      padding: 5px 0px;
      letter-spacing: 1px;
      font-size: 9pt; }
      .section-engagements .statement .accordion .card .collapse .card-body table th:first-child {
        padding: 10px 30px; }
    .section-engagements .statement .accordion .card .collapse .card-body table td {
      padding: 15px 0;
      text-align: left; }
      .section-engagements .statement .accordion .card .collapse .card-body table td:first-child {
        padding: 10px 30px; }
    .section-engagements .statement .accordion .card .collapse .card-body table td.paid-flag {
      width: 100px; }
    .section-engagements .statement .accordion .card .collapse .card-body table td.action {
      padding-right: 15px; }

#enter-payment-dialog .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between; }
#enter-payment-dialog .modal-body .form-label {
  font-weight: 600;
  margin-bottom: 6px; }
#enter-payment-dialog .modal-body .date-field {
  max-width: 250px; }

.section-engagements .statement a.collapse-btn.float-right {
  text-transform: uppercase;
  color: #828282;
  font-size: 9pt;
  position: relative;
  top: 5px;
  letter-spacing: 1px; }
.section-engagements .statement .collapse-btn:not(.collapsed) > span.fas.fa-caret-right {
  display: none; }
.section-engagements .statement .collapse-btn.collapsed > span.fas.fa-caret-right {
  display: inline-block; }
.section-engagements .statement .collapse-btn:not(.collapsed) > span.fas.fa-caret-down {
  display: inline-block; }
.section-engagements .statement .collapse-btn.collapsed > span.fas.fa-caret-down {
  display: none; }

.section-groups .content-body.new {
  display: flex;
  justify-content: center;
  padding: 60px 20px; }
  @media (max-width: 575px) {
    .section-groups .content-body.new {
      padding: 30px 15px; } }
.section-groups .new-groups-container {
  width: 100%;
  max-width: 500px; }
  .section-groups .new-groups-container h1 {
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 24px; }
  .section-groups .new-groups-container .card {
    border-radius: 8px;
    border: 1px solid #e3e8ef;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); }
  .section-groups .new-groups-container .card-body {
    padding: 30px; }
    @media (max-width: 575px) {
      .section-groups .new-groups-container .card-body {
        padding: 20px; } }
  .section-groups .new-groups-container .form-group {
    margin-bottom: 24px; }
  .section-groups .new-groups-container .form-label {
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 6px; }
  .section-groups .new-groups-container .note {
    font-size: 0.85em;
    color: #a6a2af;
    margin-top: 6px;
    margin-bottom: 0; }
  .section-groups .new-groups-container .card-footer {
    background-color: #f9fbfa;
    padding: 20px 30px; }
    @media (max-width: 575px) {
      .section-groups .new-groups-container .card-footer {
        padding: 15px 20px; } }
    .section-groups .new-groups-container .card-footer .btn-block {
      padding: 10px;
      font-weight: 600; }

.section-contacts .stats-bar {
  margin-top: -4em; }
  @media (max-width: 768px) {
    .section-contacts .stats-bar {
      margin-top: 1.1rem; } }

.contacts .data-table .primary-detail a {
  color: #222; }
.contacts .data-table .primary-detail .separator {
  margin: 0 0.3em;
  color: #bbb; }
.contacts .data-table .primary-detail .position {
  color: #aaa;
  font-weight: normal; }
@media (max-width: 992px) {
  .contacts .data-table .hide-mobile {
    display: none; } }

.export-links {
  margin-top: 1em;
  text-align: right;
  font-size: 0.85em;
  color: #999; }
  .export-links a {
    color: #999; }
    .export-links a:hover {
      color: #666; }

.contacts-search-bar {
  margin-bottom: 1em; }
  .contacts-search-bar .search-row {
    display: flex;
    gap: 0.5em; }
    .contacts-search-bar .search-row form {
      flex: 1; }
    .contacts-search-bar .search-row .btn-tags-toggle {
      display: flex;
      align-items: center;
      gap: 0.3em;
      white-space: nowrap; }
      .contacts-search-bar .search-row .btn-tags-toggle svg {
        width: 1em;
        height: 1em;
        fill: currentColor; }
  .contacts-search-bar .browse-tags {
    padding-top: 0.75em;
    overflow: hidden; }

.section-reports .stats-bar {
  margin-top: -4em; }
  @media (max-width: 768px) {
    .section-reports .stats-bar {
      margin-top: 1.1rem; } }
.section-reports .filter {
  padding: 20px;
  text-align: center; }
  .section-reports .filter form {
    display: inline-flex;
    align-items: center;
    gap: 15px; }
  .section-reports .filter .form-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0; }
.section-reports .year-select {
  width: 80px; }
.section-reports .month-select {
  width: 120px; }
.section-reports .filter .form-horizontal {
  display: flex;
  flex-wrap: wrap;
  width: 100%; }
  .section-reports .filter .form-horizontal > .row {
    width: 100%;
    align-items: center; }
  .section-reports .filter .form-horizontal .form-group {
    display: block;
    margin-bottom: 0; }
  .section-reports .filter .form-horizontal .btn {
    width: 100%; }
.section-reports .filter:has(.form-horizontal) {
  background-color: #f9fbfa;
  border-bottom: 1px solid #E6EFEA;
  padding: 12px 20px;
  text-align: left; }

.calendar-list {
  margin-top: 3rem; }
  .calendar-list .calendar-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.1rem; }
    .calendar-list .calendar-list-header h2 {
      margin: 0; }
  .calendar-list .calendar-list-empty {
    padding: 3rem 1.1rem;
    text-align: center;
    color: #a6a2af;
    border: 1px solid #dbd9de;
    border-radius: 10px; }
  .calendar-list .data-table .satori-sessions-calendar td {
    border-top: 2px solid #dbd9de; }
  .calendar-list .data-table th:first-child,
  .calendar-list .data-table td:first-child {
    width: 3em; }
  .calendar-list .data-table td.calendar,
  .calendar-list .data-table th.calendar {
    text-align: left; }
  .calendar-list .data-table td.status {
    text-align: right; }
  .calendar-list .data-table .title {
    font-weight: bold; }
  .calendar-list .data-table .note {
    display: block;
    font-size: 0.85em;
    color: #a6a2af; }

.session-syncs {
  margin-top: 3rem; }
  .session-syncs summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    list-style: none; }
    .session-syncs summary::-webkit-details-marker {
      display: none; }
    .session-syncs summary h2 {
      margin: 0; }
    .session-syncs summary::after {
      content: '\25B6';
      font-size: 0.5em; }
  .session-syncs[open] > summary::after {
    content: '\25BC'; }
  .session-syncs .session-syncs-table-wrapper {
    margin-top: 1.1rem; }
  .session-syncs .session-syncs-empty {
    margin-top: 1.1rem;
    padding: 3rem 1.1rem;
    text-align: center;
    color: #a6a2af;
    border: 1px solid #dbd9de;
    border-radius: 10px; }

body {
  background: #f9fbfa;
  color: #28262C;
  font-family: proxima-nova-soft, sans-serif;
  font-weight: 400;
  font-style: normal; }

.base {
  margin: 0;
  padding: 0;
  display: flex; }

.main {
  height: 100vh;
  z-index: 100;
  background: white;
  flex-grow: 1;
  border-top-left-radius: 15px;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  overflow: hidden;
  overflow-y: scroll; }

/*
	This is a trimmed down verion of the jQuery-UI Boostrap compatibility file, containing
	only the styles needed to render the date picker component.
*/
/* Component containers
----------------------------------*/
.ui-widget {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px; }

.ui-widget .ui-widget {
  font-size: 1em; }

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em; }

.ui-widget-content {
  border: 1px solid #aaaaaa;
  background: #ffffff url(/stylesheets/vendor/libs/css/jquery-ui-bootstrap/images/ui-bg_glass_75_ffffff_1x400.png) 50% 50% repeat-x;
  color: #404040; }

.ui-widget-content a {
  color: #404040; }

.ui-widget-header {
  font-weight: bold;
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border: 1px solid #666; }

.ui-widget-header a {
  color: #222222; }

/*
 * jQuery UI Datepicker 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Datepicker#theming
 */
.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none; }

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
  border: 0px;
  font-weight: bold;
  width: 100%;
  padding: 4px 0;
  background-color: #f5f5f5;
  color: #808080; }

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em; }

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
  /*top: 1px;*/ }

.ui-datepicker .ui-datepicker-prev {
  left: 2px; }

.ui-datepicker .ui-datepicker-next {
  right: 2px; }

.ui-datepicker .ui-datepicker-prev-hover {
  /*left:1px;*/ }

.ui-datepicker .ui-datepicker-next-hover {
  /*right:1px;*/ }

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px; }

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center; }

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0; }

.ui-datepicker select.ui-datepicker-month-year {
  width: 100%; }

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 49%; }

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em; }

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0; }

.ui-datepicker td {
  border: 0;
  padding: 1px; }

.ui-datepicker td span, .ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none; }

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0; }

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible; }

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto; }

.ui-datepicker-multi .ui-datepicker-group {
  float: left; }

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em; }

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%; }

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%; }

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%; }

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
  border-left-width: 0; }

.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0; }

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left; }

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0em; }

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl; }

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: right; }

.ui-datepicker-rtl .ui-datepicker-group {
  float: right; }

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px; }

.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px; }

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
  display: none;
  /*sorry for IE5*/
  display/**/: block;
  /*sorry for IE5*/
  position: absolute;
  /*must have*/
  z-index: -1;
  /*must have*/
  filter: mask();
  /*must have*/
  top: -4px;
  /*must have*/
  left: -4px;
  /*must have*/
  width: 200px;
  /*must have*/
  height: 200px;
  /*must have*/ }

.ui-datepicker th {
  font-weight: bold;
  color: gray; }

.ui-datepicker-today a:hover {
  background-color: #808080;
  color: #ffffff; }

.ui-datepicker-today a {
  background-color: #BFBFBF;
  cursor: pointer;
  padding: 0 4px;
  margin-bottom: 0px; }

.ui-datepicker td a {
  margin-bottom: 0px;
  border: 0px; }

.ui-datepicker td:hover {
  color: white; }

.ui-datepicker td .ui-state-default {
  border: 0px;
  background: none;
  margin-bottom: 0px;
  padding: 5px;
  color: gray;
  text-align: center;
  filter: none; }

.ui-datepicker td .ui-state-active {
  background: #BFBFBF;
  margin-bottom: 0px;
  font-size: normal;
  text-shadow: 0px;
  color: white;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.ui-datepicker td .ui-state-default:hover {
  background: #0064cd;
  color: white;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat; }

/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
  background-image: url(/stylesheets/vendor/libs/css/jquery-ui-bootstrap/images/ui-icons_222222_256x240.png); }

.ui-widget-content .ui-icon {
  background-image: url(/stylesheets/vendor/libs/css/jquery-ui-bootstrap/images/ui-icons_222222_256x240.png); }

.ui-widget-header .ui-icon {
  background-image: url(/stylesheets/vendor/libs/css/jquery-ui-bootstrap/images/ui-icons_222222_256x240.png); }

.ui-state-default .ui-icon {
  background-image: url(/stylesheets/vendor/libs/css/jquery-ui-bootstrap/images/ui-icons_888888_256x240.png); }

.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {
  background-image: url(/stylesheets/vendor/libs/css/jquery-ui-bootstrap/images/ui-icons_454545_256x240.png); }

.ui-state-active .ui-icon {
  background-image: url(/stylesheets/vendor/libs/css/jquery-ui-bootstrap/images/ui-icons_454545_256x240.png); }

.ui-state-highlight .ui-icon {
  background-image: url(/stylesheets/vendor/libs/css/jquery-ui-bootstrap/images/ui-icons_2e83ff_256x240.png); }

.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
  background-image: url(/stylesheets/vendor/libs/css/jquery-ui-bootstrap/images/ui-icons_f6cf3b_256x240.png); }

/* positioning */
.ui-icon-carat-1-n {
  background-position: 0 0; }

.ui-icon-carat-1-ne {
  background-position: -16px 0; }

.ui-icon-carat-1-e {
  background-position: -32px 0; }

.ui-icon-carat-1-se {
  background-position: -48px 0; }

.ui-icon-carat-1-s {
  background-position: -64px 0; }

.ui-icon-carat-1-sw {
  background-position: -80px 0; }

.ui-icon-carat-1-w {
  background-position: -96px 0; }

.ui-icon-carat-1-nw {
  background-position: -112px 0; }

.ui-icon-carat-2-n-s {
  background-position: -128px 0; }

.ui-icon-carat-2-e-w {
  background-position: -144px 0; }

.ui-icon-triangle-1-n {
  background-position: 0 -16px; }

.ui-icon-triangle-1-ne {
  background-position: -16px -16px; }

.ui-icon-triangle-1-e {
  background-position: -32px -16px; }

.ui-icon-triangle-1-se {
  background-position: -48px -16px; }

.ui-icon-triangle-1-s {
  background-position: -64px -16px; }

.ui-icon-triangle-1-sw {
  background-position: -80px -16px; }

.ui-icon-triangle-1-w {
  background-position: -96px -16px; }

.ui-icon-triangle-1-nw {
  background-position: -112px -16px; }

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px; }

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px; }

.ui-icon-arrow-1-n {
  background-position: 0 -32px; }

.ui-icon-arrow-1-ne {
  background-position: -16px -32px; }

.ui-icon-arrow-1-e {
  background-position: -32px -32px; }

.ui-icon-arrow-1-se {
  background-position: -48px -32px; }

.ui-icon-arrow-1-s {
  background-position: -64px -32px; }

.ui-icon-arrow-1-sw {
  background-position: -80px -32px; }

.ui-icon-arrow-1-w {
  background-position: -96px -32px; }

.ui-icon-arrow-1-nw {
  background-position: -112px -32px; }

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px; }

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px; }

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px; }

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px; }

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px; }

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px; }

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px; }

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px; }

.ui-icon-arrowthick-1-n {
  background-position: 0 -48px; }

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px; }

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px; }

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px; }

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px; }

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px; }

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px; }

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px; }

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px; }

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px; }

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px; }

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px; }

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px; }

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px; }

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px; }

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px; }

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px; }

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px; }

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px; }

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px; }

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px; }

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px; }

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px; }

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px; }

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px; }

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px; }

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px; }

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px; }

.ui-icon-arrow-4 {
  background-position: 0 -80px; }

.ui-icon-arrow-4-diag {
  background-position: -16px -80px; }

.ui-icon-extlink {
  background-position: -32px -80px; }

.ui-icon-newwin {
  background-position: -48px -80px; }

.ui-icon-refresh {
  background-position: -64px -80px; }

.ui-icon-shuffle {
  background-position: -80px -80px; }

.ui-icon-transfer-e-w {
  background-position: -96px -80px; }

.ui-icon-transferthick-e-w {
  background-position: -112px -80px; }

.ui-icon-folder-collapsed {
  background-position: 0 -96px; }

.ui-icon-folder-open {
  background-position: -16px -96px; }

.ui-icon-document {
  background-position: -32px -96px; }

.ui-icon-document-b {
  background-position: -48px -96px; }

.ui-icon-note {
  background-position: -64px -96px; }

.ui-icon-mail-closed {
  background-position: -80px -96px; }

.ui-icon-mail-open {
  background-position: -96px -96px; }

.ui-icon-suitcase {
  background-position: -112px -96px; }

.ui-icon-comment {
  background-position: -128px -96px; }

.ui-icon-person {
  background-position: -144px -96px; }

.ui-icon-print {
  background-position: -160px -96px; }

.ui-icon-trash {
  background-position: -176px -96px; }

.ui-icon-locked {
  background-position: -192px -96px; }

.ui-icon-unlocked {
  background-position: -208px -96px; }

.ui-icon-bookmark {
  background-position: -224px -96px; }

.ui-icon-tag {
  background-position: -240px -96px; }

.ui-icon-home {
  background-position: 0 -112px; }

.ui-icon-flag {
  background-position: -16px -112px; }

.ui-icon-calendar {
  background-position: -32px -112px; }

.ui-icon-cart {
  background-position: -48px -112px; }

.ui-icon-pencil {
  background-position: -64px -112px; }

.ui-icon-clock {
  background-position: -80px -112px; }

.ui-icon-disk {
  background-position: -96px -112px; }

.ui-icon-calculator {
  background-position: -112px -112px; }

.ui-icon-zoomin {
  background-position: -128px -112px; }

.ui-icon-zoomout {
  background-position: -144px -112px; }

.ui-icon-search {
  background-position: -160px -112px; }

.ui-icon-wrench {
  background-position: -176px -112px; }

.ui-icon-gear {
  background-position: -192px -112px; }

.ui-icon-heart {
  background-position: -208px -112px; }

.ui-icon-star {
  background-position: -224px -112px; }

.ui-icon-link {
  background-position: -240px -112px; }

.ui-icon-cancel {
  background-position: 0 -128px; }

.ui-icon-plus {
  background-position: -16px -128px; }

.ui-icon-plusthick {
  background-position: -32px -128px; }

.ui-icon-minus {
  background-position: -48px -128px; }

.ui-icon-minusthick {
  background-position: -64px -128px; }

.ui-icon-close {
  background-position: -80px -128px; }

.ui-icon-closethick {
  background-position: -96px -128px; }

.ui-icon-key {
  background-position: -112px -128px; }

.ui-icon-lightbulb {
  background-position: -128px -128px; }

.ui-icon-scissors {
  background-position: -144px -128px; }

.ui-icon-clipboard {
  background-position: -160px -128px; }

.ui-icon-copy {
  background-position: -176px -128px; }

.ui-icon-contact {
  background-position: -192px -128px; }

.ui-icon-image {
  background-position: -208px -128px; }

.ui-icon-video {
  background-position: -224px -128px; }

.ui-icon-script {
  background-position: -240px -128px; }

.ui-icon-alert {
  background-position: 0 -144px; }

.ui-icon-info {
  background-position: -16px -144px; }

.ui-icon-notice {
  background-position: -32px -144px; }

.ui-icon-help {
  background-position: -48px -144px; }

.ui-icon-check {
  background-position: -64px -144px; }

.ui-icon-bullet {
  background-position: -80px -144px; }

.ui-icon-radio-off {
  background-position: -96px -144px; }

.ui-icon-radio-on {
  background-position: -112px -144px; }

.ui-icon-pin-w {
  background-position: -128px -144px; }

.ui-icon-pin-s {
  background-position: -144px -144px; }

.ui-icon-play {
  background-position: 0 -160px; }

.ui-icon-pause {
  background-position: -16px -160px; }

.ui-icon-seek-next {
  background-position: -32px -160px; }

.ui-icon-seek-prev {
  background-position: -48px -160px; }

.ui-icon-seek-end {
  background-position: -64px -160px; }

.ui-icon-seek-start {
  background-position: -80px -160px; }

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px; }

.ui-icon-stop {
  background-position: -96px -160px; }

.ui-icon-eject {
  background-position: -112px -160px; }

.ui-icon-volume-off {
  background-position: -128px -160px; }

.ui-icon-volume-on {
  background-position: -144px -160px; }

.ui-icon-power {
  background-position: 0 -176px; }

.ui-icon-signal-diag {
  background-position: -16px -176px; }

.ui-icon-signal {
  background-position: -32px -176px; }

.ui-icon-battery-0 {
  background-position: -48px -176px; }

.ui-icon-battery-1 {
  background-position: -64px -176px; }

.ui-icon-battery-2 {
  background-position: -80px -176px; }

.ui-icon-battery-3 {
  background-position: -96px -176px; }

.ui-icon-circle-plus {
  background-position: 0 -192px; }

.ui-icon-circle-minus {
  background-position: -16px -192px; }

.ui-icon-circle-close {
  background-position: -32px -192px; }

.ui-icon-circle-triangle-e {
  background-position: -48px -192px; }

.ui-icon-circle-triangle-s {
  background-position: -64px -192px; }

.ui-icon-circle-triangle-w {
  background-position: -80px -192px; }

.ui-icon-circle-triangle-n {
  background-position: -96px -192px; }

.ui-icon-circle-arrow-e {
  background-position: -112px -192px; }

.ui-icon-circle-arrow-s {
  background-position: -128px -192px; }

.ui-icon-circle-arrow-w {
  background-position: -144px -192px; }

.ui-icon-circle-arrow-n {
  background-position: -160px -192px; }

.ui-icon-circle-zoomin {
  background-position: -176px -192px; }

.ui-icon-circle-zoomout {
  background-position: -192px -192px; }

.ui-icon-circle-check {
  background-position: -208px -192px; }

.ui-icon-circlesmall-plus {
  background-position: 0 -208px; }

.ui-icon-circlesmall-minus {
  background-position: -16px -208px; }

.ui-icon-circlesmall-close {
  background-position: -32px -208px; }

.ui-icon-squaresmall-plus {
  background-position: -48px -208px; }

.ui-icon-squaresmall-minus {
  background-position: -64px -208px; }

.ui-icon-squaresmall-close {
  background-position: -80px -208px; }

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px; }

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px; }

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px; }

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px; }

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px; }

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px; }

#ui-datepicker-div {
  z-index: 200 !important; }

a {
  color: #AE8CA3; }

.modal-backdrop {
  display: none; }

.modal {
  background: rgba(0, 0, 0, 0.5); }

/*# sourceMappingURL=main.css.map */
