/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.8.5
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2018 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.chosen-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  display: none; }

.chosen-container.chosen-with-drop .chosen-drop {
  display: block; }

.chosen-container a {
  cursor: pointer; }

.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999; }

.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top; }

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px; }

.chosen-container-single .chosen-single input[type="text"] {
  cursor: pointer;
  opacity: 0;
  position: absolute;
  width: 0; }

.chosen-container-single .chosen-default {
  color: #999; }

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px; }

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 1px; }

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%; }

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%; }

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap; }

.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0; }

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box; }

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  opacity: 0;
  pointer-events: none; }

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch; }

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none; }

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer; }

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default; }

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff; }

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4; }

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default; }

.chosen-container .chosen-results li.group-option {
  padding-left: 15px; }

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline; }

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text; }

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none; }

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap; }

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px; }

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default; }

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 1px; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666; }

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4; }

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0; }

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default; }

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
  background-image: linear-gradient(#eee 20%, #fff 80%);
  -webkit-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset; }

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent; }

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px; }

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important; }

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default; }

.chosen-disabled .chosen-single {
  cursor: default; }

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default; }

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right; }

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0; }

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl; }

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px; }

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px; }

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px; }

.chosen-rtl .chosen-choices li {
  float: right; }

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl; }

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px; }

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px; }

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0; }

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0; }

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none; }

.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  direction: rtl; }

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px; }

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px; }

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important; } }

/* @end */
.form_filters {
  clear: both;
  margin-bottom: 15px; }
  .form_filters label {
    background: none;
    bottom: 0; }
  .form_filters input[type=text], .form_filters select, .form_filters .chosen-container-single .chosen-single {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding-left: 11px; }
  .form_filters .chosen-container-single .chosen-drop {
    overflow: hidden;
    left: 13px;
    right: 13px;
    width: auto; }
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08); }

.flatpickr-calendar.open, .flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible; }

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999; }

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1); }

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px; }

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px); }

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block; }

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6,5px 0 0 #e6e6e6; }

.flatpickr-calendar .hasWeeks .dayContainer, .flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0; }

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6; }

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto; }

.flatpickr-calendar:before, .flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px; }

.flatpickr-calendar.rightMost:before, .flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px; }

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px; }

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px; }

.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
  bottom: 100%; }

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6; }

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff; }

.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
  top: 100%; }

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6; }

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff; }

.flatpickr-calendar:focus {
  outline: 0; }

.flatpickr-wrapper {
  position: relative;
  display: inline-block; }

.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 28px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  line-height: 16px;
  height: 28px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9); }

.flatpickr-months .flatpickr-prev-month.disabled, .flatpickr-months .flatpickr-next-month.disabled {
  display: none; }

.flatpickr-months .flatpickr-prev-month i, .flatpickr-months .flatpickr-next-month i {
  position: relative; }

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
      /*rtl:begin:ignore*/
  left: 0;
  /*
      /*rtl:end:ignore*/ }

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
      /*rtl:begin:ignore*/
  right: 0;
  /*
      /*rtl:end:ignore*/ }

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9; }

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747; }

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px; }

.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill .1s;
  transition: fill .1s;
  fill: inherit; }

.numInputWrapper {
  position: relative;
  height: auto; }

.numInputWrapper input, .numInputWrapper span {
  display: inline-block; }

.numInputWrapper input {
  width: 100%; }

.numInputWrapper input::-ms-clear {
  display: none; }

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1); }

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2); }

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute; }

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0; }

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%; }

.numInputWrapper span.arrowDown {
  top: 50%; }

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%; }

.numInputWrapper span svg {
  width: inherit;
  height: auto; }

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5); }

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05); }

.numInputWrapper:hover span {
  opacity: 1; }

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 6.16px 0 0 0;
  line-height: 1;
  height: 28px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: .5ch;
  padding: 0; }

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05); }

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block; }

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9); }

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9); }

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 .5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial; }

.flatpickr-current-month input.cur-year:focus {
  outline: 0; }

.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none; }

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px; }

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1; }

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder; }

.dayContainer, .flatpickr-weeks {
  padding: 1px 0 0 0; }

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px; }

.flatpickr-days:focus {
  outline: 0; }

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1; }

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6; }

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center; }

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6; }

.flatpickr-day.today {
  border-color: #959ea9; }

.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff; }

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7; }

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px; }

.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0; }

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7; }

.flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange, .flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px; }

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6,5px 0 0 #e6e6e6; }

.flatpickr-day.disabled, .flatpickr-day.disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default; }

.flatpickr-day.disabled, .flatpickr-day.disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1); }

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7,5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7,5px 0 0 #569ff7; }

.flatpickr-day.hidden {
  visibility: hidden; }

.rangeMode .flatpickr-day {
  margin-top: 1px; }

.flatpickr-weekwrapper {
  display: inline-block;
  float: left; }

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6; }

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px; }

.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none; }

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden; }

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both; }

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left; }

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939; }

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939; }

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%; }

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%; }

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.flatpickr-time input.flatpickr-hour {
  font-weight: bold; }

.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
  font-weight: 400; }

.flatpickr-time input:focus {
  outline: 0;
  border: 0; }

.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
  height: inherit;
  display: inline-block;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center; }

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400; }

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
  background: #f3f3f3; }

.flatpickr-input[readonly] {
  cursor: pointer; }

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
form label {
  font-weight: 400;
  font-size: 11px;
  color: #bbb;
  position: relative;
  left: 8px;
  bottom: -8px;
  z-index: 1;
  background: white;
  display: inline-block;
  padding: 2px 3px;
  border-radius: 4px; }

select, input[type='text'], input[type='email'], input[type='password'] {
  line-height: 36px;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  display: block;
  width: 100%;
  font-size: 15px;
  font-family: 'Circular', Arial, sans-serif;
  font-weight: 300;
  padding: 0 8px;
  background: none;
  color: #444; }

select {
  background: none; }

.mobile select, .mobile input[type='text'], .mobile input[type='email'], .mobile input[type='password'] {
  -webkit-appearance: none; }

textarea {
  padding: 8px 8px;
  min-height: 32px;
  margin-bottom: 10px;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  border: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Circular', Arial, sans-serif;
  font-weight: 300;
  background: none;
  color: #444;
  resize: none; }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.2); }

::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.2); }

:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(0, 0, 0, 0.2); }

:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.2); }

::-webkit-resizer {
  display: none; }

.checkboxesBox, .radiosBox {
  padding-top: 20px !important;
  margin-bottom: 15px; }
  .checkboxesBox h4, .radiosBox h4 {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
    color: #bbb; }
  .checkboxesBox label, .radiosBox label {
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 10px;
    display: inline-block;
    padding-left: 5px;
    color: #444;
    left: 0;
    bottom: 0; }

.radioBox {
  display: inline-block;
  padding-right: 10px; }

.date-field-box {
  position: relative; }

.btn_clear_date {
  position: absolute;
  right: 5px;
  bottom: 12px;
  font-size: 14px;
  line-height: 15px;
  width: 15px;
  display: block;
  background: #f2f4ff;
  border-radius: 9px;
  text-align: center; }

.button-box {
  clear: both;
  padding-top: 30px;
  margin-bottom: 60px; }

form .chosen-container {
  width: 100% !important;
  margin-bottom: 10px; }
  form .chosen-container span {
    color: #444; }

form .chosen-container-single .chosen-single {
  border-radius: 0;
  background: none;
  line-height: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 8px;
  border-radius: 4px;
  box-shadow: none;
  margin-top: 0;
  font-size: 15px;
  min-height: 38px; }

form .chosen-container-single .chosen-drop {
  margin-top: 0;
  border-radius: 0 0 4px 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-top: 0;
  padding: 0;
  box-shadow: none; }

form .chosen-container .chosen-results {
  padding: 0;
  margin: 0; }

form .chosen-container .chosen-results li.highlighted {
  background: #f2f4ff;
  color: #444; }

form .chosen-container .chosen-results li.highlighted {
  background: #f2f4ff;
  color: #444; }

form .chosen-container.chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.2); }

.searchable-input {
  position: relative; }
  .searchable-input .searchable-input-links {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 35px;
    background: white;
    border: 1px solid #eee; }
    .searchable-input .searchable-input-links a {
      line-height: 30px;
      display: block;
      padding: 0 5px;
      font-size: 14px; }

#clientForm .buttonBox {
  margin-bottom: 0.5rem; }
  #clientForm .buttonBox .button {
    width: 100%;
    border-radius: 5px;
    text-transform: uppercase; }

.panel.login_form_panel {
  padding-top: 30px;
  max-width: 500px;
  margin: 0 auto; }
  .panel.login_form_panel h1 {
    font-size: 24px; }
  .panel.login_form_panel .btn_forgot_password {
    position: absolute;
    right: 0;
    bottom: 0;
    right: 1.5rem;
    bottom: 2px; }

.checkboxButtons {
  padding-top: 5px !important;
  margin-bottom: 20px !important; }
  .checkboxButtons .checkboxBox {
    display: inline-block;
    padding: 0 10px 0 0; }
  .checkboxButtons input {
    display: none; }
  .checkboxButtons label {
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #a1abb3;
    font-weight: 400;
    font-size: 11px;
    background: none;
    min-width: 38px;
    line-height: 36px;
    text-align: center;
    padding: 0 14px;
    font-size: 13px;
    border-radius: 19px; }
  .checkboxButtons label:hover {
    cursor: pointer;
    border-color: #5127FD;
    color: #5127FD; }
  .checkboxButtons .selected label {
    color: #fff;
    border-color: #5127FD;
    background: #5127FD; }
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1;
  padding: 0;
  margin: 0; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  box-sizing: border-box; }

:focus {
  outline: none; }

@font-face {
  font-family: 'Circular';
  src: url(/assets/lineto-circular-book-6c848ba8a3017aaabee994580fa642b52e59541cfa4195eb5ee4376165999a4a.woff) format("truetype");
  font-weight: 300; }

@font-face {
  font-family: 'Circular';
  src: url(/assets/lineto-circular-medium-d5d8810d30b4c2cf0f0da691140f4b37d6c218a099e93c41871cdfe07398086d.woff) format("truetype");
  font-weight: 400; }

@font-face {
  font-family: 'Circular';
  src: url(/assets/lineto-circular-black-abfa8e6ca72f1b42f2f726c66de44ccb55f64578e390677678eb941e78c470fb.woff) format("truetype");
  font-weight: 700; }

.sprite {
  background-image: url(/assets/sprite-09f4d8646f58cb9e03b5b18cbe3558d642add8f8c512d65c329bc2f12c0a054f.png);
  background-size: 200px;
  background-repeat: no-repeat; }

@-moz-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-ms-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-o-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadein {
  -webkit-animation: fadein 0.5s;
  -moz-animation: fadein 0.5s;
  -ms-animation: fadein 0.5s;
  -o-animation: fadein 0.5s;
  animation: fadein 0.5s; }

@-moz-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-o-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

* {
  box-sizing: border-box; }

body {
  font-family: 'Circular', Arial, sans-serif;
  font-weight: 300;
  color: #444;
  text-align: center;
  -webkit-font-smoothing: antialiased; }

.content {
  padding: 82px 1.5rem 0;
  position: relative; }

.imageLoader img {
  width: 100%;
  display: block; }

h1 {
  font-size: 1.5rem;
  line-height: 2.0rem;
  margin: 0 0 20px;
  font-weight: 700;
  color: #444; }
  h1 .small-text {
    font-weight: 300; }

h2 {
  font-size: 1.5rem;
  margin: 0 0 20px;
  line-height: 2.0rem;
  font-weight: 200;
  color: #444; }

h3 {
  font-size: 0.8rem;
  margin: 0 0 0.8rem;
  line-height: 1.2rem;
  font-weight: 700;
  color: #444; }

p {
  font-size: 1rem;
  margin: 0 0 15px;
  line-height: 1.6rem; }

ul {
  font-size: 1rem;
  margin: 0 0 20px;
  line-height: 1.8rem; }

li {
  margin-bottom: 10px;
  line-height: 1.8rem; }

table {
  min-width: 100%;
  margin-bottom: 2rem; }

td {
  padding: 0.5rem 0.5rem 0.5rem 0;
  font-size: 0.7rem; }

a, a span {
  color: #444;
  text-decoration: none;
  cursor: pointer; }

a:hover {
  color: #5127FD; }

a i {
  color: #444; }

a:hover i {
  color: #5127FD; }

strong {
  font-weight: 700; }

.clr {
  clear: both; }

.text-right {
  text-align: right; }

.text-center, .text-center-small {
  text-align: center; }

.ellipsis {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%; }

.breakbox {
  white-space: nowrap;
  display: inline-block; }

.commas span:after {
  content: ', '; }

.commas span:last-child:after {
  content: ''; }

.uppercase {
  text-transform: uppercase; }

.capitalize {
  text-transform: capitalize; }

.light-text {
  color: #bbb; }

.small-text {
  font-size: 10px; }

p.small-text {
  line-height: 1.2rem; }

.red-text {
  color: #ed326e !important; }

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

.hidden {
  display: none !important; }

hr {
  border: 1px solid #eee;
  border-top: none;
  border-right: none;
  border-left: none;
  margin-bottom: 30px; }

.button {
  display: inline-block;
  white-space: nowrap;
  padding: 15px 24px;
  border-radius: 29px;
  cursor: pointer;
  text-align: center;
  font-weight: 700;
  -webkit-appearance: none;
  background: #f2f4ff;
  color: #5127FD;
  font-size: 17px;
  border: none;
  font-family: inherit;
  -webkit-transition: background .1s ease-out;
  -moz-transition: background .1s ease-out;
  -o-transition: background .1s ease-out;
  transition: background .1s ease-out; }

.button.button-small {
  padding: 10px 18px;
  font-size: 13px;
  line-height: 17px; }

.button:hover {
  background: #5127FD;
  color: #fff; }
  .button:hover .iconPhone {
    background-position: -54px -25px; }

.button.disabled {
  background: rgba(0, 0, 0, 0.05);
  color: #a1abb3;
  cursor: default; }

.button.button-alert {
  color: #ed326e;
  background: #FCE0E9; }

.button.button-alert:hover {
  background: #ed326e;
  color: white; }

input.disabled {
  background: rgba(0, 0, 0, 0.05); }

.iconPhone {
  height: 20px;
  width: 20px;
  display: inline-block;
  height: 20px;
  width: 14px;
  display: inline-block;
  background-position: -38px -25px;
  margin: -10px 2px -4px 0; }

.readMoreContentBox {
  position: relative;
  max-height: 140px;
  overflow: hidden; }

.expandReadMoreBox {
  font-weight: 500;
  font-size: 0.8rem; }

.expanded .readMoreContentBox {
  max-height: none;
  overflow: visible; }

.expanded .expandReadMoreBox {
  display: none; }

.content {
  min-height: calc(100vh - 80px); }

.panel {
  position: relative;
  border: 1px solid #eee;
  padding: 1rem 1.5rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 0 7px rgba(156, 160, 171, 0.2);
  margin-bottom: 15px;
  display: block; }

.controls {
  position: absolute;
  right: 0;
  top: 0; }
  .controls a {
    line-height: 28px;
    width: 28px;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    padding: 6px 6px 0 0; }
    .controls a .fa-times {
      font-size: 18px; }

.menuBox {
  display: none;
  position: relative; }
  .menuBox h2 {
    text-align: center;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 300; }

.contentSectionBox {
  display: none; }

.contentSection.active .contentSectionBox {
  display: block; }

.contentSection {
  padding-top: 20px; }
  .contentSection h2 {
    padding-bottom: 20px;
    margin: 0; }

.border-bottom {
  border-bottom: 1px solid #eee; }

.table-head {
  margin-bottom: 20px;
  padding: 20px 15px 0 25px;
  color: #a1abb3;
  font-size: 13px;
  margin-top: -10px; }
  .table-head strong {
    color: #2e286a;
    font-weight: 300; }

.table-row {
  display: block;
  background: white;
  margin-bottom: 15px;
  padding: 20px 15px 20px 25px;
  border-radius: 10px;
  color: #444;
  font-size: 13px;
  min-height: 57px;
  position: relative;
  box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.1); }

.table-column {
  display: inline-block;
  float: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
  line-height: 18px; }

.table-column.button-box {
  top: -10px;
  position: relative;
  display: inline-block;
  clear: none;
  padding: 0;
  margin: 0;
  text-align: right; }

.table-column.overflow-visible {
  overflow: visible; }

.table-column-7 {
  width: 14.28571428571428%; }

.table-column-8 {
  width: 12.5%; }

.table-column-11 {
  width: 9.09090909%; }

.table-column-12 {
  width: 8.33333333333333%; }

.table-column-16 {
  width: 6.25%; }

.table-column-20-percent {
  width: 20%; }

.pagination li {
  display: inline-block;
  padding-right: 20px; }

#footer {
  border-top: 1px solid #eee;
  padding: 20px 0; }
  #footer p {
    margin: 0;
    font-size: 13px;
    color: #aaa; }
  #footer a {
    color: #aaa; }
  #footer .row {
    width: 100%; }
  #footer .nav {
    font-size: 13px; }
    #footer .nav li {
      display: inline-block;
      margin: 0;
      padding: 0 10px; }

.dash-button {
  font-size: 22px;
  line-height: 60px;
  border-radius: 30px;
  padding: 0 30px;
  min-width: 180px; }

@media screen and (min-width: 641px) {
  h1 {
    font-size: 1.5rem;
    line-height: 2.0rem; }
  td {
    font-size: 0.8rem; }
  .text-center-small {
    text-align: left; }
  .text-center-small.text-right {
    text-align: right; }
  .small-text {
    font-size: 12px;
    font-weight: 300; }
  #footer .nav {
    margin: 0; }
    #footer .nav li {
      padding: 0 0 0 20px;
      line-height: 1.8rem; } }

@media screen and (min-width: 641px) {
  .column.mainContentBox {
    width: calc(100% - 380px); } }

@media screen and (min-width: 1025px) {
  ul {
    font-size: 1rem;
    margin: 0 0 20px;
    line-height: 1.2rem; }
  h2 {
    font-size: 1.2rem;
    margin: 0 0 20px;
    line-height: 2.4rem; }
  h3 {
    font-size: 1.2rem;
    margin: 0 0 rem;
    line-height: 1.8rem; }
  td {
    font-size: 1rem; }
  .menuBox {
    display: block;
    width: 300px;
    float: left;
    min-height: calc(100vh - 80px);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    text-align: left; }
    .menuBox ul {
      margin: 0; }
    .menuBox li {
      display: block;
      margin: 0; }
      .menuBox li a {
        display: block;
        padding: 10px 1.5rem; }
      .menuBox li a.active {
        margin-right: -1px;
        z-index: 1;
        position: relative;
        background: white;
        font-weight: 700; }
    .menuBox .row {
      max-width: 100%;
      margin: 0; }
  .menuBox.menuBoxRight li a.active {
    margin-left: -1px;
    width: calc(100% - 1px);
    padding-left: calc(1.5rem + 1px); }
  .menuBox.menuBoxRight {
    border-right: none; }
  .contentBox {
    width: calc(100% - 300px);
    height: calc(100vh - 80px);
    float: left;
    overflow-y: auto;
    padding-left: 2.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem; }
    .contentBox .row {
      max-width: calc(100%); }
    .contentBox .contentSection {
      display: none; }
      .contentBox .contentSection h2 {
        border: none; }
    .contentBox .contentSection.active {
      display: block; } }
.content {
  margin: 0 auto; }

.row {
  clear: both;
  margin: 0 -1.5rem;
  position: relative;
  display: block;
  width: calc(100% + 3rem);
  text-align: left;
  text-align: left; }

.row .row {
  max-width: none; }

.column {
  display: block;
  float: left;
  padding: 0 1.5rem;
  width: 100%; }

.row:last-child:after {
  content: '';
  display: block;
  clear: both; }

.small-1 {
  width: 8.33333333333333%; }

.small-2 {
  width: 16.66666666666666%; }

.small-3 {
  width: 25%; }

.small-4 {
  width: 33.33333333333332%; }

.small-5 {
  width: 41.666666666667%; }

.small-6 {
  width: 50%; }

.small-7 {
  width: 58.333333333333%; }

.small-8 {
  width: 66.66666666666665%; }

.small-10 {
  width: 83.3333333333333%; }

.small-11 {
  width: 91.66666666666667%; }

.small-12 {
  width: 100%; }

.hide-for-small, .show-for-large-only {
  display: none; }

@media screen and (min-width: 641px) {
  .medium-2 {
    width: 16.66666666666667%; }
  .medium-3 {
    width: 25%; }
  .medium-4 {
    width: 33.33333333333332%; }
  .medium-5 {
    width: 41.666666666667%; }
  .medium-6 {
    width: 50%; }
  .medium-7 {
    width: 58.333333333333%; }
  .medium-8 {
    width: 66.66666666666665%; }
  .medium-9 {
    width: 75%; }
  .medium-12 {
    width: 100%; }
  .show-for-small-only {
    display: none; }
  .hide-for-small {
    display: block; } }

@media screen and (min-width: 1025px) {
  .large-3 {
    width: 25%; }
  .large-4 {
    width: 33.33333333333332%; }
  .large-5 {
    width: 41.666666666667%; }
  .large-6 {
    width: 50%; }
  .large-7 {
    width: 58.333333333333%; }
  .large-8 {
    width: 66.66666666666665%; }
  .large-12 {
    width: 100%; }
  .show-for-large-only {
    display: inline-block; } }

.width-100-percent {
  width: 100%; }
#header {
  max-height: 60px;
  height: 60px;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  background: #fff; }

.header-content {
  position: relative;
  margin: 0 auto;
  padding: 0 1.5rem 0; }
  .header-content .column {
    text-align: right; }

.header-info span {
  display: block;
  line-height: 60px; }

.logo {
  position: absolute;
  top: 17px;
  font-weight: 600;
  height: 24px;
  width: 180px;
  background-position: 0 0;
  left: 1.5rem;
  z-index: 1; }

.logo-2022 {
  display: inline-block;
  position: relative;
  top: 12px;
  font-weight: 600;
  height: 38px;
  width: 180px;
  z-index: 1; }
.interviewer_select {
  position: relative;
  top: -10px;
  margin-right: -15px; }
.logs_counter span {
  display: inline-block;
  margin-right: 20px; }

table {
  font-size: 15px; }
  table th {
    font-weight: bold; }

.logs .table-row {
  cursor: pointer; }

.slide-viewer .slide-viewer-filter-title {
  margin-bottom: 15px; }

.applied_filter_pill {
  background: #ff7c48;
  color: #fff;
  font-size: 13px;
  line-height: 24px;
  border-radius: 12px;
  display: inline-block;
  padding: 0 27px 0 15px;
  position: relative; }
  .applied_filter_pill .btn_remove_applied_filter {
    position: absolute;
    right: 0px;
    top: 0px;
    color: #fff;
    width: 24px;
    text-align: center; }

.login_form_panel .button-box {
  margin-bottom: 0; }

.login_form_panel .btn_forgot_password {
  position: absolute;
  right: 0;
  bottom: 0;
  right: 1.5rem;
  bottom: 2px; }
#side-bar {
  position: fixed;
  width: 320px;
  right: 1rem;
  top: 60px;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  padding-right: .5rem;
  padding-left: .5rem;
  padding-top: 20px; }

#dialer input {
  margin: 0 0 10px;
  text-align: center;
  font-size: 17px;
  width: 100%;
  padding: 0 30px;
  border-radius: 0;
  border-right: none;
  border-left: none;
  border-top: none; }

.btn_no_longer_there {
  border: 1px solid #eee;
  padding: 1rem 1.5rem 1.5rem;
  border-radius: 30px;
  box-shadow: 0 0 7px rgba(156, 160, 171, 0.2);
  margin-bottom: 10px;
  display: block; }

.panel.panel-edit {
  padding: .5rem 1.5rem .5rem; }
  .panel.panel-edit .button {
    width: 100%; }

.panel-edit-content {
  display: none; }
  .panel-edit-content form {
    padding: 10px 0 20px; }
  .panel-edit-content .btn_cancel {
    margin: 0; }

.panel-edit.active .panel-edit-content {
  display: block; }

.panel-edit.active .panel-edit-button {
  border-bottom: 1px solid #eee; }

.panel-edit-contact .button-box {
  padding-top: 10px;
  margin: 0; }

.panel-edit-button {
  line-height: 2rem;
  font-size: 13px;
  font-weight: 700;
  display: block; }

.btn_no_longer_there {
  line-height: 2rem;
  font-size: 13px;
  font-weight: 700;
  padding: .5rem 1.5rem .5rem; }

.btn_no_longer_there.status_inactive {
  background: #ed326e;
  color: white; }

#caller-info {
  padding-bottom: .5rem;
  padding-top: 1.5rem;
  position: relative; }
  #caller-info h3 {
    font-size: 11px;
    margin-bottom: 0;
    line-height: 4px;
    color: #bbb;
    font-weight: 200; }
  #caller-info p {
    font-size: 16px;
    margin-bottom: 12px; }
  #caller-info .small-text {
    font-size: 12px; }
  #caller-info .grey-text {
    color: #bbb; }

.phone_dialer_form {
  position: relative; }

.btn_show_dial_pad {
  position: absolute;
  right: 1.5rem;
  top: 10px;
  color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  width: 30px;
  text-align: right; }

.btn_mute, .btn_unmute {
  position: absolute;
  left: 1.5rem;
  top: 10px;
  color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  width: 30px; }

.btn_mute {
  left: calc(1.5rem + 5px); }

.btn_mute:hover {
  color: #ed326e; }

.btn_unmute {
  color: #ed326e; }

.btn_show_dial_pad:hover, .dialer-active .btn_show_dial_pad {
  color: #5127FD; }

.btn_edit_recipient, .btn_cancel_edit_recipient {
  position: absolute;
  right: .5rem;
  top: 10px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.2); }

.btn_edit_recipient:hover {
  color: #5127FD; }

.btn_show_dial_pad:hover {
  color: #5127FD; }

.btn_save_recipient {
  width: 100%; }

.dialer-active .dial-pad {
  display: block; }

.dial-pad {
  margin-bottom: 4px;
  display: none; }
  .dial-pad a {
    display: inline-block;
    float: left;
    width: 33.333333%;
    height: 3rem;
    text-align: center;
    padding-top: .6rem;
    font-size: 20px;
    color: #2e286a; }
  .dial-pad a:hover {
    color: #5127FD; }
    .dial-pad a:hover .button-letters {
      color: #5127FD; }
  .dial-pad .btn_keypad_star {
    font-size: 30px; }
  .dial-pad .btn_keypad_pound {
    font-size: 20px; }
  .dial-pad .button-letters {
    display: block;
    font-size: 9px;
    color: #2e286a; }

.phone-button {
  background: grey;
  width: 100%;
  line-height: 3rem;
  color: #fff;
  border-radius: 24px;
  display: block;
  clear: both;
  cursor: pointer;
  font-weight: 700; }

.phone-button:hover {
  color: #fff; }

.btn_loading, .btn_connecting {
  background: rgba(0, 0, 0, 0.1); }

.device-ready .btn_loading, .btn_connecting {
  display: none; }

.btn_connect, .call-connecting.device-ready .btn_connect {
  background: #5127FD;
  display: none; }

.call-connecting .btn_connecting {
  display: block; }

.device-ready .btn_connect {
  display: block; }

.btn_disconnect {
  background: #ed326e;
  display: none; }

.device-ready.call-active .btn_connect {
  display: none; }

.call-active .btn_disconnect {
  display: block; }
.recipient_activity_notes {
  padding-top: 5px;
  font-size: .9rem;
  line-height: 1.3; }

.recipient_notes {
  padding-top: 15px; }
  .recipient_notes p:last-child {
    margin: 0; }

.recipient_status_box_2 {
  margin-top: -15px;
  margin-bottom: 15px; }

.data_changes_panel p:last-child {
  margin-bottom: 0; }

.recipients .panel .controls {
  right: 5px; }

.recipients form hr {
  padding-top: 20px; }
.call_eligibility hr {
  margin-bottom: 10px; }

.report_date_header {
  position: relative;
  top: -21px;
  width: auto;
  font-size: 11px;
  background: white;
  color: #a1abb3;
  display: inline-block;
  padding-right: 8px; }
.responses.edit textarea {
  margin-bottom: 40px; }

.response_form_top {
  margin-bottom: 40px; }

.reponse_result .response_question_metric_text {
  font-weight: 600;
  color: #2e286a;
  margin: 0; }

.response_rating {
  height: 15px;
  width: 75px;
  background-size: 400px;
  display: inline-block;
  position: relative;
  bottom: -2px; }

.response_rating.rating_0 {
  background-position: -75px -300px; }

.response_rating.rating_1 {
  background-position: -60px -300px; }

.response_rating.rating_2 {
  background-position: -45px -300px; }

.response_rating.rating_3 {
  background-position: -30px -300px; }

.response_rating.rating_4 {
  background-position: -15px -300px; }

.response_rating.rating_5 {
  background-position: 0px -300px; }

.score_bar {
  display: inline-block;
  width: 200px;
  background: #f2f4ff;
  border-radius: 6px;
  position: relative;
  margin-right: 10px; }

.paused .score_bar_fill {
  width: 0% !important; }

.score_bar_fill {
  height: 6px;
  border-radius: 3px;
  background-size: 300px;
  -webkit-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
  background: #5127FD; }

.score_bar_score {
  font-weight: 400;
  color: #2e286a;
  font-size: 13px; }

.table-column .score_bar {
  width: 100px; }

.table-column .score_bar_fill {
  background-size: 200px; }

.response_result_link {
  cursor: pointer; }

.response_question_rating li {
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  padding: 0;
  border: 1px solid #a1abb3;
  border-radius: 50%;
  margin: 0 5px 0 0;
  color: #a1abb3;
  font-size: 15px; }

.response_rating_0 .rating_0 {
  background: #a1abb3;
  border-color: #a1abb3;
  color: white; }

.response_rating_1 .rating_1 {
  background: #ed326e;
  border-color: #ed326e;
  color: white; }

.response_rating_2 .rating_2 {
  background: #cd308b;
  border-color: #cd308b;
  color: white; }

.response_rating_3 .rating_3 {
  background: #a02db5;
  border-color: #a02db5;
  color: white; }

.response_rating_4 .rating_4 {
  background: #782ada;
  border-color: #782ada;
  color: white; }

.response_rating_5 .rating_5 {
  background: #5127FD;
  border-color: #5127FD;
  color: white; }

.response_question_text {
  color: #a1abb3;
  font-size: 13px;
  margin: 0 0 10px; }

.response_comment {
  font-size: 14px;
  line-height: 20px; }

.response_question_form .radiosBox {
  margin: 0; }

.response_question_form .radioBox {
  padding-right: 5px; }
  .response_question_form .radioBox label {
    top: 0; }

.response_question_form textarea {
  margin-bottom: 7px !important;
  font-size: 14px;
  line-height: 20px;
  background: #f2f4ff; }

.keyword_sentiment {
  font-weight: 400; }

.keyword_sentiment_positive {
  color: #5127FD; }

.keyword_sentiment_negative {
  color: #ed326e; }

.keyword_sentiment_neutral {
  color: #a02db5; }

.slide-viewer.slide-viewer-response {
  padding-bottom: 80px; }
  .slide-viewer.slide-viewer-response textarea {
    margin-bottom: 7px !important;
    font-size: 14px;
    line-height: 20px;
    background: #f2f4ff; }

.response_training_comment_edit {
  margin-bottom: 20px; }

.audio-player-box {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  background: white;
  display: block;
  position: fixed;
  width: 50vw;
  bottom: -600px;
  right: 0;
  -webkit-transition: bottom 0.5s ease-out;
  transition: bottom 0.5s ease-out; }
  .audio-player-box audio {
    width: 100%; }

.audio-player-box-for-table {
  background: green;
  width: 196px;
  overflow: hidden;
  position: relative;
  height: 20px;
  display: inline-block; }
  .audio-player-box-for-table audio {
    position: relative;
    top: -19px;
    left: -19px; }

.table-row .controls .fa-link {
  position: absolute;
  top: 22px;
  right: 15px; }

audio::-webkit-media-controls-mute-button {
  display: none !important; }

audio::-webkit-media-controls-volume-slider {
  display: none !important; }

.audio-player-box.player-showing {
  bottom: 0px; }

audio::-webkit-media-controls-panel {
  background: white; }

audio::-webkit-media-controls-current-time-display, audio::-webkit-media-controls-time-remaining-display {
  color: #444; }

.ai_comment_box {
  margin-top: -30px;
  margin-bottom: 20px; }
.btn_cancel_survey, .btn_cancel_cant_survey, .btn_cancel_cant_complete, .btn_cancel {
  margin-left: 20px; }

.page-section {
  margin-bottom: 30px; }
  .page-section .question-text {
    font-size: 16px;
    margin-bottom: 2px; }
  .page-section .question-notes {
    font-size: 13px;
    margin-bottom: 4px; }

textarea {
  height: 40px; }

.callInfo span {
  padding: 0.7rem 1.5rem 0.7rem;
  border-radius: 20px;
  font-weight: 500;
  border: 1px solid #eee; }

.comment-prompt {
  padding-top: 10px;
  margin-bottom: -5px; }

#voicemail_message {
  clear: both;
  padding-top: 15px; }

#voicemail_message_content {
  background: #f2f4ff;
  padding: 1.5rem 1.5rem 0.5rem;
  margin-bottom: 10px;
  border-radius: 0 20px 20px; }

.outcomeRadios input[type=radio] {
  display: none; }

.outcomeRadios .outcomeRadio {
  display: inline-block;
  padding: 0 5px 10px 0; }
  .outcomeRadios .outcomeRadio label {
    border: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    line-height: 36px;
    border-radius: 20px;
    left: 0;
    display: inline-block;
    padding: 0 15px;
    cursor: pointer;
    -webkit-transition: border-color .2s ease-out;
    -moz-transition: border-color .2s ease-out;
    -o-transition: border-color .2s ease-out;
    transition: border-color .2s ease-out; }
  .outcomeRadios .outcomeRadio label:hover {
    border-color: #5127FD;
    color: #5127FD; }

.outcomeRadios .outcomeRadio.selected label {
  background: #2e286a;
  border-color: #2e286a;
  color: #fff; }

#surveyFormFields textarea, .response_question_form textarea, #cant_survey_form textarea {
  margin-bottom: 40px;
  -webkit-transition: border-color .1s ease-out;
  -moz-transition: border-color .1s ease-out;
  -o-transition: border-color .1s ease-out;
  transition: border-color .1s ease-out; }

#surveyFormFields textarea:hover, #surveyFormFields textarea:focus, .response_question_form textarea:hover, .response_question_form textarea:focus, #cant_survey_form textarea:hover, #cant_survey_form textarea:focus {
  border-color: #5127FD; }

#surveyFormFields input[type=radio], #surveyFormFields input[type=checkbox], .response_question_form input[type=radio], .response_question_form input[type=checkbox], #cant_survey_form input[type=radio], #cant_survey_form input[type=checkbox] {
  display: none; }

#surveyFormFields .radioBox label, #surveyFormFields .checkboxBox label, .response_question_form .radioBox label, .response_question_form .checkboxBox label, #cant_survey_form .radioBox label, #cant_survey_form .checkboxBox label {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.2);
  left: 0;
  cursor: pointer;
  -webkit-transition: border-color .1s ease-out;
  -moz-transition: border-color .1s ease-out;
  -o-transition: border-color .1s ease-out;
  transition: border-color .1s ease-out; }

#surveyFormFields .radioBox:hover label, #surveyFormFields .checkboxBox:hover label, .response_question_form .radioBox:hover label, .response_question_form .checkboxBox:hover label, #cant_survey_form .radioBox:hover label, #cant_survey_form .checkboxBox:hover label {
  border-color: #5127FD;
  color: #5127FD; }

#surveyFormFields .radioBox.no-width label, #surveyFormFields .checkboxBox label, .response_question_form .radioBox.no-width label, .response_question_form .checkboxBox label, #cant_survey_form .radioBox.no-width label, #cant_survey_form .checkboxBox label {
  width: auto;
  padding: 0 20px;
  border-radius: 20px; }

#surveyFormFields .radioBox.selected label, #surveyFormFields .checkboxBox.selected label, .response_question_form .radioBox.selected label, .response_question_form .checkboxBox.selected label, #cant_survey_form .radioBox.selected label, #cant_survey_form .checkboxBox.selected label {
  background: #5127FD;
  border-color: #5127FD;
  color: #fff; }

#surveyFormFields .radioBox.selected.valueNa label, .response_question_form .radioBox.selected.valueNa label, #cant_survey_form .radioBox.selected.valueNa label {
  background: #bbb;
  border-color: #bbb; }

#surveyFormFields .radioBox.selected.value1 label, .response_question_form .radioBox.selected.value1 label, #cant_survey_form .radioBox.selected.value1 label {
  background: #ed326e;
  border-color: #ed326e; }

#surveyFormFields .radioBox.selected.value2 label, .response_question_form .radioBox.selected.value2 label, #cant_survey_form .radioBox.selected.value2 label {
  background: #cd308b;
  border-color: #cd308b; }

#surveyFormFields .radioBox.selected.value3 label, .response_question_form .radioBox.selected.value3 label, #cant_survey_form .radioBox.selected.value3 label {
  background: #a02db5;
  border-color: #a02db5; }

#surveyFormFields .radioBox.selected.value4 label, .response_question_form .radioBox.selected.value4 label, #cant_survey_form .radioBox.selected.value4 label {
  background: #782ada;
  border-color: #782ada; }

#surveyFormFields .radioBox.selected.value4 label, .response_question_form .radioBox.selected.value4 label, #cant_survey_form .radioBox.selected.value4 label {
  background: #5127FD;
  border-color: #5127FD; }

#surveyFormFields .checkboxBox, .response_question_form .checkboxBox, #cant_survey_form .checkboxBox {
  display: inline-block;
  margin-right: 10px; }
  #surveyFormFields .checkboxBox label, .response_question_form .checkboxBox label, #cant_survey_form .checkboxBox label {
    font-size: 11px;
    font-weight: 400; }

#surveyFormFields .checkboxesBox, .response_question_form .checkboxesBox, #cant_survey_form .checkboxesBox {
  margin-bottom: 40px; }

#cantCompleteFields .button-box {
  padding-top: 30px; }

#surveyPage {
  padding-bottom: 160px; }

.form-submitted .button {
  background: rgba(0, 0, 0, 0.05);
  color: #a1abb3; }

.form-submitted .btn_cancel {
  display: none; }

.call-active .button {
  background: rgba(0, 0, 0, 0.05);
  color: #a1abb3; }

.button.disabled_before_call {
  background: rgba(0, 0, 0, 0.05);
  color: #a1abb3; }

.latest_comment_box {
  clear: both;
  top: -40px;
  position: relative;
  clear: both; }
  .latest_comment_box a {
    color: #5127FD; }
  .latest_comment_box .latest_comment_text {
    display: none; }

.latest_comment_box.active .latest_comment_text {
  display: block;
  margin-top: 5px;
  background: rgba(0, 0, 0, 0.05);
  padding: 1rem;
  border-radius: 4px;
  position: relative; }
  .latest_comment_box.active .latest_comment_text p {
    margin-bottom: 5px; }
  .latest_comment_box.active .latest_comment_text h3 {
    font-size: 13px;
    margin-bottom: 5px; }
  .latest_comment_box.active .latest_comment_text .icon_close {
    width: 20px;
    height: 20px;
    display: block;
    background-position: -81px -355px;
    position: absolute;
    top: 14px;
    right: 14px;
    opacity: 0.2;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out; }
  .latest_comment_box.active .latest_comment_text .icon_close:hover {
    opacity: 1; }

.latest_comment_box.active .show_link_box {
  display: none; }

.warning {
  background: yellow;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid red; }
  .warning strong {
    color: red; }

.survey .button-box .button {
  margin-bottom: 8px; }

.survey_ui_lock {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1000000;
  padding-top: 45vh; }
  .survey_ui_lock p {
    font-size: 18px; }
    .survey_ui_lock p i {
      font-size: 50px;
      color: #5127FD; }

.lock_survey_ui .survey_ui_lock {
  display: block; }

.lock_survey_ui .button {
  background: rgba(0, 0, 0, 0.05);
  color: #a1abb3; }
#transcription_panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 10px 30px;
  z-index: 100;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

#full_transcription_field {
  min-height: 47px;
  max-height: 150px;
  margin: 0; }

#full_transcription_field:focus {
  border-color: #5127FD; }

.transcription_panel_left {
  display: inline-block;
  width: calc(100% - 300px);
  float: left; }

.transcription_panel_right {
  width: 300px;
  display: inline-block;
  padding: 0 15px 0 30px; }
  .transcription_panel_right .button {
    width: 100%; }

.transcription_panel_controls {
  position: absolute;
  right: 15px;
  top: 15px; }

.btn_minimize_transcription_panel {
  display: none; }

.transcription_panel_maximized .btn_minimize_transcription_panel {
  display: block; }

.transcription_panel_maximized .btn_maximize_transcription_panel {
  display: none; }

#transcription_panel.transcription_panel_maximized {
  top: 0; }
  #transcription_panel.transcription_panel_maximized #full_transcription_field {
    max-height: none;
    height: calc(100vh - 31px); }
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
